
/* супорт поп ап */
.support-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1001;
    /* Выше основного pop-up */
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.support-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.support-popup-container {
    background: #141114;
    border-radius: 18px;
    width: 400px;
    padding: 25px;
    position: relative;
}

.support-popup-container h3 {
    font-family: "SF", serif;
    font-weight: 700;
    font-size: 22px;
    color: white;
    margin-bottom: 20px;
    text-align: center;
}

.support-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.support-link {
    color: #00BF56;
    font-family: "SF";
    font-size: 16px;
    text-decoration: none;
    transition: color 0.2s;
    text-align: center;
    transition: all 0.4s;
}

.support-link:hover {
    color: #ececec;
}

.close-support-popup-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #777;
}


.support-link {
    width: 100%;
    height: 64px;
    border-radius: 16px;
    background: rgba(40, 132, 249, 1);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.support-link img {
    margin-right: 30px;
}

.support-link span {
    margin-left: 30px;
}

.close-popup-btn img,
.close-support-popup-btn img {
    transition: opacity 0.2s linear;
}

.close-popup-btn:hover img,
.close-support-popup-btn:hover img {
    content: url('../../images/icons/close-ico.png');
    opacity: 1;
    visibility: visible;
}

