@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
.form {
  --inputsize: 48px;
  --labelbefore: var(--text);
  --labelafter: var(--black);
  --borderbefore: var(--text);
  --borderafter: var(--black);
  --labelfontbefore: 16px;
  --labelfontafter: 14px;
  --font: 500;
  --inputsize: 42px;
  --color: var(--black);
  --borderwidth: 1px;
  --labelbackground: none;
  --font: normal;
  --textareaheight: 86px;
  --paddingleftright: 0px;
}
.form .form-group {
  position: relative;
  flex: 0 1 100%;
  max-width: 100%;
  width: 100%;
  --selectheight: var(--inputsize);
  line-height: 0;
}
.form .form-group .error {
  font-size: 12px;
  position: absolute;
  bottom: -12px;
  color: #ef1111;
  font-weight: 500;
}
.form .form-group.active::after {
  width: 100%;
}
.form .form-group::before, .form .form-group::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--borderwidth);
  transition: 0.5s ease;
}
.form .form-group::before {
  background: var(--borderbefore);
}
.form .form-group::after {
  width: 0;
  background: var(--borderafter);
}
.form .form-group label {
  font-weight: var(--font);
  position: absolute;
  top: calc(var(--inputsize) / 2 - var(--labelfontbefore) / 2);
  left: var(--paddingleftright);
  color: var(--labelbefore);
  line-height: 1;
  font-size: var(--labelfontbefore);
  background: none;
  transition: 0.3s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
.form .form-group input, .form .form-group textarea {
  height: calc(var(--inputsize) - var(--borderwidth));
  border: none;
  resize: none;
  border-radius: 0px !important;
  width: 100%;
  background: none;
  color: var(--color);
  font-size: inherit;
  font-family: inherit;
  cursor: initial;
  padding: 0 var(--paddingleftright);
}
.form .form-group input:focus, .form .form-group input.valid, .form .form-group textarea:focus, .form .form-group textarea.valid {
  outline: none;
}
.form .form-group input:focus ~ label, .form .form-group input.valid ~ label, .form .form-group textarea:focus ~ label, .form .form-group textarea.valid ~ label {
  font-size: var(--labelfontafter);
  color: var(--labelafter);
  top: calc(var(--labelfontafter) / -2);
}
.form .form-group textarea {
  height: var(--textareaheight);
  border: none;
  resize: none;
  border-radius: 0px !important;
  width: 100%;
  background: none;
  color: var(--color);
  font-size: inherit;
  font-family: inherit;
  line-height: 1.2;
  cursor: initial;
  padding: 0 var(--paddingleftright);
  padding-right: 15px;
}
.form .form-group textarea::-webkit-scrollbar {
  width: 2px;
  background: none;
  height: 2px;
}
.form .form-group textarea::-webkit-scrollbar-track {
  box-shadow: none;
}
.form .form-group textarea::-webkit-scrollbar-thumb {
  background-color: var(--primary);
  border-radius: 15px;
}
.form .form-group textarea:focus, .form .form-group textarea.valid {
  outline: none;
  margin-top: 13px;
  height: calc(var(--textareaheight) - 13px);
}
.form .form-group select:focus {
  outline: none;
}
.form .form-group select ~ label {
  position: absolute;
  top: calc(var(--labelfontafter) / -2);
  left: var(--paddingleftright);
  color: var(--labelafter);
  translate: 0 0;
  font-size: var(--labelfontafter);
  opacity: 0;
  transition: 0.6s ease;
}
.form .form-group select.valid {
  color: var(--color);
}
.form .form-group select.valid ~ label {
  opacity: 1;
}
.form .form-group.file-input input[type=file] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 4;
  cursor: pointer;
}
.form .form-group.file-input .file-name {
  pointer-events: none;
  height: calc(var(--inputsize) - var(--borderwidth));
  position: relative;
  --filename: "Attach Resume*";
  --filenameinitial: var(--filename);
  --color: var(--text);
  --background: none;
  --image: url(../../icon/clip-gray.svg) no-repeat;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  line-height: calc(var(--inputsize) - var(--borderwidth));
}
.form .form-group.file-input .file-name::before, .form .form-group.file-input .file-name::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.form .form-group.file-input .file-name::before {
  content: var(--filenameinitial);
  z-index: 2;
  font-family: inherit;
  font-size: inherit;
  line-height: calc(var(--inputsize) - var(--borderwidth));
  padding-left: var(--paddingleftright);
  color: var(--color);
  width: 80%;
  overflow: hidden;
  text-overflow: ellipsis;
  background: none;
}
.form .form-group.file-input .file-name::after {
  content: "";
  right: 0;
  background: var(--image);
  background-repeat: no-repeat;
  z-index: 1;
  background-position: calc(100% - var(--paddingleftright, 0)) 50%;
  background-size: auto 50%;
}
.form .submit-grp:not(.text-left) {
  text-align: center;
  margin-top: 23px;
}

