/**
* Contiene las hojas de estilo principal de la aplicación
*/
@import url("../../node_modules/@fortawesome/fontawesome-free/css/all.min.css");
@import url("../../node_modules/bootstrap/dist/css/bootstrap.min.css");
@import url("../../components/tabs/tabs.css");
@import url("../../components/seguridad/seguridad.css");
@import url("../../css/header-home.css");
@import url("../../css/header-app.css");
@import url("../../css/footer-home.css");
@import url("../../css/footer-app.css");

@font-face {
    font-family: "futura";
    src: url("../../assets/fuentes/fl.ttf");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "futura";
    src: url('../../assets/fuentes/FuturaStd-Medium.otf') format('opentype');/* Fallback for Browsers Supporting OTF */
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "futura";
    src: url('../../assets/fuentes/FuturaStdBold.otf') format('opentype');/* Fallback for Browsers Supporting OTF */
    font-weight: bold;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  html, body {
    height: 100%;
  }

  body {
    display: flex;
    flex-direction: column;
  }

body {
    overflow-x: hidden;
}

#app-container {
    font-family: 'futura';
    margin-top: 1%;
}

.app-container {
    position: relative;
    background-color: #f5f5f5;
    padding: 3px;
}
.transparente {
    background-color: #4346483d;
    position: fixed;
    top: 0;
    margin: 0 !important;
    width: 100%;
    height: 150vh;
    z-index: 20;
    backdrop-filter: brightness(1.1) blur(3px);

}

.swal-overlay{
    backdrop-filter: brightness(1.1) blur(3px);

}

#content-wrap{
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    flex-wrap: nowrap;
    /* gap: 1rem; */
    height: 100%;
}

#boton_volver {
    margin-left: 200px !important;
}

#app-header-content{
    margin-left: 75%;
}

/* Estilos básicos para portada de clientes */

.toolbar-container {
    position: relative;
    width: 100%;
    max-height: 60px;
}

.toolbar-container ul {
    list-style: none;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: space-between;
}

.toolbar-container ul li {
    display: inline-block;
}

.toolbar-container .toolbar-col-2 {
    width: 20%;
}

.toolbar-container .toolbar-col-3 {
    width: 65%;
}

.carousel-inner img {
    max-height: 60vh;
}

#imgCatCta {
    text-align: center;
    display: inline-flex;
    margin-top: 4%;
    margin-bottom: 4%;
    font-size: 0.7rem;
    margin-left: auto;
    margin-right: auto;
}

#imgCatCta img { 
    max-height: 6rem;
    max-width: 3.5rem;
    padding-right: 3%;
}

#imgCatCta .border-light  {
    border-top: none !important;
    border-bottom: none !important;
    border-right: none !important;
    border-width: medium !important;
    border-color: #9e9e9e!important;
    margin-left: 3em;
    padding-left: 2rem;
}

.iconos-home {
    text-align: center;
}

.carrusel img {
    max-height: 21rem ;
}

.app-container2 {
    text-align: center;
}

.carrusel img {
    max-height: 21rem ;
}

#carrusel-footer {
    padding-bottom: 5%;
}

.img-fluid {
    max-width: 70% !important;
}

.boton-contenedor {
    padding: 0;
    background-color: transparent;
    border: none;
}

/* Armo los media query para cuando cambia la resolución de pantalla se adapte. 
    Esto soluciona el problema de que en modo celu el footer tapaba el formulario.
*/


@media screen and (max-width: 580px) {
    #app-header-content {
        margin-left: 35%;
        align-self: center;
    }

    #nav-quiero-ser-cliente {
        margin-bottom: 12.5em;
    }

    #imgCatCta .border-light  {
        border-left: none !important;
        margin:5% 0;
        padding-left: 0;
    }

    #imgCatCta .catalogo  {
        padding-left: 2.5px;
    }

    .toolbar-container ul {
        padding: 0;
    }
    .toolbar-container .toolbar-col-2 {
        width: auto;
    }

    .toolbar-container .toolbar-col-3 {
        width: auto;
    }

    .toolbar-container ul {
        justify-content: space-between;
    }
}

@media screen and (min-width: 1360px) {
    .app-container {
        min-height: 600px;
        margin-bottom: 4%;
    }
    #tab-login_content {
        margin-top: 2%;
    }
    #frmLogin label {
        font-size: 1.3rem;
    }
}



