.header {
  position: fixed;
  margin-top: 20px;  
  z-index: 2;
  width: 100%;
}

.headerSeparator {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.siteBrand {
  font-weight: bold;  
  font-size: 24px;
  display: flex;
  align-items: center;
  
  img {
    width: 48px;
    margin-right: 12px;
  }

 .green {
    color: #35ff2e;
  }

  .red {
    color: #E71900;
  }

  @media (max-width: 480px) {
  font-size: 20px;
  
  img {
    width: 42px;
  }

  }
}

.secondaryText {
  color: white;
  font-weight: bold;  
  font-size: 48px;
  margin-left: 10px;

  @media (max-width: 480px) {
    font-size: 20px;
  }
}

.cart {
  width: 32px;  
  position: relative; 
}

.cartCheckoutButton {
  position: relative;
  background-color: transparent;
  border: none;
  cursor: pointer;
    
    img {
      width: 100%;
    }
}

.cartItemsQuantity {
  position: absolute;
  top: -10px;
  right: -7px;
  color: #E71900;
  font-weight: bold;
  background-color: #fff;
  padding: 0px 10px;
  border-radius: 12px;
  display: none;  
}

.notEmpty {
  display: block;
}


.checkoutCart {
  position: absolute;
  top: 55px;
  right: -10px;
  background: linear-gradient(180deg, #101010 40%, #1d1d1d 80%);
  width: 430px;
  height: 390px;
  border-radius: 12px;
  flex-direction: column;
  display: none;

  @media (max-width: 480px) {
    width: 355px;
    height: 400px;
  }
}

.active {
  display: flex;
}

.checkoutCartTitle {
  padding: 20px;
  border-bottom: 1px solid #1d1d1d;
  display: flex;
  justify-content: space-between;
  align-items: center;
  span {
    font-size: 18px;
    letter-spacing: 1.5;
  }

  img {
    width: 16px;
    height: 16px;
    cursor: pointer;
  }
}

.checkoutCartList {
  display: flex;  
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 2px 12px;
  overflow-y: auto;
  scrollbar-width: none;
}

.emptyCart {
  margin: auto;
  font-size: 28px;
  text-align: center;
}


.checkoutCartItem {
  display: flex; 
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #242424;
  padding: 8px 0px;
}

.itemCartInfo {
  width: 190px;
  display: flex;
  flex-direction: column;
  margin: 0px 8px;

  p {
    font-size: 16px;
    font-weight: 300;
  }
}

.itemCartPrice {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  letter-spacing: 1px;

  span {
    margin-top: 4px;
    margin-right: 14px;
  }
}

.foodImageInCart {
  width: 70px;
}

.removeItem {
  width: 12px;
  height: 16px;
  cursor: pointer;
}

.totalPrice {
  display: flex;
  justify-content: space-between;
  font-size: 20px;
}

.checkoutButton {
  margin: 0;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  display: none;
  justify-content: center;
}

.checkoutButtonVisible {
  display: flex;
}

.checkoutCartItemRight {
  display: flex;
  align-items: center;  
  margin-right: 8px;
}

.checkoutCartQuantityController {
  width: 100%;
  padding: 8px 0px;
  display: flex;
  justify-content: center;
  border: 1px solid #494949;
  border-radius: 12px;
  margin-right: 8px;
}

.checkoutCartQuantityChange {
  font-weight: bold;
  font-size: 14px;
  padding: 0px 8px;
  background-color: transparent;
  border: none;
  cursor: pointer;
}

.checkoutCartQuantityNumber {
  font-weight: bold;
  padding: 0px 8px;
  font-size: 14px;
  border-right:2px solid #494949;
  border-left:2px solid #494949;  
}

.checkoutCartProductPrice {
  min-width: 54px;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 1.25px;
  text-align: center;
}