.custom-select {
  max-width: 100%;
  cursor: pointer;
  display: block;
  font-family: inherit;
  height: var(--selectheight);
  position: relative;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  white-space: nowrap;
  padding: 0 var(--paddingleftright);
  --arrow: 15px;
  --arrowspace: 8px;
  --paddingleftright: 0;
}
.custom-select.has-icon {
  --iconsize: 12px;
  --iconurl: url(../../icon/location-gradient.svg);
  --iconspace: 8px;
}
.custom-select.has-icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: none;
  transition: 0.5s ease;
}
.custom-select.has-icon::after {
  left: 0;
  width: var(--iconsize);
  background-image: var(--iconurl);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: 0 50%;
}
.custom-select.has-icon .current {
  padding-left: calc(var(--iconsize) + var(--iconspace));
  padding-right: calc(var(--arrow) + var(--iconsize) + var(--arrowspace) + var(--iconspace));
}
.custom-select::before {
  content: "";
  position: absolute;
  top: 0;
  right: var(--paddingleftright);
  bottom: 0;
  width: var(--arrow);
  background-image: url(../../icon/arrow-down-gray.svg);
  background-position: 0 50%;
  background-repeat: no-repeat;
  background-size: 100% auto;
}
.custom-select .current {
  display: block;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: var(--inputsize);
  color: var(--labelbefore);
  font-size: var(--labelfontbefore);
  font-weight: var(--font);
  padding-right: calc(var(--arrow) + var(--arrowspace));
}
.custom-select .current.selected {
  color: var(--color);
}
.custom-select .list {
  text-align: left;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  overflow: hidden;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  opacity: 0;
  transform-origin: 50% 0;
  z-index: 7;
  max-height: 180px;
  overflow-y: auto;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  pointer-events: none;
}
.custom-select .list::-webkit-scrollbar {
  width: 4px;
  background: none;
  height: 4px;
}
.custom-select .list::-webkit-scrollbar-track {
  box-shadow: none;
}
.custom-select .list::-webkit-scrollbar-thumb {
  background-color: var(--text);
  border-radius: 5px;
}
.custom-select .list li {
  display: block;
  line-height: 1.2;
  padding: 8px 16px;
  white-space: break-spaces;
  font-size: 14px;
}
.custom-select .list li.selected {
  background: var(--primary);
  color: var(--white);
}
.custom-select .list li.selected:hover {
  background: var(--primary);
  color: var(--white);
}
.custom-select .list li:hover {
  background: #e2e2e2;
}
.custom-select.open .list {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1) translateY(0);
}

.filter-ul li {
  position: relative;
  --size: 20px;
  display: flex;
  line-height: normal;
  align-items: center;
}
.filter-ul li:has(input:checked) .check-span {
  background: var(--primary);
}
.filter-ul li:has(input:checked) .check-span::before {
  opacity: 1;
}
.filter-ul li input {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  z-index: 2;
}
.filter-ul li .check-span {
  flex: 0 1 auto;
  display: block;
  --size: 20px;
  height: var(--size);
  width: var(--size);
  position: relative;
  padding: 0;
  border-radius: 5px;
  background: #D9D9D9;
  pointer-events: none;
}
.filter-ul li .check-span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background: url(../../icon/tick-white.svg) no-repeat;
  background-position: 50% 50%;
  background-size: 10px auto;
  opacity: 0;
}
.filter-ul li p {
  padding-left: 14px;
}
.filter-ul li:not(:last-child) {
  margin-bottom: 10px;
}
.filter-ul li p {
  font-size: 14px;
  color: var(--text);
}

.checkbox-full {
  position: relative;
  --size: 20px;
  display: flex;
  line-height: normal;
  align-items: center;
}
.checkbox-full:has(input:checked) .check-span {
  background: var(--primary);
}
.checkbox-full:has(input:checked) .check-span::before {
  opacity: 1;
}
.checkbox-full input {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  z-index: 2;
}
.checkbox-full .check-span {
  flex: 0 1 auto;
  display: block;
  --size: 20px;
  height: var(--size);
  width: var(--size);
  position: relative;
  padding: 0;
  border-radius: 5px;
  background: #D9D9D9;
  pointer-events: none;
}
.checkbox-full .check-span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background: url(../../icon/tick-white.svg) no-repeat;
  background-position: 50% 50%;
  background-size: 10px auto;
  opacity: 0;
}
.checkbox-full p {
  padding-left: 14px;
}

