.container-media {
    height: 40px;
    background: var(--secondary-color);
}
.hamburguer-mobile {
    display: none;
}
.hamburguer-mobile img {
    top: 5px;
    position: relative;
    cursor: pointer;
}
.blue-text {
    color: #2196f3 !important;
}
.media-icons {
    text-align: right;
    color: #fff;
    height: 100%;
    width: 100px;
    float: right;
}
.media-icons a {
    position: relative;
    top: 10px;
}

.head {
    width: 100%;
    height: 80px;
    background: #ffffff;
    display: flex;
    align-items: center;
}
.logo {
    width: 190px;
}
.logo img {
    display: block;
}
.navbar {
    margin-left: auto;
    margin-right: 0;
}
.dropdown-divider {
    height: 0;
    margin: .5rem 0;
    overflow: hidden;
    border-top: 1px solid #e9ecef;
}
.menu-navbar {
    display: block;
    list-style-type: none;
}
.menu-navbar li:first-child {
    margin-top: 0!important;
    margin-left: 0!important;
}
.menu-navbar li {
    display: inline-block;
    margin-left: 10px;
    margin-right: 10px;
    letter-spacing: 0px;
}
.menu-navbar a {
    font-size: 15px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--secondary-color);
    display: inline-block;
    letter-spacing: -0.5px;
    font-family: "Gotham Medium";
}
.menu-navbar li a:hover {
    color: var(--primary-color);
}
.menu-navbar li.text-link:hover > a:after {
    left: 0;
    width: 100%;
    opacity: 1;
    visibility: visible;
}
.menu-navbar li a:hover {
    color: var(--primary-color);
}
.menu-navbar li.text-link>a:after {
    content: "";
    display: block;
    background: var(--primary-color);
    top: 100%;
    left: 50%;
    width: 0;
    height: 2px;
    margin-top: 9px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: left .3s ease-in-out,width .3s ease-in-out,opacity .3s ease-in-out,visibility .3s ease-in-out;
    -o-transition: left .3s ease-in-out,width .3s ease-in-out,opacity .3s ease-in-out,visibility .3s ease-in-out;
    transition: left .3s ease-in-out,width .3s ease-in-out,opacity .3s ease-in-out,visibility .3s ease-in-out;
}
.menu-navbar li:hover > a.btn:after {
    opacity: 0;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 10rem;
    padding: .5rem 0;
    margin: .125rem 0 0;
    font-size: .85rem;
    color: #858796;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #e3e6f0;
    border-radius: .35rem;
    }
    .dropdown-item {
    display: block;
    width: 100%;
    padding: .25rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #3a3b45;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}
.menu-navbar li.btn-profile > a:after {
    visibility: hidden;
    display: none;
}
.dropdown-menu.show {
    display: block;
    right: 0;
    left: auto;
    top: 60px;
}
.btn-profile{
    position: relative;
}
.btn-profile a{
    display: flex;
    color: #f6aa00;
}
.btn-profile img{
    height: 20px;
    width: 20px;
    margin-left: 8px;
}
@media only screen and (min-width: 1180px) and (max-width: 1200px){
    .menu-navbar a{
        font-size: 13px;
    }
}

@media (max-width: 1180px){
    .hamburguer-mobile {
        display: block;
        float: left;
        cursor: pointer;
    }
    .logo,.logo img{
        margin: auto;
    }
    .navbar {
        width: 100%;
        position: absolute;
        top: 40px;
        background: #fff;
        z-index: 4;
        box-shadow: 0 4px 2px -2px #ccc;
    }
    .menu-navbar li{
        display: block;
        padding: 10px 0;
        border-top: 1px solid #ccc;
    }
    #super-menu~.navbar{
       left: -100%;
    }
    #super-menu:checked ~ .navbar{
       left: 0;
    }
    .menu-navbar li:first-child{
        margin-left: 15px !important;
        margin-top: 0 !important;
        border-top: 0;
    }
    .menu-navbar a.btn {
        padding: 7px 0 !important;
        background: transparent;
        box-shadow: none !important
    }
    .menu-navbar li a:after{
        display: none !important;
    }
    .menu-navbar a {
        color: var(--secondary-color) !important;
        display: block;
    }
    .menu-navbar li>a {
        padding: 7px 0 !important;
    }
}
@media (max-width: 460px){
    .head {
        padding: 0 10px;
    }
}
.label-online{
    border: 1.5px solid var(--primary-color);
    color: #333;
    font-size: 15px;
    padding: 4px 5px;
    font-family: "Gotham Rounded Book" !important;
}
.px-2{
    padding-left: 2rem !important;
    padding-right: 2rem !important;
}
/* END MASTER */

