/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
 .otp-customer-login{
    position: relative;
    display: inline-block;
}
.otp-connect{
    position: fixed;
    z-index: 11001;
    width: 25vw;
    min-height: 100vh;
    height: 360px;
    display: block;
    background: #fff;
    left: -1000px;
    top: 0;
    padding: 1rem;
    transition: 0.8s;
    opacity: 0;
    overflow-y: scroll;
}
.otp-connect.active{
    left: 0;
}
.otp-connect.active + .otp-overlay{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.5);
}
.otp-form{
    margin-top: 1em;
    margin-bottom: 0;
}
.otp-form .form-heading{
    margin: 1.2rem 0;
    font-weight: 700;
    font-size: 1.4rem;
    text-align: center;
}
.otp-form input{
    border: 0;
    border-bottom:1px solid #ced4da;
    margin-bottom: 1.2em;
    border-radius: 0;
}
.otp-form form .form-group{
    position: relative;
} 
.otp-form form .form-group label.error-field{
    position: absolute;
    right: 0;
    right: 10px;
    font-size: 0.85rem;
    top: 35px;
    font-weight: 600;
    color: #af1e19;
} 
.otpSubmit.btnSubmit{
    background-color: #ee3224;
    border-color: #ee3224;
    color: #fff;
    font-weight: 600;
    border: 0;
    box-shadow: 0;
    width: 100%;
    padding: 10px;
}
.otp-mobile-verification .btnSubmit:hover{
    background-color: #af1e19;
    border-color: #af1e19;
}
.hide-window{
    cursor: pointer;
}
h2.status-connect + hr{
    margin-top: 0;
    margin-bottom: 0.25rem;
}
.the-customer.temp{
    display: none;
}
.the-customer{
    position: absolute;
    left: 50px;
    top: 5px;
    z-index: 100;
    line-height: 1;
    font-size: 0.8rem;
    text-align: right;
    width: 200px;
    background: #fff;
}
.the-customer div{
    display: inline-block;
    float: right; 
    padding: 5px;
}
.the-customer div span{
    display: block;
    margin-bottom: 1px;
}
.the-customer div.logout{
    padding: 10px;
    border-left: 1px solid #000;
}
.otp-loader{
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    background: #fff;
    z-index: 1;
}
.otp-loader span{
    background: url('../img/64x64.gif')no-repeat;
    width: 50px;
    height: 50px;
    background-size: 100%;
    margin: 0 auto;
    top: 25%;
    display: block;
}
.registration-step,
.send-code-otp{display: none;}
.accept-mc label{
    width: 90%;
    text-align: right;
    padding: 0 5px;
    display: inline-block;
}
.accept-mc input,
#cm-accept-newsletter,
#accept-member-club{
    display: inline-block;
    width: 20px;
    height: 20px;
    vertical-align: top;
    top: 6px;
    position: relative;
}
.link-underline,
.resend-otp{
    text-decoration: underline;
    cursor: pointer;
}
.debug-message-otp .error{
    font-weight: 600;
    color: red;
}
.error-field{
    display: none;
}
.form-row input[type="number"],
.form-row input[type="date"],
.form-row input[type="password"],
.form-row input[type="email"],
.form-row input[type="tel"],
.form-row textarea,
.form-row input[type="text"] {
    background: transparent;
    border: 1px solid #929ba9;
    padding: .45rem .9375rem;
    width: 100%;
}
.top-icon {
    width: 52px;
    display: inline-block;
    font-size: 11px;
    line-height: 1;
    position: relative;
    text-align: center;
}
.cur-wl{
    position: absolute;
    padding: 4px 8px;
    top: 0;
    left: 25px;
}

/* checkout process */
.wrap-checkout-process{
    display: none;
}
.wrap-checkout-process.active-login{
    display: block;
}
/* checkout process */
.checkout-process-customer{
    font-weight: bold;
    text-align: center;
    background-color: #edf0f7;
    width: 100%;
    margin-bottom: 1rem;
    min-height: 5rem;
    transition: 0.3s;
}
.checkout-process-customer:hover{
    background-color: #dadde4;
}
.checkout-process-customer a{
    display: block;
    transform: translateY(100%);
}
.vertical-align {
    display: flex;
    flex-direction: row;
}
.vertical-align > [class^="col-"],
.vertical-align > [class*=" col-"] {
    display: flex;
    align-items: center;     /* Align the flex-items vertically */
    justify-content: center; /* Optional, to align inner flex-items
                                horizontally within the column  */
}
.entry-summary .customer-accumulation {
    background-color: #edf0f7 ;
    padding: 10px;
}
/* Mobile */
@media (max-width: 575px) {
    .otp-connect{
        width: 85vw;
    }
    .the-customer{
        top: 15px;
        width: 170px;
        left: 75px;
    }
}