@font-face {
    font-family: 'din';
    src: url('../fonts/din.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body{
	margin: auto;
	background-color: #00003F;
	font-family: din, sans-serif;
	font-size: 16px;
	color: white;
	max-width: 650px;
	position: relative;
}
header{
	text-align: center;
}
header img.logo{
	width: 60%;
}
header img.logo_vendedor{
	width: 100%;
}

#categorias_contenedor{
	display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-evenly;
	margin-top: 2vh;
}

#categorias_contenedor .categoria{
	background-color: #ff3f1b;
	color: white;
	border-radius: 8px;
	width: 30%;
	padding: 1.5vh 0;
	text-align: center;
	font-size: 110%;
	text-decoration: none;
	margin-bottom: 20px;
}

#productos{
	padding-bottom: 14vh;
}

#productos .cabecera{
	color: white;
	text-align: center;
}

#productos_contenedor{
	width: 91%;
    margin: auto;
	margin-bottom: 100px;
}
#productos_contenedor>div{
	background-color: #00296B;
	margin-bottom: 2vh;
	border-radius: 15px;
	color: white;
	padding-top: 1vh;
	padding-bottom: 1vh;
	/*height: 7vh;*/
	padding-right: 5%;
}

#productos_contenedor>div .opciones{
	margin-left: 20px;
}

#productos_contenedor>div .descripcion{
	margin-left: 20px;
}


@keyframes flash {
    0% { background-color: #FF6905; } /* Color temporal */
    100% { background-color: #00296B; } /* Vuelve al color original */
}

#productos #productos_contenedor>div:active {
    animation: flash 0.5s;
}

#productos_contenedor>div .producto{
	margin-left: 5%;
	font-size: 150%;
	width: 70%;
}

#productos_contenedor>div .precio{
	margin-left: 5%;	
	font-size: 175%;
	width: 70%;
}

#productos_contenedor>div .imagen_mas{
	float: right;
	width: 17%;
	height: 100%;
	background-image: url("../img/icono-add.png");
	background-repeat: no-repeat;
	background-size: cover;
}

#productos_contenedor>div .derecha{
	float: right;
	text-align: center;
}

#productos_contenedor>div .subtotal{
	font-size: 160%;
	font-weight: bold;
}

#productos_contenedor>div .cantidades{
	color: #00003F;
	font-size: 150%;
	font-weight: bold;
	background-color: #FFF045;
	border-radius: 10px;
	padding: 0 20px;
}

.flecha_atras{
	position: absolute;
	top: 1vh;
    left: 16px;
}
.flecha_atras img{
    height: 4vh;
}

h3{
	text-align: center;
}
	
footer{
	
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	max-width: 650px;
	margin: auto;
}

footer .pie_legal{
	background-color: black;
	text-align: center;
	padding: 10px 0;
	font-size: 95%;
}

#footer_carrito>a{
	display: flex;
	text-decoration: none;
	background-color: #FF6905;
	text-align: center;
	color: #00003F;
	height: 9vh;
	width: 91%;
	margin: auto;
	border-radius: 33px;
	font-weight: bold;
	font-size: 150%;
	justify-content: space-evenly;
	align-items: center;
	margin-bottom: 10px;
}

#footer_carrito .precio{
	color: white;
}

#footer_carrito .contenedor_cantidad{
	position: relative;
}

#footer_carrito .cantidad{
	background-color: white;
    border-radius: 50%;
    padding: 3px;
	position: absolute;
	right: 0;
	width: 1em;
    height: 1em;
}

#footer_pago>a{
	display: block;
	text-decoration: none;
	background-color: #FF6905;
	text-align: center;
	color: #00003F;
	padding-top: 3vh;
	height: 6vh;
	width: 91%;
	margin: auto;
	border-radius: 33px;
	font-weight: bold;
	font-size: 150%;
	margin-bottom: 10px;
}

#datos_pago{
	text-align: center;
}
#datos_pago input[type="text"]{
	width: 80%;
    border-radius: 30px;
    padding: 7px 5%;
    background-color: #00003F;
    border: 1px solid #FFF045;
    color: #FF6905;
    margin-bottom: 10px;
}

#datos_pago input::placeholder{
	color: gray;
}

#datos_pago input[type="checkbox"]{
	appearance: none;
	float: left;
  width: 20px;
  height: 20px;
 border: 1px solid #FF6905;
  border-radius: 15px; /* Bordes redondeados */
 background-color: #00003F;
  cursor: pointer;
  position: relative;
 
  vertical-align: middle;
  margin-right: 5px; /* Espacio entre el checkbox y el label */


}
/*
input[type="checkbox"]::before {
  content: "✔"; 
  font-size: 16px;
  color: #FFF045;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
}

input[type="checkbox"]:checked::before {
  display: block;
}
*/
#datos_pago .checkboxs{
	text-align: left;
	margin-left: 5%;
	width: 80%;
	
}

