.cart-model-main {
  min-height: 100vh;
}

.max-1680 {
  max-width: 1680px;
}

.max-1200,
.max-1400,
.max-1680 {
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0 15px;
}

.cart-model-main .cart-banner {
  height: 100vh;
  position: relative;
  width: 100%;
}

.cart-model-main .cart-banner .position-box {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  height: 100%;
  justify-content: center;
  left: 0;
  padding-left: 50px;
  position: absolute;
  top: 0;
  z-index: 1;
}

.cart-model-main .cart-banner .position-box .desc {
  font-size: 28px;
}

.cart-model-main .cart-banner .position-box .title {
  font-size: 84px;
  margin-bottom: 0;
  margin-left: -7px;
}

.cart-model-main .cart-banner .position-box .subTitle {
  color: #6f6f6f;
  font-size: 21px;
  overflow: hidden;
}

.cart-model-main .subTitle p {
  float: left;
  font-size: 16px;
  max-width: 500px;
  text-align: left;
  word-break: break-word;
}

.cart-model-main .cart-banner .position-box .color-list {
  margin-bottom: 6vh;
  margin-top: 12vh;
}

.cart-model-main .cart-banner .position-box .color-list .color-item {
  border-radius: 50%;
  cursor: pointer;
  display: inline-flex;
  height: 35px;
  margin-right: 20px;
  width: 35px;
}

.cart-model-main
  .cart-banner
  .position-box
  .color-list
  .color-item.color-item-show {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.56);
}

.pie-color1 {
  border-radius: 50%;
  margin: 0 auto;
  border-color: black;

}

.cart-model-main .cart-banner .cart-list {
  bottom: 0;
  position: absolute;
  right: -20%;
  top: 0;
  width: 100%;
}

.cart-model-main .cart-banner .cart-list .cart-item.cart-item-hide {
  opacity: 0;
  transform: translateX(100%);
}

.cart-model-main .cart-banner .cart-list .cart-item {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  position: absolute;
  width: 100%;
}

.cart-list .cart-item img {
  max-height: 100%;
  max-width: 50%;
}

.cart-list .cart-item.cart-item-show {
  opacity: 1;
  transform: translateX(0);
  transition: all 0.5s ease;
}

/* RED SALINGA UPDATES */
.gallery-container {
  padding: 50px;
  height: 100vh;
  background-image: url(/assets/home/metal-strip-0f0d8d263f09ed2e210a9291955a5119f7a4c66a2be5d9ceb111c8e3f8ac5271.jpg);
  background-size: cover;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  .gallery-selection-container,
  .gallery-images-container {
    height: 100%;
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
  .gallery-selection-container {
    .gallery-selection-item {
      cursor: pointer;
      border-left: 10px solid gray;
      background-color: white;
      padding: 10px 30px;
      width: 400px;
      font-size: 40px;
      text-align: center;
      transition: all 0.2s linear;
      span {
        font-weight: bold;
        color: red;
        cursor: pointer;
      }
    }
    .gallery-selection-item.active {
      border-left: 10px solid red;
    }
  }
  .gallery-images-container { 
    .image-gallery-container {
      position: relative;
      height: 100%;
      width: 100%; 
      display: none;
      overflow: hidden;
    }
    .image-gallery-container.active {
      display: flex;
      justify-content: center;
      align-items: center;
    } 
    .carousel-caption {
      background-color: rgba(0, 0, 0, 0.291);
      width: 100%;
      position: absolute;
      bottom: 0;
      left: 10px;
      padding: 0;
      text-align: left;
      h5{
        margin: 0;
        padding: 10px;
      }
    }
  }
}

