.test {
  test: none;
}

.main-container-wrapper .content-container {
  display: block;
  margin-bottom: 40px;
  clear: both;
}

.main-container-wrapper .product-grid-4 {
  grid-auto-rows: auto;
  grid-column-gap: 30px;
  grid-row-gap: 15px;
}

.main-container-wrapper .product-grid-3, .main-container-wrapper .product-grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(235px, 1fr));
  justify-items: center;
}

.main-container-wrapper .product-grid-3 {
  grid-gap: 27px;
  grid-auto-rows: auto;
}

.main-container-wrapper .product-card {
  height: 480px;
  position: relative;
  padding: 15px;
}

.main-container-wrapper .product-card .product-image {
  max-height: 350px;
  max-width: 280px;
  margin-bottom: 10px;
  background: #f2f2f2;
}

.main-container-wrapper .product-card .product-image img {
  display: block;
  height: 100%;
}

.main-container-wrapper .product-card .product-name {
  margin-bottom: 14px;
  width: 100%;
  color: #242424;
}

.main-container-wrapper .product-card .product-name a {
  color: #242424;
}

.main-container-wrapper .product-card .product-description {
  display: none;
}

.main-container-wrapper .product-card .product-ratings {
  width: 100%;
}

.main-container-wrapper .product-card .product-ratings .icon {
  width: 16px;
  height: 16px;
}

.main-container-wrapper .product-card .cart-wish-wrap {
  position: absolute;
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  bottom: 5px;
  height: 40px;
}

.main-container-wrapper .product-card .cart-wish-wrap .addtocart {
  margin-right: 10px;
  text-transform: uppercase;
  text-align: left;
  box-shadow: 1px 1px 0 #ccc;
}

.main-container-wrapper .product-card .cart-wish-wrap .add-to-wishlist {
  margin-top: 5px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
}

.main-container-wrapper .product-card .default-wrap {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  height: 40px;
}

.main-container-wrapper .product-card .default-wrap .addtocart {
  margin-right: 10px;
  text-transform: uppercase;
  text-align: left;
  box-shadow: 1px 1px 0 #ccc;
}

.main-container-wrapper .product-card .default-wrap .add-to-wishlist {
  margin-top: 5px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
}

.main-container-wrapper .product-card .sticker {
  border-bottom-right-radius: 15px;
  position: absolute;
  top: 15px;
  left: 15px;
  text-transform: uppercase;
  padding: 4px 13px;
  font-size: 14px;
  color: #fff;
  box-shadow: 1px 1px 1px #ccc;
  font-weight: 500;
}

.main-container-wrapper .product-card .sticker.sale {
  background: #ff6472;
}

.main-container-wrapper .product-card .sticker.new {
  background: #2ed04c;
}

.main-container-wrapper .product-card:hover {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 16px 4px rgba(40, 44, 63, 0.07);
  transition: 0.3s;
}

@media only screen and (max-width: 580px) {
  .main-container-wrapper .main-container-wrapper {
    padding: 0;
  }
}
@media only screen and (max-width: 551px) {
  .main-container-wrapper .product-grid-3 {
    grid-template-columns: 48.5% 48.5%;
    grid-column-gap: 20px;
  }
}
@media only screen and (max-width: 854px) {
  .main-container-wrapper .product-image img {
    display: block;
    width: 100%;
  }
  .main-container-wrapper .product-grid-4 {
    grid-template-columns: 29.5% 29.5% 29.5%;
    grid-column-gap: 35px;
  }
  .main-container-wrapper .product-card:hover {
    padding: 5px;
  }
}
@media only screen and (max-width: 653px) {
  .main-container-wrapper .product-image img {
    display: block;
    width: 100%;
  }
  .main-container-wrapper .product-grid-4 {
    grid-template-columns: 48.5% 48.5%;
    grid-column-gap: 17px;
  }
}
@media only screen and (max-width: 425px) {
  .main-container-wrapper .product-card {
    font-size: 90%;
  }
  .main-container-wrapper .product-card .product-information .default-wrap {
    display: block;
    height: 40px;
  }
  .main-container-wrapper .product-card .product-image img {
    display: block;
    width: 100%;
  }
  .main-container-wrapper .product-card .btn.btn-md {
    padding: 5px;
  }
  .main-container-wrapper .checkout-process .col-main .step-content .form-header {
    display: block;
    height: 50px !important;
  }
  .main-container-wrapper .checkout-process .col-main .step-content .form-header .checkout-step-heading {
    margin-bottom: 10px;
  }
  .main-container-wrapper .checkout-process .col-main .step-content .form-header .btn-primary {
    text-align: center;
  }
  .main-container-wrapper .product-grid-4 {
    grid-template-columns: 48.5% 48.5%;
    grid-column-gap: 10px;
  }
}
.main-container-wrapper .product-list {
  min-height: 200px;
}

.main-container-wrapper .product-list .product-card {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 20px;
}

.main-container-wrapper .product-list .product-card .product-image {
  float: left;
  width: 30%;
  height: 350px;
}

.main-container-wrapper .product-list .product-card .product-image img {
  height: 100%;
  width: 100%;
}

.main-container-wrapper .product-list .product-card .product-information {
  float: right;
  width: 70%;
  padding-left: 30px;
}

.main-container-wrapper .product-list .product-card:last-child {
  margin-bottom: 0;
}

.main-container-wrapper .product-list.empty h2 {
  font-size: 20px;
}

.main-container-wrapper section.featured-products {
  display: block;
  margin-bottom: 5%;
}

.main-container-wrapper section.featured-products .featured-heading {
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  font-size: 18px;
  margin-bottom: 20px;
}

.main-container-wrapper section.featured-products .featured-heading .featured-separator {
  color: #d3d3d3;
}

.main-container-wrapper section.news-update {
  display: block;
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 5%;
}

.main-container-wrapper section.news-update .news-update-grid {
  display: grid;
  grid-template-columns: 58.5% 40%;
  grid-gap: 20px;
}

.main-container-wrapper section.news-update .news-update-grid .block1 {
  display: block;
  box-sizing: border-box;
}

.main-container-wrapper section.news-update .news-update-grid .block1 img {
  display: flex;
  height: 100%;
  width: 100%;
}

.main-container-wrapper section.news-update .news-update-grid .block2 {
  display: block;
  box-sizing: border-box;
  display: grid;
  grid-template-rows: repeat(2, minmax(50%, 1fr));
  grid-row-gap: 20px;
}

.main-container-wrapper section.news-update .news-update-grid .block2 .sub-block1 {
  display: block;
  box-sizing: border-box;
}

.main-container-wrapper section.news-update .news-update-grid .block2 .sub-block1 img {
  width: 100%;
}

.main-container-wrapper section.news-update .news-update-grid .block2 .sub-block2 {
  display: block;
  box-sizing: border-box;
}

.main-container-wrapper section.news-update .news-update-grid .block2 .sub-block2 img {
  width: 100%;
}

.quantity {
  display: inline-block !important;
}

.quantity label {
  margin-bottom: 10px;
}

.quantity .quantity-container {
  display: flex !important;
}

.quantity button {
  width: 40px;
  height: 38px;
  font-size: 16px;
  background: #fff;
  border: 1px solid #c7c7c7;
  cursor: pointer;
}

.quantity button.decrease, .quantity button.increase {
  border-radius: 3px;
}

.quantity.control-group .control {
  text-align: center;
  float: left;
  width: 60px;
  height: 38px;
  margin: 0;
  border: 1px solid #c7c7c7;
  border-right: none;
  border-left: none;
  border-radius: 0;
}

.quantity.control-group .control:focus {
  border-color: #c7c7c7;
}

@font-face {
  font-family: "Arial-fallback";
  src: local("Arial");
  size-adjust: 100%;
  ascent-override: 100%;
  descent-override: 25%;
  line-gap-override: 19%;
  font-weight: 600;
}
@font-face {
  font-family: "Arial-fallback";
  src: local("Arial");
  size-adjust: 100%;
  ascent-override: 100%;
  descent-override: 21%;
  line-gap-override: 19%;
  font-weight: 500;
}
@font-face {
  font-family: "Arial-fallback";
  src: local("Arial");
  size-adjust: 105%;
  ascent-override: 100%;
  descent-override: 21%;
  line-gap-override: 19%;
  font-weight: 400;
}
* {
  margin: 0;
  padding: 0;
}

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

body {
  font-family: Chivo, sans-serif;
  color: #101828;
  font-size: 1rem;
  font-weight: 400;
}

a:active, a:focus, a:hover, a:link, a:visited {
  text-decoration: none;
  color: #000;
}
a:active:hover, a:focus:hover, a:hover:hover, a:link:hover, a:visited:hover {
  color: #2c6f5b;
}

p {
  line-height: 1.5;
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 18px;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}

.h2, h2 {
  font-size: 2rem;
}

.h3, h3 {
  font-size: 1.75rem;
}

.h4, h4 {
  font-size: 1.5rem;
}

.h6, h6 {
  font-size: 1rem;
}

.main_wrapper {
  margin-top: 128px;
}
@media screen and (max-width: 1001px) {
  .main_wrapper {
    margin-top: 87px;
  }
}
@media screen and (max-width: 768px) {
  .main_wrapper {
    margin-top: 87px;
  }
}

section {
  padding: 80px 0;
  overflow: hidden;
}
section .middle_content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: auto;
}
section .content .title3 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 375px) {
  section .content .title3 {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 600px) {
  section {
    padding: 18px 0;
  }
}

.section-title {
  padding-bottom: 0px;
}
.section-title .class-head {
  margin-bottom: 0;
}
.section-title .class-head2 {
  margin-bottom: 0;
  font-family: inherit;
  text-transform: uppercase;
}
.section-title .text {
  font-size: inherit;
  margin: 20px auto auto auto;
}
@media screen and (min-width: 600px) {
  .section-title .text {
    font-size: 20px;
    margin: 30px auto auto auto;
    width: 80%;
  }
}
.section-title .text-full {
  width: 100%;
}
.section-title .icon i {
  font-size: 150px;
  color: #000;
}
@media screen and (max-width: 600px) {
  .section-title .icon i {
    font-size: 50px;
  }
}

.text-white {
  color: #ffffff !important;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.content_list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.content_list li {
  margin: 15px 20px;
}

.vue-go-top[data-v-0c20a6ee] {
  background-color: #000 !important;
}

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

@media screen and (min-width: 600px) {
  .no-padding-right {
    padding-right: 0 !important;
  }
}

.style-none {
  list-style: none;
}

.alert-wrapper {
  z-index: 998;
}

.heading-1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 64px;
  letter-spacing: -1%;
  color: #000;
}
@media screen and (max-width: 600px) {
  .heading-1 {
    font-size: 42px;
    line-height: 48px;
  }
}
@media screen and (max-width: 520px) {
  .heading-1 {
    font-size: 42px;
    line-height: 48px;
  }
}
@media screen and (max-width: 420px) {
  .heading-1 {
    font-size: 32px;
    line-height: 38px;
  }
}

.heading-2 {
  letter-spacing: 0;
  font-weight: 700;
  font-size: 42px;
  line-height: 44px;
  color: #000;
}
@media screen and (max-width: 520px) {
  .heading-2 {
    font-size: 29px;
    line-height: 40px;
    margin-bottom: 15px;
  }
}

.heading-3 {
  font-size: 35px;
  line-height: 38px;
  font-weight: 700;
  letter-spacing: 0;
  color: #000;
}

.heading-5 {
  font-size: 22px;
  line-height: 24px;
  font-weight: 700;
  letter-spacing: 0;
  color: #000;
}

.text-large {
  font-size: 24px;
  line-height: 32px;
}
.text-large p {
  margin-top: 20px;
  font-size: 24px;
  line-height: 32px;
  font-weight: 400;
}

.text-400 {
  font-weight: 400;
}

.text-body-excerpt {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
}

.page_width-8 .page_innner_section {
  flex: 0 0 auto;
  width: 66.6666666667%;
}
@media screen and (max-width: 600px) {
  .page_width-8 .page_innner_section {
    width: 100%;
  }
}

.header-title {
  margin-top: 25px;
  margin-bottom: 25px;
}

.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.row > .content {
  padding-right: 15px;
  padding-left: 15px;
}

