.content{background-color: #f6f8fc !important;}

h1, h2{
  font-size: 20px;
  font-weight: 500;
}

h1{margin-top: 0;}
h2{margin: 2em 0 1em;}

.cart-full-container{
  display: flex;
  gap: 1em;
  flex-direction: row;
  min-height: 80%;
}

.cart-side{
  background-color: white;
  padding: 24px;
  border-radius: 20px;
}

.cart-side:first-child{width: 65%;}

.products-container {
  gap: 2em;
  display: flex;
  flex-direction: column;
}

.product {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border-bottom: 1px solid #e5e5e5;
  gap: 10px;
  padding-bottom: 2em;
}

.product:last-child {border-bottom: 0;}

.product-side:first-child {
  display: flex;
  gap: 20px;
  flex-direction: row;
}

.product-side .product-img{
  width: 100%;
  height: 100px;
  object-fit: contain;
  max-width: 150px;
}

.product-side .trash{
  display: block;
  width: 40px;
  height: 40px;
  color: tomato;
  border-radius: 10px;
  border: none;
  padding: 5px;
  line-height: 0;
  background-color: #F6F8FC;
}

.product-cotization{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-cotization h3{
  font-weight: 500;
  font-size: clamp(0.8em, 1.3vw, 1.2em);
}

.product-cotization h4 {margin: 10px 0;}
.product-cotization .deactivate{background-color: #a7aed1;}

.quantity {
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: #f6f8fc;
  width: 124px;
  justify-content: space-between;
}

.quantity img{display: block;}
.quantity span{font-weight: bold;}

.quantity button {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  border: none;
  background-color: #303f90;
}

.product-side:last-child {
  width: 200px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
}

.price{
  font-weight: 500;
  text-transform: uppercase;
}

.price .value {
  /* font-size: 20px; */
  font-weight: bold;
  font-size: clamp(0.9em, 1.3vw, 1.2em);
  color: #303f90;
}
/* End */

.cart-side:last-child {
  width: 35%;
  height: max-content;
}

/* Cart Footer */
.cart-footer {
  display: flex;
  gap: 1em;
  margin-top: 1em;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
}

.cf-side {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 2em;
  align-items: center;
}

.cf-side:first-child {
  width: 250px;
  border-bottom: 1px solid black;
  padding-bottom: 1em;
}

.cf-side h3, .cf-side p {margin: 0;}
.cf-side h3 {font-size: 22px;}
/* End */

h2:first-child {margin: 1em 0;}

form select, form input:not([type="checkbox"]){
  margin: 1em 0;
  box-sizing: border-box;
  display: block;
  width: 100%;
  min-height: 40px;
  padding: 8px 12px 6px;
  font-size: 1rem;
  line-height: 1.5;
  color: black;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #bcbcbc;
  border-radius: 8px;
  margin: 1em 0;
  font-size: 14px;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

form select::placeholder, form input::placeholder{color: #a5a5a5}

input[type="file"] {margin: 2em 0;}

.btn-buy{
  width: 100%;
  font-weight: bold;
  font-size: 15px;
  display: flex;
  background-color: #303f90;
  color: white;
  align-items: center;  
  justify-content: center;
  padding: 0 1em;
  height: 40px;
  border-radius: 12px;
  gap: 0.4em;
  transition: .4s;
  margin-top: 1.2em;
  border: 2px solid #303f90;
}

@media (max-width: 1200px){
  .cf-side:first-child{width: 100%;}
  .product-side .product-img {max-width: 90px;}
}

@media (max-width: 980px){
  .cart-full-container {
    flex-direction: column;
    min-height: 100%;
  }

  .cart-side{width: 100% !important;}
}

@media (max-width: 700px){
  .cart-side {padding: 1.5em 1em;}
  .quantity {width: 95px;}

  .quantity button {
    width: 25px;
    height: 21px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 600px){
  .product-side .product-img {
    height: 50px;
    max-width: 50px;
  }
}