/* First section */

.first-section {
  padding-top: 120px;
  background: #f8f8f8;
  padding-bottom: 60px;
}

.first-section-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 50px;
  height: calc(866px + 50px);
  overflow-y: auto;
}

.first-section-left-col {
  display: flex;
  width: 52%;
  height: 100%;
}

.mobile-ipad-show {
  display: none;
}

.product-details-images-tabs {
  display: flex;
  flex-direction: column;
  border-bottom: none !important;
  width: 60px;
  margin-right: 10px;
}

.product-details-img-tab-link {
  padding: 0px 25px 20px 0 !important;
  border: none !important;
  background: transparent !important;
  cursor: pointer !important;
}

.product-details-image-container {
  /* height: 866px; */
  height: 100%;
  width: 100%;
  position: relative;
}

.product-details-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.product-details-wishlist-button {
  position: absolute;
  right: 25px;
  top: 25px;
  display: flex;
  flex-direction: column;
}

.product-details-wishlist-button button {
  border: none;
  background-color: transparent;
  outline: none;
}

.product-details-wishlist {
  margin-bottom: 15px;
}

.product-details-wishlist svg path {
  transition: all 0.3s ease-out;
}

.product-details-wishlist svg:hover path {
  fill: #138fe4 !important;
}

.first-section-right-col {
  width: 45%;
  display: flex;
  flex-direction: column;
  padding: 10px 0;
  height: 100%;
  /* height: 866px; */
  /* overflow: hidden; */
}

.right-col-first-row {
  /* height: 45%; */
}

.right-col-first-row-brand {
  font-size: 16px;
  font-family: "mn-book";
  color: #6f6f6f;
  text-transform: uppercase;
  margin: 0;
}

.right-col-first-row-brand:hover {
  color: #138fe4;
}

.first-row-product-name {
  font-size: 35px;
  font-family: "mn-med";
  padding: 10px 0 15px 0;
}

.first-row-product-rating {
  margin: 0;
}

.first-row-product-details {
  font-size: 16px;
  font-family: "mn-book";
  line-height: 200%;
  margin: 0;
  padding: 10px 0;
}

.first-row-product-colours {
  display: flex;
  align-items: center;
}

.first-row-product-colours-title {
  margin: 0;
  padding-right: 20px;
}

