p a {
    color: #000;
    font-weight: 600;
    text-decoration: underline !important;
}
p:last-child{
	margin-bottom: 0px;
}
.form-section form {
	width: 100%;
	border-radius: 32px;
	overflow: hidden;
	padding: 2px;
}
.form-container {
    position: relative;
    background:rgba(8, 22, 36, 0.27);
    padding-top: 32px;
    padding-right: 16px;
    padding-left: 32px;
    padding-bottom: 0px;
    border-radius: 32px;
    z-index: 1;
    overflow: hidden;
    box-shadow: 0px 0px 4.3px 0px #E57272E3;
    backdrop-filter: blur(7.05px);
}
.form-container::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 1px; /* border thickness */
	background: linear-gradient(221.89deg, #CAC13F -20.09%, rgba(40, 51, 150, 0.63) 42.8%, #4BE1CE 99.91%);
	border-radius: 32px;
	-webkit-mask: 
	linear-gradient(#fff 0 0) content-box, 
	linear-gradient(#fff 0 0);
	-webkit-mask-composite: destination-out;
	mask-composite: exclude;
	z-index: 1;
}
.form-container-inner {
    max-height: 625px;
    overflow-y: auto;
    width: 100%;
    padding-right: 16px;
    position: relative;
    z-index: 1;
}
.form-container-inner::-webkit-scrollbar {
 	width: 10px;
}

.form-container-inner::-webkit-scrollbar-track {
   box-shadow: inset 0 0 5px #4dac99; 
   border-radius: 10px;
}

.form-container-inner::-webkit-scrollbar-thumb {
   background: #4dac99; 
   border-radius: 10px;
}

/* Popover styles for info buttons */
.info-with-popover { position: relative; }
.info-btn { background: transparent; border: none; cursor: pointer; padding: 6px; display: inline-flex; align-items: center; justify-content: center; }
.popover {
    position: absolute;
    min-width: 280px;
    max-width: 320px;
    background: #ffffff;
    color: #000000;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    padding: 12px;
    transform-origin: top center;
    font-family: "Poppins", sans-serif;
    width: 310px;
    font-size: 16px;
    z-index: 99 !important;
    margin-left: 40px;
}
#formule-popover:before {
    content: "";
    background: #ffffff;
    position: absolute;
    top: -5px;
    left: 110px;
    width: 10px;
    height: 10px;
    transform: rotate(45deg);
}
.popover.hide{ display:none }
.popover .popover-content{ padding:6px; position:relative; }
.popover .popover-close {
    background: transparent;
    border: none;
    font-size: 18px;
    position: absolute;
    cursor: pointer;
    color: #000000;
    padding: 0;
    top: 0;
    right: 0;
}
.popover h4{ margin:0 0 6px 0; font-size:14px; color:#fff }
.popover p {
    font-size: 16px;
    color: #000000;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    margin: 0 0 0 0;
}
.popover .popover-content ul {
    padding-left: 24px;
    margin-bottom: 10px;
}
.popover-arrow{ width:14px; height:8px; position:absolute; left:50%; transform:translateX(-50%); top:-6px; }

/* Improved responsiveness */
@media (max-width: 480px) {
	.popover {
        left: 8px !important;
        right: 8px !important;
        margin-left: 7px;
        font-size: 14px;
        width: 270px;
    }
    .popover .popover-content {
	    padding: 0;
	}
	.popover p {
	    font-size: 14px;
	}
	.form-steps .info-btn svg {
	    width: 18px;
	}
}

.hide{
	display: none;
}
.form-steps {
    width: 100%;
    position: relative;
    z-index: 1;
    margin-bottom: 24px;
}
.form-row {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.form-box {
	background: #0A203EBD;
	border: 1px solid #C3363647;
	padding: 12px;
	border-radius: 24px;
	width: 100%;
}
.form-label {
	width: 100%;
	margin-bottom: 12px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.form-label label {
	display: flex;
	align-items: center;
	color: #FFFFFF;
	gap: 10px;
	font-weight: 400;
	font-size: 14px;
	line-height: 150%;
	font-family: "Poppins", sans-serif;
}
.form-label label span{
	font-weight: 400;
	font-size: 12px;
	line-height: 150%;
	color: #D15959;
	font-family: "Poppins", sans-serif;
}
.form-label p{
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 150%;
	margin:0px;
	color: #fff;
}
.form-radio-box {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(2,1fr);
	gap: 16px;
	margin-bottom: 16px;
}
.form-radio-box:last-child{
	margin-bottom: 0px;
}
.form-radio-box label.option {
	width: 100%;
	position: relative;
}
.form-radio-box label.option input[type="radio"],
.form-check-box label.option input[type="checkbox"] {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: pointer;
	z-index: 1;
}
.form-radio-box label.option span.label {
	width: 100%;
	position: relative;
	padding: 8px 12px;
	background: #0C3E6C;
	border: 1px solid #DD75754A;
	border-radius: 24px;
	height: 53px;
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	color: #fff;
	display: flex;
	gap: 8.57px;
	align-items: center;
	padding-right: 35px;
	font-family: "Poppins", sans-serif;
}
.form-radio-box label.option span.label:before {
	display: block;
	content: "";
	position: absolute;
	width: 24px;
	right: 12px;
	height: 24px;
	opacity: 0.5;
	border-radius: 24px;
	border-width: 2px;
	background: linear-gradient(180deg, #CCEB9D 0%, #E5A3A3 100%);
	border: 2px solid #F32E2E;
	box-shadow: inset -1px -5px 6.8px rgba(255, 255, 255, 0.37), inset 3px 6px 5.1px rgba(34, 6, 6, 0.35);
	box-sizing: border-box;
}
.form-radio-box label.option span.label:after {
	content: "";
	position: absolute;
	right: 20px;
	width: 8px;
	height: 8px;
	background: #F32E2E;
	border-radius: 100px;
	opacity: 0;
}
.form-radio-box label.option input[type="radio"]:checked + span.label{
	border: 1px solid #DD7575BF
}
.form-radio-box label.option input[type="radio"]:checked + span.label:before{
	background: linear-gradient(180deg, #CCEB9D 0%, #E5A3A3 100%);
	border: 2px solid #F32E2E;
	opacity: 1;
	box-shadow: inset -1px -5px 6.8px rgba(255, 255, 255, 0.37), inset 3px 6px 5.1px rgba(34, 6, 6, 0.35);
}
.form-radio-box label.option input[type="radio"]:checked + span.label:after{
	opacity: 1;
}
.form-radio-box label.option span.price{
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	font-size: 12px;
	line-height: 120%;
	background: linear-gradient(75.86deg, #A7F8E8 -56.32%, #FFC247 201.28%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.form-radio-box label.option span.price strong{
	font-weight: 700;
	font-size: 16px;
}
.form-check-box label.option,
.form-check-box label.option .check-row {
	width: 100%;
	position: relative;
}
.form-check-box label.option span.label {
	width: 100%;
	position: relative;
	padding: 9.5px 16px;
	background: #0C3E6C;
	border: 1px solid #DD75754A;
	border-radius: 24px;
	font-weight: 400;
	font-size: 15px;
	line-height: 150%;
	color: #fff;
	display: flex;
	gap: 8.57px;
/*	align-items: center;*/
	padding-left: 42px;
	font-family: "Poppins", sans-serif;
}
.form-check-box label.option span.label:before {
    display: block;
    content: "";
    position: absolute;
    left: 12px;
    width: 18px;
    height: 18px;
    background: linear-gradient(75.86deg, #A7F8E8 -56.32%, #FFC247 201.28%), linear-gradient(180deg, rgba(255, 255, 255, 0.17) 0%, rgba(255, 255, 255, 0) 100%), #286C5E;
    box-shadow: 0px 1.28571px 3.21429px rgba(0, 122, 255, 0.24), 0px 0px 0px 0.642857px rgba(0, 122, 255, 0.12);
    border-radius: 4.5px;
    margin-top: 4px;
}
.form-check-box label.option span.label:after {
    content: "";
    position: absolute;
    width: 13px;
    top: 15.5px;
    height: 13px;
    left: 14px;
    background: url('../images/􀆅.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    color: #543C3C;
    opacity: 0;
}
.form-check-box label.option input[type="checkbox"]:checked + span.label:after{
	opacity: 1;
}
.days-checkbox {
	width: 100%;
	margin-bottom: 16px;
	gap: 16px;
}
.days-checkbox:last-child{
	margin-bottom: 0px;
}
.check-grid-3 {
	display: flex;
	flex-wrap: wrap;
}
.days-checkbox label.option{
	width: 31%;
	position: relative;
	display: inline-block;
}
.days-checkbox label.option:nth-child(4),
.days-checkbox label.option:nth-child(5),
.days-checkbox label.option:nth-child(6),
.days-checkbox label.option:nth-child(7){
	width: 22.8%;
}
.days-checkbox label.option .check-row {
	width: 100%;
	position: relative;
}
.top-star {
	position: absolute;
	right: 12px;
	top: 16px;
	z-index: 1;
}
.days-checkbox label.option input[type="checkbox"] {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: pointer;
	z-index: 1;
}
.days-checkbox label.option span.label {
	width: 100%;
	position: relative;
	padding: 12px 12px;
	background: #0C3E6C;
	border: 1px solid #DD75754A;
	border-radius: 24px;
	font-weight: 400;
	font-size: 15px;
	line-height: 150%;
	color: #fff;
	display: flex;
	gap: 8.57px;
	align-items: center;
	font-family: "Poppins", sans-serif;
	flex-direction: column;
}
.days-checkbox label.option span.label:before,
.days-checkbox label.option span.label:after{
	display: none;
}
.days-checkbox label.option span.label span.day-cls {
    padding-left: 27px;
    padding-bottom: 0px !important;
    font-family: inherit;
    font-size: inherit;
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}
.days-checkbox label.option span.label span.day-cls:before {
	display: block;
	content: "";
	position: absolute;
	left: 0px;
	width: 18px;
	height: 18px;
	background: linear-gradient(75.86deg, #A7F8E8 -56.32%, #FFC247 201.28%), linear-gradient(180deg, rgba(255, 255, 255, 0.17) 0%, rgba(255, 255, 255, 0) 100%), #286C5E;
	box-shadow: 0px 1.28571px 3.21429px rgba(0, 122, 255, 0.24), 0px 0px 0px 0.642857px rgba(0, 122, 255, 0.12);
	border-radius: 4.5px;
}
.days-checkbox label.option span.label span.day-cls:after {
    content: "";
    position: absolute;
    width: 13px;
    height: 13px;
    left: 2px;
    margin-top: -0.1px;
    background: url('../images/􀆅.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    color: #543C3C;
    opacity: 0;
}
.days-checkbox label.option input[type="checkbox"]:checked + span.label span.day-cls:after {
	opacity: 1;
}
.check-select-box {
	width: 100%;
	position: relative;
	z-index: 2;
	cursor: pointer;
}
.check-select-box select {
    width: 100%;
    padding: 10.5px 15px;
    padding-right: 40px;
    background-color: #0C3E6C;
    border: 1px solid rgba(221, 117, 117, 0.24);
    border-radius: 24px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: rgb(255 255 255 / 100%);
    line-height: normal;
    cursor: pointer;
    outline: none;
    appearance: none;
    min-height: 48px;
    background-image: url('../images/select-arrow.svg');
    background-repeat: no-repeat !important;
    background-size: 30px !important;
    background-position: 88%;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.check-select-box select[disabled]{
	color: rgb(255 255 255 / 60%);
}
.form-btn {
	width: 100%;
	padding: 0px 0px 32px;
	text-align: center;
	position: relative;
	z-index: 1;
}
.form-btn-inner {
    background: #133A35;
    opacity: 1;
    padding-top: 8px;
    padding-right: 8px;
    padding-bottom: 8px;
    padding-left: 8px;
    border-radius: 32px;
    display: flex;
    align-items: center;
    gap: 24px;
}
.form-btn-inner button {
	opacity: 1;
	padding-top: 12px;
	padding-right: 24px;
	padding-bottom: 12px;
	padding-left: 24px;
	border-radius: 24px;
	width: 100%;
	background: #0EA284;
	color: #fff;
	border: 0px;
	box-shadow: none;
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	cursor: pointer;
}
.player-tabs {
	width: 100%;
}

.player-tabs .tabs {
	width: 100%;
}

.player-tabs .tab-links {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	margin-bottom: 25px;
	gap: 7.22px;
}

.player-tabs .tab-links li {
	margin: 0;
}

.player-tabs .tab-links a {
	display: block;
	padding:5.85714px 6.85714px 6.85714px;
	width: 91.86px;
	height: 36px;
	background: rgba(12, 62, 108, 0.81);
	opacity: 0.7;
	border: 0.857143px solid rgba(243, 46, 46, 0.35);
	border-radius: 20.5714px;
	text-align: center;
	text-decoration: none;/* Player 2 */
	font-family: "Poppins", sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 15.4286px;
	line-height: 150%;
	text-align: center;
	color: #FFFFFF;
	position: relative;
}
.player-tabs .tab-links a .tab-error-indicator {
    position: absolute;
    background: transparent !important;
    color: red;
    font-size: 24px;
    right: 6px;
}
.player-tabs .tab-links li.active a {
    background: linear-gradient(180deg, #CCEB9D 0%, #E5A3A3 100%);
    border: 0.857143px solid #F32E2E;
    box-shadow: inset -0.857143px -4.28571px 5.82857px rgba(255, 255, 255, 0.37), inset 2.57143px 5.14286px 4.37143px rgba(34, 6, 6, 0.35);
    border-radius: 20.5714px;
    font-weight: 600;
    color: #000000;
    opacity: 1;
}
.player-tabs .tab-content .tab {
	display: none;
}

.player-tabs .tab-content .tab.active {
	display: block;
}
.player-tabs .form-details{
	width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: #0A203EBD;
    border: 1px solid #C3363647;
    padding: 12px;
    border-radius: 24px;
}
.player-tabs .form-detail-row.textarea-box {
    gap: 0;
}
.player-tabs .form-detail-row {
	width: 100%;
	display: flex;
	gap: 16px;
}
.player-tabs .form-detail-col {
	width: 50%;
	display: flex;
	flex-direction: column;
	gap: 8px;
	position: relative;
}
.form-detail-col label{
	font-weight: 400;
	font-size: 14px;
	line-height: 150%;
	color: #FFFFFF;
	font-family: "Poppins", sans-serif;
	padding-left: 8px;
	padding-right: 8px;
}
.form-detail-col input,
.form-detail-col select,
.form-detail-col textarea {
	padding:9px 20px 8px;
	padding-right: 30px;
	width: 100%;
	/* height: 48px; */
	background-color: #0C3E6C;
	border-radius: 24px;
	font-family: "Poppins", sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	color: #FFFFFF;
	box-shadow: none !important;
	outline: none !important;
	border: 0px;
	appearance: none;
	min-height: 48px;
	text-overflow: ellipsis;
    white-space: nowrap;
}
.form-detail-col input::-webkit-input-placeholder,
.form-detail-col select::-webkit-input-placeholder,
.form-detail-col textarea::-webkit-input-placeholder{
	color: rgb(255 255 255 / 60%);
	font-weight: 200;
}
.form-detail-col select {
	cursor: pointer;
	outline: none;
	appearance: none;
	min-height: 48px;
	background-image: url('../images/select-arrow.svg');
	background-repeat: no-repeat !important;
	background-size: 30px !important;
	background-position: 95%;
	color: rgb(255 255 255 / 100%);
}

.form-detail-col .time-select{
	background-image: url('../images/time.svg');
}
.form-detail-col input[type="date"]{
	background-image: url('../images/calendar-icon.svg');
	background-repeat: no-repeat;
    background-position: 95% center;
    padding-right: 0px;
}

.form-detail-col select[disabled]{
	color: rgb(255 255 255 / 60%);
}

.form-detail-col .age {
	cursor: pointer;
	outline: none;
	appearance: none;
	padding-right: 20px;
	/*background-image: url('https://wut-test-env.com/padelpeer/wp-content/uploads/2025/10/time.svg');
	background-repeat: no-repeat !important;
	background-size: 30px !important;
	background-position: 95%;*/
}
.form-detail-row.textarea-box .form-detail-col {
	display: flex;
	flex-direction: column;
	width: 100%;
	gap: 8px;
}
.form-detail-row.textarea-box .form-detail-col textarea {
	min-height: 100px;
}
/* Hide calendar icon in Chrome, Edge, Safari */
input[type="date"]::-webkit-calendar-picker-indicator {
	opacity: 0;
	/*-webkit-appearance: none;*/
}

/* Hide calendar icon in Firefox */
input[type="date"]::-moz-focus-inner {
	border: 0;
}

input[type="date"] {
	appearance: none;        /* Standard */
	-webkit-appearance: none; /* Chrome/Safari */
	-moz-appearance: none;    /* Firefox */
	/*background: none;*/
}
.player-tabs .form-detail-row .form-label {
	margin-bottom: 0px;
}
.player-tabs .form-detail-row .form-radio-box {
	margin-bottom: 0px;
}
.lesson-form-wrapper .hide {
    display: none !important;
}
.lesson-form-wrapper .form-btn-inner {
    display: flex;
    gap: 10px;
    justify-content: center;
}
.lesson-form-wrapper .check-select-box select:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.lesson-form-wrapper .form-message {
    text-align: center;
    margin-top: 15px;
    padding: 10px;
    border-radius: 5px;
    display: none;
}
.lesson-form-wrapper .form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block !important;
}
.lesson-form-wrapper .form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block !important;
}

/* Validation Styles */
.lesson-form-wrapper .validation-message {
    color: #dc3545;
    font-size: 14px;
    margin: 15px 0;
    padding: 0;
    min-height: 0;
    transition: all 0.3s ease;
    display: none;
}
.lesson-form-wrapper .validation-message.show {
    padding: 0px;
    background-color: transparent;
    border: 0px;
    border-radius: 4px;
    min-height: auto;
    display: block;
    text-align: left;
    margin-bottom: 0px;
}
.lesson-form-wrapper .field-error {
    color: #dc3545;
    font-size: 12px;
    display: block;
    margin-top: 5px;
    min-height: 20px;
    line-height: 1.4;
}
.player-tabs .form-detail-col span.field-error {
    position: absolute;
    bottom: -20px;
    margin: 0px;
    line-height: normal;
    left: 8px;
}
.lesson-form-wrapper input.error, .lesson-form-wrapper select.error {
    border: 1px solid #dc3545 !important;
    color: #dc3545 !important;
    margin-bottom: 10px;
}
.lesson-form-wrapper input.error::-webkit-input-placeholder {
	color: #dc3545 !important;
}
.lesson-form-wrapper select.error {
	background-color: transparent !important;
}
.lesson-form-wrapper .required {
    color: #dc3545;
    font-weight: bold;
}

/* Tab Error Indicator */
.lesson-form-wrapper .tab-error-indicator {
    display: none;
    width: 8px;
    height: 8px;
    background-color: #dc3545;
    border-radius: 50%;
    margin-left: 5px;
    display: inline-block;
    opacity: 0;
    transition: opacity 0.3s;
}
.lesson-form-wrapper .tab-error-indicator.show {
    opacity: 1;
}

/* Membership error styling */
.lesson-form-wrapper .membership-error {
    margin-bottom: 10px;
}
.form-radio-box.membership-radio.error {
    position: relative;
    padding-bottom: 27px;
}
span.field-error.membership-error {
    position: absolute;
    bottom: -5px;
    margin: 0px;
    display: none;
}
.trainer-slider {
    position: relative;
}
.trainer-slider .elementor-swiper-button {
    top: initial !important;
}
.trainer-slider .swiper{
	width: 100% !important;
}
.trainer-slider .swiper-pagination {
    left: 0px !important;
    transform: initial !important;
    right: inherit !important;
    text-align: left;
    width: 100% !important;
    padding-left: 0px;
    max-width: 100% !important;
}
.customer-testimonial {
    -webkit-font-smoothing: antialiased;
}
.customer-testimonial .elementor-main-swiper.swiper {
    padding-bottom: 60px !important;
    padding-left: 10px;
    padding-right: 10px;
    width: 100% !important;
}
.customer-testimonial .elementor-swiper-button svg{
	display: none !important;
}
.customer-testimonial .elementor-swiper-button {
    top: 30% !important;
}
.customer-testimonial .swiper-pagination {
    bottom: -15px !important;
}
.customer-testimonial .elementor-swiper-button:after{
	content: "";
	position: absolute;
	width: 48px;
	height: 48px;
	background-size: contain !important;
	background-repeat: no-repeat !important;
	background-position: center !important;
}
.customer-testimonial .swiper {
    width: 100% !important;
}
.customer-testimonial .elementor-swiper-button-prev:after{
	background: url('../images/Slider-Arrow-prev.svg');
	left:-24px;
}
.customer-testimonial .elementor-swiper-button-next:after{
	background: url('../images/Slider-Arrow-next.svg');
	right:-24px;
}









.court-block {
    width: 100%;
    display: flex;
    gap: 30px;
}
.court-number-list {
    width: 100%;
}
.court-number-list ul{
	margin:0px;
	padding: 0px;
	display: flex;
	align-items: center;
	list-style: none;
	gap: 7.22px;
}
.court-number-list ul li {
    display: block;
    padding: 5.85714px 6.85714px 6.85714px;
    width: 36px;
    height: 36px;
    background: rgba(12, 62, 108, 0.81);
    opacity: 0.7;
    border: 0.857143px solid rgba(243, 46, 46, 0.35);
    border-radius: 20.5714px;
    text-align: center;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 15.4286px;
    line-height: 150%;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    cursor: pointer;
}
.court-number-list ul li.active {
    background: linear-gradient(180deg, #CCEB9D 0%, #E5A3A3 100%);
    border: 0.857143px solid #F32E2E;
    box-shadow: inset -0.857143px -4.28571px 5.82857px rgba(255, 255, 255, 0.37), inset 2.57143px 5.14286px 4.37143px rgba(34, 6, 6, 0.35);
    border-radius: 20.5714px;
    font-weight: 600;
    color: #000000;
    opacity: 1;
}
.range-block {
    width: 100%;
    margin-top: 20px;
}
.range-block .form-label label span {
    color: #fff;
}
.range-block .form-label label span span{
    color:#D15959;
}

.slider-container {
  max-width: 300px;
  width: 100%;
}

.slider-container .value-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  margin-top: 10px;
  position: relative;
}

.slider-container .value-labels span {
    flex: 1;
    text-align: center;
    color: #FFFFFF8F;
    font-size: 12px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    position: relative;
}
.slider-container .value-labels span:before {
    content: "";
    position: absolute;
    top: -8px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 1px;
    height: 7px;
    background: #F32E2E7A;
    border-radius: 18px;
}
.slider-container .value-labels span.active {
  color: #fff;
  font-weight: 700;
}

.slider-container input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  height: 10px;
  background: transparent;
  margin: 0;
}

/* Track */
.slider-container input[type=range]::-webkit-slider-runnable-track {
  height: 6px;
  background: linear-gradient(to right, #f32e2e9e 0.61%, #C4B8B8 var(--progress), #ccc var(--progress), #ccc 100%);
  border-radius: 10px;
}


/* Thumb */
.slider-container input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 15px;
    width: 15px;
    background: linear-gradient(180deg, #CCEB9D 0%, #E5A3A3 100%);
    border: 3px solid #F32E2E;
    border-radius: 50%;
    cursor: pointer;
    margin-top: -5px;
    position: relative;
    z-index: 2;
    right: 7px;
}

.slider-container input[type=range]::-moz-range-thumb {
  height:20px;
  width: 20px;
  background: linear-gradient(180deg, #CCEB9D 0%, #E5A3A3 100%);
  border: 2px solid #F32E2E;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  z-index: 2;
}
.price-box {
    min-width: 170px;
    padding-left: 18px;
    text-align: left;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 13px;
    white-space: nowrap;
}
.price-box span{
	font-family: "Poppins", sans-serif;
	font-weight: 600;
	font-size: 20px;
	line-height: 100%;
	letter-spacing: 0px;
	color: #F89393;
}
.form-row.form-row-half {
    flex-direction: row;
    margin-top: 24px;
}
.quantity-block {
    width: 100%;
    display: flex;
    gap: 16px;
    justify-content: space-between;
}
.quantity-block-col {
    width: 100%;
}
.tab-box .e-n-tabs-heading {
    justify-content: space-between !important;
    width: 100%;
    display: flex !important;
    flex-direction: row !important;
    flex: initial;
    flex-wrap: initial !important;
    gap: 20px !important;
    margin: 0px !important;
    padding: 10px !important;
    border-bottom: 2px solid #A6B4BC66;
    padding-bottom: 30px !important;
    margin-bottom: 20px !important;
    padding-left: 0px !important;
    padding-right: 0px !important;
}
.tab-box .e-n-tabs-heading button {
    width: 100% !important;
    max-width: 100% !important;
    display: block !important;
    flex: initial;
    padding: 0px;
    position: relative;
}
.tab-box .e-n-tabs-heading button:after {
    content: "";
    position: absolute;
    bottom: -32px;
    left: 0;
    width: 100%;
    height: 3px;
    background:#4DAC99;
    opacity: 0;
}
.tab-box .e-n-tabs-heading button[aria-selected="true"]:after {
    opacity: 1;
}

/*.tab-box .title-left,
.tab-box .title-right {
    position: relative;
}
.tab-box .title-left:after {
    content: "";
    position: absolute;
    bottom: -22px;
    left: 0;
    width: 100%;
    height: 3px;
    background:#4DAC99;
}
.tab-box .title-right:after {
    content: "";
    position: absolute;
    bottom: -24px;
    left: 0;
    width: 100%;
    height: 3px;
    background:#4DAC99;
}*/
/*.tab-box .e-n-tabs-heading button:first-child span.e-n-tab-title-text:after {
    content: "Voor casual spelers";
    position: absolute;
    bottom: -50px;
    left: 0px;
    font-family: "Poppins", Sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: normal;
}
.tab-box .e-n-tabs-heading button:nth-child(2) span.e-n-tab-title-text:after {
    content: "Word een echte clubspeler";
    position: absolute;
    bottom: -50px;
    left: 3px;
    font-family: "Poppins", Sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: normal;
}*/
.tab-box .e-n-tabs-heading button[aria-selected="true"] span.e-n-tab-title-text:after{
	display: none !important;
}

.subtext p strong{
	color: #4DAC99;
}

.btn-gradient{
	background: linear-gradient(321.31deg, #DDFFF8 2.93%, #FFFCCB 193.26%);
	border: 1px solid #DDE4C6
}
.gradient-text2 {
    background:linear-gradient(100.26deg, #C159D1 -8.61%, #4DAC99 110.96%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.counter {
  display: flex;
  align-items: center;
  background-color: #14365c;
  border-radius: 999px;
  padding: 10px 15px;
  gap: 10px;
  color: white;
  font-family: sans-serif;
  font-size: 20px;
}
.span-value {
    min-width: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.counter button {
    background-color: #0A1D36;
    border: none;
    border-radius: 50%;
    color: #B0B0B0;
    font-size: 27px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.counter button.minus-btn {
    background-image: url(../images/minus-sign.svg);
    background-repeat: no-repeat;
    background-position: center center;
    font-size: 0;
}
.counter button.plus-btn {
    background-image: url(../images/plus-sign.svg);
    background-repeat: no-repeat;
    background-position: center center;
    font-size: 0;
}

.counter .divider {
    width: 1px;
    height: 22px;
    background-color: #D0C6C6;
}
.team-building-form-section .form-row.form-row-half .form-box {
    width: 50%;
}
.free-pdf {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
}
.tab_button{
	cursor: pointer;
	position: relative;
}
.tab_button:after {
    content: "";
    position: absolute;
    bottom: -22px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #4DAC99;
    opacity: 1;
}
.tab_button.disable:after{
	opacity: 0;
}
.tab_button h2{
	margin:13px 0px 0px;
	display: block;
    font-family: "Poppins", Sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #000;
}
.tab_button.disable h2{
	color: #a6b4bc;
}
.tab_button.disable:hover h3,
.tab_button.disable:hover h2{
	color: #000 !important;
}

.form-detail-col input.error, 
.form-detail-col select.error, 
.form-detail-col textarea.error {
    border-width: 1px;
    border-style: solid;
}

.slider-container .value-labels span.disabled {
    opacity: 0;
    pointer-events: none;
    min-width: 42px;
}
.slider-container .value-labels span.disabled.hidden{
	display: none;
}

/* Message Styles */
.form-message {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    max-width: 400px;
    animation: slideInRight 0.4s ease-out;
}

.form-message.hide {
    display: none;
}

.form-message .message-content {
    padding: 16px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
}

.form-message.success .message-content {
    background: #10b981;
    color: white;
}

.form-message.error .message-content {
    background: #ef4444;
    color: white;
}

.form-message .message-icon {
    font-size: 20px;
    line-height: 1;
}

.form-message.success .message-icon::before {
    content: "✓";
}

.form-message.error .message-icon::before {
    content: "✕";
}

.form-message .message-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.4;
}

.form-message .message-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.form-message .message-close:hover {
    opacity: 1;
}

.form-steps .info-btn {
    padding: 0;
    border: none;
	background: none;
}
.info-with-popover{
	position: relative;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.form-message.hiding {
    animation: slideOutRight 0.3s ease-in forwards;
}

/* Error field styles */
input.error,
select.error,
textarea.error {
    border-color: #ef4444 !important;
}

.field-error {
    color: #ef4444;
    font-size: 12px;
    margin-top: 4px;
    display: block;
    min-height: 18px;
}

/* Loading state */
button[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-detail-col label span.required {
    color: red;
}

.free-pdf a svg {
    float: left;
    margin-right: 10px;
}
.free-pdf a {
    color: #ffffff;
    text-decoration: underline !important;
}
.free-pdf a:hover {
    text-decoration: none !important;
}

.timeline-area {
    position: relative;
}
.timeline-area .timeline-section .heading-area:before {
    content: "";
    position: absolute;
    width: 14px;
    height: 14px;
    background: #000;
    border-radius: 50%;
    top: 17px;
    left: -47px;
    box-shadow: 0px 0px 0px 5px #fff;
    z-index: 1;
}
.timeline-area .timeline-section .heading-area.right-dot:before {
    left: auto;
    right: -47px;
}

.timeline-area:before {
    content: "" !important;
    position: absolute;
    top: 10px !important;
    height: calc(100% - 110px) !important;
    left: 50% !important;
    width: 2px !important;
    background: #000;
    margin-left: -1px;
}

.highlight-text {
    color: #6CE4CC;
}
.flatpickr-current-month {
    display: flex !important;
}

@media (min-width: 1025px) and (max-width: 1200px) {
.header-menu ul {
    display: flex;
    flex-direction: row !important;
    flex-wrap: initial !important;
}
.logo-box {
    width: auto !important;
    margin-left: 0px !important;
    position: relative;
    left: 25px;
}

.banner-row .e-con-inner {
    flex-direction: column !important;
}
.left-col {
    width:100% !important;
}
.right-col{
    width: 100% !important;
}
}

@media (min-width: 1201px) and (max-width: 1400px) {
.left-col {
    width: 35% !important;
}
.left-col h3.elementor-headline{
    font-size: 42px !important;
    line-height: 58.8px !important;
}
.left-col .elementor-widget-text-editor {
    font-size: 18px !important;
}
.right-col{
    width: 65% !important;
}
}

@media (min-width: 768px) and (max-width: 1024px) {
.logo-box {
    width: auto !important;
}
}

@media (min-width: 501px) and (max-width: 760px) {
.trainer-slider .swiper-slide .elementor-image-box-img img {
    height: 500px !important;
    object-fit: cover;
}
}

@media (min-width: 320px) and (max-width: 500px) {
.trainer-slider .swiper-slide .elementor-image-box-img img {
    height: 400px !important;
    object-fit: cover;
}
}

@media(min-width:768px){
/*.border-center{
	position: relative;
}
.border-center:before {
    content: "" !important;
    position: absolute !important;
    top: 57% !important;
    transform: translateY(-50%) !important;
    left: 0 !important;
    right: 0 !important;
    margin: 0 auto !important;
    background-image: url(
    '/padelpeer/wp-content/uploads/2025/10/Vector-10.svg') !important;
    background-size: contain !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    height: 48% !important;
    width: 10px !important;
    z-index: 1 !important;
}*/

}


@media(max-width:1400px){
.days-checkbox label.option:nth-child(4), 
.days-checkbox label.option:nth-child(5), 
.days-checkbox label.option:nth-child(6), 
.days-checkbox label.option:nth-child(7) {
    width: 22.3%;
}
.days-checkbox label.option span.label span.day-cls {
    padding-left: 25px;
}
.days-checkbox label.option span.label span.day-cls:before {
    width: 17px;
    height: 17px;
}
.days-checkbox label.option span.label span.day-cls:after {
    width: 11px;
    height: 11px;
    left: 3px;
}
.days-checkbox label.option span.label {
    font-size: 13px;
}
}

@media(max-width:1230px){
.form-check-box label.option span.label:before {
    top: 13.5px;
    margin-top: 0px;
}
.form-check-box label.option span.label:after {
    top: 15px;
    left: 15px;
}
}

@media (max-width: 1200px){
	.form-container-inner {
	    max-height: initial;
	}
}

@media(max-width:1180px){
.days-checkbox label.option {
    width: 48.7% !important;
}	
}

@media(max-width:992px){
	.days-checkbox label.option {
	    width: 48.4% !important;
	}
	.tab-box .e-n-tabs-heading button:nth-child(2) span.e-n-tab-title-text:after {
	    font-size: 22px;
	}
}

@media (min-width: 501px) and (max-width: 600px){
	.trainer-slider .swiper-pagination {
	    top: auto !important;
	}
}

@media(max-width:767px){
	.timeline-area:before {
		left: 2% !important;
	}


	.form-container {
	    padding-top: 16px;
	    padding-left: 16px;
	    padding-right: 8px;
	}
	.form-container-inner {
	    padding-right: 8px;
	}
	.form-btn {
		padding:16px 0px;
	}
	.form-radio-box label.option span.label {
		font-size: 14px;
		min-height: 60px;
		flex-direction: column;
		align-items: flex-start;
		justify-content: center;
		gap: 3px;
	}
	.form-radio-box label.option span.price {
		display: flex;
	}
	.form-radio-box label.option span.price strong {
		font-size: 14px;
	}
	.form-check-box label.option span.label {
		font-size: 14px;
	}
	.days-checkbox label.option {
	    width: 47.9% !important;
	}
	.days-checkbox label.option:nth-child(4), 
	.days-checkbox label.option:nth-child(5), 
	.days-checkbox label.option:nth-child(6), 
	.days-checkbox label.option:nth-child(7) {
		width: 47.9%;
	}
	.player-tabs .tab-links {
	    list-style: none;
	    padding: 0;
	    margin: 0;
	    display: flex;
	    margin-bottom: 20px;
	    gap: 7.22px;
	    overflow-x: auto;
	    overflow-y: hidden;
	    padding-bottom: 10px;
	}
	.form-detail-row.form-detail-row-age {
		flex-direction: column;
	}
	.form-detail-row.form-detail-row-age .form-detail-col {
		width: 100%;
	}
	.player-tabs .form-detail-row .form-label label {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}
	.player-tabs .form-detail-row .form-radio-box {
		grid-template-columns: repeat(1, 1fr);
	}
	.player-tabs .form-detail-row .form-radio-box span.label {
		gap: 8.57px;
		font-size: 16px;
		flex-direction: row;
		align-items: center;
		justify-content: flex-start;
		min-height: 48px;
	}
	span.slash {
		display: none;
	}
	.form-radio-box label.option span.label:before {
		width: 20px;
		right: 7px;
		height: 20px;
	}
	.form-radio-box label.option span.label:after {
		right: 13px;
	}
	.check-select-box select {
		min-height: 45px;
		background-size: 24px !important;
		font-size: 14px;
	}
	.player-tabs .form-detail-row {
	    flex-direction: column;
	}
	.player-tabs .form-detail-col {
	    width: 100%;
	    flex-direction: column;
	}
	.customer-testimonial .elementor-swiper-button-next:after {
	    right: -22px;
	}
	.customer-testimonial .elementor-swiper-button-prev:after {
	    left: -22px;
	}
	.trainer-slider .swiper {
	    width: 100% !important;
	    padding-right: 130px;
	}
	.trainer-slider .swiper .swiper-slide{
		padding-left: 10px;
		padding-right: 10px;
	}
	.trainer-slider .swiper-pagination {
	    padding-left: 6px;
	}

	.form-check-box label.option span.label:after {
	    top: 16px;
	}
	.tab-box .title-left:after {
	    bottom: -22px;
	}
	.tab-box .e-n-tabs-heading button:nth-child(2) span.e-n-tab-title-text:after,
	.tab-box .e-n-tabs-heading button:first-child span.e-n-tab-title-text:after {
	    bottom: -67px;
	    font-size: 16px;
	}
	.title-left .elementor-heading-title,
	.tab-box .e-n-tabs-heading button:first-child span.e-n-tab-title-text:after {
	    max-width: 100px;
	}
	.title-right .elementor-heading-title,
	.tab-box .e-n-tabs-heading button:nth-child(2) span.e-n-tab-title-text:after {
	    max-width: 200px;
	}
	.list-ul ul {
	    padding-left: 10px !important;
	}
	.tab-box .e-n-tabs-heading {
	    gap: 10px !important;
	}
	.tab-box button.e-n-tab-title .e-n-tab-title-text h2 {
	    max-width: 130px;
	}
	.tab_button h2 {
	    font-size: 16px;
	    max-width: 150px;
	}
}

@media(max-width:600px){
	.trainer-slider .elementor-swiper-button {
	    bottom: -36px !important;
	}
}

@media(max-width:500px){
.days-checkbox label.option {
    width: 47% !important;
}
.customer-testimonial .elementor-main-swiper.swiper {
    padding-bottom: 45px !important;
}
.customer-testimonial .elementor-swiper-button:after{
	display: none !important;
}

.trainer-slider .elementor-image-box-title {
    margin-top: 0px;
}
.trainer-slider .swiper {
    padding-right:100px;
}
body .trainer-slider .swiper-pagination {
    bottom: 5px !important;
    top: initial !important;
}
.trainer-slider .swiper-slide {
    min-width: 220px !important;
}
.trainer-slider .elementor-swiper-button{
	--e-n-carousel-arrow-prev-top-position: 250px !important;
	--e-n-carousel-arrow-next-top-position: 250px !important;
}
.tab-box .title-left:after {
    bottom: -21.11px;
}
.title-right{
    margin-left: 7px;
}
.timeline-area:before {
    height: calc(100% - 0px) !important;
}
.free-pdf {
    margin-bottom: -18px;
}
}


@media(max-width:400px){
	.form-radio-box label.option span.label,
	.form-radio-box label.option span.price strong,
	.form-check-box label.option span.label {
		font-size: 11px;
	}
	.days-checkbox label.option span.label {
		font-size: 14px;
	}
	.days-checkbox label.option span.label span.day-cls:before {
		width: 18px;
		height: 18px;
	}
	.days-checkbox label.option span.label span.day-cls {
		padding-left: 26px;
	}
	.days-checkbox label.option span.label span.day-cls:after {
		width: 12px;
		height: 12px;
		top: 4px;
		left: 3px;
	}
	.top-star {
		right: 8px;
	}
	.form-radio-box {
		column-gap: 6px;
		row-gap: 14px;
	}
	.player-tabs .form-detail-row .form-radio-box span.label ,
	.form-detail-col input, .form-detail-col select, .form-detail-col textarea {
		font-size: 14px;
	}
	.days-checkbox {
	    gap: 9px;
	}
	.days-checkbox label.option {
	    width: 48% !important;
	}
	.form-check-box label.option span.label:after {
	    width: 12px;
	    height: 12px;
	    left: 14.5px;
	}
	.wrap-box {
	    flex-direction: column !important;
	}
	.full-col {
	    width: 100% !important;
	}
}
