#nts_plans_container{
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
}
.netfis-plan{
    border-radius: 20px;
    padding: 20px 10px;
    box-shadow: 1px 1px 10px #ccc;
    margin-bottom: 20px;
    width: 100%;
    max-width: 320px;
}
.netfis-plan-inner h1{
    font-size: 1.3rem;
}
.netfis-plan-inner h2{
    font-size: 1.1rem;
}
.netfis-plan-inner p{
    border-top: 2px solid;
    padding-top: 10px;
    margin-top: 10px;
}
.nts-alert{
    width: 100%;
    display: block;
    margin: 10px 0;
    border: 2px solid;
    padding: 10px;
    text-align: center;
}
.nts-alert.nts-alert-danger{
    color: #cc3300;
    border-color: #cc3300;
}
.nts-alert.nts-alert-success{
    color: #009966;
    border-color: #009966;
}
.nts-paymanet-container{
    display: flex;
    flex-wrap: wrap;
    gap: 2;
    justify-content: space-between;
}
.text-error{
    color: #cc3300;
}
#nts_payment_form{
    flex: 1;
}
.nts-plan-resume{
    margin-bottom: 20px;
}
#nts_payment_form .form-group{
    margin-bottom: 10px;
}
.row{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}
.row>*{
    padding: 0 15px;
}
.input-group{
    position: relative;
}
.input-group > .input-group-addon{
    position: absolute;
    top: 12px;
    left: 10px;
}
.input-group > .form-control{
    padding-left: 60px;
    box-sizing: border-box;
}
.form-control{
    width: 100%;
}
.nts-loading{
    pointer-events: none;
    position: relative;
}
.nts-loading:after{
    content: " ";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, .7);
    top: 0;
}
.nts-loading:before{
    content: " ";
    position: absolute;
    border: 16px solid #f3f3f3;
    border-top: 16px solid #666;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
    z-index: 2;
    top: calc((100%/2) - 60px);
    left: 0;
    right: 0;
    margin: 0 auto;
}
/* Safari */
@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@media(min-width: 762px){
    .nts-plan-resume{
        width: 30%;
        margin-right: 20px;
    }
    .col-md-6{
        width: 50%;
    }
    .col-md-3{
        width: 25%;
    }
    .col-md-9{
        width: 75%;
    }
    .netfis-plan{
        width: 25%;
    }
}
.nts-payment-method{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-bottom: 20px;
}