/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
body.has-sms__modal {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.sms-modal-overlay {
    display: none;
    position: fixed;
    overflow: hidden;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .8;
    z-index: 1000000 !important;
    background: rgba(51,51,51,.55);
}
.modal_loading { 
    display: block; 
    position: fixed; 
    z-index: 1000; 
    top: 0; 
    left: 0; 
    height: 100%; 
    width: 100%; 
    background: rgba( 255, 255, 255, .8 ) url('http://i.stack.imgur.com/FhHRx.gif') 50% 50% no-repeat; 
}
.otp-sms__popup {
    position: fixed;
    visibility: hidden;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    min-width: 0;
    -webkit-transition: visibility 0s .3s,opacity .3s ease;
    transition: visibility 0s .3s,opacity .3s ease;

}
.otp-sms__popup .error-message {
    color: #e02b27; 
    display: block;
    font-size: 100%;
}
.otp-sms__popup.show {
    z-index: 10000000 !important;
    visibility: visible;
    opacity: 1;
    -webkit-transition: opacity .3s ease;
    transition: opacity .3s ease;
}
.sms-modal-wrap {
    width: 600px;
    max-width: 80%;
    max-height: 90%;
    border-radius: 3px;
    transform: translateY(0);
    margin: 5rem auto;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    -webkit-transition: -webkit-transform .2s ease;
    transition: transform .2s ease;
    background-color: #fff;
    box-shadow: 0 0 12px 2px rgb(0 0 0 / 35%);
    opacity: 1;
    pointer-events: auto;
}
.sms-modal-header {
    padding: 2rem 3rem 1rem;
    border-bottom: 1px solid #c1c1c1;
    background: #de4227 !important;
}
.sms-modal-header .modal-title {
    border-bottom: 0;
    font-size: 20px;
    color: #fff;
    margin-bottom: 0;
    min-height: 1em;
    word-wrap: break-word;
    font-weight: 300;
    padding-bottom: 10px;
}
.sms-modal-header .btn-close-modal {
    border: none !important;
    background-image: none;
    background: 0 0;
    box-shadow: none;
    line-height: inherit;
    margin: 0;
    text-shadow: none;
    font-weight: 400;
    display: inline-block;
    position: absolute;
    right: 0;
    top: 0;
}
.sms-modal-header .btn-close-modal:before {
    color: #fff;
    -webkit-font-smoothing: antialiased;
    font-size: 32px;
    line-height: 32px;
    content: '\e616';
    font-family: 'icons-blank-theme';
    margin: 0;
    vertical-align: top;
    display: inline-block;
    font-weight: 400;
    overflow: hidden;
    speak: none;
    text-align: center;
}
.sms-modal-content {
    padding: 20px 20px 10px;
}
.sms-modal-content #otp_phone_number {
    width: 65%; 
    float: left;
}
.sms-modal-content .btn-send-otp {
    position: relative; 
    width: 35%; 
    background: #444; 
    text-align: center; 
    line-height: 35px; 
    color: #fff !important; 
    float: right; 
    cursor : pointer;
}
.sms-modal-content .btn-send-otp .count-number {
    position: absolute; 
    top: 0; 
    left: 0; 
    background: #444; 
    width: 100%; 
}
.sms-modal-content .btn-send-otp .block-hide {
    display: none;
}
.sms-modal-footer {
    margin: auto;
    padding-bottom: 2rem;
}