.col-2 {
  -ms-flex: 0 0 16.666667%;
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.col-3, .col-lg-3 {
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

@media (min-width: 768px) {
  .col-md-6, .col-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 992px) {
  .col-lg-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
}

.col-8 {
  -ms-flex: 0 0 66.666667%;
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.col-lg-6 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}
@media (min-width: 992px) {
  .col-lg-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
}

.col-lg-4 {
  display: flex;
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}
@media (min-width: 992px) {
  .col-lg-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}

@media screen and (min-width: 992px) {
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
}

.col-lg-12, .col-12 {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

@media screen and (max-width: 992px) {
  .col-md-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.align-items-stretch {
  align-items: stretch;
}

@media screen and (min-width: 992px) {
  .col25 {
    flex: 0 0 25%;
    max-width: 25%;
  }
}
.col25.content {
  padding-left: 15px;
  padding-right: 15px;
}

@media screen and (min-width: 992px) {
  .col75 {
    flex: 0 0 75%;
    max-width: 75%;
  }
}
.col75.content {
  padding-left: 15px;
  padding-right: 15px;
}

.align-none {
  align-items: unset;
}

.container {
  width: 100%;
  margin: auto;
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media screen and (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media screen and (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media screen and (min-width: 1400px) {
  .container {
    max-width: 1240px;
  }
}
@media screen and (min-width: 1500px) {
  .container {
    max-width: 1400px;
  }
}
@media screen and (max-width: 600px) {
  .container > .section-title {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.width-8 {
  flex: 0 0 auto;
  width: 66.6666666667%;
}

.margin-auto {
  margin: auto;
}

.mt-20 {
  margin-top: 20px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-90 {
  margin-top: 90px;
}

.max-height-500 {
  max-height: 500px;
}

.rounded-16 {
  border-radius: 16px;
}

.rounded-58 {
  border-radius: 58px;
}

.rounded-right-58 {
  border-radius: 0 58px 58px 0;
}

.button {
  display: block;
  background: #0a0909;
  z-index: 2;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  color: #fff;
  cursor: pointer;
  padding: 22px 32px;
  width: fit-content;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
  transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
@media screen and (min-width: 1100px) and (max-width: 1400px) {
  .button {
    padding: 22px 25px;
  }
}
.button:visited {
  color: #fff;
}
.button:link {
  color: #fff;
}
.button:focus {
  color: #fff;
}
.button:hover {
  background-color: #F2F4F7;
  border-color: transparent;
  color: #101828;
}

.icon-arrow-right {
  background-image: url(../images/icons/small-right-white.svg);
  background-repeat: no-repeat;
  background-position: center right 25px;
  padding-right: 56px;
}
.icon-arrow-right:hover {
  background-image: url(../images/icons/small-right.svg);
}

.button-light-gray {
  background-color: #f2f4f7;
  color: #475467;
}

.button-svg-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
}
.button-svg-icon svg path {
  color: #000;
}
.button-svg-icon:hover svg path {
  color: #2c6f5b;
}

.btn {
  transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
.btn.btn-primary {
  background: #0a0909;
  color: #FFF;
}
.btn:hover {
  background-color: #F2F4F7;
  border-color: transparent;
  color: #101828 !important;
}

header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  transition: all 0.5s;
  background: #fff;
  z-index: 997;
  border-bottom: 1px solid #f5d7bd;
}
header ul {
  list-style: none;
}
header a {
  font-size: 17px;
}
header .head_top {
  padding: 10px 0;
  font-size: 12.5px;
}
@media screen and (max-width: 520px) {
  header .head_top {
    padding: 10px 0 5px;
  }
}
header .head_top ul {
  text-align: right;
}
@media screen and (max-width: 600px) {
  header .head_top ul {
    text-align: center;
  }
}
header .head_top ul li {
  display: inline-block;
}
@media screen and (min-width: 375px) {
  header .head_top ul li {
    padding-right: 5px;
  }
}
@media screen and (min-width: 420px) {
  header .head_top ul li {
    padding-right: 10px;
  }
}
@media screen and (min-width: 600px) {
  header .head_top ul li {
    padding-right: 20px;
  }
}
header .head_top ul li:last-child {
  padding-right: 0;
}
@media screen and (max-width: 600px) {
  header .head_top ul li:last-child {
    display: inline-block;
  }
}
@media screen and (max-width: 600px) {
  header .head_top ul li:nth-child(2) {
    padding-right: 0;
    display: none;
  }
}
header .head_top ul li a {
  font-size: inherit;
}
header .head_top ul li a:hover {
  color: #2c6f5b;
}
header .head_top .mobi_label {
  width: 14px;
  display: inline-block;
  height: 16px;
}
header .head_top .mobi_label svg {
  max-width: 14px;
  max-height: 14px;
}
header .head_bottom {
  display: flex;
  align-items: center;
  padding: 0 0 10px 0;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  header .head_bottom {
    padding: 5px 15px 15px;
  }
}
@media screen and (max-width: 520px) {
  header .head_bottom {
    padding: 5px 15px;
  }
}
header .head_bottom > div {
  flex: unset;
}
header .head_bottom .nav_container {
  margin: auto;
}
header .head_bottom .lang_container {
  display: flex;
  align-items: center;
  justify-content: end;
}
@media screen and (max-width: 1200px) {
  header .head_bottom .lang_container {
    display: block;
  }
}
@media screen and (max-width: 1200px) {
  header .head_bottom .lang_container li:first-child {
    display: block;
  }
}
@media screen and (max-width: 1200px) {
  header .head_bottom .lang_container li:last-child {
    display: none;
  }
}
header .head_bottom .lang_container .my_account_container .my_account_box {
  display: flex;
  column-gap: 5px;
}
@media screen and (max-width: 992px) {
  header .head_bottom .lang_container .my_account_container {
    display: none;
  }
}
header .head_bottom .lang_container .my_account_container > ul li {
  display: block;
}
header .head_bottom .lang_container .my_account_container > ul li > div {
  margin-bottom: 15px;
}
header .head_bottom .lang_container .my_account_container > ul li > ul {
  display: block;
}
header .head_bottom .lang_container .my_account_container > ul li > ul li {
  padding: 5px 0;
}
@media screen and (max-width: 600px) {
  header .head_bottom .lang_container {
    display: block;
  }
}
header .head_bottom ul {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (min-width: 996px) {
  header .head_bottom ul {
    gap: 15px;
  }
}
header .head_bottom .logo_container {
  flex: none;
}
header .head_bottom .logo_container a {
  display: block;
}
header .head_bottom .logo_container a img {
  width: auto;
  height: auto;
}
@media screen and (max-width: 600px) {
  header .head_bottom .logo_container img {
    max-width: 150px;
  }
}
@media screen and (max-width: 1000px) {
  header nav.nav-menu {
    display: none;
  }
}
header nav.nav-menu ul {
  list-style: none;
  display: flex;
  gap: 0;
}
header nav.nav-menu ul > li {
  position: relative;
  white-space: nowrap;
  padding: 30px 22px;
}
@media screen and (min-width: 1200px) and (max-width: 1400px) {
  header nav.nav-menu ul > li {
    padding-left: 10px;
  }
}
header nav.nav-menu ul > li > a {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
}
header nav.nav-menu ul > li:hover > a, header nav.nav-menu ul > li.active > a {
  color: #2c6f5b !important;
}
header nav.nav-menu ul > li:hover > a:after, header nav.nav-menu ul > li.active > a:after {
  border-color: #2c6f5b;
}
header nav.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 15px;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  transition: 0.2s;
  border-radius: 4px;
  padding: 8px 0;
  box-shadow: 4px 4px 40px rgba(16, 24, 40, 0.1);
  background-color: #fff;
  min-width: 180px;
}
header nav.nav-menu .drop-down ul li {
  min-width: 180px;
  position: relative;
  padding: 0;
}
header nav.nav-menu .drop-down ul a {
  font-size: 14px;
  color: #000;
  padding: 10px 20px;
}
header nav.nav-menu .drop-down ul a:hover {
  color: #2c6f5b;
}
header nav.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
header nav.nav-menu .drop-down > a:after {
  border: 1px solid #000;
  content: " ";
  width: 10px;
  height: 10px;
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg);
  position: relative;
  padding: 0;
  top: -3px;
  right: 0px;
  display: inline-block;
  margin-left: 10px;
}
header nav.nav-menu a {
  display: block;
  text-decoration: none;
}
header .mobile-nav-toggle {
  position: relative;
  right: 0;
  top: 0;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
  margin-left: 20px;
}
@media screen and (min-width: 1000px) {
  header .mobile-nav-toggle {
    display: none !important;
  }
}
header.header-scrolled {
  border-color: #fff;
  box-shadow: 0px 2px 15px rgba(18, 66, 101, 0.08);
}
header .my_account_container .my_account {
  right: 0;
  display: none;
  padding: 10px;
  top: 30px;
  min-width: 250px;
}

.mobile-nav {
  position: fixed;
  top: 108px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}
.mobile-nav a {
  display: block;
  position: relative;
  color: #124265;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
  text-decoration: none;
}
.mobile-nav a:hover {
  color: #2487ce;
}
.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}
.mobile-nav .drop-down ul li {
  padding-left: 20px;
}
.mobile-nav .drop-down > a:after {
  border: 1px solid #000;
  content: " ";
  width: 10px;
  height: 10px;
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg);
  position: absolute;
  padding: 0;
  top: 15px;
  right: 15px;
  border-color: #2487ce;
}
.mobile-nav .active.drop-down > a:after {
  transform: rotate(-135deg);
  top: 20px;
}

.mobile-nav-active {
  overflow: hidden;
}
.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}
.mobile-nav-active .svg_menu {
  display: none;
}
.mobile-nav-active .svg_close {
  display: block !important;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 996;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(10, 38, 58, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-navigation .icon-svg {
  display: inline-block;
  width: 24px;
  height: 24px;
}
.mobile-navigation .language-logo-wrapper {
  display: inline-block;
  height: 18px;
  margin-right: 5px;
  width: 18px;
}
.mobile-navigation img {
  height: 100%;
  max-height: 50px;
  width: 100%;
  vertical-align: middle;
  border-style: none;
}
.mobile-navigation .nav-container {
  background-color: #fff;
  box-shadow: 5px 0 5px -5px #333;
  font-size: 16px;
  height: 100vh;
  opacity: 1;
  overflow-y: scroll;
  position: fixed !important;
  top: 0;
  width: 75%;
  z-index: 9999;
  display: block !important;
  left: -78%;
  transition-delay: 0.1s;
  transition-duration: 0.51s;
  transition-timing-function: ease;
  transition-property: margin, left;
}
.mobile-navigation .greeting {
  background-color: #fff;
  border-bottom: 1px solid #ccc;
  color: #111;
  display: table;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  width: 100%;
  padding: 15px;
}
.mobile-navigation .menu-wrapper li {
  font-size: 16px;
  padding: 10px 0 10px 20px;
}
.mobile-navigation .menu-wrapper li .category-logo {
  display: inline-block;
}
.mobile-navigation .menu-wrapper li .category-logo img {
  height: 100%;
  max-height: 20px;
  width: 100%;
  vertical-align: middle;
  border-style: none;
  margin-top: -2px;
}
.mobile-navigation .menu-wrapper li .icon {
  display: inline-block;
  height: 18px;
  margin-right: 5px;
  width: 18px;
}
.mobile-navigation .menu-wrapper li .arrow-right {
  float: right;
  font-size: 20px;
  padding-right: 15px;
  padding-top: 5px;
}
.mobile-navigation .category-wrapper {
  border-bottom: 1px solid #ccc;
}
.mobile-navigation .drawer-section {
  padding: 15px;
  display: flex;
  column-gap: 15px;
  align-items: center;
}
.mobile-navigation .drawer-section span {
  display: inline-block;
  font-size: 20px;
  vertical-align: top;
}
.mobile-navigation .drawer-section .text {
  flex-basis: 100%;
}
.mobile-navigation .drawer-section .icon-account {
  display: inline-block;
}
.mobile-navigation .drawer-section .icon-svg {
  width: 34px;
  height: auto;
}
.mobile-navigation .icon-right {
  background: url("../images/icons/icon-right.svg") no-repeat;
  margin-right: 15px;
  margin-top: 2px;
  float: right;
  width: 16px;
  height: 16px;
  display: block;
}
.mobile-navigation .icon-account {
  background: url("../images/icons/icon-account.svg") no-repeat;
  width: 24px;
  height: 24px;
}
.mobile-navigation .icon-close {
  background: url("../images/icons/icon-close.svg") no-repeat;
  width: 24px;
  height: 24px;
}
.mobile-navigation .icon-left {
  background: url("../images/icons/icon-right.svg") no-repeat;
  width: 24px;
  height: 24px;
  transform: rotate(180deg);
}

.mobile-nav-active .nav-container {
  visibility: visible;
  left: 0;
}

.jx_banner {
  padding: 60px 0;
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
  color: #000000;
  overflow: hidden;
}
.jx_banner.jx_background-color-light-green {
  background-color: #c9efd4;
}
.jx_banner.jx_background-color-rose-green {
  background-color: #f5d7bd;
}
.jx_banner .jx-color-rose-green {
  color: #f5d7bd;
}
.jx_banner .jx-color-dark-green {
  color: #2c6f5b;
}
.jx_banner .text-wrapper {
  padding: 0 15px;
  max-width: 58.555%;
}
@media screen and (max-width: 600px) {
  .jx_banner .text-wrapper {
    max-width: 100%;
  }
}
.jx_banner .text-wrapper h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
  margin-bottom: 25px;
  -ms-word-break: break-all;
  word-break: break-all;
  word-break: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
}
@media screen and (min-width: 600px) {
  .jx_banner .text-wrapper h1 {
    font-size: 80px;
    line-height: 88px;
    margin-bottom: 40px;
  }
}
.jx_banner .text-wrapper h2 {
  font-size: 26px;
  font-weight: 600;
  line-height: 30px;
}
.jx_banner .text-wrapper p {
  font-size: 22px;
  line-height: 28px;
  margin-bottom: 15px;
  font-family: inherit;
}
@media screen and (min-width: 600px) {
  .jx_banner .text-wrapper p {
    font-size: 24px;
    line-height: 33px;
  }
}
@media screen and (max-width: 375px) {
  .jx_banner .text-wrapper p {
    font-size: 18px;
    line-height: 26px;
  }
}
.jx_banner .text-wrapper .button {
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .jx_banner .text-wrapper {
    padding: 0;
  }
}
.jx_banner .video-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}
.jx_banner .video-wrapper video {
  width: auto;
  height: 100%;
}
.jx_banner .video-wrapper:after {
  content: " ";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  background-color: #111;
  opacity: 0.6;
}
.jx_banner .image-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}
.jx_banner.jx-top-content {
  flex-direction: column;
  background-color: #3475ef;
}
.jx_banner.jx-top-content .image-wrapper {
  background-color: #fff;
  z-index: 0;
}
.jx_banner.jx-top-content .jx-image-background-fluid {
  height: 100%;
  max-width: unset;
  width: auto;
}
@media screen and (min-width: 992px) {
  .jx_banner.jx-top-content .jx-image-background-fluid {
    width: 100%;
  }
}
.jx_banner.jx-top-content .image-bottom-wrapper {
  z-index: 1;
}
@media screen and (max-width: 520px) {
  .jx_banner.jx-top-content .image-bottom-wrapper {
    margin-top: 20px;
    max-width: 90%;
  }
}
.jx_banner.jx-top-content .text-wrapper {
  margin-top: 20px;
  max-width: 960px;
  margin-bottom: 0;
  z-index: 1;
}
@media screen and (min-width: 1200px) {
  .jx_banner.jx-top-content .text-wrapper h1 {
    font-size: 51px;
  }
}
@media screen and (max-width: 420px) {
  .jx_banner.jx-top-content .text-wrapper h1 {
    font-size: 23px;
    line-height: 32px;
  }
}
@media screen and (max-width: 375px) {
  .jx_banner.jx-top-content .text-wrapper h1 {
    font-size: 21px;
    line-height: 28px;
  }
}
@media screen and (min-width: 992px) {
  .jx_banner.jx-top-content .text-wrapper {
    margin-top: 50px;
  }
  .jx_banner.jx-top-content .text-wrapper p {
    font-size: 28px;
    font-family: Chivo, sans-serif;
    line-height: 1.5;
    margin: 30px auto;
  }
}
.jx_banner.jx-full-text-wrapper .text-wrapper {
  max-width: 100% !important;
}

.page_home .jx_banner {
  min-height: 500px;
  height: calc(100vh + 117px);
}
.page_home header:not(.header-scrolled) {
  background: transparent;
  border-bottom: 0;
}
.page_home header:not(.header-scrolled) .head_top ul li {
  color: #fff;
}
.page_home header:not(.header-scrolled) .head_top ul li a {
  color: inherit;
}
.page_home header:not(.header-scrolled) .head_top ul li a:hover {
  color: #2487ce;
}
.page_home header:not(.header-scrolled) .head_bottom {
  color: #fff;
}
.page_home header:not(.header-scrolled) .head_bottom ul li a {
  color: #fff;
}
.page_home header:not(.header-scrolled) .head_bottom ul li > a:after {
  border-color: #fff;
}
.page_home header:not(.header-scrolled) .head_bottom ul li:hover > a:after {
  border-color: #2487ce;
}
.page_home header:not(.header-scrolled) .head_bottom ul li.drop-down ul li a {
  color: #124265;
}
.page_home header:not(.header-scrolled) button svg {
  fill: #fff;
}
.page_home .main_wrapper {
  margin-top: 0;
}

footer {
  color: #667085;
  font-size: 16px;
}
footer .footer-top-border {
  border-top: 1px solid #ddd;
  padding-top: 40px;
}
footer p {
  font-size: 16px;
}
footer .title {
  font-size: 22px;
  line-height: 24px;
  font-weight: bold;
  color: #000;
  position: relative;
  padding-bottom: 12px;
}
footer .footer-top {
  padding: 60px 0 30px 0;
  background: #fff;
}
@media screen and (max-width: 520px) {
  footer .footer-top {
    padding: 0px 0 30px 0;
  }
}
footer .footer-top-inner {
  border-bottom: 1px solid #ddd;
  margin-bottom: 40px;
}
footer .footer-col-full {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}
footer .footer-col {
  padding-left: 15px;
  padding-right: 15px;
}
footer .footer-col .sw {
  display: inline-block;
  min-width: 100px;
}
@media screen and (max-width: 520px) {
  footer .footer-col {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  footer .footer-col {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media screen and (min-width: 992px) {
  footer .footer-col {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
}
footer .footer-col ul {
  list-style: none;
}
footer .footer-col ul i {
  padding-right: 2px;
  color: #2487ce;
  font-size: 18px;
  line-height: 1;
}
footer .footer-col ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}
footer .footer-col ul li a {
  color: #444444;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
footer .footer-col ul li a:hover {
  color: #2c6f5b;
}
@media screen and (min-width: 992px) {
  footer .footer-newsletter {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}
footer .bottom_container {
  display: flex;
  align-items: center;
  padding: 1.5rem 0;
}
@media screen and (max-width: 600px) {
  footer .bottom_container {
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap;
    text-align: center;
  }
}
footer .bottom_container .text-copyright {
  text-align: center;
}
@media screen and (min-width: 768px) {
  footer .bottom_container .text-copyright {
    text-align: left;
    margin-right: auto;
  }
}
@media screen and (max-width: 600px) {
  footer .bottom_container .text-copyright {
    margin: auto;
  }
}
@media screen and (max-width: 600px) {
  footer .bottom_container .social-links {
    padding-top: 1rem;
    margin: auto;
  }
}
footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: transparent;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 5px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
footer .social-links a:hover {
  background: #2c6f5b;
  color: #fff;
  text-decoration: none;
}
footer .footer-newsletter {
  font-size: 15px;
}
footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 5px;
  text-align: left;
  border: 1px solid #cde5f6;
}
footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}
footer .footer-newsletter form input[type=email]:focus-visible {
  border: 0;
  outline: 0;
}
footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: -1px;
  right: -2px;
  bottom: -1px;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px 2px 20px;
  background: #1a76b7;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 5px 5px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
footer .footer-newsletter form input[type=submit]:hover {
  background: #3194db;
}
footer .links a {
  margin-left: 20px;
  margin-right: 20px;
}
@media screen and (max-width: 420px) {
  footer .links {
    padding-top: 15px;
    display: block;
  }
}

.page-no-bottom-space {
  padding-bottom: 0;
}

.page-no-top-space {
  padding-top: 0;
}

.page-button-light-gray .button {
  background-color: #f2f4f7 !important;
  color: #475467 !important;
}

.card-group {
  padding: 53px 48px;
  display: inline-block;
  width: 100%;
  border-radius: 16px;
  margin-bottom: 20px;
}
.card-group .title {
  margin-top: 20px;
  font-size: 24px;
  line-height: 37px;
}
.card-group .text {
  margin-top: 20px;
}

.bd-light-green {
  border: 10px solid #c9efd4;
}

.bd-dark-green {
  border: 10px solid #2c6f5b;
}

.bd-rose-green {
  border: 10px solid #f5d7bd;
}

.bg-light-green {
  background-color: #c9efd4;
}

.bg-rose-green {
  background-color: #f5d7bd;
}

.bg-dark-green {
  background-color: #2c6f5b;
}

.box-40 {
  padding: 40px !important;
}
@media screen and (max-width: 600px) {
  .box-40 {
    padding: 40px 0 !important;
  }
}

button, input, optgroup, select, textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

.form-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}
.form-row > [class*=col] {
  padding-right: 5px;
  padding-left: 5px;
}

.col50 {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}
@media screen and (max-width: 600px) {
  .col50 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.form-group {
  margin-bottom: 1rem;
}

.form-control {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 30px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #000;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid transparent;
  border-radius: 0px;
  height: 60px;
}
.form-control:focus {
  border-color: #2487ce;
}

.file-control {
  background: transparent;
  padding: 15px 5px;
  margin: 0;
}

textarea.form-control {
  min-height: 160px;
  padding: 30px;
}

.has-error .validate {
  display: block !important;
}

.error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.icon-email-bg {
  position: relative;
}
.icon-email-bg:before {
  content: " ";
  position: absolute;
  top: 30px;
  right: 63px;
  height: 165px;
  width: 165px;
  opacity: 0.3;
  z-index: 1;
  background: url("../images/icons/email.svg") no-repeat;
}
@media screen and (max-width: 768px) {
  .icon-email-bg:before {
    top: 19px;
    right: 20px;
    height: 74px;
    width: 74px;
  }
}

.info p {
  margin-bottom: 0.5rem;
}
.info strong {
  min-width: 80px;
  display: inline-block;
}

@media screen and (max-width: 768px) {
  #contact-form .mt-40 {
    margin-top: 10px;
  }
}
@media screen and (max-width: 768px) {
  #contact-form .contact_form {
    padding-right: 0;
    padding-left: 0;
  }
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}

.collapse_box:first-child {
  margin-top: 0;
}

.collapse_box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
  flex: 0 0 100%;
  gap: 0;
  box-shadow: 0 0 1px 0px rgba(0, 0, 0, 0.08);
  border: 1px solid #ddd;
  margin-top: 15px;
}
.collapse_box .text {
  margin-top: 15px;
}
.collapse_box .title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  flex-basis: 80%;
}
.collapse_box .title i.icon-arrow-up {
  display: none;
}
.collapse_box .body {
  flex-basis: 100%;
}

.collapse-icon.icon-help {
  background: url("../images/icons/question.svg") no-repeat;
  width: 18px;
  height: 18px;
  display: block;
  margin-right: 10px;
}
.collapse-icon.icon-arrow-down {
  font-size: 24px;
  position: absolute;
  right: 15px;
  top: 15px;
}
.collapse-icon.icon-arrow-down::after {
  border: 1px solid #000;
  content: " ";
  width: 10px;
  height: 10px;
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg);
  position: relative;
  padding: 0;
  top: -3px;
  right: 0px;
  display: inline-block;
  margin-left: 10px;
}
.collapse-icon.icon-arrow-up {
  font-size: 24px;
  position: absolute;
  right: 15px;
  top: 15px;
}
.collapse-icon.icon-arrow-up::after {
  border: 1px solid #000;
  content: " ";
  width: 10px;
  height: 10px;
  border-top: 0;
  border-left: 0;
  transform: rotate(-135deg);
  position: relative;
  padding: 0;
  top: 1px;
  right: 0;
  display: inline-block;
  margin-left: 10px;
}

.collapsed .title i.icon-arrow-down {
  display: none;
}
.collapsed .title i.icon-arrow-up {
  display: block;
}

.page_faq_content .header-title {
  padding-top: 80px;
}
.page_faq_content .header-title:first-child {
  padding-top: 0;
}

.featured-products {
  display: flex;
  gap: 15px;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
}
.featured-products .product-card {
  width: 100%;
  height: auto;
  max-width: 300px;
  display: inline-block;
  padding: 40px 32px;
  background: #fff;
  border-radius: 16px;
  margin-bottom: 30px;
}
@media screen and (min-width: 992px) {
  .featured-products .product-card {
    max-width: 260px;
  }
}
@media screen and (min-width: 1500px) {
  .featured-products .product-card {
    max-width: 300px;
  }
}
.featured-products .product-card:hover {
  padding: 40px 32px;
}
.featured-products .product-card .product-image {
  max-width: 100%;
  max-height: 100%;
  position: relative;
}
.featured-products .product-card .product-information .product-name {
  font-size: 22px;
  line-height: 24px;
  font-weight: 700;
  letter-spacing: 0;
  padding-bottom: 20px;
  min-height: 100px;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
}
.featured-products .product-card .product-information .product-price {
  font-size: 35px;
  line-height: 38px;
  font-weight: 700;
  letter-spacing: 0;
  padding-bottom: 20px;
}
.featured-products .product-card .product-information .product-feature {
  padding-bottom: 20px;
  text-align: left;
  min-height: 305px;
}
.featured-products .product-card .product-information .product-feature ul li {
  display: inline-block;
  width: 100%;
  padding: 1px 0 1px 30px;
  background: url(../images/icons/checked-black.svg) no-repeat 0;
  background-size: 24px 24px;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 22px;
  color: #101828;
}
.featured-products .product-card .cart-wish-wrap {
  position: relative;
}
.featured-products .regular-price {
  font-size: 20px;
  display: block;
  text-decoration: line-through;
  color: red;
}

/**
 * Category page.
 */
.main .category-container {
  display: flex;
  flex-direction: row;
  width: 100%;
}
.main .category-container .layered-filter-wrapper, .main .category-container .responsive-layred-filter {
  width: 25%;
  float: left;
  padding-right: 20px;
  min-height: 1px;
}
.main .category-container .layered-filter-wrapper .filter-title, .main .category-container .responsive-layred-filter .filter-title {
  border-bottom: 1px solid #ddd;
  color: Chivo, sans-serif;
  padding: 10px 0;
}
.main .category-container .layered-filter-wrapper .filter-attributes .filter-attributes-item, .main .category-container .responsive-layred-filter .filter-attributes .filter-attributes-item {
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}
.main .category-container .layered-filter-wrapper .filter-attributes .filter-attributes-item .filter-attributes-title, .main .category-container .responsive-layred-filter .filter-attributes .filter-attributes-item .filter-attributes-title {
  padding: 10px 40px 0 10px;
  color: #000;
  cursor: pointer;
  position: relative;
}
.main .category-container .layered-filter-wrapper .filter-attributes .filter-attributes-item .filter-attributes-title .remove-filter-link, .main .category-container .responsive-layred-filter .filter-attributes .filter-attributes-item .filter-attributes-title .remove-filter-link {
  font-weight: 400;
  color: #2c6f5b;
  margin-right: 10px;
}
.main .category-container .layered-filter-wrapper .filter-attributes .filter-attributes-item .filter-attributes-title .icon, .main .category-container .responsive-layred-filter .filter-attributes .filter-attributes-item .filter-attributes-title .icon {
  background-image: url("../images/icon-dropdown.svg") !important;
  width: 10px;
  height: 10px;
  position: absolute;
  right: 15px;
  top: 14px;
}
.main .category-container .layered-filter-wrapper .filter-attributes .filter-attributes-item .filter-attributes-content, .main .category-container .responsive-layred-filter .filter-attributes .filter-attributes-item .filter-attributes-content {
  padding: 10px;
  display: none;
}
.main .category-container .layered-filter-wrapper .filter-attributes .filter-attributes-item .filter-attributes-content ol.items, .main .category-container .responsive-layred-filter .filter-attributes .filter-attributes-item .filter-attributes-content ol.items {
  padding: 0;
  margin: 0;
  list-style: none none;
}
.main .category-container .layered-filter-wrapper .filter-attributes .filter-attributes-item .filter-attributes-content ol.items li.item, .main .category-container .responsive-layred-filter .filter-attributes .filter-attributes-item .filter-attributes-content ol.items li.item {
  padding: 8px 0;
  color: #000;
}
.main .category-container .layered-filter-wrapper .filter-attributes .filter-attributes-item .filter-attributes-content ol.items li.item .checkbox, .main .category-container .responsive-layred-filter .filter-attributes .filter-attributes-item .filter-attributes-content ol.items li.item .checkbox {
  margin: 0;
}
.main .category-container .layered-filter-wrapper .filter-attributes .filter-attributes-item .filter-attributes-content ol.items li.item .color-swatch, .main .category-container .responsive-layred-filter .filter-attributes .filter-attributes-item .filter-attributes-content ol.items li.item .color-swatch {
  display: inline-block;
  margin-right: 5px;
  min-width: 20px;
  height: 20px;
  border: 1px solid #c7c7c7;
  border-radius: 3px;
  float: right;
}
.main .category-container .layered-filter-wrapper .filter-attributes .filter-attributes-item .filter-attributes-content .price-range-wrapper, .main .category-container .responsive-layred-filter .filter-attributes .filter-attributes-item .filter-attributes-content .price-range-wrapper {
  margin-top: 21px;
}
.main .category-container .layered-filter-wrapper .filter-attributes .filter-attributes-item.active .filter-attributes-content, .main .category-container .responsive-layred-filter .filter-attributes .filter-attributes-item.active .filter-attributes-content {
  display: block;
}
.main .category-container .layered-filter-wrapper .filter-attributes .filter-attributes-item.active .filter-attributes-title .icon, .main .category-container .responsive-layred-filter .filter-attributes .filter-attributes-item.active .filter-attributes-title .icon {
  background-image: url("../images//arrow-up.svg") !important;
}
.main .category-container .responsive-layred-filter {
  display: none;
  width: 100%;
  float: none;
  padding-right: 0px;
  margin-top: -25px !important;
}
.main .category-container .category-block {
  width: 80%;
  display: block;
}
.main .category-container .category-block .hero-image {
  display: inline-block;
  visibility: visible;
  width: 100%;
}
.main .category-container .category-block .hero-image img {
  max-height: 400px;
  max-width: 100%;
}
.main .top-toolbar {
  width: 100%;
  display: inline-block;
}
.main .top-toolbar .page-info {
  float: left;
  color: Chivo, sans-serif;
  line-height: 45px;
}
.main .top-toolbar .page-info span {
  display: none;
}
.main .top-toolbar .page-info span:first-child {
  display: inline;
}
.main .top-toolbar .pager {
  float: right;
}
.main .top-toolbar .pager label {
  margin-right: 5px;
}
.main .top-toolbar .pager select {
  background: transparent;
  border: 1px solid #ddd;
  border-radius: 3px;
  color: Chivo, sans-serif;
  padding: 10px;
}
.main .top-toolbar .pager .view-mode {
  display: inline-block;
  margin-right: 20px;
}
.main .top-toolbar .pager .view-mode a,
.main .top-toolbar .pager .view-mode span {
  display: inline-block;
  vertical-align: middle;
}
.main .top-toolbar .pager .view-mode a.grid-view,
.main .top-toolbar .pager .view-mode span.grid-view {
  margin-right: 10px;
}
.main .top-toolbar .pager .view-mode .sort-filter {
  display: none;
}
.main .top-toolbar .pager .sorter {
  display: inline-block;
  margin-right: 10px;
}
.main .top-toolbar .pager .limiter {
  display: inline-block;
}
.main .bottom-toolbar {
  display: block;
  margin-top: 40px;
  margin-bottom: 40px;
  text-align: center;
}

/**
 * Category page responsivs css.
 */
@media only screen and (max-width: 840px) {
  .main .layered-filter-wrapper, .main .category-container .responsive-layred-filter {
    display: none;
  }
  .main .category-block {
    width: 100% !important;
  }
  .main .category-block .top-toolbar {
    display: flex;
    flex-direction: column;
  }
  .main .category-block .top-toolbar .page-info {
    border-bottom: 1px solid #ddd;
    line-height: 15px;
    margin-top: 10px;
  }
  .main .category-block .top-toolbar .page-info span {
    display: inline;
  }
  .main .category-block .top-toolbar .page-info span:first-child {
    display: none;
  }
  .main .category-block .top-toolbar .page-info .sort-filter {
    float: right;
    cursor: pointer;
  }
  .main .category-block .top-toolbar .pager {
    margin-top: 20px;
    display: none;
  }
  .main .category-block .top-toolbar .pager .view-mode {
    display: none;
  }
  .main .category-block .responsive-layred-filter {
    display: block;
  }
}
/**
 * Product pages css starts here.
 */
section.product-detail {
  color: Chivo, sans-serif;
}
section.product-detail div.category-breadcrumbs {
  display: inline;
}
section.product-detail div.layouter {
  display: block;
  margin-top: 20px;
  margin-bottom: 20px;
}
section.product-detail div.layouter .form-container {
  display: flex;
  flex-direction: row;
  width: 100%;
}
section.product-detail div.layouter .form-container div.product-image-group {
  margin-right: 30px;
  width: 604px;
  height: 100%;
  max-width: 604px;
  position: sticky;
  top: 10px;
}
section.product-detail div.layouter .form-container div.product-image-group div {
  display: flex;
  flex-direction: row;
  cursor: pointer;
}
section.product-detail div.layouter .form-container div.product-image-group div .thumb-list {
  display: flex;
  flex-direction: column;
  margin-right: 4px;
  min-width: 120px;
  overflow: hidden;
  position: relative;
  justify-content: flex-start;
  max-height: 480px;
}
section.product-detail div.layouter .form-container div.product-image-group div .thumb-list .thumb-frame {
  border: 2px solid transparent;
  background: transparent;
  width: 120px;
  max-height: 120px;
}
section.product-detail div.layouter .form-container div.product-image-group div .thumb-list .thumb-frame.active {
  border-color: #2c6f5b;
}
section.product-detail div.layouter .form-container div.product-image-group div .thumb-list .thumb-frame img {
  height: 100%;
  width: 100%;
}
section.product-detail div.layouter .form-container div.product-image-group div .thumb-list .gallery-control {
  width: 100%;
  position: absolute;
  text-align: center;
  cursor: pointer;
  z-index: 1;
}
section.product-detail div.layouter .form-container div.product-image-group div .thumb-list .gallery-control .overlay {
  opacity: 0.3;
  background: Chivo, sans-serif;
  width: 100%;
  height: 18px;
  position: absolute;
  left: 0;
  z-index: -1;
}
section.product-detail div.layouter .form-container div.product-image-group div .thumb-list .gallery-control .icon {
  z-index: 2;
}
section.product-detail div.layouter .form-container div.product-image-group div .thumb-list .gallery-control.top {
  top: 0;
}
section.product-detail div.layouter .form-container div.product-image-group div .thumb-list .gallery-control.bottom {
  bottom: 0;
}
section.product-detail div.layouter .form-container div.product-image-group div .product-hero-image {
  display: block;
  position: relative;
  background: transparent;
  width: 100%;
  max-height: 480px;
  height: 100%;
}
section.product-detail div.layouter .form-container div.product-image-group div .product-hero-image img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: contain;
}
section.product-detail div.layouter .form-container div.product-image-group div .product-hero-image .add-to-wishlist {
  background-image: url("../images/wishlist.svg");
  position: absolute;
  top: 10px;
  right: 12px;
  background-color: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
}
section.product-detail div.layouter .form-container div.product-image-group div .product-hero-image .add-to-wishlist:hover {
  background-image: url("../images/wishlist-added.svg");
}
section.product-detail div.layouter .form-container div.product-image-group div .product-hero-image .add-to-wishlist.already {
  background-image: url("../images/wishlist-added.svg") !important;
}
section.product-detail div.layouter .form-container div.product-image-group div .product-hero-image .share {
  position: absolute;
  top: 10px;
  right: 45px;
}
section.product-detail div.layouter .form-container div.product-image-group .add-to-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  width: 79.5%;
  float: right;
}
section.product-detail div.layouter .form-container div.product-image-group .add-to-buttons .addtocart {
  margin: 2px;
  width: 100%;
  background: black;
  white-space: nowrap;
  text-transform: uppercase;
}
section.product-detail div.layouter .form-container div.product-image-group .add-to-buttons .buynow {
  margin: 2px;
  width: 100%;
  white-space: nowrap;
  text-transform: uppercase;
}
section.product-detail div.layouter .form-container .details {
  width: 50%;
  overflow-wrap: break-word;
}
section.product-detail div.layouter .form-container .details .product-price {
  margin-bottom: 14px;
  word-break: break-all;
}
section.product-detail div.layouter .form-container .details .product-price .sticker {
  display: none;
}
section.product-detail div.layouter .form-container .details .product-ratings {
  margin-bottom: 20px;
}
section.product-detail div.layouter .form-container .details .product-ratings .icon {
  width: 16px;
  height: 16px;
}
section.product-detail div.layouter .form-container .details .product-ratings .total-reviews {
  display: inline-block;
  margin-left: 15px;
}
section.product-detail div.layouter .form-container .details .product-heading {
  font-size: 24px;
  color: Chivo, sans-serif;
  margin-bottom: 15px;
  line-height: normal;
}
section.product-detail div.layouter .form-container .details .product-price {
  margin-bottom: 15px;
  word-break: break-all;
}
section.product-detail div.layouter .form-container .details .product-price .special-price {
  font-size: 24px;
}
section.product-detail div.layouter .form-container .details .stock-status {
  margin-bottom: 15px;
  font-weight: 600;
  color: #000;
}
section.product-detail div.layouter .form-container .details .stock-status.active {
  color: #444;
}
section.product-detail div.layouter .form-container .details .description {
  margin-bottom: 15px;
}
section.product-detail div.layouter .form-container .details .description ul {
  padding-left: 40px;
  list-style: disc;
}
section.product-detail div.layouter .form-container .details .quantity {
  padding-top: 15px;
  border-top: solid 1px rgba(162, 162, 162, 0.2);
}
section.product-detail div.layouter .form-container .details .downloadable-container .sample-list {
  padding: 15px 0;
  border-top: solid 1px rgba(162, 162, 162, 0.2);
}
section.product-detail div.layouter .form-container .details .downloadable-container .sample-list h3 {
  font-size: 16px;
  margin-top: 0;
}
section.product-detail div.layouter .form-container .details .downloadable-container .sample-list ul li {
  margin-bottom: 5px;
}
section.product-detail div.layouter .form-container .details .downloadable-container .sample-list ul li:last-child {
  margin-bottom: 0;
}
section.product-detail div.layouter .form-container .details .downloadable-container .link-list {
  padding: 15px 0;
  border-top: solid 1px rgba(162, 162, 162, 0.2);
}
section.product-detail div.layouter .form-container .details .downloadable-container .link-list h3 {
  font-size: 16px;
  margin-top: 0;
}
section.product-detail div.layouter .form-container .details .downloadable-container .link-list h3.required:after {
  content: "*";
  color: #fc6868;
  font-weight: 700;
  display: inline-block;
}
section.product-detail div.layouter .form-container .details .downloadable-container .link-list ul li {
  margin-bottom: 15px;
}
section.product-detail div.layouter .form-container .details .downloadable-container .link-list ul li:last-child {
  margin-bottom: 0;
}
section.product-detail div.layouter .form-container .details .downloadable-container .link-list ul li .checkbox {
  display: inline-block;
  margin: 0;
}
section.product-detail div.layouter .form-container .details .downloadable-container .link-list ul li a {
  float: right;
  margin-top: 3px;
}
section.product-detail div.layouter .form-container .details .grouped-product-container .grouped-product-list {
  padding: 15px 0;
  border-top: solid 1px rgba(162, 162, 162, 0.2);
}
section.product-detail div.layouter .form-container .details .grouped-product-container .grouped-product-list ul li {
  margin-bottom: 15px;
  width: 100%;
  display: inline-block;
}
section.product-detail div.layouter .form-container .details .grouped-product-container .grouped-product-list ul li:last-child {
  margin-bottom: 0;
}
section.product-detail div.layouter .form-container .details .grouped-product-container .grouped-product-list ul li:first-child span {
  font-weight: 600;
}
section.product-detail div.layouter .form-container .details .grouped-product-container .grouped-product-list ul li:first-child span:last-child {
  float: right;
  width: 50px;
  text-align: left;
}
section.product-detail div.layouter .form-container .details .grouped-product-container .grouped-product-list ul li .name {
  vertical-align: middle;
  display: inline-block;
}
section.product-detail div.layouter .form-container .details .grouped-product-container .grouped-product-list ul li .name .product-price {
  margin-top: 5px;
  margin-bottom: 0;
  font-size: 14px;
  word-break: break-all;
}
section.product-detail div.layouter .form-container .details .grouped-product-container .grouped-product-list ul li .name .product-price .special-price {
  font-size: 16px;
}
section.product-detail div.layouter .form-container .details .grouped-product-container .grouped-product-list ul li .qty {
  float: right;
}
section.product-detail div.layouter .form-container .details .grouped-product-container .grouped-product-list ul li .qty .control-group {
  max-width: initial;
  width: auto;
  text-align: center;
  margin-bottom: 0;
  border-top: 0;
  padding-top: 0;
}
section.product-detail div.layouter .form-container .details .grouped-product-container .grouped-product-list ul li .qty .control-group label {
  display: none;
}
section.product-detail div.layouter .form-container .details .grouped-product-container .grouped-product-list ul li .qty .control-group .control {
  height: 38px;
  width: 60px;
  text-align: center;
  line-height: 38px;
}
section.product-detail div.layouter .form-container .details .bundle-options-wrapper .bundle-option-list {
  padding: 15px 0;
  border-top: solid 1px rgba(162, 162, 162, 0.2);
}
section.product-detail div.layouter .form-container .details .bundle-options-wrapper .bundle-option-list h3 {
  font-size: 16px;
  margin: 0;
  color: #242424;
}
section.product-detail div.layouter .form-container .details .bundle-options-wrapper .bundle-option-list .bundle-option-item {
  border-bottom: solid 1px rgba(162, 162, 162, 0.2);
  padding: 15px 0;
  width: 100%;
  display: inline-block;
}
section.product-detail div.layouter .form-container .details .bundle-options-wrapper .bundle-option-list .bundle-option-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
section.product-detail div.layouter .form-container .details .bundle-options-wrapper .bundle-option-list .bundle-option-item .control-group {
  margin-bottom: 0;
  color: #5e5e5e;
}
section.product-detail div.layouter .form-container .details .bundle-options-wrapper .bundle-option-list .bundle-option-item .control-group label {
  color: #242424;
}
section.product-detail div.layouter .form-container .details .bundle-options-wrapper .bundle-option-list .bundle-option-item .control-group .control {
  color: #5e5e5e;
}
section.product-detail div.layouter .form-container .details .bundle-options-wrapper .bundle-option-list .bundle-option-item .control-group .price {
  margin-left: 15px;
}
section.product-detail div.layouter .form-container .details .bundle-options-wrapper .bundle-option-list .bundle-option-item .quantity {
  border-top: 0;
  padding-bottom: 0;
}
section.product-detail div.layouter .form-container .details .bundle-options-wrapper .bundle-option-list .bundle-option-item .quantity.has-error button {
  border-color: #fc6868;
  color: #fc6868;
}
section.product-detail div.layouter .form-container .details .bundle-options-wrapper .bundle-option-list .bundle-option-item .control-error {
  float: left;
  width: 100%;
}
section.product-detail div.layouter .form-container .details .bundle-options-wrapper .bundle-option-list .bundle-option-item.has-error button {
  border-color: #fc6868;
  color: #fc6868;
}
section.product-detail div.layouter .form-container .details .bundle-options-wrapper .bundle-summary {
  padding: 15px 0;
  border-top: solid 1px rgba(162, 162, 162, 0.2);
}
section.product-detail div.layouter .form-container .details .bundle-options-wrapper .bundle-summary h3 {
  font-size: 16px;
  margin: 0;
  color: #242424;
}
section.product-detail div.layouter .form-container .details .bundle-options-wrapper .bundle-summary .quantity {
  border-top: 0;
}
section.product-detail div.layouter .form-container .details .bundle-options-wrapper .bundle-summary .bundle-price {
  font-weight: 600;
  font-size: 24px;
  color: #ff6472;
  margin-top: 10px;
}
section.product-detail div.layouter .form-container .details .bundle-options-wrapper .bundle-summary ul.bundle-items li {
  margin-bottom: 20px;
}
section.product-detail div.layouter .form-container .details .bundle-options-wrapper .bundle-summary ul.bundle-items li:last-child {
  margin-bottom: 0;
}
section.product-detail div.layouter .form-container .details .bundle-options-wrapper .bundle-summary ul.bundle-items li .selected-products {
  color: #5e5e5e;
}
section.product-detail div.layouter .form-container .details .full-description * {
  max-width: 100%;
}
section.product-detail div.layouter .form-container .details .full-description ul {
  padding-left: 40px;
  list-style: disc;
}
section.product-detail div.layouter .form-container .details .full-specifications td {
  padding: 10px 0;
  color: #000;
}
section.product-detail div.layouter .form-container .details .full-specifications td:first-child {
  padding-right: 40px;
}
section.product-detail div.layouter .form-container .details .accordian .accordian-header {
  padding-left: 0;
  font-weight: 600;
}
section.product-detail div.layouter .form-container .details .accordian .accordian-content {
  padding: 20px 0px;
}
section.product-detail div.layouter .form-container .details .attributes {
  display: block;
  width: 100%;
  border-bottom: solid 1px rgba(162, 162, 162, 0.2);
}
section.product-detail div.layouter .form-container .details .attributes .attribute.control-group {
  margin-bottom: 20px;
}
section.product-detail div.layouter .form-container .details .attributes .attribute.control-group .swatch-container {
  margin-top: 10px;
  display: inline-block;
}
section.product-detail div.layouter .form-container .details .attributes .attribute.control-group .swatch-container .swatch {
  display: inline-block;
  margin-right: 5px;
  min-width: 40px;
  height: 40px;
}
section.product-detail div.layouter .form-container .details .attributes .attribute.control-group .swatch-container .swatch span {
  min-width: 38px;
  height: 38px;
  float: left;
  border: 1px solid #ddd;
  border-radius: 3px;
  line-height: 36px;
  text-align: center;
  cursor: pointer;
  padding: 0 10px;
}
section.product-detail div.layouter .form-container .details .attributes .attribute.control-group .swatch-container .swatch img {
  width: 38px;
  height: 38px;
  border: 1px solid #ddd;
  border-radius: 3px;
  cursor: pointer;
  background: rgb(242, 242, 242);
}
section.product-detail div.layouter .form-container .details .attributes .attribute.control-group .swatch-container .swatch input:checked + span,
section.product-detail div.layouter .form-container .details .attributes .attribute.control-group .swatch-container .swatch input:checked + img {
  border: 1px solid Chivo, sans-serif;
}
section.product-detail div.layouter .form-container .details .attributes .attribute.control-group .swatch-container .swatch input {
  display: none;
}
section.product-detail div.layouter .form-container .details .attributes .attribute.control-group .swatch-container .no-options {
  color: #831616;
}

.vue-slider .vue-slider-rail {
  background-color: #ccc;
  cursor: pointer;
}
.vue-slider .vue-slider-dot-handle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #2c6f5b;
  box-shadow: 0.5px 0.5px 2px 1px rgba(0, 0, 0, 0.32);
}
.vue-slider .vue-slider-dot-tooltip-inner {
  border-color: #2c6f5b !important;
  background-color: #2c6f5b !important;
}
.vue-slider .vue-slider-dot-tooltip-text {
  display: block;
  font-size: 14px;
  min-width: 20px;
  padding: 2px 5px;
  text-align: center;
  border-radius: 5px;
  white-space: nowrap;
  color: #2c6f5b;
  border-color: #2c6f5b !important;
  background-color: #2c6f5b !important;
}
.vue-slider .vue-slider-dot-tooltip-text::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border: 6px solid transparent\0 ;
  border-top-color: inherit;
  transform: translate(-50%);
}
.vue-slider .vue-slider-process {
  background-color: #2c6f5b !important;
}

