
/*--------------------------- 
Add Plugin Front-End CSS here 
---------------------------*/

.form-row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -5px;
    margin-left: -5px;
}
.form-row>.col, .form-row>[class*=col-] {
    padding-right: 5px;
    padding-left: 5px;
}

.mb-3, .my-3 {
    margin-bottom: 1rem!important;
}
label {
    display: inline-block;
    margin-bottom: .5rem;
}
.form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.hide{
    display: none;
}
















.form-group{
    margin-bottom: 15px;
}




.stepwizard-step p {
    margin-top: 10px;
}
.stepwizard-row {
    display: table-row;
}
.stepwizard-row  .stepwizard-step .btn.btn-primary{
    width: 30px;
    height: 30px;
    display: inline-block;
    overflow: hidden;
    box-sizing: border-box;
    color: #fff;
    background-color: orange;
    border-color: orange;
}
.stepwizard-row  .stepwizard-step .btn{
    width: 30px;
    height: 30px;
    display: inline-block;
    overflow: hidden;
    box-sizing: border-box;
    border: 1px solid #ccc;
    background: white;
}
.stepwizard {
    display: table;
    width: 50%;
    position: relative;
}
.stepwizard-step button[disabled] {
    opacity: 1 !important;
    filter: alpha(opacity=100) !important;
}
.stepwizard-row:before {
    top: 14px;
    bottom: 0;
    position: absolute;
    content: " ";
    width: 100%;
    height: 1px;
    background-color: #ccc;
    z-order: 0;
}
.stepwizard-step {
    display: table-cell;
    text-align: center;
    position: relative;
}
.btn-circle {
    width: 30px;
    height: 30px;
    text-align: center;
    padding: 6px 0;
    font-size: 12px;
    line-height: 1.428571429;
    border-radius: 15px;
}
.btn-primary {

}
.nd_options_customizer_forms input[type="text"], .nd_options_customizer_forms input[type="email"], .nd_options_customizer_forms input[type="url"], .nd_options_customizer_forms input[type="tel"], .nd_options_customizer_forms input[type="number"], .nd_options_customizer_forms input[type="date"], .nd_options_customizer_forms input[type="file"], .nd_options_customizer_forms input[type="password"], .nd_options_customizer_forms select, .nd_options_customizer_forms textarea, .StripeElement{
 border-top-width: 2px!important;
 border-left-width: 2px!important;
 border-right-width: 2px!important;
}
.form-group.has-error label{
    border-bottom: 2px solid red;
}
.vc_btn-success, a.vc_btn-success, button.vc_btn-success{
    color: #fff!important;}
.vc_btn-danger, a.vc_btn-danger, button.vc_btn-danger{
    color: #fff!important;}

span.line{
    width: 50%;
    border-bottom: 2px solid;
    display: inline-block;
}
input[type="radio"], input[type="checkbox"]{
    width: 20px;
    display: inline;
    vertical-align: middle;
}
ul.twocols{
    list-style-type: none;
    -webkit-columns: 3;
    -moz-columns: 3;
    columns: 3;
    list-style-position: inside;//this is important addition
}
ul.twocols label{
    position: relative;
}
ul.twocols input[type="checkbox"]{
    position: absolute;
    left: -30px;
    vertical-align: middle;
    text-align: center;
    top: -5px;
}
.nextBtn, .prevBtn {
    background-color: #337ab7;
    display:inline-block;
    cursor:pointer;
    color:#ffffff!important;
    font-size:17px;
    padding:10px 31px;
    text-decoration:none;
    margin-top: 32px;
}
.nextBtn:hover, prevBtn:hover  {
    background-color: #0b5fab;
}

/** MODAL **/
[role="button"] {
    cursor: pointer;
}
.modal-open {
    overflow: hidden;
}
.modal {
    display: none;
    overflow: hidden;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    -webkit-overflow-scrolling: touch;
    outline: 0;
}
.modal.fade .modal-dialog {
    -webkit-transform: translate(0, -25%);
    -ms-transform: translate(0, -25%);
    -o-transform: translate(0, -25%);
    transform: translate(0, -25%);
    -webkit-transition: -webkit-transform 0.3s ease-out;
    -o-transition: -o-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
}
.modal.in .modal-dialog {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
}
.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}
.modal-dialog {
    position: relative;
    width: auto;
    margin: 10px;
}
.modal-content {
    position: relative;
    background-color: #ffffff;
    border: 1px solid #999999;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    outline: 0;
}
.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #000000;
}
.modal-backdrop.fade {
    opacity: 0;
    filter: alpha(opacity=0);
}
.modal-backdrop.in {
    opacity: 0.5;
    filter: alpha(opacity=50);
}
.modal-header {
    padding: 15px;
    border-bottom: 1px solid #e5e5e5;
    min-height: 16.42857143px;
}
.modal-header .close {
    margin-top: -2px;
}
.modal-title {
    margin: 0;
    line-height: 1.42857143;
}
.modal-body {
    position: relative;
    padding: 15px;
}
.modal-footer {
    padding: 15px;
    text-align: right;
    border-top: 1px solid #e5e5e5;
}
.modal-footer .btn + .btn {
    margin-left: 5px;
    margin-bottom: 0;
}
.modal-footer .btn-group .btn + .btn {
    margin-left: -1px;
}
.modal-footer .btn-block + .btn-block {
    margin-left: 0;
}
.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll;
}
.close {
    float: right;
    font-size: 21px;
    font-weight: bold;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    filter: alpha(opacity=1);
    opacity: 1;
}
.modal-title{
    float: left;
}
button.close {
    -webkit-appearance: none;
    padding: 0;
    cursor: pointer;
    background: transparent;
    border: 0;
}
.close:hover, .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
    filter: alpha(opacity=50);
    opacity: .5;
}
@media (min-width: 768px) {
    .modal-dialog {
        width: 540px;
        margin: 30px auto;
    }
    .modal-content {
        -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    }
    .modal-sm {
        width: 300px;
    }
}
@media (min-width: 992px) {
    .modal-lg {
        width: 900px;
    }
}
[role="button"] {
    cursor: pointer;
}
.modal .btn {
    display: inline-block;
    margin-bottom: 0;
    font-weight: normal;
    text-align: center;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    white-space: nowrap;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    border-radius: 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.modal .btn:focus,
.modal .btn:active:focus,
.modal .btn.active:focus,
.modal .btn.focus,
.modal .btn:active.focus,
.modal .btn.active.focus {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;
}
.modal .btn:hover,
.modal .btn:focus,
.modal .btn.focus {
    color: #333333;
    text-decoration: none;
}
.modal .btn:active,
.modal .btn.active {
    outline: 0;
    background-image: none;
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.modal .btn.disabled,
.modal .btn[disabled],
fieldset[disabled] .modal .btn {
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.65;
    filter: alpha(opacity=65);
    -webkit-box-shadow: none;
    box-shadow: none;
}
.modal .btn-default {
    color: #333333;
    background-color: #ffffff;
    border-color: #cccccc;
}
.modal .btn-default:hover,
.modal .btn-default:focus,
.modal .btn-default.focus,
.modal .btn-default:active,
.modal .btn-default.active,
.open > .dropdown-toggle.modal .btn-default {
    color: #333333;
    background-color: #e6e6e6;
    border-color: #adadad;
}
.modal .btn-default:active,
.modal .btn-default.active,
.open > .dropdown-toggle.modal .btn-default {
    background-image: none;
}
.modal .btn-default.disabled,
.modal .btn-default[disabled],
fieldset[disabled] .modal .btn-default,
.modal .btn-default.disabled:hover,
.modal .btn-default[disabled]:hover,
fieldset[disabled] .modal .btn-default:hover,
.modal .btn-default.disabled:focus,
.modal .btn-default[disabled]:focus,
fieldset[disabled] .modal .btn-default:focus,
.modal .btn-default.disabled.focus,
.modal .btn-default[disabled].focus,
fieldset[disabled] .modal .btn-default.focus,
.modal .btn-default.disabled:active,
.modal .btn-default[disabled]:active,
fieldset[disabled] .modal .btn-default:active,
.modal .btn-default.disabled.active,
.modal .btn-default[disabled].active,
fieldset[disabled] .modal .btn-default.active {
    background-color: #ffffff;
    border-color: #cccccc;
}
.modal .btn-default .badge {
    color: #ffffff;
    background-color: #333333;
}
.modal .btn-primary {
    color: #ffffff;
    background-color: #337ab7;
    border-color: #2e6da4;
}
.modal .btn-primary:hover,
.modal .btn-primary:focus,
.modal .btn-primary.focus,
.modal .btn-primary:active,
.modal .btn-primary.active,
.open > .dropdown-toggle.modal .btn-primary {
    color: #ffffff;
    background-color: #286090;
    border-color: #204d74;
}
.modal .btn-primary:active,
.modal .btn-primary.active,
.open > .dropdown-toggle.modal .btn-primary {
    background-image: none;
}
.modal .btn-primary.disabled,
.modal .btn-primary[disabled],
fieldset[disabled] .modal .btn-primary,
.modal .btn-primary.disabled:hover,
.modal .btn-primary[disabled]:hover,
fieldset[disabled] .modal .btn-primary:hover,
.modal .btn-primary.disabled:focus,
.modal .btn-primary[disabled]:focus,
fieldset[disabled] .modal .btn-primary:focus,
.modal .btn-primary.disabled.focus,
.modal .btn-primary[disabled].focus,
fieldset[disabled] .modal .btn-primary.focus,
.modal .btn-primary.disabled:active,
.modal .btn-primary[disabled]:active,
fieldset[disabled] .modal .btn-primary:active,
.modal .btn-primary.disabled.active,
.modal .btn-primary[disabled].active,
fieldset[disabled] .modal .btn-primary.active {
    background-color: #337ab7;
    border-color: #2e6da4;
}
.modal .btn-primary .badge {
    color: #337ab7;
    background-color: #ffffff;
}
.modal .btn-success {
    color: #ffffff;
    background-color: #5cb85c;
    border-color: #4cae4c;
}
.modal .btn-success:hover,
.modal .btn-success:focus,
.modal .btn-success.focus,
.modal .btn-success:active,
.modal .btn-success.active,
.open > .dropdown-toggle.modal .btn-success {
    color: #ffffff;
    background-color: #449d44;
    border-color: #398439;
}
.modal .btn-success:active,
.modal .btn-success.active,
.open > .dropdown-toggle.modal .btn-success {
    background-image: none;
}
.modal .btn-success.disabled,
.modal .btn-success[disabled],
fieldset[disabled] .modal .btn-success,
.modal .btn-success.disabled:hover,
.modal .btn-success[disabled]:hover,
fieldset[disabled] .modal .btn-success:hover,
.modal .btn-success.disabled:focus,
.modal .btn-success[disabled]:focus,
fieldset[disabled] .modal .btn-success:focus,
.modal .btn-success.disabled.focus,
.modal .btn-success[disabled].focus,
fieldset[disabled] .modal .btn-success.focus,
.modal .btn-success.disabled:active,
.modal .btn-success[disabled]:active,
fieldset[disabled] .modal .btn-success:active,
.modal .btn-success.disabled.active,
.modal .btn-success[disabled].active,
fieldset[disabled] .modal .btn-success.active {
    background-color: #5cb85c;
    border-color: #4cae4c;
}
.modal .btn-success .badge {
    color: #5cb85c;
    background-color: #ffffff;
}
.modal .btn-info {
    color: #ffffff;
    background-color: #5bc0de;
    border-color: #46b8da;
}
.modal .btn-info:hover,
.modal .btn-info:focus,
.modal .btn-info.focus,
.modal .btn-info:active,
.modal .btn-info.active,
.open > .dropdown-toggle.modal .btn-info {
    color: #ffffff;
    background-color: #31b0d5;
    border-color: #269abc;
}
.modal .btn-info:active,
.modal .btn-info.active,
.open > .dropdown-toggle.modal .btn-info {
    background-image: none;
}
.modal .btn-info.disabled,
.modal .btn-info[disabled],
fieldset[disabled] .modal .btn-info,
.modal .btn-info.disabled:hover,
.modal .btn-info[disabled]:hover,
fieldset[disabled] .modal .btn-info:hover,
.modal .btn-info.disabled:focus,
.modal .btn-info[disabled]:focus,
fieldset[disabled] .modal .btn-info:focus,
.modal .btn-info.disabled.focus,
.modal .btn-info[disabled].focus,
fieldset[disabled] .modal .btn-info.focus,
.modal .btn-info.disabled:active,
.modal .btn-info[disabled]:active,
fieldset[disabled] .modal .btn-info:active,
.modal .btn-info.disabled.active,
.modal .btn-info[disabled].active,
fieldset[disabled] .modal .btn-info.active {
    background-color: #5bc0de;
    border-color: #46b8da;
}
.modal .btn-info .badge {
    color: #5bc0de;
    background-color: #ffffff;
}
.modal .btn-warning {
    color: #ffffff;
    background-color: #f0ad4e;
    border-color: #eea236;
}
.modal .btn-warning:hover,
.modal .btn-warning:focus,
.modal .btn-warning.focus,
.modal .btn-warning:active,
.modal .btn-warning.active,
.open > .dropdown-toggle.modal .btn-warning {
    color: #ffffff;
    background-color: #ec971f;
    border-color: #d58512;
}
.modal .btn-warning:active,
.modal .btn-warning.active,
.open > .dropdown-toggle.modal .btn-warning {
    background-image: none;
}
.modal .btn-warning.disabled,
.modal .btn-warning[disabled],
fieldset[disabled] .modal .btn-warning,
.modal .btn-warning.disabled:hover,
.modal .btn-warning[disabled]:hover,
fieldset[disabled] .modal .btn-warning:hover,
.modal .btn-warning.disabled:focus,
.modal .btn-warning[disabled]:focus,
fieldset[disabled] .modal .btn-warning:focus,
.modal .btn-warning.disabled.focus,
.modal .btn-warning[disabled].focus,
fieldset[disabled] .modal .btn-warning.focus,
.modal .btn-warning.disabled:active,
.modal .btn-warning[disabled]:active,
fieldset[disabled] .modal .btn-warning:active,
.modal .btn-warning.disabled.active,
.modal .btn-warning[disabled].active,
fieldset[disabled] .modal .btn-warning.active {
    background-color: #f0ad4e;
    border-color: #eea236;
}
.modal .btn-warning .badge {
    color: #f0ad4e;
    background-color: #ffffff;
}
.modal .btn-danger {
    color: #ffffff;
    background-color: #d9534f;
    border-color: #d43f3a;
}
.modal .btn-danger:hover,
.modal .btn-danger:focus,
.modal .btn-danger.focus,
.modal .btn-danger:active,
.modal .btn-danger.active,
.open > .dropdown-toggle.modal .btn-danger {
    color: #ffffff;
    background-color: #c9302c;
    border-color: #ac2925;
}
.modal .btn-danger:active,
.modal .btn-danger.active,
.open > .dropdown-toggle.modal .btn-danger {
    background-image: none;
}
.modal .btn-danger.disabled,
.modal .btn-danger[disabled],
fieldset[disabled] .modal .btn-danger,
.modal .btn-danger.disabled:hover,
.modal .btn-danger[disabled]:hover,
fieldset[disabled] .modal .btn-danger:hover,
.modal .btn-danger.disabled:focus,
.modal .btn-danger[disabled]:focus,
fieldset[disabled] .modal .btn-danger:focus,
.modal .btn-danger.disabled.focus,
.modal .btn-danger[disabled].focus,
fieldset[disabled] .modal .btn-danger.focus,
.modal .btn-danger.disabled:active,
.modal .btn-danger[disabled]:active,
fieldset[disabled] .modal .btn-danger:active,
.modal .btn-danger.disabled.active,
.modal .btn-danger[disabled].active,
fieldset[disabled] .modal .btn-danger.active {
    background-color: #d9534f;
    border-color: #d43f3a;
}
.modal .btn-danger .badge {
    color: #d9534f;
    background-color: #ffffff;
}
.modal .btn-link {
    color: #337ab7;
    font-weight: normal;
    border-radius: 0;
}
.modal .btn-link,
.modal .btn-link:active,
.modal .btn-link.active,
.modal .btn-link[disabled],
fieldset[disabled] .modal .btn-link {
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.modal .btn-link,
.modal .btn-link:hover,
.modal .btn-link:focus,
.modal .btn-link:active {
    border-color: transparent;
}
.modal .btn-link:hover,
.modal .btn-link:focus {
    color: #23527c;
    text-decoration: underline;
    background-color: transparent;
}
.modal .btn-link[disabled]:hover,
fieldset[disabled] .modal .btn-link:hover,
.modal .btn-link[disabled]:focus,
fieldset[disabled] .modal .btn-link:focus {
    color: #777777;
    text-decoration: none;
}
.modal .btn-lg {
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333;
    border-radius: 6px;
}
.modal .btn-sm {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
}
.modal .btn-xs {
    padding: 1px 5px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
}
.modal .btn-block {
    display: block;
    width: 100%;
}
.modal .btn-block + .modal .btn-block {
    margin-top: 5px;
}
input[type="submit"].modal .btn-block,
input[type="reset"].modal .btn-block,
input[type="button"].modal .btn-block {
    width: 100%;
}
.clearfix:before,
.clearfix:after,
.modal-footer:before,
.modal-footer:after {
    content: " ";
    display: table;
}
.clearfix:after,
.modal-footer:after {
    clear: both;
}
.center-block {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.pull-right {
    float: right !important;
}
.pull-left {
    float: left !important;
}
.hide {
    display: none !important;
}
.show {
    display: block !important;
}
.invisible {
    visibility: hidden;
}
.text-hide {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}
.hidden {
    display: none !important;
}
.affix {
    position: fixed;
}
.modal {
    text-align: center;
}

@media screen and (min-width: 768px) {
    .modal:before {
        display: inline-block;
        vertical-align: middle;
        content: " ";
        height: 100%;
    }
}

.modal-dialog {
    display: inline-block;
    text-align: left;
    vertical-align: middle;
}