:root {
  --cerulean: #00ADEE;
  --chathams-blue: #103977;
  --torea-bay: #0C3F8B;
  --white: #ffffff;
  --alabaster: #FBFBFB;
  --wild-sand: #F5F5F5;
  --gray: #909090;
  --emperor: #505050;
  --dove-gray: #707070;
  --gray: #919191;
  --gallery: #EFEFEF;
  --corn: #FF5B23;
  --cod-gray: #151515;
  --light-text: #00000099;
  --alto: #DBDBDB;
  --loblolly: #BCC1CA;
}

.truncate3 {
  display: -webkit-box;
  max-width: 100%;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.yellow-btn {
  border: unset;
  outline: unset;
  transition: all 0.25s;
  border-radius: 30px;
  background-color: var(--corn);
  color: var(--white);
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  padding: 0px 20px;
  height: 50px;
  width: 100%;
}
.yellow-btn svg {
  transition: all 0.25s ease;
}
.yellow-btn svg path {
  transition: all 0.25s ease;
}
.yellow-btn .arrow-icon {
  transform: translateX(4px);
}
.yellow-btn:hover .arrow-icon {
  animation: arrowMovement 1s ease;
}
@keyframes arrowMovement {
  0% {
    transform: translateX(4px);
  }
  50% {
    transform: translateX(14px);
  }
  100% {
    transform: translateX(4px);
  }
}

.border-btn {
  border: unset;
  outline: unset;
  transition: all 0.25s;
  border-radius: 10px;
  border: 1px solid var(--dove-gray);
  background-color: var(--white);
  color: var(--dove-gray);
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  padding: 0px 20px;
  height: 50px;
  width: 100%;
}
.border-btn svg {
  transition: all 0.25s ease;
}
.border-btn svg path {
  transition: all 0.25s ease;
}
.border-btn .arrow-icon {
  transform: translateX(4px);
}
.border-btn:hover .arrow-icon {
  animation: arrowMovement 1s ease;
}
@keyframes arrowMovement {
  0% {
    transform: translateX(4px);
  }
  50% {
    transform: translateX(14px);
  }
  100% {
    transform: translateX(4px);
  }
}
.border-btn:hover {
  background-color: var(--chathams-blue);
  color: var(--white);
}
.border-btn:hover svg path {
  fill: var(--white);
}
.border-btn svg {
  margin-right: 5px;
}

.main-heading {
  font-size: 22px;
  font-weight: 400;
  line-height: 32px;
  text-align: left;
  color: var(--torea-bay);
}

.body-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  text-align: left;
  color: var(--emperor);
}

.light-body-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: var(--dove-gray);
}

.light-sm-text {
  font-size: 14px;
  font-weight: 300;
  line-height: 22px;
  text-align: left;
  color: var(--dove-gray);
}

.para-heading {
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  color: var(--torea-bay);
}

.black-lg-text {
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  color: var(--cod-gray);
}

.black-md-text {
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  color: var(--cod-gray);
}

.black-sm-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  color: var(--cod-gray);
}

.light-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: var(--light-text);
}

.save-btn {
  display: grid;
  place-items: center;
  height: 36px;
  width: 36px;
  border-radius: 50%;
  border: 0.5px solid #4A2771;
  background: transparent;
  transition: all 0.3s ease;
}
.save-btn svg path {
  transition: all 0.3s ease;
}
.save-btn:hover {
  background: #4A2771;
  border: 0.5px solid #4A2771;
}
.save-btn:hover svg path {
  fill: var(--white);
}
.save-btn[data-saved=true] {
  background: #4A2771;
  border: 0.5px solid #4A2771;
}
.save-btn[data-saved=true] svg path {
  fill: var(--white);
}

.save-btn-non-user {
  place-items: center;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  border: 0.5px solid var(--gray);
  background: transparent;
}
.save-btn-non-user svg path {
  fill: var(--gray);
}

.share-btn {
  border: unset;
  outline: unset;
  background: unset;
}
.share-btn .share-icon path {
  transition: all 0.25s;
}
.share-btn:hover .share-icon path {
  fill: var(--cerulean);
}

.curved-border-container {
  padding: 25px;
  background-color: var(--white);
  box-shadow: 0px 0px 2px 0px rgba(23, 26, 31, 0.2509803922);
  border-radius: 10px;
}