.radio-full {
  position: relative;
  --size: 20px;
  display: flex;
  line-height: normal;
  align-items: center;
}
.radio-full:has(input:checked) .check-span {
  background: var(--primary);
  outline-offset: -4px;
  outline: 2px solid var(--white);
  background: var(--primary);
}
.radio-full input {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  z-index: 2;
}
.radio-full .check-span {
  flex: 0 1 auto;
  display: block;
  --size: 17px;
  display: inline-block;
  height: var(--size);
  width: var(--size);
  border: 1px solid var(--primary);
  border-radius: 50%;
  position: relative;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0;
  background: transparent;
}
.radio-full p {
  padding-left: 14px;
}

.proListing_banner::before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
}
@media only screen and (max-width: 768px) {
  .proListing_banner {
    margin-top: calc(var(--headerheight) + 38px);
  }
}
.proListing_banner .bg {
  height: 80vh;
}
@media only screen and (max-width: 540px) {
  .proListing_banner .bg {
    height: 50vh;
  }
}
.proListing_banner .bg .banner-wrapper {
  top: unset;
  bottom: 20%;
  left: 50%;
  translate: -50% 20%;
  width: 100%;
}
.proListing_banner .bg .banner-wrapper .heading {
  text-align: center;
}
.proListing_banner .bg .banner-wrapper .heading .icon {
  width: 150px;
  height: 110px;
  margin: 0 auto 10px;
}
@media only screen and (max-width: 991px) {
  .proListing_banner .bg .banner-wrapper .heading .icon {
    width: 120px;
    height: 100%;
  }
}
@media only screen and (max-width: 540px) {
  .proListing_banner .bg .banner-wrapper .heading .icon {
    width: 90px;
  }
}
.proListing_banner .bg .banner-wrapper .heading .icon img {
  height: 100%;
  width: 100%;
}
.proListing_banner .bg .banner-wrapper .heading h1 {
  color: var(--white);
  font-weight: 700;
}
@media only screen and (max-width: 991px) {
  .proListing_banner .bg .banner-wrapper .heading h1 {
    font-size: 40px;
  }
}
@media only screen and (max-width: 768px) {
  .proListing_banner .bg .banner-wrapper .heading h1 {
    font-size: 36px;
  }
}
@media only screen and (max-width: 540px) {
  .proListing_banner .bg .banner-wrapper .heading h1 {
    font-size: 32px;
  }
}

