.gallery-box {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  gap: 0.5rem;
  /* grid-template-columns: calc(100% - 68px) 1fr; */

  .main-gallery {
    width: 88%;
  }
  .ProductGallery-Slider {
    /* height: 343px;
		border: solid 1px var(--CustomColor3); */
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    overflow: hidden;

    .swiper-slide {
      display: flex;
      align-items: center;
      justify-content: center;

      img {
        width: auto;
        height: auto;
      }

      .maximize-btn {
        position: absolute;
        top: 1rem;
        left: 1rem;
        cursor: pointer;
        z-index: 1;

        svg {
          width: 15px;
          height: 15px;
          stroke: #000;
        }
      }
    }
  }

  .ProductGallery-Thumbs {
    height: 343px;

    .swiper-slide {
      width: 100%;
      border: solid 1px var(--CustomColor3);
      cursor: pointer;
      border-radius: 5px;
      overflow: hidden;

      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
    }
  }

  @media (max-width: 960px) {
    .ProductGallery-Thumbs {
      .swiper-slide {
      }
    }
  }
}

.main-content {
  .product-name {
    display: block;
    font-size: 1.4rem;
    color: #000;

    line-height: normal;
  }

  .cat-name-row {
    font-size: 1rem;
    color: #000;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    overflow-x: auto;
    white-space: nowrap;

    svg {
      width: 15px;
      min-width: 15px;
      height: 15px;
      stroke: var(--button-hover-color);
      margin-left: 0.5rem;
    }

    .cat-name {
      font-weight: normal;
      font-size: 1rem;
      color: #000;
      margin: 0 0.3rem;
    }
  }

  .actions-row {
    .action-btn {
      position: relative;
      width: auto;
      height: auto;
      padding: 0;
      line-height: normal;
      display: flex;
      align-items: center;
      justify-content: center;
      border: none;
      background-color: transparent;
      margin-right: 1.5rem;
      cursor: pointer;

      svg {
        width: 16px;
        height: 16px;
        stroke: var(--accent-color);
      }

      &.addtowish {
        &.active {
          svg {
            stroke: var(--accent-color2);
          }
        }
      }

      .share-tooltip {
        display: none;
        position: absolute;
        bottom: calc(100% + 10px);
        left: 0;
        background-color: var(--accent-color);
        color: #fff;
        white-space: nowrap;
        padding: 0.3rem 1rem;
        border-radius: 5px;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        -ms-border-radius: 5px;
        -o-border-radius: 5px;
      }
    }
  }

  .rating-box,
  .comments-box {
    font-size: 1rem;
    color: #000;

    svg {
      width: 14px;
      height: 14px;
      margin-left: 0.5rem;
      fill: var(--accent-color3);
    }
  }

  .comments-box {
    svg {
      fill: var(--CustomColor6);
    }
  }

  .summary-box {
    font-size: 1rem;
    color: #000;

    svg {
      width: 15px;
      height: 15px;
      margin-left: 0.5rem;
      stroke: var(--CustomColor10);
    }

    .desc {
      font-size: 1rem;
      min-height: 9.7rem;

      p {
        margin: 0;
      }
    }

    .read-more {
      display: block;
      text-align: left;
      font-size: 1rem;
      color: #000;
    }
  }

  .discount-box {
    padding: 0.6rem;
    border-radius: 5px;
    background: var(--CustomColor5);

    svg {
      width: 18px;
      height: 18px;
      stroke: var(--accent-color2);
      margin-left: 0.5rem;
    }

    .caption {
      font-size: 0.9rem;
    }

    .soon {
      direction: ltr;

      .soon-label {
        display: none;
      }

      .soon-separator {
        font-size: 1rem;
        font-weight: bold;
        color: #fff;
        margin: 0px 0.3rem;
      }

      .soon-group-inner {
        display: flex;
        align-items: center;
        justify-content: center;

        .soon-group-sub {
          display: flex;
          align-items: center;
          justify-content: center;
          width: 30px;
          height: 30px;
          border-radius: 5px;
          -webkit-border-radius: 5px;
          -moz-border-radius: 5px;
          -ms-border-radius: 5px;
          -o-border-radius: 5px;
          background-color: var(--CustomColor8);
          font-size: 1rem;
          font-weight: bold;
          color: #000;
          padding-top: 4px;
        }
      }
    }
  }

  .left-side {
    .discount {
      width: 30px;
      height: 30px;
      background-color: var(--accent-color2);
      border-radius: 50%;
      font-size: 0.9rem;
      color: #fff;
    }

    .items-box {
      padding: 0 0.6rem;
      border-radius: 5px;
      background-color: var(--CustomColor5);

      .item {
        color: #000;
        padding: 0.8rem;
        border-bottom: solid 1px var(--CustomColor8);

        &:last-child {
          border: none;
        }
      }
    }

    .prod-id {
      svg {
        width: 1rem;
        height: 1rem;
        margin-left: 0.5rem;
        stroke: var(--accent-color2);
        vertical-align: middle;
      }
    }

    .price-box {
      .old-price {
        color: var(--button-hover-color);
        font-size: 1.1rem;
      }

      .price {
        font-size: 1.1rem;
      }
    }

    .count-wrapper {
      display: none;

      .basket-link {
        color: #000;
        padding: 0.8rem;
        background: none;
        border: none;
        cursor: pointer;
      }

      .prod-count {
        .input-group {
          background-color: #fff;

          .remove-item-from-basket {
            width: 16px;
            height: 16px;
            stroke: #e40e26;
            vertical-align: middle;
            cursor: pointer;
          }

          .input-group-text {
            display: inline-flex;
            vertical-align: middle;

            button {
              font-size: 1.5rem;
              padding: 0.5rem;
              line-height: 0;
              border: none;
              background-color: transparent;
              color: #144c35;
              cursor: pointer;
            }
          }

          input {
            width: 6rem;
            border: none !important;
            background-color: transparent;
            text-align: center !important;
            font-size: 1rem;
          }
        }
      }
    }

    .addToBasket-clickable {
      padding: 0.8rem;
      background-color: var(--CustomColor9);
      color: #fff;
      font-size: 1.1rem;
      border: none;
      width: 100%;
      border-radius: 5px;
      -webkit-border-radius: 5px;
      -moz-border-radius: 5px;
      -ms-border-radius: 5px;
      -o-border-radius: 5px;
      cursor: pointer;

      svg {
        width: 20px;
        height: 20px;
        stroke: #fff;
        margin-left: 0.5rem;
      }
    }

    .btn-notifyme {
      border-radius: 5px;
      background-color: var(--CustomColor5);
      font-size: 1rem;
      color: #000;
      margin-top: 0.5rem;
      padding: 0.8rem;

      svg {
        width: 1.2rem;
        height: 1.2rem;
        margin-left: 0.5rem;
        stroke: var(--accent-color3);
        vertical-align: middle;

        &.info {
          stroke: var(--accent-color2);
        }
      }
    }
  }
}

