/* Месенджери на попапі "Замовлення прийнято" та "Дякуємо" (CF7) */
#order-accepted .msg-label,
#thanks .msg-label {
    font-size: 13px;
    color: #D9D9D9;
    margin: 0 0 12px;
}
#order-accepted .msg-list,
#thanks .msg-list {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 16px;
}
#order-accepted .msg-btn,
#thanks .msg-btn {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform .2s, opacity .2s;
}
#order-accepted .msg-btn:hover,
#thanks .msg-btn:hover {
    transform: translateY(-3px);
    opacity: 0.85;
}
#order-accepted .msg-btn svg,
#thanks .msg-btn svg {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: block;
}
#order-accepted .msg-note,
#thanks .msg-note {
    font-size: 11px;
    color: #62675A;
    margin: 0 0 20px;
}
@media (max-width: 480px) {
    #order-accepted .msg-list,
    #thanks .msg-list {
        gap: 10px;
    }
    #order-accepted .msg-btn,
    #thanks .msg-btn {
        width: 42px;
        height: 42px;
    }
    #order-accepted .msg-btn svg,
    #thanks .msg-btn svg {
        width: 42px;
        height: 42px;
    }
}