/**
 * NOTICE OF LICENSE.
 *
 * This file is licenced under the Software License Agreement.
 * With the purchase or the installation of the software in your application
 * you accept the licence agreement.
 *
 * You must not modify, adapt or create derivative works of this source code
 *
 *  @author    Ohm Conception
 *  @copyright 2016 Ohm Conception
 *  @license   license,txt
*/

.form-wraps .input-group input.form-control {
    border: solid 1px black !important;
}

button.btn.btn-outline-secondary {
    margin-left: 10px;
    padding: 1px 6px;
    font-size: 10px;
}

i.fa.fa-eye-slash {
    font-size: 10px;
    padding: 5px !important;
}

.header-nav .user-info{
    display: none;
}
@media (max-width: 767px){
    .header-nav .user-info{
        display: block;
    }
}

.customer-container{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 300ms;
    transition: 300ms;

}
.customer-popup-background{
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
    margin: auto;
}
.customer-container.showy{
    z-index: 99;
    opacity: 1;
    visibility: visible;
    -webkit-transition: 300ms;
    transition: 300ms;
}

.close-x{
    position: absolute;
    right: 10px;
    top: 10px;
    height: 25px;
    cursor: pointer;
}
.close-x i{
    font-size: 40px;
    color: #fff;
}

.customer-info{
    position: relative;
    z-index: 9;
}

.customer-dropdown>.account span{
	position: relative;
    height: 3rem;
    padding: 0.75rem;
    text-align: center;
    white-space: nowrap;
    display: block;
    width: 100%;
}

.customer-dropdown>.customer-dropdown-menu{
    position: absolute;
    visibility: hidden;
    opacity: 0;
    right: 0px;
    -webkit-transition: 500ms;
    transition: 500ms;
}

.customer-dropdown:hover .customer-dropdown-menu{
    visibility: visible;
    opacity: 1;
    -webkit-transition: 500ms;
    transition: 500ms;
}

.customer-dropdown>.customer-dropdown-menu li a{
    padding: 10px 10px;
    width: 219px;
    cursor: pointer;
    display: block;
}

/* MESSAGE */
.customer-container .customer-message{
    min-height: 45px;
    max-width: 400px;
    margin: auto;
    border-radius: 5px;
    padding: 10px;
    text-align: center;
    margin-top: -100px;
    -webkit-transition: 100ms;
    transition: 100ms;    
    position: fixed;
    z-index: 9999;
    left: 0;
    right: 0;
}
.customer-container .customer-message.showy{
    margin-top: 20px;
    -webkit-transition: 250ms;
    transition: 250ms;
}
.customer-container .close-customer-message{
    position: absolute;
    right: 0px;
    left: 0px;
    top: -30px;
    height: 23px;
    width: 23px;
    border-radius: 100%;
    cursor: pointer;
    margin: auto;
    text-align: center;
    -webkit-transition: 500ms;
    transition: 500ms;
    z-index: 99999;
}
.customer-container .close-customer-message.showy{
    position: absolute;
    top: 5px;
    cursor: pointer;
    -webkit-transition: 500ms;
    transition: 500ms;
}


.form-wraps{
    position: fixed;
    width: 400px;
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 99;
    padding: 15px;
}

.form-wraps .custom-radio{
    margin-right: 0px;
}

.form-wraps .form-control{
    display: block;
    width: 100%;
    padding: .5rem .75rem;
    font-size: 1rem;
    line-height: 1.25;
    background-image: none;
    background-clip: padding-box;
    border: none;
    border-radius: 0;
}
.form-wraps.create-form{
    height: 510px;
    width: 540px;
}

.form-wraps .btn{
    height: 36px !important;
}
.form-wraps h3{
    text-align: center;
    margin-bottom: 30px;
    color: #706F6F;
    FONT-WEIGHT: 400;
}
.form-wraps .form-control-valign {
    text-align: left;
}
.form-wraps label, .form-wraps .form-control-comment{
    text-align: right;
}

.form-control:focus,
.input-group.focus,
.input-group:focus {
    outline: none !important;
}

.form-wraps .form-footer {
    text-align: center;
}
    @media (max-width: 767px){
        .form-wraps, .form-wraps.create-form{
            position: absolute;
            width: 95%;
            height: auto;
            bottom: auto;
            top: 50px;
            text-align: left;
        }
        .form-wraps label, .form-wraps .form-control-valign, .form-wraps .form-control-comment {
            text-align: left;
        }
    }