.list-filter-wrap {
  --filterheight: 45px;
  --bordercolor: #66666638;
  border-bottom: 1px solid var(--bordercolor);
  border-top: 1px solid var(--bordercolor);
  position: sticky;
  top: var(--headerfixed);
  left: 0;
  right: 0;
  background: var(--white);
  z-index: 4;
  height: 100%;
}
@media only screen and (max-width: 768px) {
  .list-filter-wrap {
    top: calc(var(--headerheight) + 38px);
  }
}
.list-filter-wrap .list-filter {
  display: flex;
}
@media only screen and (max-width: 991px) {
  .list-filter-wrap .list-filter {
    justify-content: space-between;
  }
}
.list-filter-wrap .list-filter .colA {
  padding: 0 25px;
  border-right: 1px solid var(--bordercolor);
  pointer-events: none;
}
@media only screen and (max-width: 991px) {
  .list-filter-wrap .list-filter .colA {
    pointer-events: all;
    padding-left: 0;
  }
}
@media only screen and (max-width: 675px) {
  .list-filter-wrap .list-filter .colA {
    padding-right: 15px;
  }
}
@media only screen and (max-width: 345px) {
  .list-filter-wrap .list-filter .colA {
    padding-right: 13px;
  }
}
@media only screen and (max-width: 320px) {
  .list-filter-wrap .list-filter .colA {
    padding-right: 10px;
  }
}
.list-filter-wrap .list-filter .colA .filter-btn {
  height: var(--filterheight);
  line-height: 0;
}
.list-filter-wrap .list-filter .colB {
  flex: 1;
}
@media only screen and (max-width: 991px) {
  .list-filter-wrap .list-filter .colB {
    right: 0;
    transform: translateX(100%);
    transition: 0.5s ease;
  }
}
@media only screen and (max-width: 991px) {
  .list-filter-wrap .list-filter .colB.is-open {
    transform: translateX(0%);
  }
}
@media only screen and (max-width: 991px) {
  .list-filter-wrap .list-filter .colB .close {
    left: 25px;
    right: auto;
  }
}
.list-filter-wrap .list-filter .colB .filter-options {
  display: flex;
}
@media only screen and (max-width: 991px) {
  .list-filter-wrap .list-filter .colB .filter-options {
    display: block;
    padding: 70px 0 0;
    height: 100%;
    overflow-y: auto;
    position: relative;
  }
}
.list-filter-wrap .list-filter .colB .filter-options .btn-mbl-btm {
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
}
@media only screen and (min-width: 991px) {
  .list-filter-wrap .list-filter .colB .filter-options .btn-mbl-btm {
    display: none;
  }
}
.list-filter-wrap .list-filter .colB .filter-options .btn-mbl-btm .aplly-btn, .list-filter-wrap .list-filter .colB .filter-options .btn-mbl-btm .clr-btn {
  flex: 1;
  --height: 44px;
  background: var(--black);
  color: var(--white);
  border-radius: 0px;
}
.list-filter-wrap .list-filter .colB .filter-options .btn-mbl-btm > * {
  border: none;
}
.list-filter-wrap .list-filter .colB .filter-options .btn-mbl-btm > *:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.6);
}
.list-filter-wrap .list-filter .adi-select-wrap {
  --labelheight: var(--filterheight);
  padding: 0 25px;
}
@media only screen and (max-width: 991px) {
  .list-filter-wrap .list-filter .adi-select-wrap {
    width: 100%;
  }
}
@media only screen and (min-width: 991px) {
  .list-filter-wrap .list-filter .adi-select-wrap:not(.sort_by) {
    border-right: 1px solid var(--bordercolor);
  }
}
@media only screen and (max-width: 991px) {
  .list-filter-wrap .list-filter .adi-select-wrap:not(.sort_by) {
    border-top: 1px solid var(--bordercolor);
  }
}
@media only screen and (max-width: 991px) {
  .list-filter-wrap .list-filter .adi-select-wrap:not(.sort_by) .label {
    font-weight: 500;
  }
}
@media only screen and (max-width: 991px) {
  .list-filter-wrap .list-filter .adi-select-wrap:not(.sort_by) .adi-select-menu {
    position: unset;
    width: 100%;
    box-shadow: none;
    padding-top: 8px;
    padding-bottom: 8px;
  }
}
@media only screen and (max-width: 991px) {
  .list-filter-wrap .list-filter .adi-select-wrap.sort_by {
    padding-right: 0;
  }
}

.product-listing-secA {
  padding: 35px 0 90px;
}
.product-listing-secA .product-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px 20px;
}
@media only screen and (max-width: 991px) {
  .product-listing-secA .product-list-grid {
    grid-gap: 20px 10px;
  }
}
@media only screen and (max-width: 768px) {
  .product-listing-secA .product-list-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px 15px;
  }
}
@media only screen and (max-width: 540px) {
  .product-listing-secA .product-list-grid {
    grid-gap: 30px 12px;
    grid-template-columns: repeat(1, 1fr);
  }
}
@media only screen and (max-width: 991px) {
  .product-listing-secA .product-list-grid .product_col .btn_wrap button {
    flex: 0 1 100%;
  }
}
.product-listing-secA .btn-div {
  margin-top: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  gap: 7px;
}
@media only screen and (max-width: 1300px) {
  .product-listing-secA .btn-div {
    margin-top: 80px;
  }
}
@media only screen and (max-width: 540px) {
  .product-listing-secA .btn-div {
    margin-top: 50px;
  }
}
.product-listing-secA .btn-div svg, .product-listing-secA .btn-div img {
  width: 90px;
  height: 70px;
  transition: 0.5s ease;
}
.product-listing-secA .btn-div:hover img, .product-listing-secA .btn-div:hover svg {
  transform: translateX(10px);
}
.product-listing-secA .btn-div .load_btn {
  --height: 44px;
  font-size: 16px;
  line-height: 1.2;
  color: var(--primary);
  text-transform: uppercase;
}

.load-more-btn {
  margin-top: 5rem;
}
.load-more-btn p {
  color: var(--primary);
  margin-top: 26px;
}