.product-colours-lists {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

.product-colours-list-item {
  list-style: none;
  margin-right: 15px;
  margin-left: 10px;
  display: inline-block;
}

.product-colours-list-item label {
  margin: 0;
}

.product-colours-lists input {
  display: none;
}

.product-colours-lists input[type="radio"]:checked + .swatch {
  box-shadow: inset 0 0 0 4px white;
  border: 1px solid #d0d0d0;
  padding: 5px;
  transform: scale(1.5);
}
.swatch {
  display: inline-block;
  vertical-align: middle;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  /* border: 1px solid #d0d0d0; */
  cursor: pointer;
  transition: all 0.2s ease-out;
}

.swatch:hover {
  transform: scale(1.5);
}

.first-row-product-colours {
  font-size: 20px;
  font-family: "mn-demi";
}

.first-row-product-price {
  font-size: 30px;
  font-family: "mn-med";
  padding: 15px 0;
}

.first-row-product-btn-container {
  display: flex;
  align-items: center;
}

.first-row-product-add-to-bag {
  width: 284px;
  height: 50px;
  background: #000;
  color: #fff;
  outline: none;
  border: none;
  font-size: 16px;
  font-family: "mn-book";
  margin-right: 10px;
  transition: all 0.3s ease-out;
}

.first-row-product-add-to-bag:hover {
  letter-spacing: 1.4px;
}

.dropdown-container {
  background: #000;
  color: #fff;
  cursor: pointer;
  position: relative;
  z-index: 200;
  width: 138px;
  height: 50px;
  font-size: 16px;
}
.dropdown-qty {
  display: inline-block;
}

/* .dropdown-qty:hover {
  letter-spacing: 1.4px;
} */

.selection {
  display: inline-block;
  width: 87%;
}
.symbol {
  display: inline-block;

  text-align: center;
}
.choice div,
.options div {
  padding: 5px 8px;
  max-width: 250px;
}

.choice {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding: 0 10px;
  width: 100%;
  height: 100%;
}

.options {
  background: #000;
  color: white;
  display: none;
  position: absolute;
  width: 100%;
  text-align: center;
  border-top: 1px solid #fff;
}

.options div {
  padding: 10px 8px;
  font-size: 16px;
}

.options div:hover {
  background: #138fe4;
}

.right-col-second-row {
  padding: 2% 0 0 0;
  height: 55%;
}

.product-details-tabs {
  border-bottom: none !important;
  padding-bottom: 15px;
}

.product-details-tab-link {
  border: none !important;
  background: transparent !important;
  cursor: pointer !important;
  font-size: 14px;
  font-family: "mn-demi";
  text-transform: uppercase;
  color: #6f6f6f !important;
  padding: 0 !important;
  padding-right: 30px !important;
}

.product-details-tabs > .product-details-tab-list.active > a,
.product-details-tabs > .product-details-tab-list.active > a:focus,
.product-details-tabs > .product-details-tab-list.active > a:hover {
  color: #000 !important;
  text-decoration: underline;
}

.product-details-tab-content {
  background: #fff;
  width: 100%;
  height: 100%;
}

.product-details-tab-content-item {
  height: 100%;
}

.product-details-tab-content-one {
  height: 100%;
  overflow-y: hidden;
  padding: 4%;
  display: flex;
  flex-direction: column;
}

.product-details-tab-content-one-head {
  display: flex;
  border-bottom: 1px solid #8b9091;
  padding-bottom: 3%;
  margin-bottom: 10px;
}

.tab-content-head-title {
  font-size: 20px;
  font-family: "mn-demi";
  margin: 0;
}

.product-details-icon-container {
  padding-right: 6%;
  display: flex;
  align-items: center;
}

.product-details-tab-content-scroll {
  height: 100%;
  overflow-y: auto;
  padding-bottom: 20px;
  padding-top: 10px;
}

.product-details-tab-one-details {
  font-size: 16px;
  font-family: "mn-book";
  color: #6f6f6f;
  line-height: 200%;
}

.how-to-use-vid-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.how-to-use-vid-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.how-to-use-video-play-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

/* Second section */

.second-section {
  background-color: #f8f8f8;
  border-top: 2px solid #000;
  padding: 3% 0;
}

.second-sction-title {
  font-size: 40px;
  font-family: "mn-bold";
  text-transform: uppercase;
  padding-bottom: 3%;
}

.second-sec-slider-prev,
.second-sec-slider-next {
  background-color: #000 !important;
}

/* Third section */
.third-section {
  background-color: #000;
  color: #fff;
  padding: 5% 0;
}

.third-section-head-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 3%;
}

.third-section-title {
  font-size: 40px;
  font-family: "mn-bold";
}

.write-review-link {
  color: #fff !important;
  font-size: 20px;
  font-family: "mn-bold";
}

@media only screen and (max-width: 1600px) {
  /* First section */

  .first-section {
    padding-top: 80px;
  }

  .first-section-container {
    padding-top: 40px;
    height: 720px;
    /* height: calc(666px + 50px); */
  }

  .product-details-images-tabs {
    margin-right: 5px;
    width: 40px;
  }

  .product-details-img-tab-link {
    padding: 0px 5px 15px 0 !important;
  }

  .product-details-img-tab-link img {
    width: 35px;
  }

  .product-details-image-container {
    /* height: 650px; */
  }

  .product-details-wishlist-button {
    position: absolute;
    right: 25px;
    top: 25px;
    display: flex;
    flex-direction: column;
  }

  .product-details-wishlist-button svg {
    width: 30px;
    height: 30px;
  }

  .product-details-wishlist {
    margin-bottom: 10px;
  }

  .right-col-first-row {
    /* height: 45%; */
  }

  .right-col-first-row-brand {
    font-size: 12px;
  }

  .first-row-product-name {
    font-size: 25px;
    padding: 8px 0 10px 0;
  }

  .first-row-product-rating {
    font-size: 13px;
  }

  .first-row-product-details {
    font-size: 12px;
    padding: 7px 0;
  }

  .first-row-product-colours-title {
    padding-right: 15px;
    font-size: 16px;
  }

  .swatch {
    height: 18px;
    width: 18px;
  }

  .first-row-product-colours {
    font-size: 16px;
  }

  .first-row-product-price {
    font-size: 22px;
    padding: 9px 0 15px 0;
  }

  .first-row-product-add-to-bag {
    width: 230px;
    height: 40px;
    font-size: 12px;
  }

  .dropdown-container {
    width: 110px;
    height: 40px;
    font-size: 12px;
  }

  .symbol {
    display: inline-block;

    text-align: center;
  }

  .symbol svg {
    width: 10px;
    height: 10px;
  }

  .options div {
    font-size: 12px;
  }

  .right-col-second-row {
    padding: 2% 0 0 0;
    /* height: 55%; */
  }

  .product-details-tabs {
    padding-top: 10px;
  }

  .product-details-tab-link {
    font-size: 12px;
  }

  .tab-content-head-title {
    font-size: 15px;
  }

  .product-details-icon-container {
    padding-right: 6%;
    display: flex;
    align-items: center;
  }

  .product-details-icon-container img {
    width: 45px;
    height: 45px;
  }

  .product-details-tab-one-details {
    font-size: 12px;
  }

  .how-to-use-video-play-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
  }

  .how-to-use-video-play-icon svg {
    width: 60px;
    height: 60px;
  }

  /* Second section */

  .second-sction-title {
    font-size: 35px;
  }

  /* Third section */

  .third-section-title {
    font-size: 35px;
  }

  .write-review-link {
    font-size: 18px;
  }
}

