@charset "utf-8";
/* CSS Document */

/*////// GENERAL ///////*/

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body{
	font-family: "dm-sans", sans-serif;
    font-weight: 700;
    font-style: normal;
	height: 100vh;
	
}

a{
	font-family: "condor", sans-serif;
    font-weight: 500;
    font-style: normal;
	font-size: 13pt;
	color: #fff;
	text-decoration: none;
}

.submenu::-webkit-scrollbar {
	width: 10px;
	background: #A3A3A3;
	
	
}

.submenu::-webkit-scrollbar-thumb{
	border: 1px solid #272E66;
	background: #1F1F1F;
	border-radius: 10px;
}



/*///////////////////  CONTENIDO  ///////////////////*/

.ornamento{
	width: 90%;
    height: auto;
    margin: 50px auto 0px;
    margin-bottom: 150px;
    display: flex; 
    flex-direction: column;
    align-items: center;

   
}

.titulo_caja{
	width: 95%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	
}


/*/////////////////// CAJA DE PEDIDOS ///////////////////*/



.cont_pedidos{
	display: flex;
    justify-content: flex-start;
    background-color: #fff;
    width: 90%;
    height: auto;
    flex-wrap: wrap;
	gap:20px;
    margin-top: 15px;
}

.caja_titulo{
	display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    height: 50px;
    margin: 20px auto ;
    border-bottom: 1px solid #DDD;
    font-family: changeling-neo-stencil, sans-serif;
    font-style: normal;
    font-weight: 300;
}


.tarjeta_pedido{
	width: 400px;
    height: auto;
	min-height: 250px;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
    flex-direction: column;
	border: 1px solid #ddd;
	padding: 20px;
}

.tarjeta_pedido p{
	padding: 5px 0px;
}




.cont_contador p{
	width: 25px;
	height: 25px;
	text-align: center;
}

.caja_btn{
	width: 70px;
	font-size: 10pt;
	 cursor: pointer;
	
}

.elemento_input{
	width: 25px;
	height: 25px;
}


.elemento_precio{
	width: 100px;
	height: 180px;
	
	text-align: right;
	padding: 20px 5px;
}


.btn_compra{
	border: 1px solid #ffffff;
    background-color: #000000;
    border-radius: 10px;
    width: 140px;
    height: 35px;
    margin: 5px;
    color: white;
    cursor: pointer;
    padding: 7px;
    text-decoration: none;
    text-align: center;
}


.toggle {
  --width: 50px;
  --height: calc(var(--width) / 2);
  --border-radius: calc(var(--height) / 2);

  display: inline-block;
  cursor: pointer;
}

.toggle__input {
  display: none;
}

.toggle__fill {
  position: relative;
  width: var(--width);
  height: var(--height);
  border-radius: var(--border-radius);
  background: #dddddd;
  transition: background 0.2s;
}

.toggle__input:checked ~ .toggle__fill {
  background: #009578;
}

.toggle__fill::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: var(--height);
  width: var(--height);
  background: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  border-radius: var(--border-radius);
  transition: transform 0.2s;
}

.toggle__input:checked ~ .toggle__fill::after {
  transform: translateX(var(--height));
}


.caja_titulo_modal{
	display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 98%;
    height: auto;
    margin: 20px auto 5px;
}

.caja_titulo_modal p{
	font-family: changeling-neo-stencil, sans-serif;
    font-style: normal;
	color: #000000;
	margin: 0px 20px 0px 0px;
}

.formulario{
	width: 100%;
	display: flex;
	flex-direction: column;
}

.cont_btn_guardar{
	width: 100%;
	margin: auto;
	display: flex;
	justify-content: flex-end;
}


.caja_btn{
	border: 1px solid #ffffff;
	background-color: #0b5ed7;
	border-radius: 10px;
	width: 130px;
	height: 30px;
	margin: 20px;
	color: white;
	cursor: pointer;
	
}


/* DISEÑO PARA TABLET */

@media (min-width:481px) and (max-width:768px){
	
	
.cont_pedidos{
	
    width: 90%;
   
}	
	
	.elemento_datos h2{
		text-align: center;
	}	
	
}


/* DISEÑO PARA MOVIL */

@media (min-width:0px) and (max-width:480px){
	
	.ornamento{
		width: 100%;
	}
	
	.caja_titulo{
	width: 90%;
    text-align: center;
    padding: 20px;
    
	}
		
	.caja_cuenta{
		width: 80%;
	margin-bottom: 100px;
  }
	
		
.cont_pedidos{
	
    width: 100%;
   
}	
	
	.elemento_datos{
		padding: 20px 15px;
	}
	
	.elemento_datos h2{
		text-align: center;
	}	
	
	.titulo_cuenta{
		font-size: 12pt;
		font-weight: 600;
	}
	
	.datos_cuenta {
    font-size: 12pt;
		color: #000;
		font-weight: 600;
    
    height: 20px;
    width: 300px;
   
}
	
	.caja_titulo_direccion{
		padding: 10px 20px;
	}
	
	.tarjeta_pedido{
		width: 100%;
	}
	
}