@media only screen and (max-width: 991px) {
  .product-detail-container {
    margin-top: calc(var(--headerheight) + 60px);
  }
}
.product-detail-container .main-container .detail-product-wrap {
  display: flex;
  justify-content: center;
  border-bottom: 1px solid rgba(211, 211, 211, 0.6196078431);
}
@media only screen and (max-width: 991px) {
  .product-detail-container .main-container .detail-product-wrap {
    flex-direction: column;
  }
}
.product-detail-container .main-container .detail-product-wrap .colA, .product-detail-container .main-container .detail-product-wrap .colB {
  flex: 1;
  width: 100%;
  max-width: 50%;
}
@media only screen and (max-width: 991px) {
  .product-detail-container .main-container .detail-product-wrap .colA, .product-detail-container .main-container .detail-product-wrap .colB {
    max-width: 100%;
  }
}
.product-detail-container .main-container .detail-product-wrap .colA {
  padding: 10px var(--containerfluid);
}
.product-detail-container .main-container .detail-product-wrap .colA .breadcrumps {
  margin-bottom: 10px;
}
.product-detail-container .main-container .detail-product-wrap .colA .product-image-wrap {
  position: sticky;
  top: var(--headerfixed);
  width: 100%;
  height: 100%;
}
.product-detail-container .main-container .detail-product-wrap .colA .product-image-wrap .propreview-dots {
  text-align: center;
  --swiper-pagination-bullet-size: 12px;
  --swiper-theme-color: var(--primary);
}
@media only screen and (max-width: 540px) {
  .product-detail-container .main-container .detail-product-wrap .colA .product-image-wrap .propreview-dots {
    --swiper-pagination-bullet-size: 9px;
  }
}
.product-detail-container .main-container .detail-product-wrap .colA .product-image-wrap .propreview-nav button {
  box-shadow: none;
}
.product-detail-container .main-container .detail-product-wrap .colA .product-image-wrap .propreview-nav button svg, .product-detail-container .main-container .detail-product-wrap .colA .product-image-wrap .propreview-nav button img {
  width: 15px;
  height: 15px;
}
.product-detail-container .main-container .detail-product-wrap .colA .product-image-wrap .propreview-nav button svg path, .product-detail-container .main-container .detail-product-wrap .colA .product-image-wrap .propreview-nav button img path {
  stroke: var(--primary);
}
.product-detail-container .main-container .detail-product-wrap .colA .product-image-wrap .propreview-slider {
  height: 100%;
}
.product-detail-container .main-container .detail-product-wrap .colA .product-image-wrap .propreview-slider .item > a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.product-detail-container .main-container .detail-product-wrap .colA .product-image-wrap .propreview-slider .item > a img {
  width: 70%;
  -o-object-fit: contain;
     object-fit: contain;
}
.product-detail-container .main-container .detail-product-wrap .colA .product-image-wrap .product-slider .item .figure {
  display: block;
  width: 100%;
  height: 100%;
}
.product-detail-container .main-container .detail-product-wrap .colB {
  background-color: #F3F3F3;
  padding: calc(var(--containerfluid) + 20px) var(--containerfluid);
}
@media only screen and (max-width: 540px) {
  .product-detail-container .main-container .detail-product-wrap .colB {
    padding: calc(var(--containerfluid) + 10px) var(--containerfluid);
  }
}
.product-detail-container .main-container .detail-product-wrap .colB .pro_name {
  font-size: 30px;
}
@media only screen and (max-width: 768px) {
  .product-detail-container .main-container .detail-product-wrap .colB .pro_name {
    font-size: 26px;
  }
}
@media only screen and (max-width: 540px) {
  .product-detail-container .main-container .detail-product-wrap .colB .pro_name {
    font-size: 24px;
  }
}
.product-detail-container .main-container .detail-product-wrap .colB .weight {
  font-size: 14px;
  color: var(--text);
  text-transform: uppercase;
  font-weight: 500;
}
.product-detail-container .main-container .detail-product-wrap .colB .price_wrap {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 30px 0;
}
@media only screen and (max-width: 768px) {
  .product-detail-container .main-container .detail-product-wrap .colB .price_wrap {
    padding: 25px 0;
  }
}
@media only screen and (max-width: 540px) {
  .product-detail-container .main-container .detail-product-wrap .colB .price_wrap {
    padding: 20px 0;
    gap: 20px;
  }
}
.product-detail-container .main-container .detail-product-wrap .colB .price_wrap .price_cnt .price {
  font-size: 25px;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1.2;
  font-family: "DIN";
}
@media only screen and (max-width: 540px) {
  .product-detail-container .main-container .detail-product-wrap .colB .price_wrap .price_cnt .price {
    font-size: 20px;
  }
}
.product-detail-container .main-container .detail-product-wrap .colB .price_wrap .price_cnt p:not(.price) {
  color: var(--text);
  font-weight: 400;
  font-size: 14px;
}
.product-detail-container .main-container .detail-product-wrap .colB .price_wrap .loanBtn {
  background-color: var(--white);
  border: 1px solid #057B2C;
  border-radius: 5px;
  color: #057B2C;
  text-transform: none;
  font-weight: 500;
  letter-spacing: normal;
}
.product-detail-container .main-container .detail-product-wrap .colB .price_wrap .loanBtn:hover {
  background-color: #e2ffec;
  color: #057B2C;
}
.product-detail-container .main-container .detail-product-wrap .colB .pro_select_wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  width: 100%;
}
.product-detail-container .main-container .detail-product-wrap .colB .pro_select_wrap .qty {
  flex: 0 1 auto;
  display: flex;
  align-items: center;
  gap: 5px;
}
.product-detail-container .main-container .detail-product-wrap .colB .pro_select_wrap .qty span {
  color: var(--text);
}
.product-detail-container .main-container .detail-product-wrap .colB .pro_select_wrap .value-wrap {
  display: flex;
  align-items: center;
  border: 1px solid #B4B1B1;
  background-color: var(--white);
  padding: 5px 15px;
  border-radius: 50px;
}
.product-detail-container .main-container .detail-product-wrap .colB .pro_select_wrap .value-wrap .minus-val, .product-detail-container .main-container .detail-product-wrap .colB .pro_select_wrap .value-wrap .plus-val {
  width: 20px;
  height: 20px;
  text-align: center;
  border: none;
  background: none;
  font-size: 20px;
  font-weight: 500;
  line-height: 20px;
}
.product-detail-container .main-container .detail-product-wrap .colB .pro_select_wrap .value-wrap .minus-val.disabled, .product-detail-container .main-container .detail-product-wrap .colB .pro_select_wrap .value-wrap .plus-val.disabled {
  opacity: 0.2;
  cursor: no-drop;
}
.product-detail-container .main-container .detail-product-wrap .colB .pro_select_wrap .value-wrap .count-val {
  font-size: 18px;
  width: 50px;
  border: 0;
  background: none;
  text-align: center;
  outline: none;
  line-height: 1.2;
}
.product-detail-container .main-container .detail-product-wrap .colB .pro_select_wrap .select_wrap {
  flex: 0 1 auto;
  width: 130px;
  background-color: var(--white);
  padding: 5px 15px;
  border-radius: 50px;
  border: 1px solid #B4B1B1;
  height: 36px;
}
.product-detail-container .main-container .detail-product-wrap .colB .pro_select_wrap .brchr {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: end;
}
@media only screen and (max-width: 540px) {
  .product-detail-container .main-container .detail-product-wrap .colB .pro_select_wrap .brchr {
    justify-content: center;
  }
}
.product-detail-container .main-container .detail-product-wrap .colB .pro_select_wrap .brchr img, .product-detail-container .main-container .detail-product-wrap .colB .pro_select_wrap .brchr svg {
  width: 20px;
  height: 20px;
}
.product-detail-container .main-container .detail-product-wrap .colB .pro_select_wrap .brchr a {
  color: var(--black);
  text-decoration: underline;
  font-size: 14px;
}
@media only screen and (max-width: 1100px) {
  .product-detail-container .main-container .detail-product-wrap .colB .pro_select_wrap .brchr a {
    font-size: 12px;
  }
}
@media only screen and (max-width: 991px) {
  .product-detail-container .main-container .detail-product-wrap .colB .pro_select_wrap .brchr a {
    font-size: 14px;
  }
}
.product-detail-container .main-container .detail-product-wrap .colB .btn_wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  padding: 30px 0 50px;
}
@media only screen and (max-width: 540px) {
  .product-detail-container .main-container .detail-product-wrap .colB .btn_wrapper {
    padding: 20px 0 30px;
  }
}
.product-detail-container .main-container .detail-product-wrap .colB .btn_wrapper .btn {
  --height: 42px;
}
@media only screen and (max-width: 768px) {
  .product-detail-container .main-container .detail-product-wrap .colB .btn_wrapper .btn {
    flex: 0 1 49%;
    max-width: 100%;
  }
}
@media only screen and (max-width: 540px) {
  .product-detail-container .main-container .detail-product-wrap .colB .btn_wrapper .btn {
    flex: 0 1 100%;
  }
}
.product-detail-container .main-container .detail-product-wrap .colB .btn_wrapper .share_btn {
  margin-left: 7px;
  position: relative;
}
.product-detail-container .main-container .detail-product-wrap .colB .btn_wrapper .share_btn .share-btn-ico img {
  vertical-align: middle;
}
@media only screen and (max-width: 520px) {
  .product-detail-container .main-container .detail-product-wrap .colB .btn_wrapper .share_btn .share-btn-ico img {
    width: 25px;
  }
}
@media only screen and (max-width: 360px) {
  .product-detail-container .main-container .detail-product-wrap .colB .btn_wrapper .share_btn .share-btn-ico img {
    width: 20px;
  }
}
.product-detail-container .main-container .detail-product-wrap .colB .btn_wrapper .share_btn .side_ico-m {
  position: absolute;
  background-color: var(--primary);
  padding: 10px 5px;
  bottom: 100%;
  margin-bottom: 15px;
  left: 50%;
  translate: -50% 0;
  display: flex;
  gap: 10px;
  flex-direction: column;
  border-radius: 5px;
  opacity: 0;
  transform: scale(0.75) translateY(21px);
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  transform-origin: bottom;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media only screen and (max-width: 675px) {
  .product-detail-container .main-container .detail-product-wrap .colB .btn_wrapper .share_btn .side_ico-m {
    bottom: auto;
    top: 100%;
    transform-origin: top;
  }
}
.product-detail-container .main-container .detail-product-wrap .colB .btn_wrapper .share_btn .side_ico-m.open {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: all;
  -webkit-user-select: auto;
     -moz-user-select: auto;
          user-select: auto;
}
.product-detail-container .main-container .detail-product-wrap .colB .btn_wrapper .share_btn .side_ico-m li svg {
  fill: var(--white);
  width: 25px;
}
.product-detail-container .main-container .detail-product-wrap .colB .btn_wrapper .share_btn .side_ico-m li svg:hover {
  fill: rgba(255, 255, 255, 0.9254901961);
}
.product-detail-container .main-container .detail-product-wrap .colB .col-itqeq {
  display: flex;
}
@media only screen and (max-width: 540px) {
  .product-detail-container .main-container .detail-product-wrap .colB .col-itqeq {
    flex-direction: column;
  }
}
.product-detail-container .main-container .detail-product-wrap .colB .col-itqeq .rgcwv {
  flex: 1;
  padding: 10px 25px;
  text-align: center;
}
@media only screen and (max-width: 1100px) {
  .product-detail-container .main-container .detail-product-wrap .colB .col-itqeq .rgcwv {
    padding: 10px 15px;
  }
}
.product-detail-container .main-container .detail-product-wrap .colB .col-itqeq .rgcwv:not(:last-child) {
  border-right: 1px solid #CFCFCF;
}
@media only screen and (max-width: 540px) {
  .product-detail-container .main-container .detail-product-wrap .colB .col-itqeq .rgcwv:not(:last-child) {
    border-right: none;
  }
}
.product-detail-container .main-container .detail-product-wrap .colB .col-itqeq .rgcwv .ico {
  line-height: 0;
  margin-bottom: 15px;
}
.product-detail-container .main-container .detail-product-wrap .colB .col-itqeq .rgcwv .ico svg, .product-detail-container .main-container .detail-product-wrap .colB .col-itqeq .rgcwv .ico img {
  width: 35px;
  height: 35px;
}
.product-detail-container .main-container .detail-product-wrap .colB .col-itqeq .rgcwv p {
  font-size: 13px;
  line-height: 1.2;
  color: var(--text);
}
.product-detail-container .main-container .detail-product-wrap .colB .summery-detail-content {
  margin: 40px 0;
}
.product-detail-container .main-container .detail-product-wrap .colB .summery-detail-content .col {
  --plus: 14px;
  --border: 2px;
  border-bottom: 1px solid #D1D1D1;
}
.product-detail-container .main-container .detail-product-wrap .colB .summery-detail-content .col.active .title {
  border-bottom: 1px solid #D1D1D1;
}
.product-detail-container .main-container .detail-product-wrap .colB .summery-detail-content .col.active .title p {
  color: var(--black);
}
.product-detail-container .main-container .detail-product-wrap .colB .summery-detail-content .col.active .title .ico::after {
  background: var(--black);
  transform: rotate(90deg);
}
.product-detail-container .main-container .detail-product-wrap .colB .summery-detail-content .col .title {
  cursor: pointer;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 14px 0;
}
.product-detail-container .main-container .detail-product-wrap .colB .summery-detail-content .col .title .ico {
  flex: 0 1 auto;
  height: var(--plus);
  width: var(--plus);
  position: relative;
}
.product-detail-container .main-container .detail-product-wrap .colB .summery-detail-content .col .title .ico::before, .product-detail-container .main-container .detail-product-wrap .colB .summery-detail-content .col .title .ico::after {
  content: "";
  position: absolute;
  background: var(--black);
  transition: 0.5s ease;
}
.product-detail-container .main-container .detail-product-wrap .colB .summery-detail-content .col .title .ico::before {
  top: 50%;
  left: 0;
  right: 0;
  translate: 0 -50%;
  height: var(--border);
}
.product-detail-container .main-container .detail-product-wrap .colB .summery-detail-content .col .title .ico::after {
  left: 50%;
  translate: -50% 0;
  top: 0;
  bottom: 0;
  width: var(--border);
}
.product-detail-container .main-container .detail-product-wrap .colB .summery-detail-content .col .title .ico svg {
  width: 36px;
  height: 36px;
}
.product-detail-container .main-container .detail-product-wrap .colB .summery-detail-content .col .title p {
  flex: 1;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text);
}
.product-detail-container .main-container .detail-product-wrap .colB .summery-detail-content .col article .content-article {
  padding: 15px 0 20px;
}
.product-detail-container .main-container .detail-product-wrap .colB .summery-detail-content .col article .content-article .product-description * {
  color: var(--text);
}
.product-detail-container .main-container .detail-product-wrap .colB .summery-detail-content .col article .content-article .product-description p, .product-detail-container .main-container .detail-product-wrap .colB .summery-detail-content .col article .content-article .product-description ul {
  font-size: 14px;
}
.product-detail-container .main-container .detail-product-wrap .colB .summery-detail-content .col article .content-article .product-description h3, .product-detail-container .main-container .detail-product-wrap .colB .summery-detail-content .col article .content-article .product-description h2, .product-detail-container .main-container .detail-product-wrap .colB .summery-detail-content .col article .content-article .product-description h4, .product-detail-container .main-container .detail-product-wrap .colB .summery-detail-content .col article .content-article .product-description h5, .product-detail-container .main-container .detail-product-wrap .colB .summery-detail-content .col article .content-article .product-description h6 {
  margin-bottom: 13px;
  font-size: 20px;
  line-height: 1.2;
}
.product-detail-container .main-container .detail-product-wrap .colB .summery-detail-content .col article .content-article .product-description ul {
  padding-left: 20px;
}
.product-detail-container .main-container .detail-product-wrap .colB .summery-detail-content .col article .content-article .product-description ul li {
  list-style: disc;
}
.product-detail-container .main-container .detail-product-wrap .colB .summery-detail-content .col article .content-article .product-description ul li::marker {
  color: #D9D9D9;
}