/**
 * Product pages responsive css start here.
 */
@media only screen and (max-width: 720px) {
  section.product-detail div.layouter .form-container {
    flex-direction: column;
  }
  section.product-detail div.layouter .form-container div.product-image-group {
    margin-right: 0px;
    max-width: none;
    width: auto;
    min-height: 400px;
    height: auto;
    position: unset;
  }
  section.product-detail div.layouter .form-container div.product-image-group .loader {
    margin-left: 47%;
  }
  section.product-detail div.layouter .form-container div.product-image-group div {
    flex-direction: column-reverse;
  }
  section.product-detail div.layouter .form-container div.product-image-group div .thumb-list {
    margin-top: 5px;
    flex-direction: row;
    overflow-x: scroll;
    margin-right: 0px;
  }
  section.product-detail div.layouter .form-container div.product-image-group div .thumb-list .thumb-frame img {
    height: 100%;
    width: auto;
  }
  section.product-detail div.layouter .form-container div.product-image-group div .thumb-list .gallery-control {
    display: none;
  }
  section.product-detail div.layouter .form-container div.product-image-group div .product-hero-image {
    display: flex;
  }
  section.product-detail div.layouter .form-container div.product-image-group div .product-hero-image img {
    margin-left: auto;
    margin-right: auto;
    width: 480px;
  }
  section.product-detail div.layouter .form-container div.product-image-group div .wrap {
    flex-direction: row;
    width: 100% !important;
  }
  section.product-detail div.layouter .form-container div.product-image-group .add-to-buttons {
    width: 100%;
  }
  section.product-detail div.layouter .form-container .details {
    width: 100%;
    margin-top: 20px;
  }
}
@media only screen and (max-width: 510px) {
  section.product-detail div.layouter .form-container div.product-image-group .product-hero-image img {
    width: 100% !important;
  }
}
/**
 * Rating and reviews of product pages.
 */
