.checkout-header {
  height: 60px;
  padding-left: 30px;
  padding-right: 30px;
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);

  display: flex;
  justify-content: center;

  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.header-content {
  width: 100%;
  max-width: 1100px;

  display: flex;
  align-items: center;
}

.checkout-header-left-section {
  width: 150px;
}

.amazon-logo {
  width: 100px;
  margin-top: 12px;
}

/* .amazon-mobile-logo {
  display: none;
} */

/* @media is used to create responsive design (making the
   website look good on any screen size). This @media
   means when the screen width is 575px or less, different
   styles (inside the {...}) will be applied. */
   @media (max-width: 3000px) {
    .amazon-logo {
      /* display: none; */
      width: 80px;
      margin-top: 2px;
    }
  }

   @media (max-width: 575px) {
  .checkout-header-left-section {
    width: auto;
  }

  .amazon-logo {
    /* display: none; */
    width: 70px;
    margin-top: 1px;
  }

 
  


  
}

.checkout-header-middle-section {
  flex: 1;
  flex-shrink: 0;
  text-align: center;

  font-size: 25px;
  font-weight: 500;

  display: flex;
  justify-content: center;
  padding-top : 15px;
}

.cart-quantity{
  /* color: rgb(0, 113, 133);
  font-size: 23px;
  text-decoration: none;
  cursor: pointer; */

  color:rgb(235, 243, 235);
  font-size: 16px;
  font-weight: 700;
/* 
border-style: solid; */
background-color: rgb(6, 206, 6);
/* border-color: orange; */
/* border-right: none;
border-top: none;
border-top-right-radius: 10px;
 */
/* 
  position: absolute; */
  /* top: 4px; */
  /* left: 22px;
  
  margin-bottom: 15px; */
/*   
  width: 30px;*/
  width: 20px;
  border-radius: 30px;
  margin-bottom: 9px;
  text-align: center;
  padding: 6px;
  padding-top: 7px;
  margin-left: 50px;
  margin-bottom: 17px;
}



@media (max-width: 1000px) {
  .checkout-header-middle-section {
    font-size: 20px;
    margin-right: 60px;
  }

  .return-to-home-link {
    font-size: 18px;
  }
}

@media (max-width: 575px) {
  .checkout-header-middle-section {
    margin-right: 5px;
  }
}

.checkout-header-right-section {
  text-align: right;
  width: 150px;
}

@media (max-width: 1000px) {
  .checkout-header-right-section {
    width: auto;
  }
}
