
body{
    font-family: 'Roboto', sans-serif;
}

.txt-pequeno{
    font-size: 0.7rem!important;
}

.txt-mediano{
    font-size: 1rem!important;
}

.txt-grande{
    font-size: 1.4rem;
}

.txt-enorme{
    font-size: 2.5rem;
}

.noPadding{
    padding:0;
}

#existenProductos a{
    text-decoration: none;
    color: #000;
}

 @-webkit-keyframes fade-in-bottom {
    0% {
      -webkit-transform: translateY(50px);
              transform: translateY(50px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
      opacity: 1;
    }
  }
  @keyframes fade-in-bottom {
    0% {
      -webkit-transform: translateY(50px);
              transform: translateY(50px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
      opacity: 1;
    }
  }

.fade-in-bottom {
	-webkit-animation: fade-in-bottom 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	        animation: fade-in-bottom 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
  

/* Small devices (landscape phones, 576px and up)*/
@media (max-width: 575px) {

    .col-0{
        display: none;
    }

    .noPadding-xs{
        padding:0 !important;
    }

}

/* Medium devices (tablets, 768px and up)*/
@media (max-width: 767px) and (min-width: 576px) {

    .col-sm-0{
        display: none;
    }

    .noPadding-sm{
        padding:0 !important;
    }

}

/* Large devices (desktops, 992px and up)*/
@media (max-width: 991px) and (min-width: 768px) {

    .col-md-0{
        display: none;
    }

    .noPadding-md{
        padding:0 !important;
    }

}

/* Extra large devices (large desktops, 1200px and up)*/
@media (max-width: 1199px) and (min-width: 992px) {

    .col-lg-0{
        display: none;
    }

    .noPadding-lg{
        padding:0 !important;
    }

}

@media (min-width: 1200px){

    .col-xl-0{
        display: none;
    }

    .noPadding-xl{
        padding:0 !important;
    }
}

.texto-gris{
    color: grey;
}

.texto-blanco{
    color: white;
}