.kdv-switcher-container {
    display: flex
    ;
        align-items: center;
        justify-content: flex-end;
        gap: 10px;
        padding: 10px;
        border-radius: 30px;
        font-size: 14px;
        width: 165px;
        float: inline-start;
}

/*.header-top-right .kdv-switcher-container {
   width: auto;
}*/

.kdv-label {
    color: #fff;
    font-weight: bold;
    user-select: none;
}

.kdv-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
    margin-bottom: 0px !important;
}

.kdv-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.kdv-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ddd;
    transition: .4s;
    border-radius: 30px;
    border: 2px solid #80b961;
}

.kdv-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 2px;
    bottom: 2px;
    background-color: #fff;
    transition: .3s;
    border-radius: 50%;
}

input:checked + .kdv-slider {
    background-color: #fff;
}

input:checked + .kdv-slider:before {
    background-color: #80b961;
    transform: translateX(30px);
}

/* Hover effect */
.kdv-slider:hover {
    box-shadow: 0 0 5px rgba(119, 244, 66, 0.3);
}

/* Active state */
.kdv-switch input:active + .kdv-slider:before {
    width: 28px;
} 
/* Mobil cihazlarda gizle */
@media (max-width: 767px) {
    .kdv-switcher-container {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 10px;
        padding: 10px;
        border-radius: 30px;
        font-size: 14px;
        width: 100% !important;
        float: none !important;
    }

    .header-top-inner .kdv-switcher-container{
        display: none !important;
    }
    
    .kdv-switcher-container .kdv-label {
        display: inline-block !important;
        color: #333 !important;
        font-weight: bold !important;
        font-size: 12px !important;
        margin: 0 5px !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}


@media(max-width: 991px) {
   .header-top-right .kdv-switcher-container {
         display: none !important;
   }   
}