.sms-notice-wrap{
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 99999999 !important;
    display: flex;
    justify-content: center;
    pointer-events: none;
}

.sms-notice{
    min-width: 260px;
    max-width: 420px;
    padding: 10px 18px;
    border-radius: 999px;
    box-shadow: 0 8px 24px rgba(0,0,0,.16);
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity .25s ease, transform .25s ease;
    pointer-events: auto;
}

.sms-notice--success{
    background: #e9f9ef;
    color: #0e8a3d;
}

.sms-notice--error{
    background: #fdebea;
    color: #c0392b;
}

.sms-notice.is-visible{
    opacity: 1;
    transform: translateY(0);
}

.sms-notice-add-product .sms-notice {
    opacity: 100%;
    transform: unset;
    margin-top: 8px;
    font-size: 13px;
    font-weight: 600;
    background: unset !important;
    padding-left: 0;
    box-shadow: none;
}

#reg_sms_code[disabled]{
    opacity: 1 !important;
}
button#send_sms_code.start_timeline {
    background: #fff;
    border:solid 1px #4caf50;
    color: #2f6d31;
}