/* ===================================================
   Tagra Recurring Orders
   Version: 1.0.0
=================================================== */

#tagra-recurring-modal{
    display:none;
    position:fixed;
    z-index:999999;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.55);
    overflow:auto;
}

.tagra-modal-box{
    position:relative;
    width:420px;
    max-width:90%;
    margin:80px auto;
    background:#ffffff;
    border-radius:12px;
    padding:30px;
    box-sizing:border-box;
    box-shadow:0 15px 40px rgba(0,0,0,.25);
    animation:tagraPopup .25s ease;
}

@keyframes tagraPopup{

    from{
        transform:translateY(-25px);
        opacity:0;
    }

    to{
        transform:translateY(0);
        opacity:1;
    }

}

.tagra-close{
    position:absolute;
    top:15px;
    right:18px;
    font-size:28px;
    line-height:28px;
    cursor:pointer;
    color:#888;
    transition:.2s;
}

.tagra-close:hover{
    color:#000;
}

.tagra-modal-box h3{
    margin:0 0 15px;
    font-size:24px;
}

.tagra-modal-box p{
    margin-bottom:20px;
}

.tagra-options{
    margin-bottom:25px;
}

.tagra-options label{
    display:block;
    margin-bottom:14px;
    cursor:pointer;
    font-size:15px;
}

.tagra-options input[type="radio"]{
    margin-right:10px;
}

#tagra-save-recurring{
    width:100%;
    padding:12px;
    font-size:16px;
}

#tagra-save-recurring:disabled{
    opacity:.7;
    cursor:not-allowed;
}

#tagra-recurring-message{
    margin-top:20px;
}

.tagra-success{
    padding:12px 15px;
    background:#d4edda;
    color:#155724;
    border:1px solid #c3e6cb;
    border-radius:6px;
}

.tagra-error{
    padding:12px 15px;
    background:#f8d7da;
    color:#721c24;
    border:1px solid #f5c6cb;
    border-radius:6px;
}

.tagra-recurring-wrapper{
    margin-top:30px;
    padding-top:20px;
    border-top:1px solid #e5e5e5;
}

.tagra-open-popup{
    margin-bottom:15px !important;
}

.tagra-current-frequency{
    margin:0;
    font-size:15px;
    color:#333;
}

@media(max-width:768px){

    .tagra-modal-box{
        width:95%;
        margin:40px auto;
        padding:20px;
    }

    .tagra-modal-box h3{
        font-size:20px;
    }

}