.Product .page__container {
  max-width: var(--max--width-container);
  width: 95%;
  margin: 0px auto;
  min-height: 90px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
}

.Product .breadcrumbs {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  gap: 10px;
  margin: 25px 0px;
  color: var(--color--gray);
}

.Product .breadcrumbs-list,
.Product .breadcrumbs-list a,
.Product .breadcrumbs-list p {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 8px;
  text-transform: capitalize;
}

.Product .breadcrumbs .breadcrumbs-list .current-step {
  color: var(--color--dark);
}

.Product .breadcrumbs-list .with-arrow::after {
  content: "";
  display: block;
  height: 10px;
  width: 10px;
  color: var(--color--gray);
  border: 2px solid;
  border-left: 0;
  border-bottom: 0;
  border-color: inherit;
  border-radius: 2px;
  transform: rotate(45deg);
  transition: all 0.5s ease-in-out;
}

.Product .page-content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 40px;
}

.Product .left-side {
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  gap: 40px;
}

.Product .wrapper-slider {
  max-width: 100%;
  width: 100%;
  height: 477px;
}

.Product .previews {
  width: 20%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  gap: 14px;
}

.Product .arrow-up,
.Product .arrow-down {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.Product .arrow-up {
  transform: rotateX(180deg);
}

.Product .product-img {
  width: 80%;
  height: auto;
  object-fit: cover;
  transition: all 0.5s ease-in-out;
}

.Product .small-img {
  width: 100%;
}

.Product .skills__container {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  gap: 20px;
}

.Product .skills__container_mob {
  display: none;
}

.Product .skills-banner__container {
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: space-between;
}

.Product .skill-banner-img {
  width: 100%;
  object-fit: contain;
}

.Product .skills-list {
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: space-between;
}

.Product .skill-item {
  width: 33%;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
}

.Product .skill-item .skill-text {
  font-size: var(--font-size--small);
  line-height: 133%;
}

.Product .title {
  font-size: var(--font-size--sm-plus);
  font-weight: 600;
}

.Product .products-checkbox__container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.Product .products-checkbox__container .product-label {
  width: 33%;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
  flex-shrink: 0;
}

.Product .product-checkbox:checked {
  background-color: black;
}

.Product .products-checkbox__container .product-title {
  margin-top: -5px;
}

.Product .price__container {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
}

.Product .total-price {
  font-weight: 600;
  font-size: var(--font-size--sm-plus);
}

.Product .total-products {
  font-size: var(--font-size--small);
  color: var(--color--gray);
  margin-bottom: 3px;
}

.Product .right-side {
  width: 60%;
}

.Product .message-calendar.active {
  font-weight: 600;
  font-size: var(--font-size--body);
  color: #ed0000;
  border-radius: 12px;
  background-color: var(--background--color-light);
  padding: 5px;
}

@media (max-width: 1023px) {
  .Product .page-content {
    flex-direction: column;
    justify-content: center;
  }

  .Product .left-side {
    width: 100%;
    justify-content: center;
  }

  .Product .skills__container {
    width: 100%;
    justify-content: center;
  }

  .Product .skills-banner__container {
    justify-content: center;
  }

  .Product .right-side {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 450px) {
  .Product .mob-disclamer {
    text-align: center;
  }

  .Product .breadcrumbs {
    display: none;
  }

  .Product .page-content {
    gap: 5px;
  }

  .Product .wrapper-slider {
    height: 100%;
  }

  .Product .skills__container {
    display: none;
  }

  .Product .skills__container_mob {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 20px;
  }
}