.rating-reviews .rating-header {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
}
.rating-reviews .stars .icon {
  width: 16px;
  height: 16px;
}
.rating-reviews .overall {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.rating-reviews .overall .review-info .number {
  font-size: 34px;
}
.rating-reviews .overall .review-info .total-reviews {
  margin-top: 10px;
}
.rating-reviews .reviews {
  margin-top: 40px;
  margin-bottom: 40px;
}
.rating-reviews .reviews .review {
  margin-bottom: 25px;
}
.rating-reviews .reviews .review .title {
  margin-bottom: 5px;
}
.rating-reviews .reviews .review .stars {
  margin-bottom: 15px;
  display: inline-block;
}
.rating-reviews .reviews .review .message {
  margin-bottom: 10px;
}
.rating-reviews .reviews .review .image img {
  height: 50px;
  width: 50px;
  margin: 5px;
}
.rating-reviews .reviews .review .reviewer-details {
  color: #2c6f5b;
}
.rating-reviews .reviews .view-all {
  margin-top: 15px;
  color: #2c6f5b;
  margin-bottom: 15px;
}

.product-card {
  height: 450px;
}
.product-card .product-name {
  font-size: 20px;
}
.product-card .product-price {
  font-size: 20px;
  font-weight: 700;
}

@media only screen and (max-width: 600px) {
  .main-container-wrapper .product-grid-3 {
    grid-template-columns: 100% 100%;
    grid-column-gap: 20px;
  }
}

@media screen and (min-width: 1400px) {
  .product-box-350 .cat-products {
    gap: 30px;
  }
}
.product-box-350 .product-card {
  width: 100%;
  height: auto;
  display: inline-block;
  padding: 25px;
  background: #fff;
  border-radius: 16px;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .product-box-350 .product-card {
    max-width: 280px;
  }
}
@media screen and (min-width: 992px) {
  .product-box-350 .product-card {
    max-width: 300px;
  }
}
@media screen and (min-width: 1200px) {
  .product-box-350 .product-card {
    max-width: 360px;
  }
}
.product-box-350 .product-card:hover {
  padding: 25px;
}
.product-box-350 .product-card .product-image {
  padding-bottom: 0;
}
.product-box-350 .product-card .product-image img {
  margin: auto;
}
.product-box-350 .product-card .product-name {
  display: block !important;
  min-height: auto !important;
}
.product-box-350 .product-card .product-name .product_name {
  display: block;
  margin-top: 25px;
  min-height: 48px;
}
.product-box-350 .product-card .product-name .product_package_type {
  display: block;
  margin: 25px 0 0 0;
}
.product-box-350.product-box-bordered .product-card {
  border: 1px solid #d0d5dd;
}

.main-container-wrapper .product-card .product-image img {
  height: auto !important;
  max-height: 200px !important;
  margin: auto;
}

.auth_container {
  background-color: #f5d7bd;
}
.auth_container .auth_container {
  margin: auto;
}
@media screen and (max-width: 600px) {
  .auth_container .auth_container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
  }
}
.auth_container .auth-content {
  max-width: 510px;
  width: 100%;
  margin: auto;
}
.auth_container .login_box {
  background-color: #fff;
  border-radius: 6px;
  padding: 45px;
  box-shadow: 0 47px 65px rgba(21, 28, 38, 0.1);
}
.auth_container input.control {
  background: #fff;
  border: 1px solid #eee;
  height: 56px;
  box-shadow: none;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 14px;
  line-height: 20px;
  width: 100%;
  border-radius: 4px;
  color: #101828;
}
.auth_container .box-line-throught {
  display: inline-block;
  position: relative;
  padding: 0 60px;
}
.auth_container .box-line-throught:after, .auth_container .box-line-throught:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 1px;
  background-color: #d0d5dd;
}
.auth_container .box-line-throught:after {
  left: 0;
}
.auth_container .box-line-throught:before {
  right: 0;
}
.auth_container .btn {
  padding: 22px 32px;
  font-size: 18px;
  line-height: 22px;
  transition: 0.2s;
  letter-spacing: 0.45px;
  border-radius: 50px;
}
.auth_container .btn.btn-social-login {
  border-radius: 8px;
  background-color: #fff;
  padding: 13px 25px;
  display: block;
}
.auth_container .btn:hover {
  background-color: #fff;
  color: #212529 !important;
  opacity: 1;
}
.auth_container .btn-login {
  border-radius: 4px;
  width: 100%;
}
.auth_container .google-link img {
  position: relative;
  bottom: -3px;
}
.auth_container input-with-icon {
  padding-right: 40px;
}
.auth_container .icon-eye-right {
  position: absolute;
  top: calc(50% + 11px);
  transform: translateY(-50%);
  right: 14px;
  height: 24px;
  width: 25px;
  cursor: pointer;
  background: url(../images/icons/icon-eye.svg) no-repeat 50%;
}
.auth_container .has-error .icon-eye-right {
  top: calc(50% - 1px);
}

