/* =========================================================
   Оповещения на телефон о запросах на удаление
   ========================================================= */

.delete-phone-enable-btn {
    border-color: #f59e0b !important;
    background: #fffbeb !important;
    color: #92400e !important;
    font-weight: 900 !important;
}

.delete-phone-enable-btn.delete-phone-enabled {
    border-color: #16a34a !important;
    background: #f0fdf4 !important;
    color: #166534 !important;
}

.delete-phone-notify-toast {
    position: fixed;
    left: 14px;
    top: 14px;
    width: 360px;
    max-width: calc(100vw - 28px);

    z-index: 2147483647;

    padding: 12px;
    border-radius: 16px;
    border: 2px solid #f59e0b;
    border-left-width: 8px;
    background: #fffbeb;
    color: #111827;
    box-shadow: 0 22px 60px rgba(15, 23, 42, .32);

    animation: deletePhoneToastIn .22s ease-out;
}

@keyframes deletePhoneToastIn {
    from {
        opacity: .2;
        transform: translateX(-14px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.delete-phone-notify-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.delete-phone-notify-head strong {
    color: #9a3412;
    font-size: 16px;
    font-weight: 900;
}

.delete-phone-notify-head button {
    width: 30px !important;
    min-width: 30px !important;
    height: 30px !important;
    min-height: 30px !important;
    padding: 0 !important;
    border-radius: 10px !important;
    border: 1px solid #fed7aa !important;
    background: #ffffff !important;
    color: #9a3412 !important;
    font-size: 20px !important;
    line-height: 1 !important;
}

.delete-phone-notify-body {
    display: grid;
    gap: 5px;
    font-size: 13px;
    line-height: 1.35;
}

.delete-phone-notify-body b {
    color: #92400e;
}

.delete-phone-notify-count {
    margin-top: 4px;
    padding: 5px 8px;
    border-radius: 999px;
    background: #fed7aa;
    color: #9a3412;
    font-weight: 900;
    text-align: center;
}

.delete-phone-notify-actions {
    margin-top: 10px;
}

.delete-phone-notify-actions button {
    width: 100%;
    min-height: 38px;
    border: none;
    border-radius: 10px;
    background: #f59e0b;
    color: #ffffff;
    font-weight: 900;
    cursor: pointer;
}

@media (max-width: 950px) {
    .delete-phone-notify-toast {
        left: 8px;
        top: 8px;
        width: calc(100vw - 16px);
        max-width: calc(100vw - 16px);
    }

    .delete-phone-enable-btn {
        width: 100% !important;
    }
}
