:root {
  --slight-shadow-color: #333;
  --text-color-main: #565959;
  --text-color-main-details: #0f1111;
  --text-color-main-links: #268697;
  --link-hover: #c7511f;
}

/*utility classes*/
.text-bold {
  font-weight: 600;
}
.green-text {
  color: #007600;
}
.slight-shadow {
  box-shadow: 1px 1px 3px var(--slight-shadow-color);
}

.main-container {
  width: 100%;
  height: 105vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.4rem;
  
}

.link-main {
  color: var(--text-color-main-links);
  line-height: 2rem;
  cursor: pointer;
  font-weight: 400;
  filter: contrast(1.25);
}

.link-main:hover {
  text-decoration: underline;
  color: var(--link-hover);
  filter: contrast(1);
}

.main-container .main-wrapper {
  width: 100%;
  max-width: 1500px;
  display: flex;
  justify-content: space-between;
  height: 727px;
  gap: 3rem;
  margin-top: 20px;
  padding: 14px 18px 18px;
  padding-top: 0;
  border-bottom: rgba(51, 51, 51, 0.177) solid 1px;
}

.main-container .right-wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
}

.main-container .middle {
  /* width: 73.46rem; */
  height: 100%;
  display: flex;
  flex-direction: column;
  padding-right: 4.689rem;
}

.main-container .item-description {
  color: var(--text-color-main);
  font-size: 2.4rem;
  line-height: 3.2rem;
}

.main-container .rating-container {
  display: flex;
  gap: 2rem;
}
.main-container .rating-container .stars-rating {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

 .stars-image {
  background: url("/assets/images/sprites_rating.png") no-repeat -2px -82px;
  width: 80px;
  height: 15px;
}

.small-down-arrow {
  font-size: 0.8rem;
  color: #797d7d;
}

.stars-rating {
  cursor: pointer;
}

.stars-rating:hover i {
  color: #000;
}

.main-container .middle-price {
  display: flex;
  position: relative;
  margin-top: 1.4rem;
  font-size: 1.3rem;
  padding-bottom: 2px;
}

.big-number-price {
  font-size: 2.8rem;
}
.small-number-price {
  position: relative;
  top: 0.6rem;
}
.right .small-number-price {
  position: relative;
  top: -5px;
}
.right .big-number-price {
  margin-bottom: 1rem;
}

.shipping-fees {
  margin-top: 0.5rem;
  display: flex;
  gap: 0.5rem;
  color: var(--text-color-main);
}

.details-link-scroller {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.7rem;
}

.details-link-scroller:hover,
.details-link-scroller-right:hover {
  cursor: pointer;
}
.details-link-scroller:hover i,
.details-link-scroller-right:hover i {
  color: #000;
}

.middle h3 {
  margin-top: 1rem;
  padding-bottom: 1.5rem;
  color: #0f1111;
}
.middle .product-details-container {
  color: var(--text-color-main);
  padding-bottom: 1.5rem;
  display: flex;
  gap: 5rem;
}

.middle .product-details-container.p-c-two {
  gap: 4.55rem;
}

.middle .product-details-container > span {
  color: #0f1111;
  font-weight: 600;
}

.main-container .right {
  width: 42.6rem;
  height: 100%;
  padding: 2rem 1.7rem;
  border-radius: 8px;
  border: 1px solid rgba(2, 2, 2, 0.204);
  font-size: 1.6rem;
  line-height: 20px;
}

.shipping-fees-right,
.details-link-scroller-right {
  display: inline;
  font-size: 1.4rem;
}

.main-container .right .middle-price {
  margin: 0;
}
.shipping-fees-text {
  color: #565959;
  font-size: 1.4rem;
}

.main-container .right a {
  text-decoration: none;
  color: cadetblue;
}
.main-container .right a:hover {
  color: orange;
}


.free-delivery-right {
  padding-top: 1rem;
  font-size: 1.4rem;
  color: #0f1111;
}

.delivery-to-right {
  display: flex;
  font-size: 1.2rem;
  gap: 0.7rem;
}
.delivery-link-right:hover {
  text-decoration: none;
}

.dropdown-fake {
  margin-top: 1rem;
  height: 22px;
  width: 62px;
  color: var(--text-color-main);
  font-size: 13px;
  border-radius: 7px;
  border: #5659596a 1px solid;
  background: #f0f2f2;
  box-shadow: 0 2px 5px rgb(15 17 17 / 15%);
  cursor: pointer;
}

.dropdown-fake:hover {
  background-color: #696c6c27;
}

.dropdown-fake:focus {
  box-shadow: 0 2px 8px 0 rgba(77, 132, 155, 0.59),
    0 2px 4px 0 rgba(51, 147, 171, 0.481);
}

.right-button {
  height: 2.9rem;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--slight-shadow-color);
  background-color: #ffd814;
  margin-top: 1rem;
  border-radius: 3rem;
  box-shadow: 0 2px 5px rgb(15 17 17 / 15%);
  font-size: 1.4rem;
  cursor: pointer;
}

