@font-face {
	font-family: Montserrat-Regular;
	src: url("fuentes/Montserrat-Regular.ttf");
}

@font-face {
	font-family: Montserrat-Medium;
	src: url("fuentes/Montserrat-Medium.ttf");
}

@font-face {
    font-family: Montserrat-Bold;
    src: url("fuentes/Montserrat-Bold.ttf");
}

@font-face {
    font-family: Montserrat-ExtraBold;
    src: url("fuentes/Montserrat-ExtraBold.ttf");
}

body
{
	font-family: Montserrat-Regular;
}

a:hover
{
    text-decoration: none;
}

.titulo
{
	font-family: Montserrat-Medium;
}

@media (min-width: 600px) 
{
    .texto_index1
    {
        font-family: Montserrat-Bold;
        text-align: right;
        font-size:3em;
    }

    .texto_index2
    {
        padding-top: 15%;
}
}

@media (max-width: 600px) 
{
    .texto_index1
    {
        font-family: Montserrat-Bold;
        font-size:3em;
    }

    .texto_index2
    {
        padding-top: 5%;
    }
}

.producto
{
    font-size: 1.2em;
}

.producto a,
{
    text-decoration: none;
    color: black;
}

.producto_promo,
{
    text-decoration:line-through!important;
}

.producto_nuevo
{
    position: absolute;
    color: white!important;
    top: 0px;
    background: black;
    padding: 4px 20px;
}

.categoria
{
    position: relative;
}

.imagen_categoria, .imagen_producto
{
    width:100%;
    height:400px;
    overflow:hidden;
    margin-bottom: 15px;
}

.imagen_producto.grande
{
    height:902px!important;
}

.imagen_categoria img, .imagen_producto img
{
    width: 100%;
    height:auto
}

@supports(object-fit: cover){
    .imagen_categoria img, .imagen_producto img
    {
      height: 100%;
      object-fit: cover;
      object-position: center center;
    }
}


.texto_categoria
{
    position: absolute;
    height: 100%;
    width: 100%;
    color:white;
    top:0;
    left: 0px;
}

.texto_categoria > h3
{
    position: absolute;
    left: 20px;
    bottom: 10px;
    border-bottom: 1px solid #fff;
    text-transform: uppercase;
}

.texto_categoria > h3:hover
{
    transition: 0.2s;
    border-bottom: 4px solid #fff;
}

.texto_producto
{
    position: absolute;
    height: 100%;
    width: 100%;
    color:white;
    top:0;
    left: 0px;
}


.texto_producto > h3
{
    display: none;
    position: absolute;
    width: 100%;
    top:45%;
    color:white;
    -webkit-text-shadow: 0 0 4px rgba(0,0,0,0.4);
    -moz-text-shadow: 0 0 4px rgba(0,0,0,0.4);
    text-shadow: 0 0 4px rgba(0,0,0,0.4);
}

.texto_producto:hover h3
{
    display: block;
}

.texto_producto:hover
{
    background: rgba(255,255,255,0.3);
    transition: 0.1s;
}

.nombre_producto
{
    font-size: 2.5em;
    text-transform: uppercase;
    font-weight: 900;
    font-family: Montserrat-ExtraBold!important;

}

.precio_tachado
{
    font-family: Montserrat-ExtraBold!important;
    text-decoration: line-through;
    font-weight: bolder;
    font-size:1.2em;
    color: grey!important;
    margin-bottom: 0px;
}

.precio
{
    font-family: Montserrat-ExtraBold!important;
    font-weight: 900;
    font-size:2em;
    color: red!important;

}

.categoria_titulo
{
    font-family: Montserrat-Bold;
    font-size:3em;
}

/***** Menu *****/

#sidebar {
    width: 350px;
    position: fixed;
    top: 0;
    left: -350px;
    height: 100vh;
    z-index: 999;
    background: white;
    color: #fff;
    transition: all 0.3s;
    overflow-y: scroll;
    box-shadow: 1px 2px 2px rgb(0 0 0 / 20%)
}

#sidebar.active {
    left: 0;
}

#dismiss {
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    position: absolute;
    top: 10px;
    right: 10px;
    color: black;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

#dismiss:hover {
    color: #7386D5;
}

.overlay {
    display: none;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}
.overlay.active {
    display: block;
    opacity: 1;
}

#sidebar ul.components {
    padding: 20px 0;
}

#sidebar ul p {
    color: #fff;
    padding: 10px;
}

#sidebar ul li a {
    padding: 10px;
    font-size: 1.1em;
    display: block;
    color: black;
}


#sidebar ul li.active>a,
a[aria-expanded="true"] {
    color: #fff;
    background: #6d7fcc;
}

a[data-toggle="collapse"] {
    position: relative;
}

.dropdown-toggle::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

ul ul a {
    font-size: 0.9em !important;
    padding-left: 30px !important;
    background: #6d7fcc;
}

ul.CTAs {
    padding: 20px;
}

ul.CTAs a {
    text-align: center;
    font-size: 0.9em !important;
    display: block;
    border-radius: 5px;
    margin-bottom: 5px;
}

a.download {
    background: #fff;
    color: #7386D5;
}

a.article,
a.article:hover {
    background: #6d7fcc !important;
    color: #fff !important;
}


.navbar {
    z-index: 998;
    padding: 15px 10px;
    border: none;
    border-radius: 0;
    box-shadow: 0px 0px 40px 0px rgb(0 0 0 / 16%);
}

.navbar-btn {
    box-shadow: none;
    outline: none !important;
    border: none;
}

/***** Fin Menu *****/

.btn-line
{
	border: 2px solid;
	background-color: none;
}

.btn-line:hover
{
	background: white;
}

.carousel.slide
{
     width:100%;
}