/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/
.blur {
	position: fixed;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100vw;
	height: 100vh;
	margin-top: 0;
	z-index: 10000;
	backdrop-filter: blur(10px);
}

.blur:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 100;
	background-color: rgba(6, 3, 141,.7);
}

@-moz-document url-prefix() {
	.blur:before {
		background-color: #666;
	}
}

.blur__content {
	z-index: 100;
	max-width: 650px;
	padding: 15px;
}

.blur__content h2 {
	color: #fff;
	margin-bottom: 30px;
	text-transform: none;
	line-height: 1.3;
}

.competition-grid {
	margin-bottom: 60px;
}

.competition-grid .wpcf7-form-control {
	grid-template-columns: repeat(2, 1fr);
	display: grid;
	gap: 15px;
}

/* Radio Input verstecken */
.competition-grid input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

/* Label als Button darstellen */
.competition-grid .wpcf7-list-item-label {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 56px;
    padding: 20px 24px;
    border: 1px solid #2d2d2d;
    background: #fff;
    color: #1d3557;
    cursor: pointer;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.competition-grid h4 {
	margin-bottom: 30px;
}

/* Wrapper */
.competition-grid .wpcf7-list-item {
    display: block;
    margin: 0 0 0 0;
    width: 100%;
}

/* Label-Hover */
.competition-grid .wpcf7-list-item-label:hover {
    border-color: #1400a8;
}

/* Aktiver Zustand */
.competition-grid .wpcf7-list-item.is-active .wpcf7-list-item-label {
    background: #1400a8;
    border-color: #1400a8;
    color: #fff;
}

.competition-code {
	border: none !important;
	box-shadow: none !important;
	font-size: 50px !important;
	text-align: center;
	margin: -15px 0 0 0 !important;
}

@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/


}