.scroll-container {
  overflow-x: auto;
  height: 340px;
  gap: 20px;
  display: flex;
}
.scroll-container::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
.scroll-container::-webkit-scrollbar-track {
  background-color: var(--gallery);
}
.scroll-container::-webkit-scrollbar-thumb {
  background-color: var(--cerulean);
  border-radius: 5px;
}
.scroll-container::-webkit-scrollbar-thumb:hover {
  background-color: var(--chathams-blue);
}
.scroll-container::-webkit-scrollbar {
  width: 4px;
}
.scroll-container::-webkit-scrollbar-thumb {
  background-color: var(--chathams-blue);
}

.scrolling-card {
  flex: 0 0 275px;
  border-radius: 10px 10px 10px 10px;
  height: 320px;
  transition: all 0.25s;
}
.scrolling-card:hover {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.scrolling-card:hover a, .scrolling-card:hover h4 {
  color: var(--chathams-blue);
}

.img-box {
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  width: 100%;
  height: 186px;
  background-color: var(--alabaster);
}
.img-box img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.specs-table th, .specs-table td {
  font-weight: 400;
  padding: 15px 12px;
  word-break: break-all;
}
.specs-table tr:nth-of-type(odd) {
  background-color: var(--wild-sand);
}
.specs-table tr th:first-child {
  width: 30%;
}

.nav-tabs {
  border: unset;
}

.nav-tabs .nav-link {
  flex: 1 1 auto;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  text-align: center;
  color: var(--cod-gray);
  padding: 12px 6px;
  transition: 0.15s ease-in-out;
  border: unset;
}
.nav-tabs .nav-link.active {
  border: unset;
  border-bottom: 1px solid var(--cod-gray);
  color: var(--torea-bay);
}

.comment-input-box {
  box-shadow: 0px 4px 8px 0px rgba(10, 58, 100, 0.1490196078);
  border: 1px solid var(--alto);
  padding: 15px;
  border-radius: 8px;
  background-color: var(--white);
}

.add-ratings-container input {
  display: none;
}
.add-ratings-container label {
  cursor: pointer;
}
.add-ratings-container label svg {
  fill: #ffffff;
  transition: all 0.3s ease;
}
.add-ratings-container label svg:hover {
  scale: 1.15;
}
.add-ratings-container .selected-review + label svg {
  fill: var(--corn);
}
.add-ratings-container .selected-review + label svg path {
  stroke: var(--corn);
}

.comment-input {
  min-height: 70px;
  border: unset;
  outline: unset;
  border-radius: 5px;
  padding: 15px;
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: var(--cod-gray);
  background-color: var(--wild-sand);
}
.comment-input::-moz-placeholder {
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  color: var(--gray);
}
.comment-input::placeholder {
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  color: var(--gray);
}

.comments-send {
  width: -moz-fit-content;
  width: fit-content;
  height: 44px;
  padding: 0 22px;
  transform: scale(1);
  box-shadow: unset;
}
.comments-send:hover {
  color: var(--white);
  background-color: var(--torea-bay);
}
.comments-send:focus {
  box-shadow: unset;
}
.comments-send:active {
  transform: scale(0.95);
}
.comments-send:disabled {
  pointer-events: none;
  background-color: var(--gray);
}

.comment-box {
  background-color: var(--alabaster);
  border-radius: 15px;
  padding: 25px;
}

.avatar {
  background-color: var(--cerulean);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  height: 44px;
  width: 44px;
}

.comment-by {
  font-size: 14px;
  font-weight: 600;
  line-height: 17.5px;
  color: var(--cod-gray);
}

.comment-body {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: var(--emperor);
}

.time {
  font-size: 14px;
  font-weight: 500;
  line-height: 19.07px;
  text-align: left;
  color: rgba(0, 0, 0, 0.4);
}

.company-logo {
  width: 250px;
  height: 150px;
  overflow: hidden;
  border-radius: 10px;
  background-color: var(--alto);
}
.company-logo img {
  width: 100%;
  height: auto;
  max-height: 100%;
}

.progress-bar-container .progress {
  height: 8px;
  background-color: var(--loblolly);
}
.progress-bar-container .progress-bar {
  background-color: var(--cerulean);
}
.progress-bar-container svg {
  min-width: 17px;
  min-height: 17px;
  margin-bottom: 2px;
}

.overall-reviews svg {
  width: 17px;
  height: 17px;
  margin-bottom: 2px;
}

@media screen and (min-width: 768px) {
  .no-image {
    width: 50%;
  }
  .no-image img, .no-image picture {
    width: 100%;
    height: auto;
  }
  .main-heading {
    font-size: 30px;
    line-height: 40px;
  }
  .body-text {
    font-size: 18px;
    line-height: 26px;
  }
  .light-body-text {
    font-size: 17px;
    line-height: 27px;
  }
  .para-heading {
    font-size: 25px;
    line-height: 35px;
  }
  .black-lg-text {
    font-size: 24px;
    line-height: 34px;
  }
  .black-md-text {
    font-size: 20px;
    line-height: 28px;
  }
  .black-sm-text {
    font-size: 18px;
    line-height: 25px;
  }
  .light-text {
    font-size: 16px;
    line-height: 28px;
  }
  .nav-tabs .nav-link {
    font-size: 20px;
    line-height: 30px;
    padding: 19px 15px;
  }
  .product-reviews-container {
    gap: 50px;
  }
  .overall-reviews {
    width: 40%;
  }
}
@media screen and (min-width: 992px) {
  .company-logo {
    flex: 0 0 200px;
    max-width: 300px;
    height: 120px;
  }
  .landing-container {
    gap: 30px;
  }
  .landing-content, .image-gallery {
    width: 50%;
  }
}
@media screen and (min-width: 1200px) {
  .product-reviews-container {
    gap: 100px;
  }
  .overall-reviews {
    max-width: 280px;
  }
}
.accordion-button:not(.collapsed) {
  color: var(--cod-gray);
  background-color: var(--white);
  box-shadow: unset;
}

.accordion-button:focus {
  border-color: unset;
  box-shadow: unset;
}

.accordion-item {
  border: unset;
  border-bottom: 0.1px solid rgba(112, 112, 112, 0.12);
}

.accordion-button {
  border: unset;
  outline: unset;
}

.accordion-button::after {
  width: 10px;
  height: 5px;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAiIGhlaWdodD0iNiIgdmlld0JveD0iMCAwIDEwIDYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0wIDAuNUw1IDUuNUwxMCAwLjVIMFoiIGZpbGw9ImJsYWNrIi8+Cjwvc3ZnPg==);
  background-size: unset;
}

