.carga{
    padding: 9px 0px 9px;
    display: flex;
    justify-content: center;
    min-height: 350px;
  }
  
.carga .content{
  margin-bottom: auto;
  margin-top: auto;
}

.mensaje{
    padding-top: 30px;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
}

.loader {
  width: 50px;
  height: 50px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: 
    radial-gradient(farthest-side,#303f52 94%,#0000) top/8px 8px no-repeat,
    conic-gradient(#0000 30%,#303f52);
  -webkit-mask: radial-gradient(farthest-side,#0000 calc(100% - 8px),#000 0);
  animation: l13 1s infinite linear;
}
@keyframes l13{ 
  100%{transform: rotate(1turn)}
}

.cabecera{
  width: 100%;
  font-weight: bold;
  padding: 30px 0 15px 0;
}

#losproducts{
  max-width: 1200px;
  padding: 30px 0px 30px 0px;
  margin-left: auto;
  margin-right: auto;
}

#products{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.onlyMovil{
  display: none;
}

.element{
  width: 100%;
  padding: 6px 0 6px 0;
  transition: opacity 1s;
}

.element .imagen{
  text-align: center;
}

.element img{
  width: 100px;
  max-height: 100px;
}

.element .title{
  font-size: 1.3rem;
  /* font-weight: bold; */
}

.element .title, .element .fprecio, .element .ftotal, .element .cant, .element .opcion{
  margin-top: auto;
  margin-bottom: auto;
}

.elim{
  cursor: pointer;
  border: #F58220 1px solid;
  background: url("../images/carrito/MdiDelete.svg") no-repeat scroll 0 0 transparent;
  /* background-color: #dc0b3c; */
  padding: 6px 15px 6px 35px;
  color: #363434;
}

button:hover{
  background-color: #ccc;
}

#subcabe{
  padding-top: 30px;
}

#subcabe button{
  cursor: pointer;
  padding: 12px 21px 12px 21px;
  background-color: #F58220;
  color: white;
  border: 0;
}

form button{
  cursor: pointer;
  padding: 12px 21px;
  background-color: #F58220;
  color: white;
  border: 0;
}

form button:hover{
  background-color: var(--principal);
}

#whole{
  font-weight: bold;
}

/* Counter */
.contador{
  width: 200px;
  display: flex;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

.contador input[type="number"]{
  appearance: textfield; /* Si no estorba quitar */
  -moz-appearance: textfield;
  width: 100px;
  text-align: center;
  font-size: 2rem;
  border: none;
  outline: none;
}

.contador #mas, .contador #menos{
  font-family: 'Botera';
  border: none;
  background-color: white;
  font-size: 2.3rem;
  cursor: pointer;
  padding: 6px 15px 6px 15px;
  color: #303f52;
}

.ocultar{
  display: none;
}

.sects{
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
  min-height: 350px;
  padding-top: 6px;
  padding-bottom: 6px;
}

.sects .content{
  margin-top: auto;
  margin-bottom: auto;
}

.sects table{
  width: 100%;
  margin: 6px 0;
}

.sects table thead{
  background: #303f52;
  color: white;
}

.sects .table{
  text-align: left;
}

.sects table td, .sects table th{
  padding: 6px 0;
}


.form-input{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px 0;
}

.form-input-box{
  display: flex;
  flex-wrap: wrap;
  width: 50%;
  padding-bottom: 12px;
}

.form-input-box label{
  width: 95%;
  font-size: 20px;
  font-weight: 400;
  margin: 5px 0;
}

.form-input .requerido{
  border-color: red;
}

.form-input-box input{
  height: 40px;
  width: 95%;
  border-radius: 7px;
  outline: none;
  border: 1px solid grey;
  padding: 0 10px;
}

.form-selection, .form-selection .title{
  width: 100%;
}

.form-selection-options{
  padding: 9px 0;
}

.form-selection label{
  padding: 0 22px 0 5px ;
}


.map{
  width: 100%;
  height: 330px;
  margin: 9px 0;
}


/* --------------------- Movil   ----------------------  */
@media screen and (max-width: 576px) {
  .hide-peq{
    display: none;
  }

  .onlyMovil{
    display: block;
  }

  .element .fprecio, .element .ftotal, #subcabe .ftTotal, #subcabe .fboton{
    display: flex;
    flex-direction: row;
    padding-left: 12px;
    padding-top: 6px;
  }

  .element{
    padding: 12px 0 12px 0;
    grid-template-columns: repeat(3, 1fr);
  }

  .element div:first-child{
    grid-row: 1 / 6;
    grid-column: 1 / 2;
  }

  .element div:nth-child(2){
    grid-row: 1 / 2;
    grid-column: 2 / 4;
  }

  .element div:nth-child(3){
    padding: 6px 0 6px 0;
    grid-row: 2 / 3;
    grid-column: 2 / 4;
  }

  .element div:nth-child(4){
    grid-row: 3 / 4;
    grid-column: 2 / 4;
  }

  .element div:nth-child(5){
    padding: 6px 0 6px 0;
    grid-row: 4 / 4;
    grid-column: 2 / 4;
  }

  .element div:last-child{
    grid-row: 5 / 5;
    grid-column: 2 / 4;
  }

  #subcabe{
    display: flex;
    flex-direction: column-reverse;
  }

  #subcabe button{
    width: 98%;
  }
  /* Form Data */
  .form-input-box, .form-selection{
    width: 100%;
    padding: 6px 9px;
    margin-bottom: 12px;
  }
  .form-input-box input{
    width: 100%;
  }

  .map{
    height: 360px;
  }

}