﻿.tabs {
    display: flex;
    position: relative;
    background-color: #fff;
    box-shadow: 0 0 1px 0 rgba(24, 94, 224, 0.15), 0 6px 12px 0 rgba(24, 94, 224, 0.15);
    padding: 0.75rem;
    border-radius: 99px;
}

.lang-container input[type="radio"] {
    display: none;
}

.tab {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    width: 50px;
    font-size: 0.8rem;
    color: black;
    font-weight: 500;
    border-radius: 99px;
    cursor: pointer;
    transition: color 0.2s ease-in, transform 0.2s ease-out, text-shadow 0.2s ease-in;
    position: relative;
    z-index: 2;
}

    .tab:hover {
        transform: scale(1.18);
        color: #185ee0;
        text-shadow: 0 1px 3px rgba(24, 94, 224, 0.3);
    }

.tab a{ z-index:9999;}

.lang-container input[type="radio"]:checked + label {
    color: #185ee0;
}

    .lang-container input[type="radio"]:checked + label > .notification {
        background-color: #185ee0;
        color: #fff;
        margin: 0px;
    }

.lang-container input[id="radio-1"]:checked ~ .glider {
    transform: translateX(0);
}

.lang-container input[id="radio-2"]:checked ~ .glider {
    transform: translateX(100%);
}

.lang-container input[id="radio-3"]:checked ~ .glider {
    transform: translateX(200%);
}

.glider {
    position: absolute;
    display: flex;
    height: 30px;
    width: 50px;
    background-color: #e6eef9;
    z-index: 1;
    border-radius: 99px;
    transition: 0.25s ease-out;
}

@media (max-width: 700px) {
    .tabs {
        transform: scale(0.9);
    }
}
