@font-face {
    font-family: 'Open Sans';
    src: url('../resources/fonts/OpenSans-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../resources/fonts/OpenSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../resources/fonts/OpenSans-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../resources/fonts/OpenSans-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../resources/fonts/OpenSans-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}
/*PANTALLA DE CARGA LOGO GIRATORIO ROJO*/
@keyframes giro3D {
    0% {
        transform: perspective(500px) rotateY(0deg);
    }
    50% {
        transform: perspective(500px) rotateY(180deg);
    }
    100% {
        transform: perspective(500px) rotateY(360deg);
    }
}

.logo_carga {
    display: flex;
    background-color: red;
    padding: 6px 7px 1px 8px;
    z-index: 2001;
    animation: giro3D 3s infinite; /* Duración de 3 segundos y repetición infinita */
    transform-origin: center;
}


/*CODIGO NORMAL*/
html, body{
    margin:0px;
    padding:0;
    background-color:#0b0d0c;
    box-sizing: border-box;
    -webkit-touch-callout: none; /* Disable Android and iOS callouts*/
    -webkit-overflow-style: none;  /* Disable Android and iOS overflow bars*/
    scrollbar-width: thin !important;
}

@media (max-width: 1080px){
    html body{
        overflow-y:scroll;
    }
}

header {
    display: flex;
    position: relative;
    flex-direction: row;
    align-items: center; /*Alinear verticalmente exclusivamente porque la dirección es row*/
    justify-content: flex-start;
    background-color: #1b1b1b;
    color:#1b1b1b;
    top: 0;
    width: 100%;
    z-index: 100;
            -webkit-appearance: none; /* Elimina el estilo predeterminado en Safari y Chrome */
            -moz-appearance: none; /* Elimina el estilo predeterminado en Firefox */
            appearance: none; /* Elimina el estilo predeterminado en navegadores compatibles con la propiedad */
}

.head1{
    display: flex;
    flex-direction: row;
    align-items: center; /*Alinear verticalmente exclusivamente porque la dirección es row*/
    justify-content: left;
    width: 20%;
    height: auto;
}

.head2{
    display: flex;
    flex-direction: row;
    align-items: center; /*Alinear verticalmente exclusivamente porque la dirección es row*/
    justify-content: right;
    width: 80%;
    height: auto;
}

.Logo {
    width:6.3vh;
	height:auto;
    margin-left: 2.4vh;
}

.LogOut {
    display:flex;
    border:none;
    font-size:1.3vh;
    padding:0.4vh 0.8vh 0.4vh 0.8vh;
    height:auto;
    background-color:red;
    font-family: "Courier New", Courier, monospace;
    color:white;
    font-weight:900;
    cursor:pointer;
    margin-right: 1.7vh;
    margin-left: 1.7vh;
}



footer{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    color: #bababa;
    min-height: 40px;
    box-sizing: border-box;
    text-align: center;
    padding: 2vh 10vw;
}




h1{
    color:white;
    background-color:transparent;
    margin:0;
    letter-spacing: 0;
    font-family: "Helvetica", Sans-serif;
    font-size: 3.4vh;
    font-weight: 900;
}

h4{
    color: white;
    background-color:transparent;
    margin: 0;
    overflow-wrap: break-word; /* Lo mismo que word-wrap, pero más compatible */
    white-space: normal; /* Asegura que el texto puede romper en múltiples líneas */
    font-family: Helvetica,Helvetica Neue,Arial,Lucida Grande,sans-serif;
    letter-spacing: 0;
    font-weight: 600;
    font-size: 1.4vh;
}

.Descripcion{
    color: white;
    background-color:transparent;
    margin: 0;
    overflow-wrap: break-word; /* Lo mismo que word-wrap, pero más compatible */
    white-space: normal; /* Asegura que el texto puede romper en múltiples líneas */
    font-family: Helvetica,Helvetica Neue,Arial,Lucida Grande,sans-serif;
    letter-spacing: 0;
    font-style:normal;
    font-weight: 400;
    font-size: 1.4vh;
    line-height: 2vh;
}

.advertencia {
    color: white;
    margin: 0;
    font-family: Helvetica,Helvetica Neue,Arial,Lucida Grande,sans-serif;
    letter-spacing: 0;
    font-style:normal;
    font-weight: 400;
    font-size: 1.3vh;
    line-height: 2vh;
    font-style: italic;
    opacity: 70%;
}

.tallesbotones{
    display:flex;
    flex-direction:row;
    align-items:flex-start;
    background-color:transparent;
    column-gap:1vh;
    margin:0px;
    height:auto;
}

.talle{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color:rgba(0,0,0,0);
    border-style: solid;
    border-color:white;
    border-width: 0.1vh;
    width:3.5vh;
    height:3.5vh;
    margin:0px;
    color:white;
    font-size:1.3vh;
    font-family: "Helvetica", Sans-serif;
    cursor:pointer;
    transition: background-color ease-in 0.3s, border-color ease-in 0.3s, box-shadow ease-in 0.3s;
}

.talle:active{
    background-color:rgba(255,0,0,1);
    color:white;
    border-width: 1px;
    border-style: solid;
    border-color:red;
    transition: background-color ease-in 0.12s, border-color ease-in 0.12s, box-shadow ease-in 0.12s;
}

.Olvidado{
    background-color:rgba(255,0,0,0.5);
    border-color:rgba(255,0,0,0.5);
}

.selected{
    background-color:red;
    color:white;
    border-width: 1px;
    border-style: solid;
    border-color:red;
    outline: none;
}

.comprar {
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    border:0px;
    height:4vh;
    background-color:red;
    color:white;
    letter-spacing: 0;
    font-family: "Helvetica", Sans-serif;
    font-size: 1.4vh;
    font-weight: 900;
    box-sizing: border-box;
    cursor:pointer;
    margin:0px;
}

.GuiaTalle{
    align-self:flex-start;
    background-color:transparent;
    margin:0px;
    letter-spacing: 0;
    font-family: "Helvetica", Sans-serif;
    font-size: 1.4vh;
    font-weight: 500;
    color: white;
    text-decoration: none; /* Elimina el subrayado predeterminado */
    cursor:pointer;
}
.percha{
    text-align:center;
    margin:0px;
    width:1.3vh;
}
            
.overlay {
    position: absolute; /* Cubre todo el contenedor */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 70, 47, 0.39); /* Color negro con 50% de opacidad */
    z-index: 2; /* Coloca la capa de color encima del video */
}
.background-video {
    position: absolute; /* Asegura que el video se posicione dentro del contenedor */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1; /* Coloca el video detrás de otros elementos en el contenedor */
}
        
@media (max-width: 1080px) {
    .advertencia{
        font-size: 1.8vh;
    }
    .Logo {
        width:7.3vh;
    	height:auto;
        margin-left: 2.4vh;
    }
    
    .LogOut {
        font-size:1.6vh;
        padding:0.6vh 1vh 0.6vh 1vh;
        margin-right: 1.3vh;
    }
    .head1{
        padding: 0 40px !important;
    }
}

-webkit-scrollbar {
    width: 0;  /* Elimina la barra deslizadora vertical */
    height: 0; /* Elimina la barra deslizadora horizontal */
}


.Logo1 {
    margin-left: 0;
    height: 23px !important;
    max-height: 23px !important;
    width: auto;
}
.logo_carga {
    display: flex;
    background-color: red;
    padding: 6px 7px 1px 8px;
    z-index: 2001;
    animation: giro3D 3s infinite; /* Duración de 3 segundos y repetición infinita */
    transform-origin: center;
}

#pantalla_carga{
    opacity: 100%;
}