.product-detail-secA {
  width: 100%;
  height: 100%;
  background: url(../../images/product/banner-vector2.svg) no-repeat;
  background-position: bottom right;
  background-size: 40%;
  overflow: hidden;
  position: relative;
}
.product-detail-secA::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: linear-gradient(180deg, #FDFDFD 50%, #e3e3e3 100%);
  transition: 0.5s ease;
}
.product-detail-secA::before {
  z-index: -1;
}
.product-detail-secA .heading {
  margin-bottom: 40px;
}
.product-detail-secA .table-container {
  position: relative;
  width: 100%;
}
.product-detail-secA .table-container .table-wrapper {
  max-width: 900px;
  margin: 0 auto 0 10%;
  position: relative;
}
@media only screen and (max-width: 1200px) {
  .product-detail-secA .table-container .table-wrapper {
    margin: 0 auto;
  }
}
.product-detail-secA .table-container .table-wrapper::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(98.3%, -20%);
  background: url(../../icon/main-vetor-color.svg) no-repeat;
  background-size: 15%;
}
@media only screen and (max-width: 991px) {
  .product-detail-secA .table-container .table-wrapper::after {
    display: none;
  }
}
.product-detail-secA .table-container .table-wrapper table {
  width: 100%;
  height: 100%;
  text-align: left;
  border-collapse: collapse;
  border: 1px solid #BBBABA;
  border-bottom: 5px solid var(--primary);
  background: var(--white);
}
.product-detail-secA .table-container .table-wrapper table th, .product-detail-secA .table-container .table-wrapper table td {
  padding: 4px 8px;
}
@media only screen and (max-width: 540px) {
  .product-detail-secA .table-container .table-wrapper table th, .product-detail-secA .table-container .table-wrapper table td {
    font-size: 14px;
  }
}
.product-detail-secA .table-container .table-wrapper table th {
  color: #000;
  background: #EDEBEB;
}
.product-detail-secA .table-container .table-wrapper table td {
  color: #666;
  border-bottom: 1px solid #E3E3E3;
}

.product-detail-secB .heading {
  margin-bottom: 40px;
}
.product-detail-secB .product-container {
  position: relative;
}
.product-detail-secB .product-container .product-slider {
  max-width: 1240px;
}/*# sourceMappingURL=product.css.map */