#cart-modal-content {
  border-top: 4px solid #f5d7bd;
  position: absolute;
  right: 0;
  top: 40px;
  width: 350px;
  z-index: 100;
}
@media screen and (min-width: 150px) and (max-width: 420px) {
  #cart-modal-content {
    right: calc(-100% + 75px);
  }
}
#cart-modal-content .close {
  padding: 0;
  position: relative;
  right: 15px;
  top: 12px;
}
#cart-modal-content .mini-cart-container {
  font-size: 14px;
  height: 100%;
  max-height: 200px;
  overflow-y: scroll;
  padding: 10px 15px 0 20px;
  width: 100%;
}
#cart-modal-content .small-card-container {
  margin: 0;
  padding: 0;
  width: 100%;
}
#cart-modal-content .small-card-container .product-image-container {
  border: 1px solid #ececec;
  margin: 10px 10px 10px 0;
  width: 25%;
}
#cart-modal-content .small-card-container .product-image-container img {
  width: 100%;
}
#cart-modal-content .small-card-container .product-name {
  color: #000;
  font-size: 18px;
  margin-bottom: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
#cart-modal-content .small-card-container .display-inbl {
  display: inline-block;
}
#cart-modal-content .small-card-container .card-body {
  width: 70%;
}
#cart-modal-content .small-card-container label {
  float: left;
}
#cart-modal-content .small-card-container input {
  border: 1px solid #ececec;
  font-weight: 500;
  height: 36px;
  text-align: center;
  width: 40px;
}
#cart-modal-content .small-card-container .card-total-price {
  float: right;
}
#cart-modal-content .small-card-container .remove-item {
  background: #111;
  border-radius: 50%;
  color: #fff;
  left: -10px;
  padding: 0 4px;
  position: absolute;
  top: -10px;
}
#cart-modal-content .small-card-container .remove-item .rango-close {
  font-size: 12px;
  font-weight: 600;
  padding: 0;
}
#cart-modal-content .small-card-container .small-card-container:hover {
  box-shadow: none;
}
#cart-modal-content .small-card-container .modal-footer {
  padding-right: 15px;
}
#cart-modal-content .modal-footer {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 1rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}
#cart-modal-content .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
#cart-modal-content .col-6 {
  width: 100%;
}