.orange-background {
  background-color: #ffa51c;
}

.transaction {
  margin-top: 1.5rem;
}

.transaction > i {
  color: #999999;
}
.ship-from-to {
  margin-top: 1rem;
  display: flex;
  font-size: 1.3rem;
  gap: 4rem;
}
.left-from,
.big-deal {
  color: var(--text-color-main);
}
.left-from,
.right-to {
  display: flex;
  flex-direction: column;
}

.return-policy {
  margin-top: 1.5rem;
}

.add-to-list-btn {
  cursor: pointer;
  height: 2.9rem;
  border-radius: 3px;
  border: 1px solid #ddd;
  padding: 3px 15px 3px 15px;
  background: #f2f2f2;
  background: -moz-linear-gradient(
    top,
    #f2f2f2 0%,
    #ebebeb 42%,
    #dddddd 47%,
    #cfcfcf 100%
  );
  background: -webkit-linear-gradient(
    top,
    #f2f2f2 0%,
    #ebebeb 42%,
    #dddddd 47%,
    #cfcfcf 100%
  );
  background: linear-gradient(
    to bottom,
    #f2f2f2 0%,
    #ebebeb 42%,
    #dddddd 47%,
    #cfcfcf 100%
  );
  filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#f2f2f2', endColorstr='#cfcfcf', GradientType=0);
  transition: all 0.1s ease-in;
  border: 1px solid #707070;
  width: 100%;
  text-align: left;
  color: var(--text-color-main);
  margin-bottom: 1rem;
}

/*##################################################################################################################*/
/*#                                                                                                                #*/
/*#                                        Left - Main Section                                                     #*/
/*#                                                                                                                #*/
/*##################################################################################################################*/

.main-container .left-wrapper {
  width: 62.71rem;
  padding-left: 1.8rem;
  height: 95%;
  position: relative;
}

.image-container {
  display: flex;
  gap:.5rem;
  position: sticky;
  top: 0;
  left: 0;
  max-height: 549px;
  max-width: 463.4px;
  height: 100%;
  width: 100%;
  
}

.background-big-image {
  width: 423.4px;
  height: 549px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: linear-gradient(#fff, #fff);
}

.big-image {
  position: relative;
  width: 423.4px;
  height: 428.4px;
  background: url("/assets/images/display_item0.png") no-repeat center
    center/cover;
}

.btn-shr  i {
  position: relative;
}

.btn-shr  i > .s-tooltip {
  display: flex;
  position: absolute;
  top: 1.3rem;
  right: 1rem;
  width: 4.8rem;
  height: 2.3rem;
  background-color: #fdfdfd;
  border: #565959 solid 1px;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  font-size: 1.1rem;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  color: #2b2b2b;
  opacity: 0;
  transition: all 0.3s ease;
}

.btn-shr:hover i > .s-tooltip {
  opacity: 1;
}


.btn-shr {
  width: 3.15rem;
  height: 3.15rem;
  border-radius: 50%;
  background-color: #fff;
  color: #0f1111;
  display: grid;
  place-items: center;
  border: 1px solid #ddd;
  position: absolute;
  right: 1rem;
  top: -4rem;
  z-index: 10;
  cursor: pointer;
}

.small-images-container {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: .8rem;
  padding-top: 5rem;
}

.small-images-container > img {
  
  width: 38px;
  height: 50px;
  background: #fff;
  border-radius: 3px;
  border-color: #d5d9d9;
  border-style: solid;
  border-width: 1px;
  cursor: pointer;
  display: inline-block;
  padding: 0;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
}

.small-images-container > img.image-active {
  border: #e77600 1px solid ;
  border-radius: 2px; 
  box-shadow: 0 0 3px 2px rgba(228, 123, 17, 0.485)
}
