/* width */
::-webkit-scrollbar {
    width: 10px;
    height: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: rgba(136, 136, 136, 0.322);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.main-header {
    box-shadow: 0 3px 4px -4px gray;
}

.hover_img a {
    position: relative;
}

.hover_img a span {
    position: absolute;
    display: none;
    z-index: 99;
}

.hover_img a:hover span {
    display: block;
}

.navbar-light .navbar-nav .nav-link {
    color: black;
}

.input-icon {
    position: relative;
}

.input-icon>i {
    position: absolute;
    display: block;
    transform: translate(0, -50%);
    top: 50%;
    pointer-events: none;
    width: 25px;
    text-align: center;
    font-style: normal;
}

.input-icon>input {
    padding-left: 25px;
    padding-right: 0;
}

.input-icon-right>i {
    right: 0;
}

.input-icon-right>input {
    padding-left: 0;
    padding-right: 25px;
    text-align: right;
}

/*   Arreglar que se meten los divs en el footer */
.content-wrapper {
    height: initial !important;
}

input:focus {
    border: 2px solid #007bff;
}

/* ===== Autocomplete – estilos generales ===== */
.ac-menu {
    max-height: 320px;
    overflow-y: auto;
    border: 1px solid #dcdcdc;
    border-radius: .5rem;
    z-index: 2050;
    background: #fff;
    color: #212529;
}

.ac-menu li .ac-item {
    padding: .55rem .75rem;
    line-height: 1.35;
    border-bottom: 1px solid #e9ecef;
}

.ac-menu li:last-child .ac-item {
    border-bottom: 0;
}

.ac-menu i {
    width: 1rem;
    text-align: center;
    margin-right: .35rem;
    opacity: .8;
}

/* Estado activo/hover (jQuery UI aplica .ui-state-active al DIV) */
.ac-menu .ui-state-active {
    background: #007bff !important;
    color: #fff !important;
}

.ac-menu .ui-state-active i {
    color: #fff;
    opacity: 1;
}
