header nav img {
    width: 215px;
    text-align: center;
    height: auto;
}

.logos_header {
    margin-top: -8px;
    max-width: 400px;
}

header nav .desktop-menu ul  {

    color: #333;
    font-family: Lato,sans-serif;
    letter-spacing: 2px;
    padding: 90px 0 0;
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    background-color: transparent;float: right;
}

/* Hover Effects */

header nav .desktop-menu ul li a {
    display:inline-block;
    margin:0;
    text-transform:uppercase;
    padding-left: 26px;
    padding-right: 26px;
    font-family: Lato,sans-serif;
    color: #666;
    text-decoration: none;
}




header nav .desktop-menu ul li a:after {
    display:block;
    content: '';
    border-bottom: solid 3px #fab200;
    transition: transform 250ms ease-in-out;

}

header nav .desktop-menu ul li a:after {
    transform: scaleX(0);
    border-bottom: solid 3px #fab200;
    color: #000;
}

header nav ul li a:hover:after {
    transform: scaleX(1);
}

.active-menu  a {
    color: #000 !important;
    font-weight: bold ;
}

.active-menu a:after {
    transform: inherit !important;
}

header .glyphicon-user {
    padding:  0 8px 0 0;
    font-size: 15px;
}

header .glyphicon-earphone {
    padding: 8px;
    font-size: 15px;
}

header nav .number-phone {
    font-size: 20px;
    line-height: 24px;
    color: #333;
    letter-spacing: 1.6px;
    font-weight: 900;
    margin-bottom: 10px;
    text-decoration: none;
    font-family: Lato, sans-serif;
}

header nav .date-work {
    font-style: italic;
    display: block;
    color: #999;
    padding-top: 3px;
    text-decoration: none;
    font-size: 14px;
    font-family: Lato, sans-serif;
}

.menu-hamburguer {
    padding: 8px;
    font-size: 35px;
    color: #333;
}

.icon-whatssap {
    width: 30px;
    height: inherit;
}


.side-menu-wrapper a {
    padding-bottom: 40px;
}

.side-menu-wrapper ul {
    line-height: 50px;
    color: #ccc;
    font-family: laton, sans-serif;
    letter-spacing: 2px;
}

/** slide menu

            */
.side-menu-wrapper { /* style menu wrapper */
    overflow: hidden;
    background: rgba(0,0,0,.95);
    padding: 40px 0 0 40px;
    position: fixed; /* Fixed position */
    top: 0;
    right: -290px; /* Sidebar initial position. "right" for right positioned menu */
    height: 100%;
    z-index: 2;
    transition: 0.5s; /* CSS transition speed */
    width: 250px;
    font: 20px "Courier New", Courier, monospace;
}
.side-menu-wrapper > ul{ /* css ul list style */
    list-style:none;
    padding:0;
    margin:0;
    overflow-y: auto; /* enable scroll for menu items */
    width:100%; /* this width will hide scroll bar */
    height:95%;
}
.side-menu-wrapper > ul > li > a { /* links */
    display: block;
    border-bottom: 1px solid #131313;
    padding: 6px 4px 6px 4px;
    color: #989898;
    transition: 0.3s;
    text-decoration: none;
}
.side-menu-wrapper > a.menu-close { /* close button */
    padding: 8px 0 4px 23px;
    color: #6B6B6B;
    display: block;
    margin: -30px 0 -10px -20px;
    font-size: 35px;
    text-decoration: none;
}

.side-menu-overlay { /* overlay */
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,.7);
    overflow-y: auto;
    overflow-x: hidden;
    text-align: center;
    opacity: 0;
    transition: opacity 1s;
}
@media (min-width: 992px) {
    .side-menu-overlay {
        display: none;

    }
    .side-menu-wrapper {
        display: none;
    }

    .dropdown:hover .dropdown-content {
        display: block;
    }
}
@media (max-width: 767px) {

    .column-1 {
        padding-bottom: 10px;
        text-align: center;
    }
    .column-2  {
        padding-bottom: 10px;
        text-align: center;
    }

    .column-3 {
        text-align: center;
    }
    .column-glyphicon-1 {
        padding-bottom: 10px;
        text-align: center;
    }
    .column-glyphicon-2  {
        padding-bottom: 10px;
        text-align: center;
    }

    .column-glyphicon-3 {
        text-align: center;
    }

    .logos_header {
        width: 100%;
    }
}

.modal-login {
    width: 200px;
    float: right;
    padding: 0 10px;
}



/** checkbox registrar **/
.container-checkbox {
    position: relative;
    padding-left: 25px;
    padding-right: 25px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default radio button */
.container-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 17px;
    width: 17px;
    background-color: #eee;
    border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.container-checkbox:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.container-checkbox input:checked ~ .checkmark {
    background-color: #2196F3;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.container-checkbox input:checked ~ .checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.container-checkbox .checkmark:after {
    top: 5px;
    left: 5px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: white;
}

/** Container register **/
.container-register input {
    background: #F8F8F8;
    border-radius: 6px;
    padding-left: 10px;
}

.inputfile-box {
    position: relative;
}


.inputfile-box label{
    width: 100%;
}

.inputfile {
    opacity: 0;
    /* padding: 0 !important; */
    width: 0px;
    height: 1px;
}

.container-input-file {
    display: inline-block;
    width: 100%;
}

.file-box {
    display: inline-block;
    width: 60%;
    box-shadow: -1px -1px 1px;
    border: 1px inset;
    padding: 5px 0 5px 5px;
    box-sizing: border-box;
    height: calc(4rem - 7px);
    background: #F8F8F8;
    border-radius: 6px;
    padding-left: 10px;
}


.file-button {
    background: #d6aa02;
    padding: 5px;
    position: absolute;
    top: 0px;
    left: 66%;
    color: white;
    border: 1px solid #d6aa02;
    opacity: 1;
    border-radius: 7px;
}


.file-button-invoice {
    background: #d6aa02;
    padding: 5px;
    position: absolute;
    top: 0px;
    right: 0;
    color: white;
    border: 1px solid #d6aa02;
    opacity: 1;
    border-radius: 7px;
}
.require-color-red {
    color: red;
}


.error {
    border: 1px solid red;
}

.error-list-style {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
    padding: 10px 20px 4px;
}
.loading-style {
    background-image: url(../../public/images/loading.gif);
    width: 100%;
    /* max-height: 100%; */
    background-repeat: no-repeat;
    position: absolute;
    z-index: 1;
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.5);
    /* opacity: 1; */
    /* MIN-height: 100%; */
    top: 0;
    bottom: 0;
    overflow: auto;
    background-attachment: fixed;
    background-position: center;
}

.modal-login-menu:hover{
    color: #D7AA05;
    cursor: pointer;
}

#modalLoginHeader {
    padding-right: 0 !important;
}

#menu-left a {
    color: white;
    font-size: 18px;
}

@media only screen and (max-width: 992px) {
    .side-menu-wrapper-user {
        padding: 40px 0 0 0px;
    }

    .side-menu-wrapper-user > ul > li > a {
        color: white;
    }
}

.btn-color-yellow {
    background: #d6aa02;
    border-color: #d6aa02;
    font-size: inherit;
}

.btn-color-yellow:hover, .btn-color-yellow:focus {
    background: #d6aa02 !important;
    border-color: #d6aa02 !important;
    opacity: 0.7 !important;
}
.btn-color-yellow:active {
    opacity: 0.9 !important;
    background-color: #d19316 !important;
}

.dropbtn {
    cursor: pointer;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 100%;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    right: -17px;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {background-color: #f1f1f1}

