.lang-modal-wrapper {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 999999999;
    background-color: rgba(98, 98, 98, 0.49);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    overflow: hidden;
}

.lang-modal {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    padding: 0 20px;
    margin: 20vh auto;
    width: 50%;
    max-width: 650px;
    height: 20%;
    min-height: 200px;
    min-width: 300px;
    box-sizing: border-box;
    background-color: #fafafa;
    border-radius: 5px;
    border: 1px #f1f0f0 solid;
    z-index: 999999999;
    box-shadow: 4px 4px 23px -1px rgba(0,0,0,0.75);
}

.lang-modal-title {
    display: flex;
    justify-content: center;
    align-items: end;
    height: 25%;
    text-align: center;
    font-weight: bold;
    font-size: 24px;
    color: #214495;
}

.lang-modal-btn-wrapper {
    display: flex;
    height: 75%;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.lang-modal-btn {
    font-family: 'PT Sans', sans-serif;
    padding: .7vh 5vw;;
    border-radius: 5px;
    box-shadow: none;
    display: block;
    font-size: 15px;
    background-color: #214495;
    color: white;
    width: calc(100% - 80px / 2);
    min-width: 115px;
    max-width: calc(100% - 80px / 2);
    border: 1px solid transparent;
    transition: all 300ms ease;
}

.lang-modal-btn:hover {
    border: 1px solid #FDF002;
    color: #FDF002;
}

.smiley {
    margin-top: 4vh ;
    width: 8em;
    height: 8em;
    display: none;
}
.smiley__eye1,
.smiley__eye2,
.smiley__mouth1,
.smiley__mouth2 {
    animation: eye1 1.5s ease-in-out infinite;
}
.smiley__eye1,
.smiley__eye2 {
    transform-origin: 64px 64px;
}
.smiley__eye2 {
    animation-name: eye2;
}
.smiley__mouth1 {
    animation-name: mouth1;
}
.smiley__mouth2 {
    animation-name: mouth2;
    visibility: hidden;
}

@keyframes eye1 {
    from {
        transform: rotate(-260deg) translate(0,-56px);
    }
    50%,
    60% {
        animation-timing-function: cubic-bezier(0.17,0,0.58,1);
        transform: rotate(-40deg) translate(0,-56px) scale(1);
    }
    to {
        transform: rotate(225deg) translate(0,-56px) scale(0.35);
    }
}
@keyframes eye2 {
    from {
        transform: rotate(-260deg) translate(0,-56px);
    }
    50% {
        transform: rotate(40deg) translate(0,-56px) rotate(-40deg) scale(1);
    }
    52.5% {
        transform: rotate(40deg) translate(0,-56px) rotate(-40deg) scale(1,0);
    }
    55%,
    70% {
        animation-timing-function: cubic-bezier(0,0,0.28,1);
        transform: rotate(40deg) translate(0,-56px) rotate(-40deg) scale(1);
    }
    to {
        transform: rotate(150deg) translate(0,-56px) scale(0.4);
    }
}
@keyframes eyeBlink {
    from,
    25%,
    75%,
    to {
        transform: scaleY(1);
    }
    50% {
        transform: scaleY(0);
    }
}
@keyframes mouth1 {
    from {
        animation-timing-function: ease-in;
        stroke-dasharray: 0 351.86;
        stroke-dashoffset: 0;
    }
    25% {
        animation-timing-function: ease-out;
        stroke-dasharray: 175.93 351.86;
        stroke-dashoffset: 0;
    }
    50% {
        animation-timing-function: steps(1,start);
        stroke-dasharray: 175.93 351.86;
        stroke-dashoffset: -175.93;
        visibility: visible;
    }
    75%,
    to {
        visibility: hidden;
    }
}
@keyframes mouth2 {
    from {
        animation-timing-function: steps(1,end);
        visibility: hidden;
    }
    50% {
        animation-timing-function: ease-in-out;
        visibility: visible;
        stroke-dashoffset: 0;
    }
    to {
        stroke-dashoffset: -351.86;
    }
}

.loader {
    width: 100px;
    height: 100px;
    background-color: red;
    display: none;
}