.cart-details {
  padding-top: 40px;
  padding-bottom: 40px;
}
.cart-details h1 {
  margin-bottom: 30px;
}
.cart-details h2 {
  margin-bottom: 25px;
}
.cart-details .cart-details-header .cart-header {
  border-bottom: 2px solid #e5e5e5;
  margin-bottom: 20px;
  max-height: 45px;
  padding-bottom: 20px !important;
}
@media screen and (max-width: 600px) {
  .cart-details .cart-details-header .cart-header {
    display: none;
  }
}
.cart-details .cart-details-header .cart-header > h3 {
  font-size: 16px;
  font-weight: 600;
}
.cart-details .cart-details-header .cart-content {
  padding: 0;
}
.cart-details .cart-details-header .cart-content .product-quantity {
  min-width: 110px;
}
.cart-details .cart-details-header .cart-content .product-quantity .quantity {
  display: inline-block;
  float: right;
  width: unset;
  position: relative;
  top: -8px;
}
.cart-details .cart-details-header .cart-content .product-quantity .quantity label {
  display: none !important;
}
.cart-details .cart-details-header .cart-content .product-price {
  font-size: 18px;
  font-weight: 700;
}
@media screen and (max-width: 600px) {
  .cart-details .cart-details-header .cart-content .product-price.col-1 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .cart-details .cart-details-header .cart-content .product-price .card-current-price {
    float: right;
  }
}
.cart-details .cart-details-header .cart-content .destop-cart-view {
  display: block;
}
.cart-details .cart-details-header .cart-content .mobile-view {
  display: none;
}
.cart-details .cart-details-header .cart-content .cart-item-list > .row {
  margin-bottom: 40px;
}
.cart-details .cart-details-header .cart-content .cart-item-list > .row:last-child {
  border-bottom: 2px solid #e5e5e5;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.cart-details .cart-details-header .cart-content .cart-item-list .product-image-container {
  max-width: 80px;
  padding: 0;
}
.cart-details .cart-details-header .cart-content .cart-item-list .wishlist-icon {
  display: inline;
  margin: 0;
}
.cart-details .cart-details-header .cart-content .product-details-content {
  padding-left: 20px;
}
.cart-details .cart-details-header .cart-content .product-details-content .row {
  font-size: 16px;
}
.cart-details .cart-details-header .cart-content .product-details-content .row .card-current-price {
  font-size: 18px;
}
.cart-details .cart-details-header .cart-content .product-details-content .row > a {
  line-height: 20px;
}
.cart-details .cart-details-header .cart-content .product-details-content .item-price {
  font-size: 18px;
  font-weight: 600;
  margin-top: 12px !important;
}
.cart-details .cart-details-header .cart-content .product-details-content .item-actions {
  margin-top: 12px !important;
}
.cart-details .cart-details-header .cart-content .product-details-content .item-actions .d-inline-block {
  float: left;
}
.cart-details .cart-details-header .cart-content .product-details-content .item-actions .d-inline-block:first-child {
  margin-right: 30px;
}
.cart-details .cart-details-header .cart-content .product-details-content .item-actions .d-inline-block .material-icons {
  float: left;
  margin-left: -2px;
  margin-right: 5px;
}
.cart-details .cart-details-header .cart-content .product-details-content .item-actions .d-inline-block .rango-delete {
  float: left;
  margin-left: -2px;
}
.cart-details .cart-details-header .cart-content .misc {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 425px) {
  .cart-details .cart-details-header .cart-content .misc {
    flex-direction: column;
    row-gap: 15px;
  }
}
@media only screen and (max-width: 420px) {
  .cart-details .cart-details-header .cart-content .misc button {
    margin-top: 10px;
    width: 100%;
  }
}
.cart-details .continue-shopping-btn {
  margin-left: 15px;
  margin-top: 20px;
  max-width: 156px;
}
.cart-details .coupon-container {
  margin-top: 20px;
}
.cart-details .coupon-container .control-error {
  padding: 10px 0;
}
.cart-details .card-img-top {
  width: 100%;
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}
.cart-details .col-6 {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.mini-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: -5px;
}
.mini-cart .cart-icon {
  width: 24px;
  height: 24px;
  margin-right: 5px;
}
.mini-cart .name {
  position: relative;
}
@media screen and (min-width: 992px) and (max-width: 1300px) {
  .mini-cart .name {
    display: none;
  }
}
.mini-cart .count {
  background: #f5d7bd;
  border-radius: 50%;
  color: #000000;
  left: -15px;
  min-width: 20px;
  padding: 4px;
  position: absolute;
  top: -15px;
  display: inline-block;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.mini-cart .icon-arrow {
  width: 20px;
  height: 20px;
  display: inline-block;
  position: relative;
  top: 5px;
}

.order-summary-container {
  top: 50px;
  padding-top: 25px;
  height: max-content;
  position: sticky !important;
}
@media screen and (min-width: 768px) {
  .order-summary-container {
    max-width: 350px !important;
  }
}
@media screen and (min-width: 1200px) {
  .order-summary-container {
    max-width: 400px !important;
  }
}
@media screen and (min-width: 1400px) {
  .order-summary-container {
    max-width: 500px !important;
  }
}
@media screen and (max-width: 600px) {
  .order-summary-container {
    padding-left: 0;
    padding-right: 0;
  }
}
.order-summary-container > div {
  width: 100%;
}
.order-summary-container .order-summary {
  padding: 25px 30px;
  border: 1px solid #e5e5e5;
}
.order-summary-container .order-summary > h3 {
  margin-bottom: 20px;
}
.order-summary-container .order-summary > .row:not(:last-child) {
  margin-bottom: 10px;
}
.order-summary-container .order-summary #grand-total-detail {
  margin-top: 15px;
  padding-top: 15px;
  margin-bottom: 25px;
  border-top: 1px solid #e5e5e5;
}

