.amazon-header{
  background-color:rgb(19, 25, 33);
  color:white;
  display:flex;
  align-items:center;
  justify-content:space-between;
  position:fixed;
  top:0;
  left:0;
  right:0;
  height:60px;
  padding:0px 15px 0px 15px;
}

.amazon-header-left-section{
  width:180px;
}

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

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

.header-link{
  display:inline-block;
  text-decoration:none;
  cursor:pointer;
  border: 1px solid rgba(0 0 0 0);
}

.header-link:hover{
  border: 1px solid white;
}

.amazon-header-middle-section{
  display:flex;
  flex:1;
  max-width:850px;
  margin-left:10px;
  margin-right:10px;
}

.search-bar{
  flex:1;
  width:0px;
  font-size:16px;
  height:38px;
  padding-left:15px;
  border:none;
  border-top-left-radius:4px;
  border-bottom-left-radius:4px;
  border-top-right-radius:0px;
  border-bottom-right-radius:0px;
}

.search-button{
  background-color:rgb(254, 189, 105);
  border:none;
  width:45px;
  height:40px;
  flex-shrink:0px;
  border-top-right-radius:4px;
  border-bottom-right-radius:4px;
}

.search-icon{
  height:22px;
  margin-left:2px;
  margin-top:3px;
}

.amazon-header-right-section{
  width:180px;
  display:flex;
  flex-shrink:0;
  justify-content:end;
  justify-content:space-evenly
}

.order-link{
  color:white;
}

.orders-text{
  display:block;
  font-size:15px;
  font-weight:700;
}

.return-text{
  display:block;
  font-size:13px;
  color:white;
}

.cart-link{
  display:flex;
  color:white;
  position:relative;
  align-items:center;
}

.cart-icon{
  width:50px;
}

.cart-text{
  margin-top:12px;
  font-size:15px;
  font-weight:700;
}

.cart-quantity{
  color: rgb(240, 136, 4);
  font-size:16px;
  font-weight:700;
  position:absolute;
  top:0px;
  left:23px;
  text-align:center;
  width:15px;
}

@media(max-width: 800px){
  .amazon-header-left-section{
    width:unset;
  }
}

@media(max-width:575px){
  .amazon-logo{
    display:none;
  }
  .amazon-mobile-logo{
    display:block;
    height:35px;
    margin-top:5px;
  }
}