.accordion-button:not(.collapsed)::after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAiIGhlaWdodD0iNiIgdmlld0JveD0iMCAwIDEwIDYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0wIDAuNUw1IDUuNUwxMCAwLjVIMFoiIGZpbGw9ImJsYWNrIi8+Cjwvc3ZnPg==);
  transform: rotate(-180deg);
}

.quote-modal .large-black-text {
  font-family: Montserrat;
  font-size: 35px;
  font-weight: 700;
  line-height: 45px;
  letter-spacing: 0.01em;
  color: var(--cod-gray);
}
.quote-modal .sub-heading {
  font-family: Montserrat;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  color: var(--emperor);
}
.quote-modal .modal-content {
  border-radius: 10px;
  border: unset;
  padding: 35px 40px 40px;
}
.quote-modal .osn-input {
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 400;
  line-height: 17.07px;
  color: var(--cod-gray);
}
.quote-modal .osn-input::-moz-placeholder {
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 400;
  line-height: 17.07px;
}
.quote-modal .osn-input::placeholder {
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 400;
  line-height: 17.07px;
}
.quote-modal .select-input {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAiIGhlaWdodD0iNiIgdmlld0JveD0iMCAwIDEwIDYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0wIDAuNUw1IDUuNUwxMCAwLjVIMFoiIGZpbGw9ImJsYWNrIi8+Cjwvc3ZnPg==);
  background-repeat: no-repeat;
  background-position: right center;
  padding-right: 20px;
}
.quote-modal .quote-submit {
  width: 200px;
}
.quote-modal .quote-submit:hover {
  color: var(--white);
}

.swiper-container {
  display: flex;
  gap: 10px;
}

