* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: monospace;
  overflow-x: hidden;
  font-synthesis: 15px;
}

a {
  text-decoration: none;
}

body {
  background: linear-gradient(to right, #6f7280, #2a2c3c, #181827, #833ab4, #fd1d1d, #fcb045);
  background-size: 400% 400%;
  animation: body 10s infinite ease-in-out;
  overflow-x: hidden;
}

@keyframes body {
  0% {
    background-position: 0 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}
.parallax-container {
  height: 305px;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #e6572c;
}
@media (min-width: 768px) {
  header .icon {
    padding-right: 90px;
  }
}
@media (min-width: 1200px) {
  header .icon {
    padding-right: 150px;
  }
}
header .icon i {
  padding-right: 10px;
  font-size: 30px;
  color: #fff;
}
header img {
  width: 60px;
}
header .iconCart {
  position: relative;
  z-index: 1;
  margin-right: 20px;
}
header .iconCart .totalQuantity {
  position: absolute;
  top: 0;
  right: 0;
  font-size: x-large;
  background-color: #b31010;
  width: 40px;
  height: 40px;
  color: #fff;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transform: translateX(20px);
}

.container {
  width: 1200px;
  height: 1200px;
  margin: auto;
  padding-bottom: 100px;
  max-width: 90%;
  transition: transform 1s;
}
.container #select {
  width: 150px;
  height: 30px;
  background-color: #E8BC0E;
  border-radius: 9px;
  font-size: 20px;
  font-weight: bolder;
}
.container .listProduct {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.container .listProduct .item {
  position: relative;
  height: 350px;
  width: 300px;
  padding-right: 20px;
  border-radius: 9px;
}
.container .listProduct .item:hover .productDetails {
  transition: 0.5s;
  opacity: 1;
  transform: translateX(0) translateY(0);
  top: 0;
  left: 0;
}
.container .listProduct .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}
.container .listProduct .item h2 {
  font-weight: 700;
  font-size: x-large;
}
.container .listProduct .item button {
  border-radius: 50%;
  width: 50px;
  height: 50px;
  background-color: #E8BC0E;
  position: absolute;
  right: -5px;
  bottom: 30px;
}
.container .listProduct .item button img {
  object-fit: cover;
  height: 30px;
  width: 30px;
}
.container .listProduct .item .productDetails {
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #e6572c;
  color: #fff;
  width: 100%;
  height: 100%;
  border: none;
  padding: 20px 30px;
  box-shadow: 0 10px 50px #000;
  cursor: pointer;
  opacity: 0;
  border-radius: 15px;
}

.cart {
  z-index: 5;
}

.carousel {
  width: 100vw;
  padding-top: 30px;
}
@media (min-width: 768px) {
  .carousel {
    height: 70vh;
  }
}
@media (min-width: 1200px) {
  .carousel {
    height: 90vh;
  }
}
@media (min-width: 768px) {
  .carousel .carousel-inner {
    height: 90vh;
  }
}
@media (min-width: 1200px) {
  .carousel .carousel-inner {
    height: 100vh;
  }
}
.carousel .carousel-inner .carousel-item {
  display: block;
  position: relative;
  color: aliceblue;
}
@media (min-width: 768px) {
  .carousel .carousel-inner .carousel-item {
    padding-left: 400px;
  }
}
@media (min-width: 1200px) {
  .carousel .carousel-inner .carousel-item {
    padding-left: 500px;
  }
}
.carousel .carousel-inner .carousel-item img {
  position: absolute;
  top: 0;
  height: 300px;
  padding-left: 300px;
}

.content .addPhone {
  position: relative;
  background-color: darkgray;
}
.content .addPhone .addPhoneButton {
  position: absolute;
  top: -1px;
  right: 0;
  border-radius: 18px;
  color: aliceblue;
  background-color: black;
}
.content .addPhone .addPhoneButton i {
  border-radius: 50%;
  color: aliceblue;
}
.content table {
  width: 100%;
}
.content table tr td {
  text-align: center;
  height: 70px;
  background-color: black;
  color: aliceblue;
}
@media (min-width: 768px) {
  .content table tr td {
    width: 30px;
  }
}
@media (min-width: 1200px) {
  .content table tr td {
    width: 50px;
  }
}
.content table tr td img {
  width: 90px;
  height: 100px;
}

footer {
  background-color: #e6572c !important;
}
footer ul {
  padding-left: 0;
}
footer ul li {
  display: inline-block;
  display: flex;
  flex-direction: column;
}/*# sourceMappingURL=main.css.map */