@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(Inter-Regular.otf) format('woff2');
}

.lock {
    overflow: hidden;
}

.popup-social-btns {
    opacity: 0;
    pointer-events: none;
    user-select: none;
}

.popup-social-btns.active {
    opacity: 1;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 900;
    overflow-y: auto;
    overflow-x: hidden;
    transition: all 0.3s ease 0s;
    pointer-events: all;
    /* user-select: all; */
}

.social-btns * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    box-shadow: none;
    border: none;
    outline: none;
    background: none;
    text-decoration: none;
}

.social-btns {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: center;
    padding: 50px 80px 70px;
    gap: 32px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #000000;
    border: 1px solid #DCBC67;
    border-radius: 28px;
    z-index: 999;
    transition: opacity 0.6s ease-in-out;
    opacity: 0;
}

.social-btns_minimized {
    padding: 24px;
    gap: 32px;
    top: auto;
    left: auto;
    bottom: 35px;
    right: 46px;
    border-radius: 24px;
    transition: opacity 0.6s ease-in-out;
    transform: none;
}

.social-btns_active {
    opacity: 1;
}

.social-btns__title {
    max-width: 440px;
    width: 100%;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 50px;
    line-height: 61px;
    text-align: center;
    background: linear-gradient(90deg, #DCBC67 0%, #766537 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 1;
}

.social-btns__buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    flex-flow: row nowrap;
    transition: all 0.4s ease-in-out;
}

.social-btns_minimized .social-btns__buttons {
    pointer-events: none;
    user-select: none;
}


.social-btns__buttons img {
    width: 80px;
    height: 80px;
    display: block;
}

.social-btns__button {
    position: relative;
}

.social-btns__button::after {
    content: "";
    position: absolute;
    inset: -3px;
}

.social-btns__close {
    width: 16px;
    height: 16px;
    position: absolute;
    top: 19px;
    right: 21.5px;
    cursor: pointer;
}

.social-btns__close::after {
    content: "";
    position: absolute;
    inset: -5px;
}

.social-btns__close svg {
    width: 100%;
    height: 100%;
}


@media (max-width: 992px) {
    .social-btns {
        padding: 32px 60px 40px;
    }

    .social-btns__title {
        font-size: 32px;
        line-height: 39px;
    }

    .social-btns.social-btns_minimized {
        padding: 24px;
        bottom: 32px;
        right: 32px;
        border-radius: 24px;
    }

    .social-btns__buttons img {
        width: 60px;
        height: 60px;
    }

    .social-btns__button {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 575px) {
    .social-btns {
        padding: 24px 32px 32px;
		gap: 24px;
    }

    .social-btns__title {
        font-size: 28px;
        line-height: 34px;
    }

    .social-btns.social-btns_minimized {
        padding: 12px;
        bottom: 18px;
        right: 18px;
        border-radius: 16px;
    }

    .social-btns__buttons img {
        width: 50px;
        height: 50px;
    }

    .social-btns__button {
        width: 50px;
        height: 50px;
    }

    .social-btns__close {
        width: 12px;
        height: 12px;
        top: 19px;
        right: 14px;
    }
}