#datos_pago .checkboxs label{
	margin-left: 40px;
	display: block;
}

#datos_pago .checkboxs label a{
	color: white;
}

#datos_pago .observaciones{
	text-align: left;
	margin-left: 7%;
	color: #FF6905;
}

#datos_pago .nombre_label{
	text-align: left;
	margin-left: 7%;
	color: #FF6905;
	padding-bottom: 10px;
}

#datos_pago textarea{
	width: 80%;
    border-radius: 15px;
    padding: 10px;
    background-color: #00003F;
    border: 1px solid #FFF045;
    color: #FF6905;
	height: 150px;
	margin-top: 10px;
}

input[type="radio"] {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 1px solid #FF6905;
  border-radius: 50%; /* Hace que sea un círculo */
  background-color: #00003F;
  display: inline-block;
  position: relative;
  cursor: pointer;
  
  vertical-align: middle;
  margin-right: 5px; /* Espacio entre el checkbox y el label */
}

input[type="radio"]:checked {
  background-color: orange; /* Color de fondo cuando está seleccionado */
}

input[type="radio"]::before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: white;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
}

input[type="radio"]:checked::before {
  display: block; /* Muestra el punto blanco cuando está seleccionado */
}

.metodo_pago{
	display: flex;
	align-items: center; /* Centra el radio verticalmente con la imagen */
	gap: 10px; /* Espacio entre el radio y la imagen */
	cursor: pointer;
	justify-content: center;
	margin-bottom: 10px;
}

.metodo_pago>img{
	width: 70%;
}

#datos_pago button{
	display: block;
	text-decoration: none;
	background-color: #FF6905;
	text-align: center;
	color: #00003F;
	/*padding-top: 3vh;*/
	height: 6vh;
	width: 91%;
	margin: auto;
	border-radius: 33px;
	font-weight: bold;
	font-size: 150%;
	margin-bottom: 50px;
	border: none;
}

#pedido_recibido{
	text-align: center;
	width: 90%;
	margin: auto;
}

#pedido_recibido .identificacion_pedido{
	font-weight: bold;
	font-size: 150%;
	color: #FF6905;
}

#pedido_recibido .cantidad_pagar{
	font-weight: bold;
	font-size: 250%;
	color: #FF6905;
}

p{
	width: 90%;
	text-align: justify;
	margin: auto;
}
p>a{
	color: white;
}

#modal_opciones{
	background-color: #00296B;
	position: fixed;
	top: 10px;
	right: 10px;
	left: 10px;
	bottom: 10px;
	display: none;
	z-index: 90;
	font-size: 110%;
	padding: 10%;
}

#modal_opciones .titulo{
	border-top: 2px solid white;
    padding: 10px 0;
    margin-top: 20px;
}

.boton_post_pago{
	display: block;
	text-decoration: none;
    background-color: #FF6905;
    text-align: center;
    color: #00003F;
	border-radius: 33px;
	padding: 20px;
}

.post_notificacion{
	border: 3px solid #FF6905;
	border-radius: 20px;
	padding: 5%;
    max-width: 80%;
    margin: auto;
	font-size: 150%;
    text-align: center;
}

.post_notificacion form{
	font-size: 80%;
}

.post_notificacion input{
	font-size: 130%;
	padding: 5px;
}

.post_notificacion button{
	text-decoration: none;
	background-color: #FF6905;
    text-align: center;
    color: #00003F;
    
    width: 40%;
    border-radius: 33px;
    font-weight: bold;
    font-size: 110%;
   
	
}

.info_notificacion{
	border: 3px solid #FF6905;
	border-radius: 20px;
	padding: 5%;
    max-width: 80%;
    margin: auto;
	font-size: 150%;
    text-align: center;
}

.boton_anadir_opciones{
	text-decoration: none;
	background-color: #FF6905;
    text-align: center;
    color: #00003F;
    
    width: 40%;
    margin: auto;
    border-radius: 33px;
    font-weight: bold;
    font-size: 110%;
    justify-content: space-evenly;
    align-items: center;
    margin-bottom: 10px;
	position: fixed;
	bottom: 5%;
	right: 5%;
}

.boton_quitar{
	position: fixed;
	top: 2%;
	right: 5%;
}

section#resumen_pedido_final{
	text-align: center;
	font-size: 150%;
}

section#resumen_pedido_final .titulo{
	color: #FF6905;
}

section#resumen_pedido_final .opcion{
	font-size: 80%;
}