.icon-text {
  display: flex;
  column-gap: 5px;
  align-items: center;
}
.icon-text .icon {
  width: 20px;
  height: 20px;
}

.quantity label {
  float: left;
  padding: 5px 15px 10px 0;
}
.quantity.control-group .input-btn-group {
  min-width: 130px;
}
.quantity.control-group .input-btn-group button {
  border: 1px solid #dcdcdc;
  padding: 7px;
  background: transparent;
  text-align: center;
  height: 38px;
  font-size: 24px;
  cursor: pointer;
}
.quantity.control-group .input-btn-group button.decrease {
  border-right: 0;
}
.quantity.control-group .input-btn-group button.increase {
  border-left: 0;
}
.quantity.control-group .input-btn-group button:hover, .quantity.control-group .input-btn-group button:active, .quantity.control-group .input-btn-group button:focus {
  outline: none;
}
.quantity.control-group .input-btn-group button .rango-plus,
.quantity.control-group .input-btn-group button .rango-minus {
  font-size: 20px;
  vertical-align: middle;
}
.quantity.control-group .input-btn-group input {
  float: unset;
  border: 1px solid #dcdcdc;
  border-right: 0;
  border-left: 0;
  max-width: 50px;
  height: 38px;
  margin-left: -5px;
  margin-right: -5px;
  vertical-align: top;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: -5px;
  margin-right: -5px;
}
.quantity.has-error button {
  border-color: #fc6868;
  color: #fc6868;
}
.quantity .control-error {
  display: block;
}

.no-padding {
  padding: 0 !important;
}

/**
 * Checkout css starts here.
 */
.checkout-process {
  display: flex;
  flex-direction: row;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 16px;
  color: #000000;
  align-items: unset;
}
.checkout-process h1 {
  font-weight: 600;
  margin-bottom: 30px;
  border: 0;
}
.checkout-process .order-summary-container {
  top: 110px;
  display: block;
}
@media screen and (max-width: 992px) {
  .checkout-process .order-summary-container {
    max-width: 100% !important;
    padding: 25px 0;
  }
}
.checkout-process .col-main {
  width: 70%;
  margin-right: 5%;
}
.checkout-process .col-main ul.checkout-steps {
  width: 100%;
  display: inline-flex;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 15px;
  border-bottom: 1px solid #444444;
}
.checkout-process .col-main ul.checkout-steps li {
  height: 48px;
  display: flex;
}
.checkout-process .col-main ul.checkout-steps li .decorator {
  height: 48px;
  width: 48px;
  border: 1px solid black;
  border-radius: 50%;
  display: inline-flex;
  border: 1px solid #444;
  background-repeat: no-repeat;
  background-position: center;
}
.checkout-process .col-main ul.checkout-steps li .decorator.address-info {
  background-image: url("../images/address.svg");
}
.checkout-process .col-main ul.checkout-steps li .decorator.shipping {
  background-image: url("../images/shipping.svg");
}
.checkout-process .col-main ul.checkout-steps li .decorator.payment {
  background-image: url("../images/payment.svg");
}
.checkout-process .col-main ul.checkout-steps li .decorator.review {
  background-image: url("../images/finish.svg");
}
.checkout-process .col-main ul.checkout-steps li.completed {
  cursor: pointer;
}
.checkout-process .col-main ul.checkout-steps li.completed .decorator {
  background-image: url("../images/complete.svg");
}
.checkout-process .col-main ul.checkout-steps li span {
  margin-left: 7px;
  margin-top: auto;
  margin-bottom: auto;
}
.checkout-process .col-main ul.checkout-steps li.active {
  color: #000000;
}
.checkout-process .col-main ul.checkout-steps li.active .decorator {
  border: 1px solid #000000;
}
.checkout-process .col-main .step-content {
  padding-top: 20px;
}
.checkout-process .col-main .step-content .form-header {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 30px;
}
.checkout-process .col-main .step-content .form-header .checkout-step-heading {
  font-size: 24px;
  font-weight: bold;
  float: left;
}
.checkout-process .col-main .step-content .form-header .btn {
  float: right;
  font-size: 14px;
}
.checkout-process .col-main .step-content .form-container {
  border-bottom: 1px solid #444444;
  padding-top: 20px;
  padding-bottom: 20px;
}
.checkout-process .col-main .step-content .shipping-methods {
  font-size: 16px;
}
.checkout-process .col-main .step-content .shipping-methods .ship-method-carrier {
  margin-bottom: 15px;
  font-weight: bold;
}
.checkout-process .col-main .step-content .payment-methods .radio-container {
  padding-left: 28px;
}
.checkout-process .col-main .step-content .payment-methods .control-info {
  margin-left: 28px;
}
.checkout-process .col-main .step-content .payment-methods .instructions {
  margin-top: 10px;
  margin-left: 30px;
}
.checkout-process .col-main .step-content .payment-methods .instructions label {
  font-weight: 600;
  font-size: 14px;
}
.checkout-process .col-main .step-content .payment-methods .instructions p {
  margin: 0;
  font-size: 14px;
  color: #777777;
  font-style: italic;
}
.checkout-process .col-main .step-content .address-summary {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}
.checkout-process .col-main .step-content .address-summary div.billing-address {
  margin-right: 25%;
}
.checkout-process .col-main .step-content .address-summary div.billing-address .horizontal-rule,
.checkout-process .col-main .step-content .address-summary div.shipping-address .horizontal-rule {
  width: 40px;
  background: #242424;
}
.checkout-process .col-main .step-content .address-summary .label {
  width: 10%;
}
.checkout-process .col-main .step-content .address-summary .address-card-list {
  width: 85%;
}
.checkout-process .col-main .step-content .cart-item-list .item .row .title {
  width: 100px;
  display: inline-block;
  color: #000000;
  font-weight: 500;
  margin-bottom: 10px;
}
.checkout-process .col-main .step-content .cart-item-list .item .row .value {
  font-size: 18px;
  font-weight: 600;
}
.checkout-process .col-main .step-content .order-description {
  display: inline-block;
  width: 100%;
}
.checkout-process .col-main .step-content .order-description .shipping {
  margin-bottom: 25px;
}
.checkout-process .col-main .step-content .order-description .decorator {
  height: 48px;
  width: 48px;
  border-radius: 50%;
  border: 1px solid #444444;
  vertical-align: middle;
  display: inline-block;
  text-align: center;
}
.checkout-process .col-main .step-content .order-description .decorator .icon {
  margin-top: 7px;
}
.checkout-process .col-main .step-content .order-description .text {
  font-weight: 600;
  vertical-align: middle;
  display: inline-block;
}
.checkout-process .col-main .step-content .order-description .text .info {
  font-weight: 500;
  margin-top: 2px;
}
.checkout-process .col-right {
  width: 25%;
  padding-left: 40px;
}
.checkout-process .accordian .accordian-header {
  border-top: 0 !important;
}
.checkout-process .accordian .display-inbl {
  display: inline-block;
}
.checkout-process .accordian .icon-arrow {
  float: right;
  font-size: 24px;
  width: 24px;
  height: 24px;
  top: 8px;
  position: relative;
  transform: rotate(180deg);
}
.checkout-process .accordian.active .icon-arrow {
  transform: rotate(0deg);
}
.checkout-process .cart-item-list {
  border-bottom: 1px solid #e5e5e5;
  padding: 40px 0;
}
.checkout-process .cart-item-list h4 {
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 20px !important;
  padding-bottom: 20px;
}
.checkout-process .max-sm-img-dimension img {
  width: 100%;
}
.checkout-process .col-10 {
  -ms-flex: 0 0 83.333333%;
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}
.checkout-process .order-summary-container .theme-btn {
  display: none;
}
.checkout-process .order-description .col-lg-4 {
  display: block;
}
.checkout-process .mb20 {
  margin-bottom: 20px;
}
@media screen and (max-width: 992px) {
  .checkout-process .review-checkout-conainer .order-summary {
    display: none;
  }
}
.checkout-process .coupon-container {
  margin: 30px auto;
}

/**
 * Checkout responsive start here.
 */
@media only screen and (max-width: 770px) {
  .checkout-process .col-main {
    width: 100%;
    padding-right: 0px;
  }
  .checkout-process .col-main ul.checkout-steps {
    border-bottom: none;
    padding-bottom: 0px;
  }
  .checkout-process .col-main ul.checkout-steps span {
    display: none;
  }
  .checkout-process .col-main ul.checkout-steps .line {
    flex-grow: 1;
    border-bottom: 1px solid #444444;
    margin-left: 5px;
    margin-right: 5px;
  }
  .checkout-process .step-content {
    padding-top: 0px;
  }
  .checkout-process .step-content .control-group .control {
    width: 100%;
  }
  .checkout-process .col-right {
    display: none;
  }
}
.custom-form label {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 5px;
  display: inline-block;
}
.custom-form .form-field {
  margin-bottom: 30px;
  padding: 0;
}
.custom-form .styled-select {
  cursor: pointer;
}
.custom-form input[type=password], .custom-form input[type=search], .custom-form input[type=text], .custom-form select {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 1px;
  font-size: 16px;
  height: 36px;
  padding: 5px 16px;
  resize: none;
  width: 100%;
}
.custom-form input[type=checkbox] {
  position: relative;
  top: 3px;
  opacity: 1;
}
.custom-form input[type=checkbox] {
  height: 15px;
  margin-right: 10px;
  width: 24px;
}
.custom-form input[type=checkbox], .custom-form input[type=radio] {
  box-sizing: border-box;
  padding: 0;
  opacity: 1;
}

