body {
  background: #3f3f3f;
}

main {
  display: flex;
}

.circle {
  margin-right: 0.5rem;
}

#gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  max-width: 20vw;
}

.insideBox {
  display: flex;
  flex-direction: column;
  width: 80%;
  height: 70%;
  background: #3f3f3f;
  border-radius: 0.5rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
  overflow: scroll;
  padding: 2%;
}

#leftSideContent {
  width: 55%;
  padding: 2rem;
  height: calc(100vh - 12rem);
  overflow-y: scroll;
}

#mobileDescription {
  display: none;
}

#mobileProductDetails {
  display: none;
}

#mobileReviews {
  display: none;
}

.outsideBox {
  display: flex;
  position: fixed;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  cursor: pointer;
  z-index: 3;
}

.number1 {
  color: white;
  font-size: 1.5rem;
  font-family: myBoldFont;
  margin-left: 1rem;
  margin-right: 1rem;
}

.product1Brand {
  font-family: myRegularFont;
  font-size: 1rem;
  color: white;
  opacity: 0.3;
  margin-top: 1rem;
}

.product1Btn {
  display: none;
  align-items: center;
  justify-content: center;
  color: white;
  border: 2px solid white;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  font-size: 1rem;
  font-family: myRegularFont;
  margin-top: 1.5rem;
}

.product1Btn:hover {
  background: #EA9F1C;
  transform: scale(0.95);
  border: 2px solid #EA9F1C;
}

.product1Img {
  height: auto;
  width: 22vw;
}

#product1Imgs {
  display: flex;
  /* flex-wrap: wrap; */
  justify-content: space-around;
  align-items: center;
  max-width: 90%;
}

.product1Name {
  font-family: myBoldFont;
  font-size: 1.7rem;
  /* height: 4rem; */
  color: #EA9F1C;
  margin-top: 0.5rem;
}

.product1Price {
  font-family: myBoldFont;
  font-size: 2rem;
  color: white;
  margin-top: 0.5rem;
}

.product1PriceBundle {
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  /* width: 100%; */
}

.product1SalePrice {
  font-family: myRegularFont;
  font-size: 2rem;
  color: white;
  text-decoration: line-through;
  text-decoration-color: #F14C48;
  margin-top: 0.5rem;
  margin-right: 1rem;
}

.product1SmallImg {
  height: auto;
  width: 7vw;
  margin: 0.3rem;
}

.productDeatailsBox {
  background-color: #2d2d2d;
  padding: 1rem;
  border-radius: 0.5rem;
}

.product1Summary {
  font-family: myRegularFont;
  font-size: 1rem;
  color: white;
  margin-top: 0.7rem;
}

.rating {
  display: flex;
  align-items: center;
  margin-top: 1rem;
  font-size: 1rem;
}

.reviewInstance {
  border-bottom: 2px solid rgba(255,255,255,0.3);
  padding-bottom: 2rem;
  margin-top: 2rem;
}

.reviewName {
  font-family: myBoldFont;
  font-size: 1.3rem;
  color: #EA9F1C;
  
}

.reviewTitle {
  font-family: myBoldFont;
  font-size: 1.3rem;
  color: white;
  margin-top: 0.5rem;
  margin-bottom: 0.3rem;
}

.revText {
  font-family: myRegularFont;
  font-size: 1rem;
  color: white;
}

#rightSideContent {
  width: 45%;
  padding: 2rem;
  height: calc(100vh - 12rem);
  overflow-y: scroll;
}

.section {
  margin-bottom: 2.5rem;
}

.sectionHeader {
  font-family: myBoldFont;
  font-size: 2rem;
  color: white;
  margin-bottom: 1rem;
}

.star {
  color: #EA9F1C;
  font-size: 1rem;
  margin-right: 0.2rem;
}

.star1 {
  color: white;
  font-size: 1rem;
  margin-right: 1rem;
}

.status {
  font-family: myRegularFont;
  font-size: 1rem;
  color: #90D81B;
  margin-top: 0.5rem;
  display: flex;
  justify-content: space-between;
  margin-left: 1.5rem;
}

.symbol1 {
  color: white;
  border: 2px solid white;
  font-size: 1.5rem;
  border-radius: 10px;
  padding: 8px;
}

.symbol1:hover {
  cursor: pointer;
  background-color: #EA9F1C;
  border: 2px solid #EA9F1C;
  transform: scale(0.95);
}



@media screen and (max-width: 600px) {

  #gallery {
    max-width: 40vw;
    margin-right: 1rem;
  }

  #leftSideContent {
    width: 100%;
    padding: 5vw;
    height: 100%;
  }
  
  .product1Brand {
    font-size: 1.2rem;
  }

  .product1Btn {
    display: flex;
  }
  
  .product1Img {
    height: auto;
    width: 45vw;
  }
  
  #product1Imgs {
    max-width: 100%;
  }

  .product1Name {
    font-size: 2rem;
  }
  
  .product1SmallImg {
    width: 15vw;
    margin: 1vw;
  }

  .product1Summary {
    font-size: 1.2rem;
  }
  
  #rightSideContent {
    display: none;
  }
}