.thumbnail-swiper {
  height: 250px;
  padding: 10px 0;
  flex: 0 0 80px;
}
.thumbnail-swiper .swiper-slide {
  position: relative;
}
.thumbnail-swiper .swiper-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.5019607843);
}
.thumbnail-swiper .swiper-slide img {
  width: 100%;
  height: auto;
  vertical-align: middle;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.thumbnail-swiper .swiper-slide-thumb-active::after {
  background-color: unset;
}

.gallery-swiper {
  height: 250px;
}

.swiper-slide {
  overflow: hidden;
  border-radius: 10px;
  background-color: var(--white);
  border: 0.25px solid var(--dove-gray);
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.gallery-swiper {
  padding-right: 2px !important;
  transition: all 0.25s;
}
.gallery-swiper .swiper-slide img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.gallery-swiper .swiper-button-next, .gallery-swiper .swiper-button-prev {
  top: 0;
  margin-top: 0;
  width: 60px !important;
  height: 100% !important;
  transition: all 0.25s;
}
.gallery-swiper .swiper-button-next::after, .gallery-swiper .swiper-button-prev::after {
  display: none;
  font-size: 30px !important;
  color: var(--white) !important;
}
.gallery-swiper .swiper-button-next.video, .gallery-swiper .swiper-button-prev.video {
  top: 50%;
  width: 50px !important;
  height: 15% !important;
  transform: translateY(-50%);
}
.gallery-swiper .swiper-button-next {
  right: 2px;
  border-radius: 0 10px 10px 0;
}
.gallery-swiper .swiper-button-prev {
  left: 0;
  border-radius: 10px 0 0 10px;
}
.gallery-swiper:hover .swiper-button-next::after, .gallery-swiper:hover .swiper-button-prev::after {
  display: block;
}
.gallery-swiper:hover .swiper-button-next {
  background: linear-gradient(to right, rgba(255, 0, 0, 0), rgba(0, 0, 0, 0.48));
}
.gallery-swiper:hover .swiper-button-prev {
  background: linear-gradient(to left, rgba(255, 0, 0, 0), rgba(0, 0, 0, 0.48));
}

.image-gallery.video {
  width: 100%;
}

.video-modal .btn-close {
  margin-bottom: 10px;
}
.video-modal .modal-dialog {
  width: 95vw;
  max-width: 940px;
  margin: auto;
}
.video-modal .modal-content {
  border-radius: 10px;
  border: unset;
  padding: 15px 15px 15px;
}
.video-modal .swiper-container {
  flex-direction: column-reverse;
}
.video-modal .gallery-swiper.video {
  width: 100%;
  height: 380px;
  padding-right: 2 !important;
}
.video-modal .thumbnail-swiper.video {
  width: 100%;
  height: 100px;
}
.video-modal .thumbnail-swiper.video .swiper-slide {
  max-width: unset;
}
.video-modal .video-player {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.social-share-modal .modal-content {
  padding: 30px 25px;
  border: unset;
  border-radius: 10px;
}

.grey-circle-icon {
  border: unset;
  outline: unset;
  background-color: rgba(34, 34, 34, 0.0588235294);
  height: 64px;
  width: 64px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.btn-wrapper {
  width: 64px;
  display: inline-block;
  margin-right: 40px;
}
.btn-wrapper p {
  font-size: 12px;
  font-weight: 400;
  line-height: 14.06px;
  text-align: center;
  color: #888888;
  margin: auto;
}

.copy-link-btn {
  border: unset;
  outline: unset;
  background-color: unset;
  margin-right: 0;
}

.outline {
  border: 1px solid rgba(0, 0, 0, 0.1215686275);
  border-radius: 4px;
  padding: 15px;
}

.link-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 16.41px;
  text-align: left;
  color: #8D9CA5;
}
.link-text span {
  vertical-align: sub;
}

.large-black-text {
  font-size: 24px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 0.01em;
  color: #151515;
}

.sub-heading {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #505050;
}

.img-width-control img {
  max-width: 100%;
}

@media screen and (min-width: 992px) {
  .thumbnail-swiper {
    height: 380px;
    flex: 0 0 100px;
    padding: 10px 0;
  }
  .thumbnail-swiper .swiper-slide {
    max-width: 100px;
  }
  .gallery-swiper {
    height: 390px;
  }
}
@media screen and (min-width: 1490px) {
  .video-modal .gallery-swiper.video {
    height: 450px;
  }
}
