.s_carrito {
min-height: 100vh;
display: flex;
flex-direction: column;
justify-content: space-between; }
.s_carrito__header {
  background-color: #42AEDC;
  /*height: 80px;*/
  padding-left: 0;
  width: 100%; }
  .s_carrito__header .s_close {
  position: absolute;
  font-size: 1.3em;
  color: #ffffff;
  padding: 5px;
  cursor: pointer; }
  .s_carrito__header h3 {
  color: white;
  font-family: 'Oswald', sans-serif;
  /*font-size: 2em;*/
  padding: 20px;
  margin: 0;
  text-align: center; }
.s_carrito__resumen {
  height: 100%;
  overflow-y: auto; }
.s_carrito__footer {
  /*height: 104px;*/
  background-color: white;
  text-align: center;
  border-top: 1px solid #e0e0e0;
  align-self: flex-end;
  width: 100%; }
  .s_carrito__footer--total {
  color: #626262;
  font-family: 'Oswald', sans-serif;
  /*font-size: 2em;*/
  /*padding: 10px 0;
  margin: 0;*/ }
  .s_carrito__footer--checkout {
  font-size: 20px;
  background-color: #42aedc;
    color: white;
  }
  .s_carrito__footer--checkout:hover{
    background-color: #2F96C2;
  }
  .s_carrito__footer--checkout:active{
    background-color: #0689C1;
  }
.s_producto-carrito {
padding: 0.75em;
display: flex;
align-items: center;
border-bottom: 1px solid #eaeaea;
justify-content: space-between;
min-height: auto; }
.s_producto-carrito__producto {
  display: flex;
  align-items: center;
  flex: 0 0 130px; 
}
  .s_producto-carrito__producto--img {
  width: 40px;
  border-radius: 50%; }
  .s_producto-carrito__producto-info {
  padding: 5px; }
  .s_producto-carrito__producto-info .s_producto_nombre {
    color: #626262;
    font-family: 'Oswald', sans-serif;
    font-size: 1em;
    padding: 0;
    margin: 0;
    max-width: 105px; }
  .s_producto-carrito__producto-info .s_producto_descripcion {
    font-size: 0.8em;
    line-height: 12px; }
  .s_producto-carrito__producto-info .s_producto_list-modificadores {
    font-size: 0.8em;
    line-height: 15px;
    margin-top: 5px; }
    .s_producto-carrito__producto-info .s_producto_list-modificadores p {
    max-width: 105px; }
.s_producto-carrito__valores {
  display: flex;
  align-items: center; 
  justify-content: space-between;
  flex: 1 1 auto;
}
  .s_producto-carrito__valores input[type=number] {
  margin: 0;
  height: initial;
  width: 40px;
  text-align: center; }
  .s_producto-carrito__valores .s_cantidad__minus, .s_producto-carrito__valores .s_cantidad__plus {
  cursor: pointer; }
  .s_producto-carrito__valores .s_precio {
  color: #626262;
  font-family: 'Oswald', sans-serif;
  font-size: 1em;
  padding: 0;
  margin: 0 .5em 0;
  width: auto; }
  .s_producto-carrito__valores .s_eliminar {
  line-height: 0;
  padding: 0 0 0 5px;
  cursor: pointer;
  width: 100%;
  text-align: right; }
.s_resumen-carrito__list-productos {
width: 100%;
/*height: calc(100vh - 240px);*/
overflow-y: auto; 
line-height: normal;
}

.s_resumen-carrito .s_producto-carrito__producto-info small {
font-size: 10px;
line-height: 10px;
display: block;
margin-top: 2px;
margin-left: 2px;
font-style: italic; }
.s_site-wrapper--has-overlay {
  overflow: hidden;
  position: relative;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
.s_producto-carrito__valores input[type="number"][readonly] {
  background-color: #e4e7ed;
  border-color: #e4e7ed;
  cursor: not-allowed;
}
.s_producto-carrito__valores input[type="number"] {
  border: 1px solid black;
  width: 50px;
  text-align: left;
  padding: 4px;
}
@media (max-width: 991px) {
  .s_site-wrapper--has-overlay .site-overlay {
    visibility: visible;
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.8);
  }
}