.notification-form-modal {
  width: 400px !important;
  max-width: 100% !important;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  padding: 1.5rem !important;

  .notification-form {
    .input-group {
      position: relative;
      border: solid 1px #f1eeee !important;
      display: flex;
      align-items: center;
      justify-content: start;
      gap: 0.2rem;
      border-radius: 5px;
      -webkit-border-radius: 5px;
      -moz-border-radius: 5px;
      -ms-border-radius: 5px;
      -o-border-radius: 5px;
      padding: 0px 1rem;
      margin-bottom: 1rem;

      .input-group-text {
      }

      .form-control {
        width: 100%;
        height: 42px;
        border: none !important;
        outline: none;
        font-size: 1rem;
        padding: 0.5rem 0;
        resize: none;

        &::placeholder {
          color: #959595;
          font-size: 1rem;
          font-weight: normal;
        }

        &:disabled {
          background-color: transparent;
        }
      }

      svg {
        min-width: 18px;
        width: 18px;
        height: 15px;
        stroke: #1b2c65;
        margin-left: 0.8rem;
      }
    }

    .btn {
      display: flex;
      align-items: center;
      border: none;
      padding: 0.5rem 1rem;
      border-radius: 5px;
      gap: 8px;
      background: var(--accent-color);
      color: #fff;
      margin: auto;
      cursor: pointer;

      svg {
        width: 1.2rem;
        height: 1.2rem;
        stroke: #fff;
      }
    }
  }
}

.sections-wraper {
  /* margin-top: 1rem; */
  gap: 1rem;

  .section-title-bullet {
    width: 52px;
    height: 52px;
    margin-bottom: 0.5rem;
    background-color: var(--CustomColor3);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;

    svg {
      width: 20px;
      stroke: #000;
    }

    .anchor-tooltip {
      position: absolute;
      right: calc(100% + 1rem);
      top: 0;
      bottom: 0;
      background-color: var(--accent-color);
      padding: 1rem 3rem;
      border-radius: 5px;
      -webkit-border-radius: 5px;
      -moz-border-radius: 5px;
      -ms-border-radius: 5px;
      -o-border-radius: 5px;
      font-size: 1rem;
      color: #fff;
      white-space: nowrap;
      /* visibility: hiddven;
			opacity: 1; */
      transition: all 0.3s ease;
      -webkit-transition: all 0.3s ease;
      -moz-transition: all 0.3s ease;
      -ms-transition: all 0.3s ease;
      -o-transition: all 0.3s ease;

      &:before {
        content: "";
        position: absolute;
        top: calc(50% - 6px);
        left: 100%;
        border-top: 6px solid transparent;
        border-bottom: 6px solid transparent;
        border-left: 8px solid var(--accent-color);
      }
    }

    /* &:hover {
			svg {
				stroke: var(--accent-color);
			}

			.anchor-tooltip {
				visibility: visible;
				opacity: 1;
			}
		} */
  }

  .content-col {
    width: 100%;
    margin-top: 4.5rem;
  }
}