/* Modal */
.modal.show {
    z-index: 999999;
}
.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}
.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    display: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0;
}
.modal-open {
    overflow: hidden;
}
.fade {
    transition: opacity .15s linear;
}
.modal.show .modal-dialog {
    transform: none;
}
.modal.fade .modal-dialog {
    transition: transform .3s ease-out;
    transform: translateY(-50px);
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 5rem .5rem;
    pointer-events: none;
}
.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-radius: .125rem;
    box-shadow: 0 0.25rem 0.5rem rgba(0,0,0,.5);
    outline: 0;
}
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    width: 100vw;
    height: 100vh;
    background-color: #000;
}
.modal-backdrop.fade {
    opacity: 0;
}
.modal-backdrop.show {
    opacity: .7;
}
.modal-backdrop {
    z-index: 1071;
}
.modal-dialog.cascading-modal {
    margin-top: 200px;
}
.modal-dialog.cascading-modal .modal-c-tabs .md-tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: -1.5rem 1rem 0 1rem;
    -webkit-box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16), 0 2px 10px 0 rgba(0,0,0,0.12);
    box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16), 0 2px 10px 0 rgba(0,0,0,0.12);
}
.light-blue.darken-3 {
    /* background-color: #0277bd !important; */
    background-color: var(--secondary-color) !important;
}
.md-tabs {
    position: relative;
    z-index: 1;
    padding: .7rem;
    margin-right: 1rem;
    margin-bottom: -20px;
    margin-left: 1rem;
    background-color: #2bbbad;
    border: 0;
    border-radius: .25rem;
    -webkit-box-shadow: 0 5px 11px 0 rgba(0,0,0,0.18), 0 4px 15px 0 rgba(0,0,0,0.15);
    box-shadow: 0 5px 11px 0 rgba(0,0,0,0.18), 0 4px 15px 0 rgba(0,0,0,0.15);
}
#tabregister h4{
    font-family: "Gotham Rounded Bold";
    text-align: center;
}
.modal-dialog.cascading-modal .modal-c-tabs .md-tabs li {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.nav-tabs .nav-item {
    margin-bottom: -1px;
}
.waves-effect {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}
.modal-dialog.cascading-modal .modal-c-tabs .md-tabs li a {
    text-align: center;
}
.md-tabs .nav-link.active, .md-tabs .nav-item.open .nav-link {
    color: #fff;
    background-color: rgba(0,0,0,0.2);
    border-radius: .25rem;
    -webkit-transition: all 1s;
    transition: all 1s;
}
.md-tabs .nav-link {
    color: #fff;
    border: 0;
    -webkit-transition: all .4s;
    transition: all .4s;
}
.nav-link {
    display: block;
    padding: .5rem 1rem;
}
.modal-dialog.cascading-modal .modal-c-tabs .tab-content {
    padding: 1.7rem 0 0 0;
}
.tab-content>.tab-pane {
    display: none;
}
.tab-content>.active {
    display: block;
}
.modal-dialog.cascading-modal .modal-body, .modal-dialog.cascading-modal .modal-footer {
    color: #616161;
}
.modal-body {
    position: relative;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1rem;
}
.modal-body .container{
    padding: 0 50px;
}
.modal-footer {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: .75rem;
    border-top: 1px solid #dee2e6;
    border-bottom-right-radius: calc(.3rem - 1px);
    border-bottom-left-radius: calc(.3rem - 1px);
}
.modal-footer .options{
    margin: 0.5rem;
    font-family: "Gotham Rounded Book";
    font-size: 14px;
}
form label {
    font-size: 14px;
    display: block;
    margin-bottom: 5px;
}
.btn-recuperar-pwd {
    color: var(--secondary-color);
    font-family: "Gotham Rounded Book";
    font-size: 0.79rem;
}
ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    font-family: "Gotham Rounded Book";
}

form input[type="submit" i] {
    font-family: "Gotham Rounded Bold";
    margin-top: 20px;
    height: auto;
    font-size: 16px;
    margin-bottom: 20px;
    cursor: pointer;
}
form input[type='submit'] {
    width: 100%;
}
@media (min-width: 576px){

    .modal-dialog {
    max-width: 500px;
    margin: 5rem auto;
    }
    .modal-content {
        box-shadow: 0 0.5rem 1rem rgba(0,0,0,.5);
    }
}
/* End Modal */

@media (max-width: 720px){
    .modal-body .row {
        margin: 0;
    }
}

.toggle-password {
    position: absolute;
    width: 24px;
    height: 24px;
    right: 25px;
    top: 10px;
    z-index: 2;
    background-image: url('/public/static/img/icon-eye.png');
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
  }
  @media (min-width: 576px)
  {
    .modal-dialog {
        max-width: 500px;
        margin: 1.75rem auto;
    }
  }
  @media (min-width: 992px)
  {
    .modal-lg, .modal-xl {
        max-width: 800px;
    }
  }
  @media (min-width: 1200px)
  {
    .modal-xl {
        max-width: 1140px;
    }
  }
  #loadModalLibroReclamaciones.modal.fade .modal-dialog{
    transform: translateY(50px) !important;
  }
 

 