@font-face {
	font-family: "BauhausBuglerBoldW00-Bold";
	src: url("../fonts/Bauhaus Bugler Bold W00 Bold.ttf") format("truetype");
   }
   
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	background-position: right;
	background-repeat: no-repeat, no-repeat;
	font-family: "BauhausBuglerBoldW00-Bold";
	align-items: center;
}

a {
	text-decoration: none;
}

        #carritoContenedor {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-top: 50px;
        }

        .producto {
            margin: 10px;
            padding: 10px;
            border: 1px solid #ddd;
            background-color: #fff;
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        #total {
            font-size: 18px;
            margin-top: 20px;
        }

.logo{
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 25px;
}        

.contenedor-principal{
    margin: 5%;
    padding: 5%;
    border: 2px solid rgb(204, 197, 197);
    box-shadow: 0px 1px 7px rgba(0, 0, 0, 1.8);

}

.contenedor-principal h1{
    text-align: center;
}

#Contenedor-cliente form {
    /*max-width: 400px; /* Ajusta el ancho máximo del formulario según sea necesario */
    margin: 0 auto; /* Centra el formulario dentro del contenedor */
    margin-left: 25%;
}

#Contenedor-cliente label {
    display: inline-block;
    text-align: left;
    margin-bottom: 8px;
    width: 150px;
}

#Contenedor-cliente input {
    display: inline-block;
    margin-left: 0px;
    width: 80%;
    height: 30px;
}

.Buttons, .Buttons2{
    margin-top: 20px;
    padding: 10px;
    background: #9416ce;
    border: 2px solid #9416ce;
    color: white;
    font-size: 14px;
    font-family: "BauhausBuglerBoldW00-Bold", sans-serif;
    transition: 1s;
    text-align: center;
}

.Buttons:hover{
    cursor: pointer;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    transition: 1s;
}

.Buttons2:hover{
    cursor: pointer;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    transition: 1s;
}

.ButtonsRegresar, .ButtonsEnviar{
    margin-top: 20px;
    padding: 10px;
    background: #9416ce;
    border: 2px solid #9416ce;
    color: white;
    font-size: 14px;
    font-family: "BauhausBuglerBoldW00-Bold", sans-serif;
    transition: 1s;
    text-align: center;
}

.ButtonsRegresar:hover{
  cursor: pointer;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  transition: 1s;
}

.ButtonsEnviar:hover{
  cursor: pointer;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  transition: 1s;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}


.quantity-container {
    position: relative;
    display: inline-block;
	margin-right: 15px;
  }

  .quantity-input {
    padding: 5px 5px 5px 5px;
    width: 60px;
    /* Añadir estas reglas generales */
    appearance: textfield;
    -moz-appearance: textfield;
	text-align: center;
	height: 100%;
	border: 2px solid transparent;
	border-radius: 10px;
  }

  .quantity-button1 {
    position: relative;
    height: 28px;
    width: 5%;
    cursor: pointer;
    border: none;
    background-color: transparent;
	color: #9416ce;
    z-index: 5;
    left: -5%;
    border-right: 1px solid #9416ce;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
  }

 .quantity-button1:hover{
	background: #9416ce;
	color: #ffffff;

  }

  .quantity-button {
    position: relative;
    height: 28px;
    width: 5%;
    cursor: pointer;
    border: none;
    background-color: transparent;
	color: #9416ce;
    z-index: 5;
    right: -5%;
    border-left: 1px solid #9416ce;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
  }

  .quantity-button:hover{
	background: #9416ce;
	color: #ffffff;

  }

  .eliminar-producto{
    background: transparent;
    border: transparent;
    color: red;
  }

  .eliminar-producto:hover{
    cursor: pointer;
    color: darkred;
  }


  @media(max-width:900px){
    .Buttons, .Buttons2{
      max-width: 50%;
      min-width: 45%;
      max-height: 100%;
      
    }

    .Buttons{
      font-size: 15px;
      margin-top: 70px;
      padding: 0;
      position: relative;
      border-right: 1px solid black;
    }

    .Buttons2{
      font-size: 15px;
      margin-top: -20px;
      margin-top: 70px;
      padding: 9px;
      position: relative;
      border-left: 1px solid black;
    }
    #botones{
      margin: 0;
      align-items: center;
      display: flex;

    }

    #Contenedor-cliente form{
      width: 100%;
      margin-left: 10%;
    }
  }