.description-detail {
  font-size: 1rem;
  color: #000;
  padding: 1rem 1.5rem;
  /* border-radius: 5px; */
  border-radius: 0.67rem 0 0.67rem 0.67rem;
  border: 0.1rem solid var(--Green);
  /* background-color: var(--CustomColor3); */
  -webkit-border-radius: 0.67rem 0 0.67rem 0.67rem;
  -moz-border-radius: 0.67rem 0 0.67rem 0.67rem;
  -ms-border-radius: 0.67rem 0 0.67rem 0.67rem;
  -o-border-radius: 0.67rem 0 0.67rem 0.67rem;
}

.technical-list {
  border-radius: 5px;
  background-color: var(--CustomColor3);
  padding: 1rem 1.5rem 0.5rem;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;

  .technical-item {
    display: flex;
    align-items: start;
    justify-content: space-between;
    width: 100%;
    gap: 6px;

    .technical-list-key,
    .technical-list-value {
      padding: 0.5rem 1rem;
      background-color: var(--CustomColor3);
      border-radius: 0px 5px 5px 0px;
      -webkit-border-radius: 0px 5px 5px 0px;
      -moz-border-radius: 0px 5px 5px 0px;
      -ms-border-radius: 0px 5px 5px 0px;
      -o-border-radius: 0px 5px 5px 0px;
      font-size: 1rem;
      color: #000;

      svg {
        width: 10px;
        min-width: 10px;
        height: 10px;
        stroke: #000;
        margin-left: 1rem;
      }
    }

    .technical-list-key {
      width: 25%;
      min-width: min-content;
      background-color: #fff;
      font-size: 1rem;
    }

    .technical-list-value {
      width: 75%;
      border-radius: 5px 0px 0px 5px;
      background-color: rgba(255, 255, 255, 0.5);
      font-size: 1rem;
    }
  }

  .technical-specificlist {
    li {
      list-style: none;

      .seprator {
        margin-left: 0.2rem;
      }

      &:last-child {
        .seprator {
          display: none;
        }
      }
    }
  }
}

.comments-form {
  /* background-color: var(--CustomColor3); */
  /* padding: 1rem 1.5rem; */

  .sec-title {
    display: block;
    color: #000;
    font-size: 1rem;
    margin-bottom: 1rem;
    border-bottom: 0.1rem solid var(--Green);
  }

  .field-holder {
    position: relative;
    border: solid 1px #f1eeee !important;
    background-color: var(--GreyTwo);
    display: flex;
    align-items: center;
    justify-content: start;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    padding: 0px 1rem;
    margin-bottom: 1rem;

    .form-control {
      width: 100%;
      height: 42px;
      border: none !important;
      outline: none;
      font-size: 1rem;
      padding: 0.5rem 0;
      resize: none;
      background: transparent;

      &::placeholder {
        color: #959595;
        font-size: 1rem;
        font-weight: normal;
      }

      &:disabled {
        background-color: transparent;
      }
    }

    textarea {
      min-height: 150px;
    }
  }

  .rating-in-comment {
    .caption {
      color: #000;
    }
  }

  .submit-btn {
    font-size: 1rem;
    color: #fff;
    border: none;
    padding: 0.53rem 2rem;
    border-radius: 0.66rem;
    background-color: var(--accent-color2);
    cursor: pointer;

    svg {
      width: 1.06rem;
      height: 1.06rem;
    }
  }
}

