@charset "utf-8";
/* CSS Document */
/* Create a custom checkbox */
.contenedor-products {    margin: 0 auto;    height:500px;    width:100%;    max-width: 100%;
    overflow:auto;    box-sizing: border-box;    padding:0 ;}

/* Estilos para motores Webkit y blink (Chrome, Safari, Opera... )*/

.contenedor-products::-webkit-scrollbar {    -webkit-appearance: none;}

.contenedor-products::-webkit-scrollbar:vertical {    width:10px;}

.contenedor-products::-webkit-scrollbar-button:increment,.contenedor::-webkit-scrollbar-button {
    display: none;} 

.contenedor-products::-webkit-scrollbar:horizontal {    height: 10px;}

.contenedor-products::-webkit-scrollbar-thumb {    background-color: #218530;    border-radius: 20px;
    border: 2px solid #f1f2f3;}

.contenedor-products::-webkit-scrollbar-track {    border-radius: 10px;  }

@media (min-width: 992px) {
  .contenedor-products {    margin: 0 auto;    height:auto;    width:100%;    max-width: 100%;
    overflow:auto;    box-sizing: border-box;    padding:0 ;}
 
}


