.banners {
    display: block;
    width: auto;
    max-height: 80vh;
    height: auto;
    aspect-ratio: 4 / 3;
    position: relative;
    overflow: hidden;
    margin: auto;
    /* background-color: black; */
}

.banners ul.slider-content {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0px;
    margin: 0px;
}

.banners ul.slider-content .active {
    /* border: 3px solid blue; */
}

.banners ul.slider-content li {
    display: block;
    width: inherit;
    height: inherit;
    pointer-events: none;
    /* background: rgb(60, 63, 59); */

    -webkit-mask-image: url(../img/banner_mask-inv.svg);
    mask-image: url(../img/banner_mask-inv.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    mask-size: 100% auto;
    -webkit-mask-size: 100% auto;
    mask-position: center bottom;
    -webkit-mask-position: center bottom;
}

.banners ul.slider-content li video {
    width: 100%;
    height: 100%;
    object-fit: fill;
    /* width: inherit;
    height: inherit;
    object-fit: cover;
    pointer-events: all; */
    
}

.banners ul.slider-content li img {
    width: 100%;
    height: 100%;
    /* position: relative;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%); */
}

.gallery-next:hover,
.gallery-previous:hover {
    background: white;
    color: black;
}
.gallery-next:active,
.gallery-previous:active {
    background: var(--parhi-btn-rojo);
    color: black;
}
.gallery-next,
.gallery-previous {
    background: rgb(77, 77, 77);
    position: absolute;
    top: 50%;
    padding: 8px 10px;
    border-radius: 100%;
    cursor: pointer;
    transition: 0.5s;
    /* width: 30px;
    height: 30px; */
    pointer-events: initial;
    color: white;
    font-weight: bolder;
    font-size: large;
}

.arrow-right {
    right: 0px;
}

ul.gallery-navigation {
    display: block;
    justify-content: center;
    width: inherit;
    max-width: 100%;
    height: 100%;
    /* background-color: red; */
    position: relative;
    bottom: calc(100% - -20px);
    margin: 0px;
    padding: 0px;
    pointer-events:none;
}

ul.gallery-navigation li {
    display: block !important;
    background-color: #ffffff80;
    width: 12px;
    height: 12px;
    cursor: pointer;
    text-align: center;
    margin: 4px 6px 6px 0px;
    border-radius: 100%;
    outline-offset: -1px;
    transition: 1s;
    border: 2px solid black;
    pointer-events: none;
}

ul.gallery-navigation li:hover {
    background-color: var(--parhi-rojo);
}

ul.gallery-navigation .active {
    background-color: red;
    /* border: 2px solid var(--parhi-rojo);
	 */
    outline: 3px solid var(--parhi-rojo);
}
.banners .cntrls .bullets{
    display: flex;
    position: absolute;
    width: 30%;
    margin: 0% 40%;
    height: 20px;
    top: 10px;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-evenly;
    pointer-events: all;
}
.banners .cntrls .bullets li{
    pointer-events: all;
}
#progreso {
    pointer-events: none;
    /* z-index: 1; */
    position: absolute;
    /* background: #80808063; */
    width: 100%;
    height: 14px;
    bottom: 2px;
}

#myRange {
    width: 100%;
    position: absolute;
    top: 20px;
}

.slidecontainer {
    width: 100%;
}

.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 10px;
    /* background: #d3d3d359; */
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
}

.slider:hover {
    opacity: 1;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 10px;
    height: 10px;
    background: #ca0700;
    /*var(--parhi-rojo);*/
    cursor: pointer;
}

.slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: #ca0700;
    /*var(--parhi-rojo);*/
    cursor: pointer;
}

.banner-mask{
    /* display: block;
    width: 100%;
    position: sticky;
    bottom: 0px;
    opacity: 1;
    pointer-events: none; */


}
.btn-navbar-navtoggle{
    cursor: pointer;
}
@media only screen and (max-width: 576px) {
    #fondoBorroso{
        z-index: 3;
        pointer-events: none;
    }
    #fondoBorroso div{
        display: none;
    }
    /* #myRange {
        width: 100%;
        position: relative;
        top: initial;
        bottom: calc(100% + 14px);
    } */
    .the-header{
        height: 46px !important;
    }
    
}
@media only screen and (min-width: 768px) {
    .banners .cntrls .bullets {
        top: 30px;
    }
}
@media only screen and (max-width: 768px) {
    ul.gallery-navigation{
        /* position: absolute;
        top: 0; */
        bottom: calc(100% - 0px);
    }
    /* #myRange {
        width: 100%;
        position: relative;
        top: initial;
        bottom: calc(100% + 14px);
    } */
    #myRange {
        top: 0px;
    }
    .banners .cntrls .bullets{
        width: 50%;
        margin: 0% 25%;
    }
}