.comments-list {
  &::before {
    content: "";
    border-top: 1px solid red;
  }
  width: 99%;
  position: relative;
  .dete {
    padding: 0.4rem 1rem;
    .item {
      font-size: 0.8rem;
      color: #000;

      /* &:first-child {
				margin-left: 1rem;
				padding-left: 1rem;
				border-left: solid 1px var(--CustomColor8);
			} */

      svg {
        width: 1.06rem;
        height: 1.06rem;
        /* margin-left: 0.5rem;  */
      }
    }
  }
  /* border-radius: 5px; */
  /* border: solid 1px var(--CustomColor3); */
  /* -webkit-border-radius: 5px; */
  /* -moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px; */
  /* background-color: var(--CustomColor3); */
  padding: 2rem 0;

  li {
    list-style: none;
    margin-bottom: 2rem;
    width: 100%;

    &:last-child {
      margin-bottom: 0;
    }

    .avatar {
      width: 4rem;
      min-width: 50px;
      height: 4rem;
      background-color: var(--CustomColor5);
      border-radius: 5px;

      z-index: 9999;
      border-radius: 50%;
      transform: translateY(-0.5rem);
      svg {
        width: 1.6rem;
        height: 1.6rem;
        stroke: var(--accent-color);
      }
    }

    .comment-head {
      width: 100%;
      height: 3rem;
      padding: 0.4rem 1rem;
      background-color: var(--CustomColor5);

      margin-right: -0.8rem;

      .author {
        font-size: 1rem;
        color: #000;
      }

      .dete {
        .item {
          font-size: 0.8rem;
          color: #000;

          /* &:first-child {
						margin-left: 1rem;
						padding-left: 1rem;
						border-left: solid 1px var(--CustomColor8);
					} */

          svg {
            width: 14px;
            height: 14px;
            margin-left: 0.5rem;
            stroke: var(--accent-color);
          }
        }
      }

      @media (max-width: 760px) {
        flex-direction: column;
        height: auto;

        .dete {
          flex-direction: column;
        }
      }
    }

    .comment-body {
      padding: 1rem;

      .comment-content {
        font-size: 1rem;
        color: #000;
      }

      .action-btns {
        svg {
          cursor: pointer;
        }

        .like {
          .like-couner {
            color: #000;
            margin-top: -3px;
            margin-left: 2px;
          }
        }
      }

      @media (max-width: 760px) {
        flex-direction: column;
        height: auto;
      }
    }

    &:last-child {
      margin-bottom: 0;

      .comment-body {
        border-bottom: none;
      }
    }
  }
}

.swiper-similar-Behizak {

  .swiper-slide {
		height:unset;
	}

  /* .ItemDescProduct {
    strong {
      text-overflow: ellipsis;
      white-space: nowrap;
      overflow: hidden;
    }
  } */
  .ItemSimilarPrice {
    svg {
      width: 1.5rem;
    }

    .CourseListSimilar {
      overflow: hidden;
      border: 1px solid var(--CustomColor8);
      border-radius: 0.66rem;
    }
  }
  .CourseListSimilar {
    overflow: hidden;
    border: 1px solid var(--CustomColor8);
    border-radius: 0.66rem;
  }
}

.titleSimlarprodcut {
  border-bottom: 0.1rem solid var(--accent-color);
}

.advanced-option-selector {
  .attributes-group {
    display: inline-block;
    vertical-align: top;
    /* margin-left: 1rem; */
  }
  .attributes-group-items {
    cursor: pointer;
    .attribute-select {
      /* transition: all 0.1s ease-in-out; */
      /* &:hover {
        border-bottom: 2px solid var(--accent-color);
      } */
    }
    .attribute-colors {
      width: 2rem;
      height: 2rem;
      border-radius: 50%;

     
    }

    .attribute-colors.active {
      width: 2rem;
      height: 2rem;
      border-radius: 50%;
      background-color: transparent;
      outline: 0.2rem solid var(--accent-color);
      outline-offset: 0.2rem; 
  }
  

   .attribute-sa.active {
      border: 1px solid var(--accent-color);
      padding: 0.10rem;
   }
 
  }
}

select {
  min-width: 7rem;
  border: solid 1px var(--Black);
  padding: 0.3rem 0.5rem;
  border-radius: 0.3rem;
  outline: none;
}

/* .accordion-panel {
	.acc-head {
		.title {
			position: relative;
			width: 100%;
			font-size: 1rem;

			.ModelItem {
				position: absolute;
				top: 0;
				right: 0;
				width: 100%;
				height: 100%;
				opacity: 0;
				cursor: pointer;
			}
		}

		.icon {
			svg {
				width: 10px;
			}
		}
	}

	.acc-body {
		border-right: solid 1px #eee;
		padding: 0 10px;
		margin-bottom: 42px;
	}
} */

@media (max-width: 960px) {
  .technical-list {
    display: block;

    .technical-item {
      width: 100%;
      margin-bottom: 0.5rem;
    }
  }
}

