@font-face {
  font-family: "Rubik";
  src: url(../fonts/Rubik-VariableFont_wght.ttf);
  font-display: swap;
}
@font-face {
  font-family: "Ubuntu Sans";
  src: url(../fonts/UbuntuSans-VariableFont_wdth\,wght.ttf);
  font-display: swap;
}

html {
  scroll-behavior: smooth;
}

*,
*::after,
*::before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  position: relative;
  outline: none;
  visibility: visible;
  overflow-X: hidden;
  color: "";
}

body[dir="rtl"] {
  text-align: right;
}

a,
button {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  outline: 0;
}

a:focus,
button:focus {
  outline: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

p {
  font-size: 15px;
  line-height: 1.8;
}

p:last-child {
  margin-bottom: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
  margin: 0;
}

img {
  max-width: 100%;
}

/* Section Style */
.section,
.main-wrapper {
  float: left;
  width: 100%;
}

/* Section Padding */
.section-padding {
  padding-top: 80px;
  padding-bottom: 40px;
}
.benefits .row {
  row-gap: 16px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-padding {
    padding-top: 80px;
    padding-bottom: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .section-padding {
    padding-top: 60px;
    padding-bottom: 40px;
  }
}

.section-padding-02 {
  padding-top: 100px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-padding-02 {
    padding-top: 80px;
  }
}

@media only screen and (max-width: 767px) {
  .section-padding-02 {
    padding-top: 60px;
  }
}

/* Section Padding */
.section-title .title {
  font-size: 30px;
  font-weight: 700;
  color: #444;
  margin-bottom: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-title .title {
    font-size: 24px;
  }
}

/* tab Content */
.tab-content .tab-pane {
  display: block;
  overflow: hidden;
  height: 0;
  visibility: hidden;
  max-width: 100%;
  opacity: 0;
}

.tab-content .tab-pane.active {
  height: auto;
  visibility: visible;
  opacity: 1;
  overflow: visible;
}

.swiper-arrows {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.swiper-arrows .swiper-button-next,
.swiper-arrows .swiper-button-prev {
  position: relative;
  top: 0;
  margin-top: 0;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border: 1px solid #e6e6e6;
  display: block;
  left: 0;
  right: 0;
  margin: 0 3px;
  color: #e6e6e6;
  border-radius: 50%;
  font-size: 28px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  outline: none;
}

.swiper-arrows .swiper-button-next:hover,
.swiper-arrows .swiper-button-prev:hover {
  color: #fff;
  background-color: #f2a100;
  border-color: #f2a100;
}

.swiper-arrows .swiper-button-next::after,
.swiper-arrows .swiper-button-prev::after {
  display: none;
}

.bg-color-01 {
  background-color: #f8f8f8;
}

.bg-color-02 {
  background-color: #eaeaea;
}

.btn {
  position: relative;
  z-index: 2;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 2px;
}

@media only screen and (max-width: 767px) {
  .btn {
    font-size: 14px;
  }
}

.btn::before {
  width: 100%;
  height: 100%;
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
}

.btn i {
  margin-left: 8px;
}

.btn:hover::before {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}

.btn-primary {
  color: #fff;
}

.btn-hover-primary:hover {
  border-color: #f2a100;
  color: #fff;
}

.btn-hover-primary:hover::before {
  background-color: #f2a100;
}

.btn-outline-primary {
  border: 1px solid #f2a100;
  color: #f2a100;
}

.btn-outline-primary:hover {
  background: #f2a100;
}

.btn-secondary {
  color: #fff;
}

.btn-hover-secondary:hover {
  border-color: #252c51;
  color: #fff;
}

.btn-hover-secondary:hover::before {
  background-color: #252c51;
}

.btn-outline-secondary {
  border: 1px solid #252c51;
  color: #252c51;
}

.btn-outline-secondary:hover {
  background: #252c51;
}

.btn-success {
  color: #fff;
}

.btn-hover-success:hover {
  border-color: #198754;
  color: #fff;
}

.btn-hover-success:hover::before {
  background-color: #198754;
}

.btn-outline-success {
  border: 1px solid #198754;
  color: #198754;
}

.btn-outline-success:hover {
  background: #198754;
}

.btn-info {
  color: #494949;
}

.btn-hover-info:hover {
  border-color: #0dcaf0;
  color: #fff;
}

.btn-hover-info:hover::before {
  background-color: #0dcaf0;
}

.btn-outline-info {
  border: 1px solid #0dcaf0;
  color: #0dcaf0;
}

.btn-outline-info:hover {
  background: #0dcaf0;
}

.btn-warning {
  color: #494949;
}

.btn-hover-warning:hover {
  border-color: #ffc107;
  color: #494949;
}

.btn-hover-warning:hover::before {
  background-color: #ffc107;
}

.btn-outline-warning {
  border: 1px solid #ffc107;
  color: #ffc107;
}

.btn-outline-warning:hover {
  background: #ffc107;
}

.btn-danger {
  color: #fff;
}

.btn-hover-danger:hover {
  border-color: #dc3545;
  color: #fff;
}

.btn-hover-danger:hover::before {
  background-color: #dc3545;
}

.btn-outline-danger {
  border: 1px solid #dc3545;
  color: #dc3545;
}

.btn-outline-danger:hover {
  background: #dc3545;
}

.btn-light {
  color: #494949;
}

.btn-hover-light:hover {
  border-color: #f8f9fa;
  color: #494949;
}

.btn-hover-light:hover::before {
  background-color: #f8f9fa;
}

.btn-outline-light {
  border: 1px solid #f8f9fa;
  color: #f8f9fa;
}

.btn-outline-light:hover {
  background: #f8f9fa;
}

.btn-dark {
  color: #fff;
}

.btn-hover-dark:hover {
  border-color: #494949;
  color: #fff;
}

.btn-hover-dark:hover::before {
  background-color: #494949;
}

.btn-outline-dark {
  border: 1px solid #494949;
  color: #494949;
}

.btn-outline-dark:hover {
  background: #494949;
}

.single-form {
  margin-top: 30px;
}

.single-form input:not([type="checkbox"]):not([type="radio"]),
.single-form textarea {
  width: 100%;
  height: 50px;
  padding: 0 20px;
  font-size: 14px;
  font-style: italic;
  color: #999999;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  border: 1px solid #d7d7d7;
  border-radius: 0;
  background-color: #fff;
}

.single-form input:not([type="checkbox"]):not([type="radio"])::-webkit-input-placeholder,
.single-form textarea::-webkit-input-placeholder {
  opacity: 1;
}

.single-form input:not([type="checkbox"]):not([type="radio"]):-moz-placeholder,
.single-form textarea:-moz-placeholder {
  opacity: 1;
}

.single-form input:not([type="checkbox"]):not([type="radio"])::-moz-placeholder,
.single-form textarea::-moz-placeholder {
  opacity: 1;
}

.single-form input:not([type="checkbox"]):not([type="radio"]):-ms-input-placeholder,
.single-form textarea:-ms-input-placeholder {
  opacity: 1;
}

.single-form input:not([type="checkbox"]):not([type="radio"])+input,
.single-form textarea+input {
  margin-top: 15px;
}

.single-form input:not([type="checkbox"]):not([type="radio"]):focus,
.single-form textarea:focus {
  border-color: #f2a100;
  outline: none;
}

.single-form label {
  font-size: 15px;
  color: #252c51;
  margin-bottom: 12px;
}

.single-form input[type="checkbox"] {
  display: none;
}

.single-form input[type="checkbox"]+label {
  padding-left: 22px;
  position: relative;
  cursor: pointer;
  margin-bottom: 0;
  font-size: 15px;
}

.single-form input[type="checkbox"]+label span {
  width: 14px;
  height: 14px;
  border: 1px solid #e1e1e1;
  position: absolute;
  display: block;
  top: 4px;
  left: 0;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.single-form input[type="checkbox"]+label span::before {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: "\f107";
  font-family: FontAwesome;
  font-size: 14px;
  line-height: 12px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  color: #fff;
  text-align: center;
}

.single-form input[type="checkbox"]:checked+label span {
  background-color: #f2a100;
  border-color: #f2a100;
}

.single-form input[type="checkbox"]:checked+label span::before {
  opacity: 1;
  visibility: visible;
}

.single-form textarea {
  padding-top: 10px;
  height: 250px;
  resize: none;
}

.single-form .btn {
  height: 50px;
  line-height: 50px;
  padding: 0 40px;
  font-size: 14px;
  font-weight: 500;
}
.header-area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  padding: 10px 0;
}

.header-area.header-white {
  background-color: #fff;
  padding: 15px 0;
}
.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  -webkit-animation: sticky 1s;
  animation: sticky 1s;
  -webkit-box-shadow: 2px 4px 8px rgba(73, 73, 73, 0.15);
  box-shadow: 2px 4px 8px rgba(73, 73, 73, 0.15);
  background-color: #fff;
  padding: 10px 0 !important;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
  .sticky {
    padding: 12px 0 !important;
  }
}

@-webkit-keyframes sticky {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
}

@keyframes sticky {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
}
.product-top-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 5px;
  border-bottom: 1px solid #e6e6e6;
}

@media only screen and (max-width: 767px) {
  .product-top-wrapper {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

@media only screen and (max-width: 575px) {
  .product-top-wrapper>*:first-child {
    width: 100%;
  }
}

.single-product {
  position: relative;
  margin-top: 30px;
}

.single-product a {
  display: block;
}

.single-product a img {
  width: 100%;
}

.single-product .product-content {
  padding-top: 13px;
  padding-right: 45px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (max-width: 767px) {
  .single-product .product-content {
    padding-right: 35px;
  }
}

@media only screen and (max-width: 575px) {
  .single-product .product-content {
    padding-right: 45px;
  }
}

.single-product .product-content .title {
  margin-bottom: 0;
}

.single-product .product-content .title a {
  font-size: 16px;
  font-weight: 400;
  font-family: "Rubik", sans-serif;
  color: #4c4c4c;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (max-width: 767px) {
  .single-product .product-content .title a {
    font-size: 15px;
  }
}

@media only screen and (max-width: 575px) {
  .single-product .product-content .title a {
    font-size: 16px;
  }
}

.single-product .product-content .title a:hover {
  color: #f2a100;
}

.single-product .product-content .price {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.single-product .product-content .price .sale-price {
  font-size: 18px;
  color: #f2a100;
  margin-top: 3px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (max-width: 767px) {
  .single-product .product-content .price .sale-price {
    font-size: 16px;
  }
}

@media only screen and (max-width: 575px) {
  .single-product .product-content .price .sale-price {
    font-size: 18px;
  }
}

.single-product .product-content .price .old-price {
  font-size: 16px;
  color: #a4a4a4;
  margin-top: 3px;
  margin-left: 10px;
  text-decoration: line-through;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (max-width: 767px) {
  .single-product .product-content .price .old-price {
    font-size: 14px;
  }
}

@media only screen and (max-width: 575px) {
  .single-product .product-content .price .old-price {
    font-size: 16px;
  }
}

.single-product .product-meta {
  position: absolute;
  bottom: 0;
  right: 0;
}

.single-product .product-meta li {
  overflow: hidden;
}

.single-product .product-meta li+li {
  margin-top: 15px;
}

.single-product .product-meta li .action {
  width: 44px;
  height: 44px;
  line-height: 44px;
  border: 1px solid #ededed;
  text-align: center;
  font-size: 23px;
  color: #000;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  background-color: #fff;
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
  display: block;
  position: relative;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (max-width: 767px) {
  .single-product .product-meta li .action {
    width: 34px;
    height: 34px;
    line-height: 34px;
    font-size: 20px;
  }
}

@media only screen and (max-width: 575px) {
  .single-product .product-meta li .action {
    width: 44px;
    height: 44px;
    line-height: 44px;
    font-size: 23px;
  }
}

.single-product .product-meta li:last-child a {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  background-color: transparent;
}

.single-product:hover .product-meta li .action {
  border-color: #3d3d3d;
  background-color: #3d3d3d;
  color: #fff;
  position: relative;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.single-product:hover .product-meta li .action:nth-last-of-type(1) {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
}

.single-product:hover .product-meta li .action:nth-last-of-type(2) {
  -webkit-transition-delay: 0.3;
  -o-transition-delay: 0.3;
  transition-delay: 0.3;
}

.single-product:hover .product-meta li .action:nth-last-of-type(3) {
  -webkit-transition-delay: 0.6;
  -o-transition-delay: 0.6;
  transition-delay: 0.6;
}

.single-product:hover .product-meta li .action:nth-last-of-type(4) {
  -webkit-transition-delay: 0.9;
  -o-transition-delay: 0.9;
  transition-delay: 0.9;
}

.single-product:hover .product-meta li .action:hover {
  border-color: #f2a100;
  background-color: #f2a100;
  color: #fff;
}

.single-benefit {
  text-align: center;
  border: 1px solid #f2a100;
  padding: 60px 50px 55px;
  height: 100%;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (max-width: 575px) {
  .single-benefit {
    padding: 40px 30px 35px;
  }
}

.single-benefit .title {
  font-size: 30px;
  font-weight: 400;
  color: #303030;
  margin-top: 20px;
  margin-bottom: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (max-width: 575px) {
  .single-benefit .title {
    font-size: 24px;
  }
}

.single-benefit p {
  font-size: 14px;
  color: #6a6a69;
  line-height: 1.8;
  margin-bottom: 0;
  margin-top: 12px;
}
.product-single {
  padding: 140px 0 50px;
}
.details-gallery-images .single-img img {
  width: 100%;
}

.details-gallery-thumbs {
  position: relative;
}

@media only screen and (max-width: 575px) {
  .details-gallery-thumbs {
    padding: 0 30px;
  }
}

.details-gallery-thumbs .swiper-container {
  max-width: 410px;
  margin: 20px auto 0;
}

@media only screen and (max-width: 575px) {
  .details-gallery-thumbs .swiper-container {
    max-width: 100%;
  }
}

.details-gallery-thumbs .swiper-container img {
  width: 100%;
}

.details-gallery-thumbs .swiper-slide {
  opacity: 0.2;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.details-gallery-thumbs .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}

.details-gallery-thumbs .swiper-button-next,
.details-gallery-thumbs .swiper-button-prev {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border: 1px solid #e7e7e7;
  background-color: #f8f8f8;
  display: block;
  color: #e6e6e6;
  border-radius: 50%;
  font-size: 28px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  outline: none;
  opacity: 1;
  margin-top: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media only screen and (max-width: 575px) {
  .details-gallery-thumbs .swiper-button-next,
  .details-gallery-thumbs .swiper-button-prev {
    width: 25px;
    height: 25px;
    line-height: 25px;
    font-size: 20px;
  }
}

.details-gallery-thumbs .swiper-button-next:hover,
.details-gallery-thumbs .swiper-button-prev:hover {
  color: #fff;
  background-color: #f2a100;
  border-color: #f2a100;
}

.details-gallery-thumbs .swiper-button-next::after,
.details-gallery-thumbs .swiper-button-prev::after {
  display: none;
}

.details-gallery-thumbs .swiper-button-next {
  right: 0;
}

.details-gallery-thumbs .swiper-button-prev {
  left: 0;
}

.product-details-description.product-details-sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 130px;
  left: 0;
  width: 100%;
}

.product-details-description .product-name {
  font-size: 30px;
  font-weight: 600;
  color: #000;
  margin-bottom: 0;
}

@media only screen and (max-width: 575px) {
  .product-details-description .product-name {
    font-size: 24px;
  }
}

.product-details-description .price {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.product-details-description .price .sale-price {
  font-size: 24px;
  color: #f2a100;
  margin-top: 5px;
}

@media only screen and (max-width: 575px) {
  .product-details-description .price .sale-price {
    font-size: 20px;
  }
}

.product-details-description .price .old-price {
  font-size: 20px;
  color: #a4a4a4;
  margin-top: 5px;
  margin-left: 10px;
  text-decoration: line-through;
}

@media only screen and (max-width: 575px) {
  .product-details-description .price .old-price {
    font-size: 16px;
  }
}

.product-details-description .review-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-top: 12px;
}

.product-details-description .review-wrapper .review-star {
  position: relative;
  display: inline-block;
  margin-right: 8px;
}

.product-details-description .review-wrapper .review-star::before {
  content: "\f005" "\f005" "\f005" "\f005" "\f005";
  font-family: FontAwesome;
  display: inline-block;
  color: #dbdbdb;
  font-weight: 400;
  line-height: 1;
  vertical-align: middle;
  font-size: 16px;
  letter-spacing: 10px;
}

@media only screen and (max-width: 575px) {
  .product-details-description .review-wrapper .review-star::before {
    letter-spacing: 5px;
  }
}

.product-details-description .review-wrapper .review-star .star {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  z-index: 2;
  overflow: hidden;
}

.product-details-description .review-wrapper .review-star .star::before {
  content: "\f005" "\f005" "\f005" "\f005" "\f005";
  font-family: FontAwesome;
  display: inline-block;
  color: #ffc600;
  font-weight: 400;
  line-height: 1;
  vertical-align: middle;
  font-size: 16px;
  letter-spacing: 10px;
}

@media only screen and (max-width: 575px) {
  .product-details-description .review-wrapper .review-star .star::before {
    letter-spacing: 5px;
  }
}

.product-details-description .review-wrapper p {
  font-size: 16px;
  font-family: "Ubuntu Sans", sans-serif;
  font-weight: 600;
  color: #9f9e9e;
  margin-top: 0;
  margin-bottom: 0;
}

.product-details-description .lable {
  color: #3f3d3d;
  font-size: 16px;
  font-family: "Ubuntu Sans", sans-serif;
  font-weight: 600;
  margin-right: 5px;
}

.product-details-description .value {
  color: #9f9e9e;
  font-size: 16px;
  font-family: "Ubuntu Sans", sans-serif;
  font-weight: 600;
}

.product-details-description .product-color {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 25px;
}

.product-details-description .product-color ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.product-details-description .product-color ul li {
  margin-left: 15px;
}

.product-details-description .product-color ul li input[type="checkbox"],
.product-details-description .product-color ul li input[type="radio"] {
  display: none;
}

.product-details-description .product-color ul li input[type="checkbox"]+label,
.product-details-description .product-color ul li input[type="radio"]+label {
  margin-bottom: 0;
  font-weight: 600;
  font-size: 16px;
  color: #666666;
  font-family: "Ubuntu Sans", sans-serif;
  cursor: pointer;
  display: block;
}

.product-details-description .product-color ul li input[type="checkbox"]+label span,
.product-details-description .product-color ul li input[type="radio"]+label span {
  width: 15px;
  height: 15px;
  border-radius: 3px;
  border: 2px solid #888888;
  display: inline-block;
  position: relative;
  top: 2px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.product-details-description .product-color ul li input[type="checkbox"]+label span::before,
.product-details-description .product-color ul li input[type="radio"]+label span::before {
  position: absolute;
  content: "\f107";
  font-family: FontAwesome;
  font-size: 14px;
  width: 15px;
  height: 15px;
  line-height: 15px;
  top: -3px;
  left: -2px;
  text-align: center;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.product-details-description .product-color ul li input[type="checkbox"]:checked+label span,
.product-details-description .product-color ul li input[type="radio"]:checked+label span {
  background-color: #ffb300;
  border-color: #ffb300;
}

.product-details-description .product-color ul li input[type="checkbox"]:checked+label span::before,
.product-details-description .product-color ul li input[type="radio"]:checked+label span::before {
  opacity: 1;
  visibility: visible;
}

.product-details-description p {
  line-height: 1.8;
  color: #6c788c;
  margin-bottom: 0;
  margin-top: 25px;
}

.product-details-description .product-meta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 30px;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.product-details-description .product-meta>* {
  margin-right: 10px;
}

.product-details-description .product-quantity {
  position: relative;
  margin-top: 10px;
  background-color: #494949;
  border-radius: 5px;
}

.product-details-description .product-quantity button {
  background: none;
  color: #fff;
  height: 50px;
  border: 0;
  font-weight: 500;
  font-size: 16px;
  padding: 0;
}

.product-details-description .product-quantity input {
  width: 35px;
  height: 50px;
  border: 0;
  padding: 0 5px;
  background: none;
  font-size: 14px;
  font-weight: 500;
  outline: none;
  color: #fff;
  text-align: center;
}

.product-details-description .product-quantity>*:first-child {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  padding-left: 16px;
}

.product-details-description .product-quantity>*:last-child {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  padding-right: 16px;
}

.product-details-description .meta-action .btn {
  height: 50px;
  line-height: 50px;
  padding: 0 30px;
  font-weight: 500;
  font-size: 14px;
  margin-top: 10px;
}

.product-details-description .meta-action .action {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 23px;
  color: #fff;
  background-color: #494949;
  display: block;
  border-radius: 5px;
  margin-top: 10px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.product-details-description .meta-action .action:hover {
  background-color: #f2a100;
}

.product-details-description .product-info {
  padding-top: 33px;
}

.product-details-description .product-info .single-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 8px;
}

.product-details-description .social {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-left: 10px;
}

.product-details-description .social li {
  margin-right: 25px;
}

.product-details-description .social li a {
  font-size: 16px;
  color: #9f9e9e;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.product-details-description .social li a:hover {
  color: #f2a100;
}

.product-details-description .product-table {
  margin-top: 40px;
}

.product-details-description .product-table .table {
  margin-bottom: 0;
}

.product-details-description .product-table .table tbody tr td {
  border: 1px solid #e1e1e1;
  vertical-align: middle;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  color: #6d707f;
  width: 33.33%;
}

.product-details-description .product-table .table tbody tr td .product-quantity {
  margin-top: 0;
}

.product-details-description .product-table .table tbody tr td .amount {
  font-weight: 500;
  color: #f2a100;
}

.product-details-tabs .nav {
  border-bottom: 1px solid #d7d7d7;
  padding-bottom: 8px;
}

@media only screen and (max-width: 575px) {
  .product-details-tabs .nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.product-details-tabs .nav li {
  margin: 0 5px;
}

.product-details-tabs .nav li button {
  color: #cccccc;
  font-size: 24px;
  font-weight: 600;
  font-family: "Ubuntu Sans", sans-serif;
  border: 0;
  background: none;
  padding: 0 10px;
  position: relative;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.product-details-tabs .nav li button::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 2px;
  background-color: #f2a100;
  bottom: -9px;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

@media only screen and (max-width: 575px) {
  .product-details-tabs .nav li button::before {
    display: none;
  }
}

.product-details-tabs .nav li button.active {
  color: #f2a100;
}

.product-details-tabs .nav li button.active::before {
  opacity: 1;
  visibility: visible;
}

.product-details-tabs .tab-content {
  max-width: 970px;
  margin: 0 auto;
}

.information-content {
  padding-top: 35px;
}

.information-content .title {
  font-size: 20px;
  font-weight: 600;
  color: #000;
}

.information-content ul {
  list-style: disc;
  list-style-position: inside;
  margin-bottom: 1rem;
}

.information-content ul li {
  font-size: 15px;
  line-height: 1.8;
}

.information-content>*:last-child {
  margin-bottom: 0;
}

.description-content {
  margin-top: 35px;
}
.description-content b {
  color: #000;
  font-weight: 500;
}
.contact-wrapper {
  background-color: #f5f5f5;
}

.contact-info {
  background-color: #fff9ed;
  padding: 55px 40px 60px;
  height: 100%;
  position: relative;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .contact-info {
    padding: 55px 30px 60px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-info {
    padding: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .contact-info {
    padding: 40px;
  }
}

@media only screen and (max-width: 575px) {
  .contact-info {
    padding: 40px;
  }
}

.contact-info .title {
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  color: #383838;
  margin-bottom: 0;
  padding-left: 1rem;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .contact-info .title {
    font-size: 30px;
  }
}

@media only screen and (max-width: 575px) {
  .contact-info .title {
    font-size: 24px;
  }
}

.contact-info .title::before {
  position: absolute;
  content: '';
  width: 4px;
  height: 22px;
  background-color: #f2a100;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.contact-info>p {
  margin-bottom: 0;
  font-weight: 300;
  margin-top: 10px;
}

.contact-info .social {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 25px;
}

.contact-info .social li+li {
  margin-left: 10px;
}

.contact-info .social li a {
  display: block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  font-size: 16px;
  background-color: #ffedc8;
  color: #6c788c;
  border-radius: 50%;
}

.contact-info .social li a:hover {
  background-color: #f2a100;
  color: #fff;
}
.contact-info-items .single-contact-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid transparent;
  padding: 8px 20px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

@media only screen and (max-width: 575px) {
  .contact-info-items .single-contact-info {
    padding: 8px 15px;
  }
}

.contact-info-items .single-contact-info .info-icon i {
  font-size: 30px;
  color: #f2a100;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (max-width: 575px) {
  .contact-info-items .single-contact-info .info-icon i {
    font-size: 24px;
  }
}

.contact-info-items .single-contact-info .info-content {
  padding-left: 15px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.contact-info-items .single-contact-info .info-content p {
  font-family: "Ubuntu Sans", sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #6c788c;
  margin-bottom: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .contact-info-items .single-contact-info .info-content p {
    font-size: 16px;
  }
}

@media only screen and (max-width: 575px) {
  .contact-info-items .single-contact-info .info-content p {
    font-size: 14px;
  }
}

.contact-info-items .single-contact-info:hover {
  border-color: #ffedc8;
}

.contact-form {
  padding: 60px;
  padding-top: 30px;
}

@media only screen and (max-width: 575px) {
  .contact-form {
    padding: 30px;
    padding-top: 0px;
  }
}

.contact-form .single-form input:not([type="checkbox"]):not([type="radio"]),
.contact-form .single-form textarea {
  background-color: transparent;
}

.contact-form .single-form textarea {
  height: 145px;
}

.contact-form .single-form .btn {
  height: 60px;
  line-height: 60px;
  padding: 0 50px;
  font-size: 14px;
  font-weight: 500;
}

@media only screen and (max-width: 575px) {
  .contact-form .single-form .btn {
    height: 50px;
    line-height: 50px;
    padding: 0 30px;
  }
}

.form-message {
  margin-bottom: 0;
}

.form-message.error,
.form-message.success {
  font-size: 16px;
  color: #07294d;
  background: #ddd;
  padding: 10px 15px;
  margin: 15px 0 0 15px;
}

.form-message.error {
  color: #ff0000;
}

.contact-map iframe {
  width: 100%;
  height: 490px;
  display: block;
}
.footer-widget-section {
  background-color: #f1eee5;
  padding-top: 30px;
  padding-bottom: 75px;
}

.footer-widget-title {
  color: #252c51;
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 0px;
  padding-bottom: 10px;
}

.footer-widget {
  margin-top: 45px;
}

.footer-widget .widget-about p {
  padding-top: 3px;
}

.footer-widget .widget-about p a {
  font-weight: 500;
  font-size: 22px;
  color: #252c51;
}

.footer-widget .widget-about p a:hover {
  color: #f2a100;
}

.footer-widget .widget-social {
  padding-top: 20px;
}

.footer-widget .widget-social ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.footer-widget .widget-social ul li+li {
  margin-left: 30px;
}

.footer-widget .widget-social ul li a {
  font-size: 16px;
  color: #252c51;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.footer-widget .widget-social ul li a:hover {
  color: #f2a100;
}

.footer-widget .footer-link li {
  margin-top: 3px;
}

.footer-widget .footer-link li a {
  font-size: 16px;
  color: #6d707f;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.footer-widget .footer-link li a:hover {
  color: #f2a100;
}

.footer-widget-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
  .footer-widget-link {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
  .footer-widget-link .footer-widget {
    width: 50%;
  }
}

@media only screen and (max-width: 575px) {
  .footer-widget-link .footer-widget {
    width: 100%;
  }
}

.footer-logo {
  margin-top: 30px;
}

.copyright {
  background-color: #fff;
}

.copyright-text {
  text-align: center;
  padding: 12px 0;
}

.copyright-text p {
  color: #8690a1;
  font-size: 16px;
  font-weight: 300;
}

.copyright-text p span {
  color: #f2a100;
  text-transform: uppercase;
}

.copyright-text p i {
  color: #ff0000;
}

.copyright-text p a {
  color: #f2a100;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  font-weight: 500;
}

.copyright-text p a:hover {
  color: #f2a100;
}

.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 30px;
  width: 40px;
  height: 40px;
  line-height: 45px;
  border-radius: 50%;
  z-index: 99;
  text-align: center;
  display: none;
  -webkit-box-shadow: 0px 0px 30px 0px rgba(156, 156, 156, 0.25);
  box-shadow: 0px 0px 30px 0px rgba(156, 156, 156, 0.25);
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  color: #fff;
  background-color: #f2a100;
}

.back-to-top:hover {
  color: #fff;
  background-color: #494949;
}

#cookPopup {
  display: none;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: fixed;
  bottom: 0;
  width: 100%;
  padding: 25px;
  background-color: white;
  border-radius: 4px;
  box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.4);
  z-index: 9999
}
#cookPopup p {
  margin: 0;
  text-align: center
}
.cookPopup_btn {
  padding: 10px 20px;
}
@media(min-width:576px) {
  #cookPopup.show {
    display: flex;
    align-items: center
  }
}
@media(max-width:575px) {
  #cookPopup.show {
    display: block;
    text-align: left
  }
  .cookPopup_btn {
    margin: 10px 0 0 0
  }
}
.cookPopup_title {
  font-size: 16px;
  font-weight: 700
}
.cookPopup_desc {
  font-size: 16px
}
.show {
  display: flex !important
}
@media screen and (max-width:991.98px) {
  .product-single .row {
    flex-direction: column-reverse;
    row-gap: 20px;
  }
}
@media screen and (max-width:767.98px) {
  .header-sticky {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .header-sticky p {
    text-align: center !important;
    margin-top: 10px;
  }
  .product-single {
    padding-top: 160px;
  }
  .product-details-tabs .nav li button {
    font-size: 20px;
  }
}
.thanks {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  padding: 200px 0 150px;
}
.thanks .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 10px;
}
.thanks img {
  width: 100px;
  height: auto;
  margin-bottom: 10px;
}
.thanks p {
  text-align: center;
  font-size: 18px;
}
.thanks p.thanks-text {
  color: #f2a100;
  font-weight: bold;
}
.docs {
  word-break: break-word;
  padding: 160px 0 100px;
}
.docs h1 {
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
  color: #000;
}
.docs h2 {
  margin-bottom: 10px;
  font-size: 32px;
}
.docs h3 {
  margin-bottom: 10px;
  font-size: 26px;
}
.docs li,
.docs p {
  color: inherit;
  line-height: 1.929;
}
.docs a {
  text-decoration: none !important;
  color: #f2a100;
}
.docs a:hover {
  color: #000;
}