.pantalla-carga-off{
    opacity: 0% !important;
    pointer-events: none;
}
.sobre-carrito{
    display:inline-flex;
    position:absolute;
    width:auto;
    height:auto;
    transform: translateX(1px);
    background-color:white;
    font-size:10px;
}
/*Estilos para el header mini*/
.header_mini{
    height: 33px !important;
    background-color: white !important;
}
.logo_mini{
    width: auto !important;
    height: 13px !important;
}
.marco_logo_mini{
    /* pointer-events: none !important; */
    padding: 3px 5px 0px 6px !important;
}
.menu_mini, .carrito_mini{
    pointer-events: none !important;
    opacity: 0;
}
/* cuando el body tenga esta clase, no podrás scrollear */
.no-scroll-plis {
  overflow: hidden !important;
  touch-action: none !important;          /* bloquea gestos en mobile */
  overscroll-behavior: none !important;   /* sin rebote */
}
/*CSS para el focus*/
#focusArea {
    position: fixed;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    backdrop-filter: blur(5px);
    background: #ffffffab;
    opacity:0;
    transition: opacity .45s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
#focusArea img, #focusArea video{
    opacity: 1;
}
#focusArea img.cambio, #focusArea video.cambio{
    opacity: 0 !important;
}

.videoFondo{
    width: 100%;
    z-index: 0;
    position: fixed;
    height: 100vh;
    top: 0;
    left: 0;
    object-fit: cover;
    transform: scale(1.02);
    filter: grayscale(1) contrast(6) brightness(5) invert(1);
    opacity: .025;
    pointer-events: none;
}