/* Тост */

#telegramBotToast {
    padding: 16px;
    background-color: #ffffff;
    border-radius: 14px;
    position: relative;
    width: 420px;
    border: 1px solid #F6F7FE !important;
}

.close-toast-telegram {
    display: flex;
    position: absolute;
    border: none;
    border-radius: 50%;
    background-color: transparent;
    right: 6px;
    top: 6px;
    padding: 0;
    height: 26px;
    width: 26px;
    align-items: center;
    justify-content: center;
}

.close-img-hover {
    display: none;
}

.close-toast-telegram:hover {
    .close-img-hover {
        display: inline;
    }

    .close-img {
        display: none;
    }
}

.telegram-toast-container {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    align-items: start;
}

.telegram-toast-img {
    width: 26px;
    height: 26px;
}

.telegram-toast-subscribe {
    color: #000000;
    font-size: 16px;
    font-weight: 600;
    line-height: 130%;
    margin: 0;
}

.telegram-toast-description {
    color: rgba(37, 37, 37, 1);
    font-size: 12px;
    font-weight: 400;
    line-height: 130%;
    margin: 0 0 10px;
}

.telegram-toast-button {
    width: 100%;
    height: 35px !important;
    font-size: 12px !important;
    font-weight: 500 !important;
}

.telegram-toast-button:hover {
    outline: none;
    color: #ffffff;
    background-image: var(--gradient-green-2)
}

/* Модалка */

#telegramBotModal .width-modal {
    max-width: 591px;
}

.telegram-modal {
    padding: 52px 40px;
    border-radius: 14px;
}

.telegram-modal-button {
    margin-top: 24px;
    width: 100%;
}

.telegram-modal-subscribe {
    font-size: 26px;
    font-weight: 600;
    line-height: 130%;
    margin: 0;
}


@media (max-width:575px) {
    #telegramBotToast {
        width: 346px;
    }

    .telegram-toast-subscribe {
        width: 245px;
    }

    .telegram-modal-subscribe {
        font-size: 18px;
    }

    .telegram-modal {
        padding: 42px 20px;
    }

    #telegramBotModal .width-modal {
        max-width: 550px;
        margin-left: 1rem;
        margin-right: 1rem;
    }

}