/* -------- MODAL ---------*/


/* The Modal (background) */
#configurator .be-modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1010; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.8); /* Black w/ opacity */
}

/* Modal Content/Box */
#configurator .modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
    padding: 30px;
    text-align: center;
    position: relative;
}

#configurator .modal-content h2 {
    font-weight: 500;
    margin-bottom: 30px;
    font-size: inherit;
}

#configurator .modal a.configurator-btn {
    display: inline-block;
    width: 170px;
    margin: auto 25px;
}

#configurator img.modal-loading {
    width: 70px;
    height: 70px;
    margin: 10px auto;
}


/* The Close Button */
#configurator .close {
    color: #dedede;
    float: right;
    font-size: 40px;
    position: absolute;
    top: -40px;
    right: -30px;
}

#configurator .close:hover,
#configurator .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}


#configurator .bnc-form-group {
    padding: 5px;
    /*background-color: #00B7FF;
    border: 1px solid #002b5c;*/
    text-align: left;
    vertical-align: top;
}

#configurator .bnc-input-text {
    border: 1px solid #e0e1e2;
    display: block;
    padding: 8px;
    width: 100%;
    font-size: 14px;
    margin: 0;
    box-sizing: border-box;
    background-color: #ffffff;
    box-shadow: none;

}

#configurator .bnc-checkbox {
    margin: 3px 15px 3px 3px;
    display: inline-block;
    vertical-align: top;
    background-color: #5f3f3f;
    box-sizing: border-box;
}

#configurator .bnc-form-text{
    display: inline-block;
    width: 88%;
    max-height: 45px;
    overflow-y: scroll;
    box-sizing: border-box;
    font-size: 12px;
}


#configurator .bnc-form-group.bnc-has-error input,
#configurator .bnc-form-group.bnc-has-error checkbox {
    border: 1px solid red;
}

#configurator .bnc-field-feedback,
#configurator .bnc-field-info-text {
    font-size: 12px;
}

#configurator .bnc-field-feedback {
    display: none;
}
#configurator .bnc-field-feedback.bnc-show {
    display: block;
    color: red;
}


#configurator .modal-content h2 {
    margin-bottom: 2px;
    /*text-align: left;*/
}


#configurator #registration-form .configurator-btn {
    /*width: 340px;*/
    width: 100%;
    display: inline-block;
    box-sizing: border-box;
    margin: 25px 10px 5px 10px;
    padding: 10px;
    background-repeat: no-repeat;
    background-position: 30px center;
    /*background-image: url("../images/icons/mail.png");*/
    font-size: 14px;
}

#configurator.mobile .bnc-mobile-col-6 {
    display: inline-block;
    width: 50%;
    box-sizing: border-box;
}


/* -------- end MODAL */