@media only screen and (min-width: 601px) and (max-width: 1024px) {
  /* First section */

  .first-section {
    padding-top: 80px;
  }

  .first-section-container {
    padding-top: 40px;
    height: auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* height: calc(666px + 50px); */
  }
  .first-section-left-col {
    max-width: 780px;
    width: 100%;

    flex-direction: column;
  }

  .product-details-image-card {
    margin-bottom: 20px;
    height: 700px;
  }

  .product-details-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .mobile-ipad-hidden {
    display: none;
  }

  .mobile-ipad-show {
    display: block;
    max-width: 780px;
    /* height: 724px; */
    width: 100%;
  }

  .product-details-image-tab-content {
    height: 724px;
  }

  .product-details-images-tabs {
    /* margin-right: 5px; */
    order: 2;
    width: 40px;
    flex-direction: row;
    margin: 20px 25px 25px 0;
  }

  .product-details-img-tab-link {
    padding: 0px 15px 15px 0 !important;
  }

  .product-details-img-tab-link img {
    width: 40px;
    height: 40px;
  }

  .product-details-image-container {
    /* height: 650px; */
  }

  .product-details-slider-container {
    position: relative;
  }

  .product-details-wishlist-icons {
    position: absolute;
    right: 15px;
    top: 15px;
    display: flex;
    flex-direction: column;
  }

  .product-details-wishlist-icons button {
    border: none;
    background-color: transparent;
    outline: none;
  }

  .product-details-wishlist {
    margin-bottom: 15px;
  }

  .product-details-wishlist svg path {
    transition: all 0.3s ease-out;
  }

  .product-details-wishlist svg:hover path {
    fill: #138fe4 !important;
  }

  .product-details-wishlist-icons svg {
    width: 30px;
    height: 30px;
  }

  .product-details-wishlist {
    margin-bottom: 10px;
  }

  .right-col-first-row {
    /* height: 45%; */
  }

  .first-section-right-col {
    max-width: 780px;
    width: 100%;
  }

  .right-col-first-row-brand {
    font-size: 12px;
  }

  .first-row-product-name {
    font-size: 25px;
    padding: 8px 0 10px 0;
  }

  .first-row-product-rating {
    font-size: 13px;
  }

  .first-row-product-details {
    font-size: 12px;
    padding: 7px 0;
  }

  .first-row-product-colours-title {
    padding-right: 15px;
    font-size: 16px;
  }

  .swatch {
    height: 18px;
    width: 18px;
  }

  .first-row-product-colours {
    font-size: 16px;
  }

  .first-row-product-price {
    font-size: 22px;
    padding: 9px 0 15px 0;
  }

  .first-row-product-add-to-bag {
    width: 230px;
    height: 40px;
    font-size: 12px;
  }

  .dropdown-container {
    width: 110px;
    height: 40px;
    font-size: 12px;
  }

  .symbol {
    display: inline-block;

    text-align: center;
  }

  .symbol svg {
    width: 10px;
    height: 10px;
  }

  .options div {
    font-size: 12px;
  }

  .right-col-second-row {
    padding: 2% 0 0 0;
    /* height: 55%; */
  }

  .product-details-tabs {
    padding-top: 10px;
  }

  .product-details-tab-link {
    font-size: 12px;
  }

  .tab-content-head-title {
    font-size: 15px;
  }

  .product-details-icon-container {
    padding-right: 6%;
    display: flex;
    align-items: center;
  }

  .product-details-icon-container img {
    width: 45px;
    height: 45px;
  }

  .product-details-tab-one-details {
    font-size: 12px;
  }

  .how-to-use-video-play-icon svg {
    width: 40px;
    height: 40px;
  }

  /* Second section */

  .second-sction-title {
    font-size: 25px;
  }

  /* Third section */

  .third-section-title {
    font-size: 25px;
  }

  .write-review-link {
    font-size: 14px;
  }
}