.tab {
  padding: 10px 20px;
  cursor: pointer;
  border: 1px solid #ddd;
  border-bottom: none;

  background: var(--CustomColor3);
}
.tab.active {
  background: var(--Green);
  font-weight: bold;
  color: var(--White);
}
.tab-content {
  /* border: 1px solid #ddd; */
  /* padding: 20px; */
  display: none;
  /* background: #fff; */
}
.tab-content.active {
  display: block;
}

.anchor-tooltip-right {
  border-radius: 0 0.67rem 0 0;
}
.anchor-tooltip-left {
  border-radius: 0.67rem 0px 0px 0px;
}

ul#comments-list li::before {
  content: "";
  height: 100%;
  border-right: 0.1rem solid #46807e;
  width: 0.1rem;
  top: 0;
  bottom: 0;
  position: absolute;
  right: 1.5rem;
  z-index: 1;
}
ul#comments-list li::after {
  content: "";
  height: 0.1rem;
  border-bottom: 0.1rem solid #46807e;
  width: 97%;
  right: 1.5rem;
  bottom: 0;
  position: absolute;
  left: 0;
  z-index: 0;
}
ul#comments-list li {
  position: relative;
}
/* .tabs-container {
	border-bottom: 0.1rem solid var(--GreenTwo);
	width: 99%;
} */
.iconAvtar {
  border-radius: 50%;
  width: 50px;
  min-width: 2rem;
  height: 50px;
  background-color: var(--CustomColor5);

  svg {
    width: 1.6rem;
    height: 1.6rem;
    stroke: var(--GreenThree);
  }
}

.Product-Detail {
  .jq-ry-container {
    padding: 0;
  }
  .page-breadcrumbs {
    padding-top: 5.71rem;
  }
}



@media (max-width: 992px) {
  .Product-Detail {
    .page-breadcrumbs {
      padding-top: 1rem;
    }
  }
}

.prod-count {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .accordion-panell {
    .acc-head {
      width: 40%;
    }
  }
  .price-wrapper {
    width: 40%;
  }
  .price-section {
    .price-wrapper {
      width: 100%;
    }
  }
  .firstItemPrice {
    width: 40%;
  }
  .advanced-option-selector {
    width: 40%;
  }

  .factorySelctor {
    width: 47%;
  }

  .main-content {
    .discount-box {
      width: 40%;
    }
  }


  .basket-order {
    .box-basket {
      width: 40%;
      border: 1px solid  #046261;
      border-radius: 10px;

    }
  }

}
.jq-ry-container {
  padding: 0;
}

.comments-container {
  border-top: 0.1rem solid var(--accent-color);
}
.basket-order {
  svg {
    width: 1.6rem;
    height: 1.6rem;
  }
  .send-orderr {
    background-color: var(--accent-color);
    border-radius: 0.66rem;
    padding: 0.53rem 2.13rem;
    border-color: unset;
  }
  button {
    border-color: unset;
    border: 0.1rem solid var(--accent-color);
    background-color: transparent;
  }
}

.factorySelctor {
  img {
    width: 2.133rem;
    aspect-ratio: 1;
    object-fit: contain;
  }
}

.accordion-panell {
  overflow: hidden;
  /* padding: 0.7rem;   */
  flex-flow: column;
  margin-top: 0.2rem;
  display: flex;
  justify-content: space-between;
  position: relative;

  &:last-child {
    border: none;
  }

  .acc-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 0;
    /* cursor: pointer; */

    svg {
      transform: rotate(180deg);
      width: 1rem;
      height: 1rem;
      fill: var(--White);
      transition: all 0.3s ease;
    }

    .title {
      font-size: 1.3rem;
    }
  }

  .acc-body {
    display: none;
    padding: 0.5rem 0;
    font-size: 1rem;
  }

  &.open {
    .acc-head {
      svg {
        transform: rotate(0);
      }
    }
  }
}

.close {
  svg {
    display: none;
  }
}

@media (max-width: 991px) {
  /* Bootstrap lg breakpoint */
  .holderPriceAndBasket {
    .addToBasket {
      background: var(--White);
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    }
   
    position: fixed;
    bottom: 0;
    left: 0;
    /* background-color: var(--accent-color); */
    width: 100%;
    /* padding: 10px; */
    z-index: 1050;
    transition: all 0.3s ease-in-out;
  }

  /* Make it take its normal place when scrolled */
  .basket-order.sticky {
    position: static;
    box-shadow: none;
  }
}


/* start copy url link  */
#copyBtn:hover {
  background-color: #45a049;
}

#toast {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  color: white;
  padding: 15px 30px;
  border-radius: 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
  font-size: 18px;
  z-index: 1060;
}
/* end copy url link  */