.has-error input, .has-error select, .has-error textarea {
  border-color: #f05153 !important;
}

.control-error {
  color: #f05153;
}

.payment-form label {
  display: flex;
  column-gap: 15px;
  flex-direction: row;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid #ddd;
  padding: 10px 10px;
  margin: 0;
  flex: 100%;
  cursor: pointer;
}
.payment-form label .pl40 {
  flex-basis: 95%;
}

.theme-btn {
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2), 0 0 8px 0 rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  border: none;
  color: #fff;
  cursor: pointer;
  transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  font: inherit;
  display: inline-block;
  text-align: center;
  padding: 10px 20px;
  background: #000;
  color: #fff;
}
.theme-btn:hover {
  background-color: #F2F4F7;
  border-color: transparent;
  color: #101828 !important;
}
.theme-btn:visited {
  color: #fff;
}

.empty-cart-message {
  margin: 40px 0;
}

.account-content {
  margin-left: 15px;
  margin-right: 15px;
}
.account-content .sidebar {
  display: none;
}
@media screen and (min-width: 768px) {
  .account-content .sidebar {
    display: block;
  }
}
.account-content .account-heading {
  font-size: 24px;
  font-weight: 600;
}
.account-content .menu-block {
  margin: 30px 0;
}
.account-content .menu-block .menu-block-title {
  margin: 30px 0;
  font-size: 24px;
  font-weight: 600;
}
.account-content .menubar {
  display: flex;
  border-bottom: 1px solid #ececec;
}
.account-content .menubar li a {
  padding: 15px;
  color: #28557b;
  display: block;
  border: 1px solid #ececec;
  border-bottom: 1px solid transparent;
  margin-bottom: -2px;
}
.account-content .menubar li a:hover {
  background-color: #ececec;
  border-bottom: 1px solid #fff;
}
.account-content .menubar li.active a {
  background-color: #ececec;
  border-bottom: 1px solid #fff;
}
.account-content .menubar li .icon {
  display: none;
}
.account-content .account-head {
  margin-bottom: 30px;
}
.account-content .account-action {
  float: right;
}
.account-content .account-action a {
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2), 0 0 8px 0 rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  border: none;
  color: #fff;
  cursor: pointer;
  transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  font: inherit;
  display: inline-block;
  text-align: center;
  padding: 10px 20px;
  background: #000;
}
.account-content .account-action a:hover {
  background-color: #F2F4F7;
  border-color: transparent;
  color: #101828 !important;
}
.account-content .tabs-content {
  margin: 30px auto;
}
.account-content .tabs-content .sale-section {
  clear: both;
}
.account-content .tabs-content .sale-section .secton-title {
  margin: 20px auto;
  font-weight: 600;
  font-size: 24px;
}
.account-content .tabs-content .totals .sale-summary {
  float: right;
  padding-right: 25px;
}
.account-content .tabs-content .totals .sale-summary .border {
  border-bottom: 1px solid #dee2e6 !important;
}
.account-content .tabs-content .totals .sale-summary td {
  padding-right: 10px;
  padding-left: 10px;
}
.account-content .tabs-content .totals .sale-summary td:first-child {
  width: 200px;
}
.account-content .tabs-content .totals .sale-summary td .dash-icon {
  margin-right: 30px;
  float: right;
}
.account-content .sale-section {
  border-bottom: 1px solid #ccc;
  padding: 20px 0 10px;
}
.account-content .sale-section:after, .account-content .sale-section:before {
  clear: both;
  content: " ";
  display: block;
}
.account-content .sale-section .box {
  display: inline-block;
  vertical-align: top;
  width: calc(25% - 5px);
}
.account-content .sale-section .box .box-title {
  color: #000000;
  font-size: 18px;
  font-weight: 600;
  padding: 10px 0;
}

.account-table-content table {
  width: 100%;
  margin: 40px auto;
}
.account-table-content table td {
  padding: 10px 0;
}
.account-table-content .address-card {
  margin-top: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #ececec;
  padding-bottom: 20px;
}

.layout-rounded .container {
  border-radius: 58px;
  background-color: #f2f4f7;
  padding: 80px;
}
@media screen and (max-width: 600px) {
  .layout-rounded .container {
    padding: 40px;
  }
}
@media screen and (max-width: 420px) {
  .layout-rounded .container {
    padding: 20px 0;
  }
}
.layout-rounded .col-content .card-group {
  padding: 53px 48px;
  display: inline-block;
  width: 100%;
  border-radius: 16px;
  position: relative;
  background: #fff;
  box-shadow: inset 0 40px 80px #fcfcfc;
}
@media screen and (max-width: 600px) {
  .layout-rounded .col-content .card-group {
    padding: 33px 28px;
  }
}
@media screen and (max-width: 420px) {
  .layout-rounded .col-content .card-group {
    padding: 20px 28px;
  }
}

.layout-card .card-group {
  padding: 40px;
}
.layout-card .card-group p, .layout-card .card-group div {
  color: #fff;
  font-weight: 400;
}
.layout-card .card-group .title {
  font-size: 24px;
  line-height: 26px;
  font-weight: 700;
  letter-spacing: 0;
}
.layout-card .card-group .text {
  font-weight: 400;
}
.layout-card.card-dark-green .card-group {
  background-color: #2c6f5b;
  border-color: #2c6f5b;
}
.layout-card.card-rose-green .card-group {
  background-color: #f5d7bd;
  border-color: #f5d7bd;
}
.layout-card.card-rose-green .card-group p, .layout-card.card-rose-green .card-group div {
  color: #000;
}
.layout-card.card-light-green .card-group {
  background-color: #c9efd4;
  border-color: #c9efd4;
}
.layout-card.card-light-green .card-group p, .layout-card.card-light-green .card-group div {
  color: #000;
}
.layout-card.card-white .card-group {
  background-color: #ffffff;
  border-color: #ffffff;
}
.layout-card.card-white .card-group p, .layout-card.card-white .card-group div {
  color: #000;
}

.layout-rounded-58 {
  border-radius: 58px;
}

@media screen and (min-width: 600px) {
  .layout-text-large p {
    font-size: 24px;
    line-height: 32px;
    font-weight: 400;
  }
}

.align-stretch .col-content {
  align-items: stretch;
  display: flex;
}
.align-stretch .row {
  align-items: stretch;
}

.layout-background {
  background-color: #f2f4f7;
}

.layout-background-dark-green {
  background-color: #2c6f5b !important;
}
.layout-background-dark-green .section-title [class*=heading-] {
  color: #fff;
}
.layout-background-dark-green p {
  color: #ffffff;
}
.layout-background-dark-green .text-wrapper h1 {
  color: #ffffff !important;
}

.layout-background-rose-green {
  background-color: #f5d7bd;
}

.layout-background-light-green {
  background-color: #c9efd4;
}

.layout-background-white {
  background-color: #ffffff !important;
}

.layout-col-2 .col-content {
  flex: 0 0 auto;
  width: 50%;
  max-width: 50%;
}
@media screen and (max-width: 992px) {
  .layout-col-2 .col-content {
    width: 100%;
    max-width: 100%;
  }
}

.layout-top-zero {
  padding-top: 0;
}

.layout-bottom-zero {
  padding-bottom: 0;
}

.img-object-fit {
  height: 100%;
  width: 100%;
  object-fit: cover;
  overflow: hidden;
}

.img-rounded-16 {
  border-radius: 16px;
}

@media screen and (min-width: 992px) {
  .layout-width-60 {
    max-width: 60%;
  }
}

@media screen and (min-width: 992px) {
  .layout-width-70 {
    max-width: 70%;
  }
}

@media screen and (min-width: 992px) {
  .layout-width-80 {
    max-width: 80%;
  }
}

@media screen and (min-width: 992px) {
  .layout-row-swap .row {
    flex-direction: row-reverse;
  }
}
@media screen and (min-width: 992px) {
  .layout-row-swap .image_box {
    padding-left: 0;
    padding-right: 40px;
  }
}

.layout-img-center {
  text-align: center;
  margin: auto;
  display: block;
}

.layout-img-width-auto {
  height: 100%;
  width: auto;
}

.jx-layout-image .image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  right: 0;
  top: 0;
  max-width: 450px;
  display: block;
  margin: auto;
  z-index: 0;
}
@media screen and (max-width: 420px) {
  .jx-layout-image .image-wrapper {
    margin: 0 15px;
  }
}

.layout-flex {
  display: flex;
}

.layout-align-items-center {
  align-items: center;
}

@media screen and (max-width: 600px) {
  .layout-flex-wrap {
    flex-wrap: wrap;
  }
}

.layout-bordered {
  border: 10px solid #f5d7bd;
}

.jx-banner-button-center .button {
  margin: 50px auto;
}

@media screen and (max-width: 600px) {
  .rounded-right-58 {
    border-radius: 10px;
  }
}

@media screen and (max-width: 600px) {
  .rounded-58 {
    border-radius: 10px;
  }
}

@media screen and (max-width: 600px) {
  .featured-products .product-card .product-information .product-name {
    min-height: unset;
  }
}
@media screen and (max-width: 600px) {
  .featured-products .product-card .product-information .product-feature {
    min-height: unset;
  }
}

@media screen and (max-width: 600px) {
  .product-detail {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.cc_wait {
  position: relative;
  width: 16px;
  height: 16px;
  display: none;
  padding: 2px 0;
}
.cc_wait div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 16px;
  height: 16px;
  margin: 0px;
  border: 2px solid #fff;
  border-radius: 50%;
  animation: cc-wait-circle 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #fff transparent transparent transparent;
}
.cc_wait div:nth-child(1) {
  animation-delay: -0.45s;
}
.cc_wait div:nth-child(2) {
  animation-delay: -0.3s;
}
.cc_wait div:nth-child(3) {
  animation-delay: -0.15s;
}

@keyframes cc-wait-circle {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.cc_wait_active .cc_wait {
  display: inline-block;
}
.cc_wait_active:hover .cc_wait div {
  border-color: #000 transparent transparent transparent;
}

.alert-success {
  color: #0f5132;
  background-color: #d1e7dd;
  border-color: #badbcc;
}

.alert {
  position: relative;
  padding: 1rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.layout-image-center .image_box {
  text-align: center;
}

.layout-image-bd-dark-green img {
  border: 10px solid #f5d7bd;
}

@media screen and (max-width: 992px) {
  .image_box.no-padding-right {
    padding-right: 15px !important;
  }
}
@media screen and (max-width: 992px) {
  .image_box .rounded-right-58 {
    border-radius: 58px;
  }
}

.d-flex {
  display: flex;
  column-gap: 5px;
  align-items: center;
  justify-content: center;
}

a.theme-btn, a.theme-btn:visited, a.theme-btn:focus {
  color: #fff;
}

.checkout-process .card {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
}
@media screen and (min-width: 992px) {
  .checkout-process .card {
    margin-left: -15px;
    margin-right: -15px;
  }
}
.checkout-process .card-body {
  align-items: baseline;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1.25rem;
}
.checkout-process .address-container .address-holder {
  margin-top: 15px;
}
.checkout-process .material-icons, .checkout-process .material-icons-outlined {
  word-wrap: normal;
  direction: ltr;
  display: inline-block;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1;
  max-width: 30px;
  overflow: hidden;
  text-transform: none;
  white-space: nowrap;
}
.checkout-process .material-icons {
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  font-family: Material Icons;
}
.checkout-process .add-address-button .material-icons {
  background: url("../images/icons/plus.icon.svg") no-repeat;
  width: 22px;
  height: 22px;
  padding-bottom: 7px;
  margin-bottom: -5px;
}
.checkout-process .address-container .address-holder .card h5 {
  font-size: 14px;
  font-weight: 600;
}
.checkout-process .mb10 {
  margin-bottom: 10px !important;
}
.checkout-process .mt10 {
  margin-top: 10px;
}
.checkout-process .shipping-methods > .row {
  justify-content: unset;
  margin-bottom: 20px;
}
.checkout-process .pl30 {
  padding-left: 30px !important;
}

/*# sourceMappingURL=shop.css.map */
