* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: white;
  font-family: "Poppins", sans-serif;
}



body {
  background-color: black;
}

header {
  display: flex;
  justify-content: space-between;
  padding: 20px 40px;
  align-items: flex-end;
  padding-bottom: 50px;
}

.bar img {
  cursor: pointer;
  width: 30px;
}

.cart {
  cursor: pointer;
  display: flex;
  align-items: center;
}

header .header_tabs {
  display: none;
  /* display: flex;
  flex-direction: column;
  color: white;
  text-decoration: none;
  font-weight: 600;
  margin-left: 20px;
  border-bottom: 1px solid white;
  padding-bottom: 4px;
  align-items: center;
  justify-content: center; */
}

.sidebar {
  display: none;
  flex-direction: column;
  justify-content: center;
  background-color: black;
  align-items: center;
  padding: 50px 10px 150px 10px;
  background-size: contain;
  font-size: 2.8rem;
  font-weight: 700;
  position: fixed;
  inset: 0;
  z-index: 1;
}

.sidebar a {
  text-decoration: none;
}

.sidebar .cross {
  width: 50px;
  align-self: flex-start;
  padding-bottom: 20px;
}

.sidebar img {
  width: 100%;
}

header .logo img {
  width: 70px;
  border-radius: 50%;
}

header .cart img {
  width: 30px;
}

.cart_details {
  padding: 30px 20px;
  border-bottom: 1px solid gray;
  margin-left: 10px;
  margin-right: 10px;
}

.cart_details p {
  font-size: small;
  font-weight: 200;
  color: gray;
  margin-top: 20px;
}

.cart_details h2 {
  margin-bottom: 20px;
}

.cart_details button {
  background-color: #5d8787;
  border: none;
  cursor: pointer;
  color: rgb(255, 255, 255);
  padding: 20px 30px;
  font-size: 1rem;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  margin-top: 20px;
  transition: all ease 0.5s;
}

.cart_details button:hover {
  opacity: 0.8;
}

.items {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.items_data {
  display: flex;
  gap: 10px;
}

.items_front {
  display: flex;
  justify-content: space-between;
  gap: 70vw;
}

#cross_cart {
  width: 20px;
  height: 20px;
}

.item_image {
  width: 80px;
  margin-right: 10px;
}

.item_image img {
  max-width: 100%;
}

.price_details {
  display: flex;
  justify-content: space-between;
}

.quantity {
  display: flex;
  gap: 6px;
}

.quantity p {
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.item_price p {
  font-size: 1.2rem;
  color: rgb(196, 196, 196);
}

.total_tab {
  padding: 50px 20px 100px 20px;
}

.total_tab button {
  background-color: #7affff;
  border: none;
  cursor: pointer;
  color: black;
  padding: 22px 80px;
  width: 100%;
  font-size: 1rem;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  margin-top: 20px;
  transition: all ease 0.5s;
}

.total_tab button:hover {
  background-color: #62cccc;
}
