/***<<--- Advanced Toggle --->>***/

/* .wdt-advanced-checkbox-toggle {
    display: none;
}
.wdt-advanced-checkbox-toggle + label {
    position: relative;
    cursor: pointer;
    outline: none;
    -moz-user-select: -moz-none;
    -ms-user-select: none;
    -webkit-user-select: none;
    user-select: none;
    width: 40px;
    height: 20px;
    background-color: #e4e4e4;
    -moz-border-radius: 60px;
    -webkit-border-radius: 60px;
    border-radius: 60px;
    -moz-transition: background 0.4s;
    -o-transition: background 0.4s;
    -webkit-transition: background 0.4s;
    transition: background 0.4s;
}
.wdt-advanced-checkbox-toggle + label::before, .wdt-advanced-checkbox-toggle + label::after {
    content: "";
    display: block;
    position: absolute;
}
.wdt-advanced-checkbox-toggle + label::before {
    right: 1px;
    left: 1px;
    top: 1px;
    bottom: 1px;
    background-color: #f1f1f1;
    -moz-border-radius: 60px;
    -webkit-border-radius: 60px;
    border-radius: 60px;
    -moz-transition: background 0.4s;
    -o-transition: background 0.4s;
    -webkit-transition: background 0.4s;
    transition: background 0.4s;
}
.wdt-advanced-checkbox-toggle + label::after {
    top: -1px;
    left: 0;
    width: 22px;
    height: 22px;
    background-color: #fff;
    -moz-border-radius: 100%;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    -moz-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    -moz-transition: -moz-transform 0.4s;
    -o-transition: -o-transform 0.4s;
    -webkit-transition: -webkit-transform 0.4s;
    transition: transform 0.4s;
}
.wdt-advanced-checkbox-toggle:checked + label {
    background-color: #e68900;
}
.wdt-advanced-checkbox-toggle:checked + label::before {
    background-color: #ff9800;
}
.wdt-advanced-checkbox-toggle:checked + label::after {
    -moz-transform: translateX(20px);
    -ms-transform: translateX(20px);
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
}
.wdt-advanced-checkbox-toggle:disabled + label {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
    opacity: 0.5;
    cursor: default;
} */

input.wdt-advanced-checkbox-toggle {
    position: relative;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    width: clamp(3.75rem, 3.4615rem + 1.2821vw, 5rem) !important;
    /* 40px to 80px */
    height: clamp(1.875rem, 1.7308rem + 0.641vw, 2.5rem);
    /* 30px to 40px */
    border-radius: var(--wdtRadius_Part);
    cursor: pointer;
    background: transparent;
    transition: box-shadow 0.3s ease-in-out, padding 0.25s ease-in-out, border-color .3s linear;
    transition-delay: 0.1s, 0s;
    outline: 0px;
}

input.wdt-advanced-checkbox-toggle:hover {
    border-color: var(--wdtPrimaryColor) !important;
}

input.wdt-advanced-checkbox-toggle:focus {
    border: 0;
    outline: 0;
}

input.wdt-advanced-checkbox-toggle:checked {
    transition-delay: 0s, 0s;
    box-shadow: inset 0 0 0 0em #00c169 !important;
    padding-left: clamp(1.875rem, 1.7308rem + 0.641vw, 2.5rem);
    /* 30px to 40px */
    outline: none;
}

input.wdt-advanced-checkbox-toggle:before {
    display: inline-block;
    height: clamp(1.25rem, 1.1058rem + 0.641vw, 1.875rem);
    /* 20px to 30px */
    width: clamp(1.25rem, 1.1058rem + 0.641vw, 1.875rem);
    /* 20px to 30px */
    margin: 4px;
    background: linear-gradient(90deg, var(--wdtPrimaryColor) 0%, var(--wdtSecondaryColor) 100%);
    ;
    border-radius: var(--wdtRadius_Part);
    transition: all 0.1s ease 0.1s;
}

input.wdt-advanced-checkbox-toggle:before,
input.wdt-advanced-checkbox-toggle:after {
    content: "";
    display: block;
}

input.wdt-advanced-checkbox-toggle:active::before {
    transition: all 0.1s ease 0.05s;
}

.wdt-advanced-toggle-container .wdt-advanced-toggle-switcher-container {
    display: inline-flex;
    align-items: center;
    column-gap: 20px;
    width: 100%;
    margin: 0 auto 60px;
}

.elementor-widget-container .wdt-advanced-toggle-container .wdt-advanced-toggle-left-section-title,
.elementor-widget-container .wdt-advanced-toggle-container .wdt-advanced-toggle-right-section-title {
    font-family: var(--wdtFontTypo_Base);
    font-size: var(--wdtFontSize_Base);
}

@media screen and (max-width: 1540px){
    .wdt-advanced-toggle-container .wdt-advanced-toggle-switcher-container{
        margin: 0 auto 50px;
    }
}

@media screen and (max-width: 1280px){
    .wdt-advanced-toggle-container .wdt-advanced-toggle-switcher-container{
        margin: 0 auto 40px;
    }
}

@media screen and (max-width: 767px) {
    .wdt-advanced-toggle-container .wdt-advanced-toggle-switcher-container {
        margin: 0 auto 30px;
    }
}

@media screen and (max-width: 479px) {
    .wdt-advanced-toggle-container .wdt-advanced-toggle-switcher-container {
        flex-direction: column;
        gap: 10px;
    }

    input.wdt-advanced-checkbox-toggle {
        margin: 0;
    }
}