@media only screen and (min-width: 320px) and (max-width: 600px) {
  /* First section */

  .first-section {
    padding-top: 50px;
  }

  .first-section-container {
    padding-top: 20px;
    height: auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .first-section-left-col {
    max-width: 394px;
    width: 100%;
    /* height: 724px; */
    flex-direction: column;
  }

  .mobile-ipad-hidden {
    display: none;
  }

  .mobile-ipad-show {
    display: block;
    max-width: 394px;
    /* height: 724px; */
    width: 100%;
  }

  .product-details-image-tab-content {
    /* height: 394px; */
  }

  .product-details-image-card {
    height: 394px;
    margin-bottom: 10px;
  }

  .product-details-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .product-details-images-tabs {
    /* margin-right: 5px; */
    order: 2;
    width: 40px;
    flex-direction: row;
    margin: 20px 25px 25px 0;
  }

  .product-details-img-tab-link {
    padding: 0px 15px 15px 0 !important;
  }

  .product-details-img-tab-link img {
    width: 40px;
    height: 40px;
  }

  .product-details-image-container {
    /* height: 650px; */
  }

  .product-details-slider-container {
    position: relative;
  }

  .product-details-wishlist-icons {
    position: absolute;
    right: 15px;
    top: 15px;
    display: flex;
    flex-direction: column;
  }

  .product-details-wishlist-icons button {
    border: none;
    background-color: transparent;
    outline: none;
  }

  .product-details-wishlist {
    margin-bottom: 5px;
  }

  .product-details-wishlist svg:hover path {
    fill: #138fe4 !important;
  }

  .product-details-wishlist-icons svg {
    width: 20px;
    height: 20px;
  }

  .right-col-first-row {
    /* height: 45%; */
  }

  .first-section-right-col {
    max-width: 780px;
    width: 100%;
  }

  .right-col-first-row-brand {
    font-size: 12px;
  }

  .first-row-product-name {
    font-size: 25px;
    padding: 8px 0 10px 0;
  }

  .first-row-product-rating {
    font-size: 13px;
  }

  .first-row-product-details {
    font-size: 12px;
    padding: 7px 0;
  }

  .first-row-product-colours {
    align-items: flex-start;
  }

  .first-row-product-colours-title {
    padding-right: 10px;
    font-size: 14px;
    white-space: nowrap;
  }

  .product-colours-lists {
    flex-wrap: wrap;
  }

  .product-colours-list-item {
    margin-left: 2px;
    margin-bottom: 8px;
  }
  .swatch {
    height: 18px;
    width: 18px;
  }

  .first-row-product-colours {
    font-size: 16px;
  }

  .first-row-product-price {
    font-size: 22px;
    padding: 9px 0 15px 0;
  }

  .first-row-product-add-to-bag {
    width: 230px;
    height: 40px;
    font-size: 12px;
  }

  .dropdown-container {
    width: 110px;
    height: 40px;
    font-size: 12px;
  }

  .symbol {
    display: inline-block;

    text-align: center;
  }

  .symbol svg {
    width: 10px;
    height: 10px;
  }

  .options div {
    font-size: 12px;
  }

  .right-col-second-row {
    padding: 2% 0 0 0;
    /* height: 55%; */
  }

  .product-details-tabs {
    padding-top: 10px;
  }

  .product-details-tab-link {
    font-size: 13px;
    padding-right: 15px !important;
  }

  .tab-content-head-title {
    font-size: 15px;
  }

  .product-details-icon-container {
    padding-right: 6%;
    display: flex;
    align-items: center;
  }

  .product-details-icon-container img {
    width: 27px;
    height: 27px;
  }

  .product-details-tab-one-details {
    font-size: 12px;
  }

  .how-to-use-video-play-icon svg {
    width: 40px;
    height: 40px;
  }

  /* Second section */

  .second-sction-title {
    font-size: 18px;
  }

  /* Third section */

  .third-section-title {
    font-size: 18px;
  }

  .write-review-link {
    font-size: 12px;
  }
}
