

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  object-fit: contain;
}

.container {
  max-width: calc(100% - 40px);
  margin: 0 auto;
  width: 100%;
  height: 100%;
}

@media (min-width: 576px) {
  .container-DISABLEME {
    width: 540px;
  }

  .header .container {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .container-DISABLEME {
    width: 720px;
  }

  .header .container {
    width: 100%;
  }
}

@media (min-width: 992px) {
  .container-DISABLEME {
    width: 960px;
  }

  .header .container {
    width: 100%;
  }
}

@media (min-width: 1200px) {
  .container-DISABLEME {
    width: 1140px;
  }

  .header .container {
    width: 1140px;
  }
}

@media (min-width: 1490px) {
  .container {
    width: 1460px;
  }

  .header .container {
    width: 1460px;
  }
}

.gray-bg {
  background-color: #e5e5e5;
}

.special-items {
  padding: 100px 0;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 992px) {
  .special-items {
    flex-wrap: wrap;
  }
}

@media (max-width: 576px) {
  .special-items {
    padding: 80px 0;
  }
}

.special-items__left {
  width: calc(50% - 25px);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.special-items__right {
  width: calc(50% - 25px);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 1200px) {
  .special-items__left,
  .special-items__right {
    width: calc(50% - 12px);
  }
}

@media (max-width: 992px) {
  .special-items__left {
    width: 100%;
  }

  .special-items__right {
    display: none;
  }
}

.special-items__image {
  display: none;
}

.special-items__image img {
  width: 100%;
}

@media (max-width: 992px) {
  .special-items__image {
    display: block;
    margin-top: 40px;
    width: 100%;
  }
}

@media (max-width: 576px) {
  .special-items__image {
    margin-top: 24px;
  }
}

.product-item {
  display: block;
  width: 100%;
}

.product-item__image {
  position: relative;
  width: 100%;
  padding-top: 100%;
  background: rgb(207, 207, 207);
  background: linear-gradient(
    90deg,
    rgba(207, 207, 207, 1) 0%,
    rgba(230, 230, 230, 1) 100%
  );
  margin-bottom: 12px;
  overflow: hidden;
}

.product-item__image:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  /*background-color: #686868;*/
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
}

.product-item__image img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  /*
    max-height: 80%;
    max-width: 80%;
    */
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.product-item__image:hover img {
  transform: scale(1.1);
}

.product-item__image:hover:after {
  opacity: 0.33;
}

.product-item__name {
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 18px;
}

.product-item__price {
  color: #676767;
}

.special-items__left > * {
  width: calc(50% - 25px);
}

@media (max-width: 1200px) {
  .special-items__left > * {
    width: calc(50% - 12px);
  }
}

@media (max-width: 576px) {
  .special-items__left > * {
    width: 100%;
  }
}

.special-items__left .product-item {
  margin-bottom: 60px;
}

@media (max-width: 1200px) {
  .special-items__left .product-item {
    margin-bottom: 20px;
  }
}

.special-item {
  padding: 55px 40px 80px;
  background-color: #b5ead8;
  text-align: center;
}

@media (max-width: 1200px) {
  .special-item {
    padding: 15px 20px 26px;
    font-size: 14px;
  }
}

.special-item__title {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 16px;
}

@media (max-width: 1200px) {
  .special-item__title {
    font-size: 16px;
    margin-bottom: 12px;
  }
}

.special-item__icon {
  max-width: 80px;
  margin: 0 auto;
  margin-bottom: 20px;
}

@media (max-width: 576px) {
  .special-item__icon {
    max-width: 40px;
  }
}

.special-item.green {
  background-color: #b5ead8;
}

.special-item.blue {
  background-color: #c7ceea;
}

.link {
  color: #000;
  cursor: pointer;
}

.link:hover {
  text-decoration: underline;
}

.btn {
  background-color: transparent;
  display: inline-block;
  border: 1px solid #27282a;
  padding: 12px 40px;
  transition: 0.3s;
  font-size: 14px;
  cursor: pointer;
  font-weight: 300;
  font-family: "Titillium Web", sans-serif;
}

.btn.secondary {
  color: #fff;
  background-color: #178cc5;
  border-color: #178cc5;
}

.btn.tert {
  color: #fff;
  background-color: #9a2e88;
  border-color: #9a2e88;
}

.btn.tert:hover {
  color: #fff;
  background-color: #b63aa1;
  border-color: #b63aa1;
}

.btn.large {
  border: 1px solid #27282a;
  padding: 10px 28px;
  font-size: 18px;
}

.btn.gray {
  border: 2px solid white;
  padding: 12px 48px;
  font-size: 20px;
  background-color: #333333;
  text-align: center;
  color: black;
}
.btn.black {
  padding: 12px 48px;
  font-size: 20px;
  background-color: black;
  border: 2px solid black;
  color: black;
  text-align: center;
}
.btn.black.cat {
  padding: 12px 14px;
  font-size: 16px;
}

.btn.fullsize {
  width: 100%;
}

@media (max-width: 992px) {
  .btn.large {
    font-size: 16px;
  }
}

.btn:hover {
  background-color: #27282a;
  color: #fff;
}

.btn.no_stock:hover {
  /*background-color: #fff;*/
  /*color: #27282a;*/
  background-color: black;
  border: 2px solid black;
  color: black;
}
.btn.secondary:hover {
  background-color: #9a2e88;
  border-color: #9a2e88;
}

.large-product-items {
  padding: 100px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media (max-width: 576px) {
  .large-product-items {
    padding: 80px 0;
  }
}

.large-product-item__wrapper {
  width: calc(50% - 25px);
}

@media (max-width: 1200px) {
  .large-product-item__wrapper {
    width: calc(50% - 12px);
  }
}

@media (max-width: 992px) {
  .large-product-item__wrapper {
    width: 100%;
  }
}

.large-product-item {
  margin-bottom: 50px;
  background-color: #f5bab4;
  display: flex;
  width: 100%;
  padding-top: 57.14%;
  position: relative;
}

@media (max-width: 1200px) {
  .large-product-item {
    margin-bottom: 24px;
    padding-top: 75%;
  }
}

@media (max-width: 992px) {
  .large-product-item {
    padding-top: 57.14%;
  }
}

@media (max-width: 768px) {
  .large-product-item {
    padding-top: 75%;
  }
}

@media (max-width: 576px) {
  .large-product-item {
    padding-top: 0;
    height: auto;
    display: block;
    padding: 20px;
  }
}

.large-product-item:hover .large-product-item__left img {
  transform: scale(1.1);
}

.large-product-item__left {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  height: 100%;
  width: calc(50% - 20px);
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

@media (max-width: 992px) {
  .large-product-item__left {
    width: calc(50% - 20px);
    padding-left: 20px;
  }
}

@media (max-width: 576px) {
  .large-product-item__left {
    width: 100%;
    position: relative;
    padding-left: 0;
    justify-content: flex-start;
  }
}

.large-product-item__left img {
  transition: 0.3s;
  max-width: 80%;
}

@media (max-width: 992px) {
  .large-product-item__left img {
    max-width: 100%;
  }
}

.large-product-item__right {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: calc(50% - 20px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-right: 80px;
}

@media (max-width: 1200px) {
  .large-product-item__right {
    width: 50%;
    padding-right: 20px;
  }
}

@media (max-width: 576px) {
  .large-product-item__right {
    width: 100%;
    position: relative;
    padding-left: 0;
    margin-top: 40px;
  }
}

.large-product-item.orange {
  background-color: #f9dbc3;
}

.large-product-item.green {
  background-color: #e2f0cc;
}

.large-product-item__text {
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .large-product-item__text {
    margin-bottom: 20px;
  }
}

.large-product-item__title {
  margin-bottom: 40px;
  font-size: 28px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .large-product-item__title {
    margin-bottom: 20px;
    font-size: 24px;
  }
}

.large-product-item.product-item-container {
  background-color: transparent;
  padding-top: 0;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media (max-width: 576px) {
  .large-product-item.product-item-container {
    padding: 0;
  }
}

.product-item-container .product-item {
  width: calc(50% - 25px);
}

@media (max-width: 1200px) {
  .product-item-container .product-item {
    width: calc(50% - 12px);
  }
}

@media (max-width: 576px) {
  .product-item-container .product-item {
    width: 100%;
    margin-bottom: 20px;
  }
}

.cart {
  position: fixed;
  top: 0;
  right: -12px;
  width: 460px;
  background-color: #fff;
  z-index: 1002;
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0px 11px 0px rgba(0, 0, 0, 0.2);
  transform: translateX(100%);
  transition: 0.3s;
  overflow: auto;
  color: black;
  height: calc(var(--vh, 1vh) * 100);
}

@media (max-width: 576px) {
  .cart {
    width: 100%;
  }
}

.cart-drawer {
  overflow-y: auto;
  height: 100%;
}

.cart-drawer .store-items{
  background: #ededed;
  flex: 1 1 auto;
  display: block;
  padding: 30px 20px;
}

.cart-drawer .store-items h4{
  font-size: 18px;
  font-weight: 600;
  padding-bottom: 15px;
}

.cart-drawer .store-items .items{
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
}

.cart-drawer .store-item{
  width: 100%;
}

.cart-drawer .store-item .store-item__title{
  max-height: 38px;
  overflow: hidden;
}

.cart-drawer .store-item .store-item__price{
  color: black;
  font-size: 16px;
}

.cart-drawer .store-item .store-item__stock{
  font-size: 10px !important;
  margin-bottom: 0 !important;
  margin-top: 5px !important;
}

.cart-active .cart {
  transform: translateX(0);
  right: 0;
}

.cart__header {
  padding: 10px 30px;
  width: 100%;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  font-weight: 400;
  border-bottom: 1px solid #e6e6e6;
}

@media (max-width: 576px) {
  .cart__header {
    padding: 8px 20px;
  }
}

.close-cart {
  cursor: pointer;
  height: 32px;
  width: 32px;
  border-radius: 100%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' class='feather feather-x'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px;
  margin-right: -6px
}

.cart__content {
  padding: 20px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 576px) {
  .cart__content {
    padding: 20px;
  }
}

.cart__footer {
  margin-top: 0;
  padding: 0 30px 20px;
  flex-shrink: 0;
}

@media (max-width: 576px) {
  .cart__footer {
    padding: 0 20px 20px;
  }
}

.cart__empty {
  margin-top: 48px;
  color: #686868;
  font-size: 14px;
  text-align: center;
}

.cart__empty-icon {
  height: 80px;
  width: 80px;
  background-color: #fafafa;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.cart__empty-icon img {
  max-width: 40px;
}

.cart__empty-text {
  margin-top: 36px;
}

.cart__empty-btn {
  margin-top: 100px;
}

.cart__footer-top {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 600;
}

.cart__footer-btns {
  margin-top: 5px;
}

.cart__footer-btns .btn {
  margin-top: 12px;
  width: 100%;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 20px 10px;
  text-align: center;
}

.cart__items {
  width: 100%;
}

.cart__item {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  border-bottom: 1px solid #676767;
  padding: 24px 0;
}

.cart-drawer .cart__item {
  border-bottom: 1px solid #e6e6e6 !important;
}

.cart__item:last-of-type {
  border-bottom: none;
}

.cart__item:first-of-type {
  padding-top: 0;
}

.cart__item-left {
  height: 92px;
  width: 92px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.cart__item-left img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  max-height: 100%;
  max-width: 100%;
}

.cart__item-right {
  padding-left: 12px;
  flex: 1 1 auto;
  position: relative;
}

.cart__item-remove {
  position: absolute;
  top: 4px;
  right: 0;
  height: 16px;
  width: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24' fill='none' stroke='%23949494' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' class='feather feather-x'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: top;
  background-size: 16px;
  cursor: pointer;
}

.cart__item-name {
  margin-bottom: 4px;
  font-weight: 600;
  font-size: 20px;
  color: black;
}

.cart-drawer .cart__item-name {
  color: black;
  padding-right: 16px;
}

.cart-drawer .cart__item-name:hover {
  color: #48A23F;
}

.cart__item-price {
  color: #949494;
  font-weight: 400;
  font-size: 14px;
}

.cart__item-count {
  display: flex;
  align-items: center;
  margin-top: 16px;
  height: 28px;
  width: 90px;
  justify-content: space-between;
  border: 1px solid #e6e6e6;
}

.cart__item-up,
.cart__item-down {
  width: 24px;
  text-align: center;
  cursor: pointer;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24' fill='none' stroke='%23949494' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' class='feather feather-plus'%3E%3Cline x1='12' y1='5' x2='12' y2='19'/%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px;
  height: 100%;
  flex-shrink: 0;
}

.cart__item-down {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24' fill='none' stroke='%23949494' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' class='feather feather-minus'%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px;
  border-right: 1px solid #e6e6e6;
}

.cart__item-up {
  border-left: 1px solid #e6e6e6;
}

.cart__item-num {
  font-size: 14px;
  text-align: center;
  font-weight: 400;
  border: none;
  outline: none;
  height: 100%;
  width: 36px;
  text-align: center;
  background-color: black;
  color: #949494;
}

.cart__title {
  position: relative;
  font-size: 18px;
  font-weight: 600;
}

.cart__num {
  position: absolute;
  top: -8px;
  right: -16px;
}

.login,
.register,
.info {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1002;
  /*opacity: 0;*/
  display: none;
  pointer-events: none;
  transition: 0.3s;
  padding: 48px;
  overflow: auto;
}

@media (max-width: 576px) {
  .login,
  .register,
  .info {
    padding: 12px;
  }
}

.login-active .login,
.register-active .register,
.info-active .info {
  /*opacity: 1;*/
  display: block;
  pointer-events: auto;
}

.login-modal,
.register-modal,
.info-modal {
  background-color: #48A23F;
  padding: 60px 68px;
  height: auto;
  display: block;
  top: 0;
  left: 0;
  box-shadow: 0px 0px 11px 0px rgba(0, 0, 0, 0.2);
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  font-size: 14px;
}

.info-modal {
  padding: 40px;
}

.login-modal a,
.register-modal a {
  color: #178cc5;
}

@media (max-width: 576px) {
  .login-modal,
  .register-modal {
    padding: 40px;
  }
  .info-modal {
    padding: 40px 20px;
  }
}

.register-modal {
  max-width: 860px;
}

div.close-login,
.close-register,
.close-info {
  position: absolute;
  top: 0;
  right: 0;
  height: 60px;
  width: 60px;
  cursor: pointer;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24' fill='none' stroke='%23eee' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' class='feather feather-x'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px;
}

.login-modal__title,
.register-modal__title,
.info-modal__title {
  text-align: center;
  margin-bottom: 60px;
  font-size: 24px;
  color: #ccc;
}

@media (max-width: 576px) {
  .login-modal__title,
  .register-modal__title,
  .info-modal__title {
    margin-bottom: 20px;
    font-size: 20px;
  }
}

.register-modal__title {
  text-align: left;
  margin-bottom: 32px;
}

@media (max-width: 576px) {
  .login-modal__title,
  .register-modal__title {
    margin-bottom: 32px;
  }
}

.login-modal__links {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.login-modal__footer {
  margin-top: 48px;
  text-align: center;
}

.login-modal__footer a {
  color: #178cc5;
}

.register-modal__footer {
  margin-top: 0;
  text-align: right;
}

.login-modal__footer .btn {
  width: 100%;
  margin-bottom: 12px;
  font-family: "Titillium Web", sans-serif;
}

.login-modal__checkbox,
.register-modal__checkbox {
  display: flex;
  /*justify-content: flex-end;*/
}

.register-modal__checkbox {
  margin-bottom: 16px;
}

.login-modal__checkbox .checkbox,
.register-modal__checkbox .checkbox {
  height: 26px;
  width: 26px;
  position: relative;
  background-color: #fff;
  border: 1px solid #c9c9c9;
  margin-right: 12px;
  flex-shrink: 0;
}

.register-modal__checkbox .checkbox {
  margin-right: 0;
  height: 20px;
  width: 20px;
  border-color: #8d8d8d;
  flex-shrink: 0;
}

.login-modal__checkbox-text {
  padding-top: 6px;
  padding-left: 10px;
}

.register-modal__checkbox-text {
  padding-top: 1px;
  cursor: pointer;
}

.login-modal__checkbox .checkbox input,
.register-modal__checkbox .checkbox input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  cursor: pointer;
  flex-shrink: 0;
}

.register-modal__checkbox .checkbox input:checked ~ .checkmark,
.login-modal__checkbox .checkbox input:checked ~ .checkmark {
  background-image: url("../dsg/icons/check-01.svg");
}

.login-modal__checkbox .checkbox .checkmark,
.register-modal__checkbox .checkbox .checkmark {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  background-repeat: no-repeat;
  background-position: center;
}

.register-modal__btns {
  margin-top: 40px;
}

.double-inputs {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.double-inputs .input {
  width: calc(50% - 20px);
}

@media (max-width: 576px) {
  .double-inputs .input {
    width: calc(50% - 8px);
  }
}

.register-modal__company {
  width: calc(100% - 24px);
  margin: 0 auto;
  margin-bottom: 24px;
  padding: 16px 20px;
  background-color: #f0f0f0;
}

@media (max-width: 576px) {
  .register-modal__company {
    width: 100%;
    margin-bottom: 40px;
    padding: 12px 16px;
  }
}

.register-modal__company .register-modal__checkbox {
  margin-bottom: 0;
  justify-content: flex-start;
}

.register-modal__company .register-modal__checkbox .checkbox {
  margin-left: 0;
  margin-right: 20px;
  flex-shrink: 0;
}

.register-modal__company .register-modal__checkbox-text {
  padding-top: 2px;
}

@media (max-width: 576px) {
  .register-modal__company .register-modal__checkbox-text {
    font-size: 14px;
  }
}

.register-modal__company .register-modal__checkbox-text span {
  font-size: 14px;
}

@media (max-width: 576px) {
  .register-modal__company .register-modal__checkbox-text span {
    font-size: 12px;
  }
}

.single {
  padding: 100px 0;
}

@media (max-width: 576px) {
  .single {
    padding: 48px 0;
  }
}

.single {
  max-width: 850px;
  margin: 0 auto;
}

.single .title {
  margin-bottom: 64px;
}

@media (max-width: 576px) {
  .single .title {
    margin-bottom: 40px;
  }
}

.single-text h1,
.single-text h2,
.single-text h3,
.single-text h4,
.single-text h5,
.single-text h6 {
  margin: 32px 0 24px;
  font-weight: 600;
}

.single-text table {
  border: 1px solid #ccc;
  max-width: 100%;
  margin: 20px 0;
  border-collapse: collapse;
  font-size: 14px;
}

.single-text table td {
  padding: 8px;
  border: 1px solid #ccc;
}

.wishlist {
  padding: 100px 0;
}

@media (max-width: 576px) {
  .wishlist {
    padding: 80px 0;
  }
}

.wishlist__content,
.cart-inner__content {
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

.wishlist__empty,
.cart-inner__empty {
  text-align: center;
  margin: 40px auto;
}

.wishlist__back {
  margin: 40px 0 12px;
  display: inline-block;
  padding-left: 40px;
  background-image: url("../dsg/icons/chevron_back-01.svg");
  background-repeat: no-repeat;
  background-position: left 8px center;
  background-size: 24px;
}

.wishlist__back:hover {
  text-decoration: none;
}

.cart-inner {
  padding: 80px 0;
}

@media (max-width: 992px) {
  .cart-inner {
    padding: 60px 0;
  }
}

@media (max-width: 576px) {
  .cart-inner {
    padding: 40px 0;
  }
}

.wishlist-item {
  display: flex;
  padding: 24px 0;
  border-bottom: 1px solid #e5e5e5;
}

@media (max-width: 992px) {
  .wishlist-item {
    flex-wrap: wrap;
  }
}

@media (max-width: 576px) {
  .wishlist-item {
    padding-top: 0;
  }
}

.wishlist-item:last-of-type {
  border-bottom: none;
}

.wishlist-item__btns {
  margin-left: auto;
  flex-shrink: 0;
}

@media (max-width: 992px) {
  .wishlist-item__btns {
    width: 100%;
    padding-left: 40px;
    margin-top: 12px;
  }
}

@media (max-width: 576px) {
  .wishlist-item__btns {
    padding-left: 0;
  }
}

.wishlist-item__remove {
  width: 64px;
  height: auto;
  cursor: pointer;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24' fill='none' stroke='%23eee' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' class='feather feather-x'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
  cursor: pointer;
}

@media (max-width: 992px) {
  .wishlist-item__remove {
    width: 40px;
  }
}

@media (max-width: 576px) {
  .wishlist-item__remove {
    width: 100%;
    height: 60px;
    background-position: left;
  }
}

.wishlist-item__img {
  position: relative;
  width: 94px;
  height: 94px;
  margin-right: 48px;
  overflow: hidden;
}

@media (max-width: 992px) {
  .wishlist-item__img {
    width: 80px;
    height: 80px;
    margin-right: 28px;
  }
}

.wishlist-item__img img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  max-height: 80%;
  max-width: 80%;
  transition: 0.5s ease;
}

.wishlist-item__info {
  display: flex;
}

.wishlist-item__name {
  margin-bottom: 8px;
  color: #121212;
  font-weight: 500;
}

.wishlist-item__price {
  color: #686868;
}

.btn.in-stock,
.btn.in-stock:hover {
  background-color: #b5ead8;
  border-color: #b5ead8;
  color: #fff;
  cursor: auto;
}

.btn.out-of-stock,
.btn.out-of-stock:hover {
  background-color: #e5e5e5;
  border-color: #e5e5e5;
  color: #686868;
  cursor: auto;
}

@media (max-width: 992px) {
  .wishlist__link {
    text-align: center;
    margin-bottom: 40px;
  }
}

.sc-store {
  *background-color: #efefef;
  *background-color: black;
}

.store {
    padding: 0 0 80px;
}

@media (max-width: 768px) {
  .store {
    padding: 0 0 60px;
  }
}
@media (max-width: 576px) {
  .store {
    padding: 0 0 40px;
  }
}

.store .title h1 {
  text-align: left;
  font-size: 32px;
  color: black;
}
@media (max-width: 768px) {
  .store .title h1 {
    font-size: 24px;
  }
}

.store .title {
  /*margin-bottom: 20px;*/
}

.tabs {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}

.tabs .tab {
  margin: 0 5px;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: 0.3s;
  margin-bottom: 12px;
  font-weight: 300;
}

.sc-store .tabs-select {
  display: none;
}

@media (max-width: 576px) {
  .tabs .tab {
    margin: 0 8px;
    font-size: 14px;
  }

  .sc-store .tabs {
    display: none;
  }

  .sc-store .tabs-select {
    display: block;
  }
}

.tabs .tab:hover {
  border-color: black;
}

.breadcrumbs {
  margin-top: 20px;
  margin-bottom: 32px;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .breadcrumbs {
    margin-top: 14px;
    margin-bottom: 12px;
  }
}


.store-items-holder {
  display: flex;
  align-items: flex-start;
  position: relative;
}

@media (max-width: 768px) {
  .store-items-holder {
    display: block;
  }
}

.store-filters {
  width: 20%;
  margin-right: 20px;
  padding-right: 20px;
  font-size: 15px;
  color: #ccc;
  /*
  overflow-x: hidden;
  position: sticky;
  top: 180px;
  */
}

@media (max-width: 768px) {
  .store-filters {
    width: 100%;
    margin-right: 0;
    padding-right: 0;
    border: none;
    top: 0;
    position: relative;
  }
}

.store-items {
  display: flex;
  flex-wrap: wrap;
  /*width: 80%;*/
  gap: 60px 0;
}
.store-items.incategory {
  width: 80%;
}

@media (max-width: 992px) {
  .store-items.incategory {
    width: 100%;
  }
}

.store-item {
  width: 25%;
  /* margin-right: 50px;
  margin-bottom: 48px; */
  overflow: hidden;
  height: auto !important;
  display: flex !important;
  flex-direction: column;
  transition: 0.3s ease;
  color: black;
  border: 1px solid white;
}

.store-item:hover {
  border: 1px solid #cecece;
}

.store-item__logo {
  max-width: 150px;
  margin-bottom: 2px;
}

@media (max-width: 576px) {
  .store-item__logo {
    max-width: 80px;
    margin-bottom: 2px;
  }
}

.store-item.swiper-slide {
  height: auto !important;
}

@media (max-width: 1200px) {
  .store-item {
    width: 25%;
  }
}

@media (max-width: 992px) {
  .store-item {
    width: 50%;
  }
}

@media (max-width: 576px) {
  .store-item {
    width: 100%;
  }
}


.store-item__id {
  color: black;
  font-size: 14px;
  margin-bottom: 12px;
}

.store-item__img {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  /*background: rgb(207, 207, 207);
    background: linear-gradient(90deg, rgba(207, 207, 207, 1) 0%, rgba(230, 230, 230, 1) 100%);*/
  overflow: hidden;
  background-size: contain !important;
  background-repeat: no-repeat;
  background-position: center;
  margin: 10px 0;
  padding: 20px 0;
  /*border-top: 1px solid lightgrey;*/
  border-bottom: 1px solid lightgrey;
}

.store-item__img img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  /*
    max-height: 80%;
    max-width: 80%;
    */
  width: 100%;
  height: 80%;
  object-fit: contain;
  transition: 0.5s ease;
}

.store-item__img:hover img {
  /* transform: scale(1.1); */
}

.store-item__saving {
  font-size: 14px;
  font-weight: 400;
}

.store-item__wishlist,
.store-item__cart {
  position: absolute;
  left: 10px;
  bottom: -60px;
  height: 52px;
  width: 52px;
  background-color: #fff;
  background-image: url("../dsg/icons/like-01.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30px;
  border-radius: 100%;
  cursor: pointer;
  opacity: 0.75;
  transition: 0.3s;

  display: none;
}

.store-item__cart {
  left: auto;
  right: 10px;
  background-image: url("../dsg/icons/shopping-cart.svg");
  transition-delay: 0.075s;
}

.store-item:hover .store-item__wishlist,
.store-item:hover .store-item__cart {
  bottom: 10px;
}

.store-item__wishlist:hover,
.store-item__cart:hover {
  opacity: 1;
  transform: scale(1.1);
}

.store-item__bottom {
  position: relative;
  cursor: pointer;
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.store-item__add-to-cart {
  text-align: center;
  padding: 10px;
  margin-top: 10px;
}

.store-item__read-more {
  text-align: center;
  padding-top: 5px;
  font-size: 14px;
}

.store-item__read-more a{
  color: #ccc;
  transition: 0.3s;
}
.store-item__read-more a:hover{
  color: black;
}

.store-item__title {
  font-weight: 800;
  font-size: 22px;
  color: black;
  text-align: left;
  line-height: 1.2;
  margin-bottom: 12px;
  height: 75px;
  overflow: hidden;
}

@media (max-width: 576px) {
  .store-item__title {
    font-size: 24px;
  }
}

.store-item__slashed-price {
  font-weight: 600;
  color: black;
  font-size: 18px;
  text-decoration: line-through;
}
@media (max-width: 576px) {
  .store-item__slashed-price {
    font-size: 14px;
  }
}

.store-item__price {
  font-weight: 800;
  font-size: 32px;
  margin-top: auto;
  display: flex;
  flex-direction: column-reverse;
    color: #48A23F;
}

@media (max-width: 576px) {
  .store-item__price {
    font-size: 22px;
  }
}

.store-item__price span {
  font-size: 12px;
  font-weight: 300;
  opacity: 0.66;
  line-height: 1;
}

.store-item__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #178cc5;
  color: #fff;
  transition: 0.3s;
  font-size: 14px;
  font-weight: 300;
  padding: 8px;
}
@media (max-width: 576px) {
  .store-item__link {
    font-size: 12px;
    padding: 4px 12px;
  }
}

.store-item__link:hover {
  background-color: #9a2e88;
}

.store-item__new,
.store-item__discount {
  background-color: #feb640;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  position: absolute;
  top: 10px;
  left: 10px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: normal;
}

.store-item__discount {
  background-color: #b43532;
  left: auto;
  top: -28px;
  right: 0;
  height: 80px;
  width: 80px;
  flex-direction: column;
  font-size: 12px;
}
@media (max-width: 576px) {
  .store-item__discount {
    top: -28px;
    height: 60px;
    border-radius: 100%;
    width: 60px;
    font-size: 8px;
  }
}

.store-item__discount strong {
  font-weight: 800;
  font-size: 18px;
}
@media (max-width: 576px) {
  .store-item__discount strong {
    font-size: 14px;
  }
}

.store-item__discount-text {
    border-top: 1px solid white;
}

.description-text {
  /*padding-top: 20px;*/
  font-size: 16px;
  /*color: #686868;*/
}

.sc-product-desc {
  padding-bottom: 80px;
}

@media (max-width: 768px) {
.sc-product-desc {
  padding-bottom: 40px;
}
}


.sc-product-desc .product-desc{
  max-width: 1280px;
  margin: 0 auto;
}

.sc-product-desc .product-desc h4{
  font-size: 18px;
  font-weight: bold;
  padding-bottom: 40px;
  margin-top: -35px;
  color: black;
}

.sc-product-desc .product-desc__text{
  max-width: 1280px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.4;
}

.sc-product-desc .product-desc__text strong{
  font-weight: 600;
}

.sc-product-desc .product-desc__text > *{
  padding-bottom: 20px;
}

.sc-product-desc .product-desc__text ul{
  padding-left: 15px;
}

.sc-product-desc .product-desc__text ul li{
  padding-bottom: 10px;
  line-height: 1.4;
}

.sc-product-desc .product-desc__text h3{
  padding-bottom: 10px;
  font-weight: 600;
  color: black;
}

.sc-product-desc .product-desc__text .html5-video-container{
  position: relative;
  padding-bottom: 56.25%;
}

.sc-product-desc .product-desc__text .html5-video-container iframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 576px) {
  .sc-product-desc {

  }
}

.sc-product-similar {
  background-color: white;;
  padding: 100px 0;
}

@media (max-width: 576px) {
  .sc-product-similar {
    padding: 80px 0;
  }
}

.sc-product-desc .store-items {
  margin-top: 80px;
}

.product-single__table {
  margin-top: 40px;
  font-size: 18px;
  font-weight: 300;
}
@media (max-width: 576px) {
  .product-single__table {
    font-size: 14px;
  }
}

.product-single__table-title {
  background-color: #e6e7e9;
  padding: 12px 24px;
}

@media (max-width: 576px) {
  .product-single__table-title {
    padding: 8px 16px;
  }
}

.product-single__table-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 12px 24px;
  border-bottom: 1px solid lightgrey;
}

@media (max-width: 576px) {
  .product-single__table-row {
    padding: 8px 16px;
  }
}

.product-single__table-row div:nth-of-type(2) {
  text-align: right;
  font-weight: 800;
}

.product-single__desc-text {
  padding: 28px 0;
  border-top: 1px solid lightgrey;
  border-bottom: 1px solid lightgrey;
  font-size: 18px;
  color: #333;
  text-align: justify;
}

@media (max-width: 567px) {
  .product-single__desc-text {
  font-size: 14px;
  }
}

.product-single {
  padding: 80px 0px 100px 0px;
  display: flex;
  gap: 80px;
  justify-content: space-between;
}

@media (max-width: 992px) {
  .product-single {
  gap: 40px;
  }
}

@media (max-width: 768px) {
  .product-single {
    flex-direction: column;
    padding: 60px 0px;
  }
}

@media (max-width: 576px) {
  .product-single {
    padding: 20px 0 60px;
  }
}

.product-single__left {
  width: calc(54% - 24px);
  position: relative;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .product-single__left {
    width: 100%;
  }
}

.product-single__right {
  width: 100%;
  /*padding-right: 200px;*/
}

@media (max-width: 1400px) {
  .product-single__right {
    padding-right: 100px;
  }
}

@media (max-width: 1200px) {
  .product-single__right {
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .product-single__right {
    padding-right: 0;
    padding-top: 12px;
  }
}

@media (max-width: 768px) {
  .product-single__right {
    width: 100%;
    padding-top: 40px;
  }
}

.product-single__img {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
}

.product-single__img img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  margin: auto;
    max-height: 80%;
    max-width: 80%;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: 0.5s ease;
}

.product-single__img-zoom {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 14px;
  text-align: center;
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
  transition: 0.3s ease;
  color: black;
}

@media (max-width: 576px) {
  .product-single__img-zoom {
    font-size: 0;
    gap: 0;
  }
}

.product-single__img-zoom:before {
  content: '+';
  width: 60px;
  height: 60px;
  border-radius: 100%;
  border: 1px solid #b4b5b4;
  color: #b4b5b4;
  font-weight: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 58px;
  line-height: 0.6;
  transition: 0.3s ease;
}

@media (max-width: 576px) {
  .product-single__img-zoom:before {
    width: 40px;
    height: 40px;
    font-size: 36px;
  }
}

.product-single__img-zoom:hover {
  color: #48A23F;
}

.product-single__img-zoom:hover:before {
  color: #48A23F;
  border: 1px solid #48A23F;
}

.product-single__discount {
  height: 70px;
  width: 70px;
  border-radius: 100%;
  position: absolute;
  top: 10px;
  color: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  background-color: #e63437;
  left: auto;
  right: 10px;
  font-weight: 300;
  z-index: 10;
}

@media (max-width: 768px) {
  .product-single__discount {
    height: 40px;
    width: 40px;
    font-size: 16px;
  }
}

.product-single .product-thumbnails {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 10px 0;
  gap: 10px;
}

@media screen and (max-width: 992px) {
  .product-single .product-thumbnails {
    display: none;
  }
}

.product-single .product-thumbnails {
  width: 100%;
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
  display: flex;
}

.product-single .product-thumbnails-slide {
  cursor: pointer;
  width: calc(33% - 5px);
  padding-bottom: 125px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.product-single .breadcrumbs {
  margin: 0 0 50px;
}

@media (max-width: 1200px) {
  .product-single .breadcrumbs {
    margin: 0 0 24px;
  }
}

.product-single__logo {
  max-width: 250px;
  margin-bottom: 40px;
}

@media (max-width: 567px) {
  .product-single__logo {
    max-width: 140px;
    margin-bottom: 28px;
  }
}

.product-single__title {
  margin-bottom: 12px;
}

.product-single__desc-id {
  font-size: 18px;
  margin-bottom: 40px;
}

@media (max-width: 567px) {
  .product-single__desc-id {
    font-size: 14px;
    margin-bottom: 28px;
  }
}

.product-single__desc-id strong {
  color: black;
}

.product-single__title h1 {
  font-size: 48px;
  font-weight: 800;
  color: black;
  margin-bottom: 0;
}

@media (max-width: 576px) {
  .product-single__title h1 {
    font-size: 28px;
  }
}

.product-single__price {
  font-size: 48px;
  font-weight: 800;
  color: #48A23F;
}
@media (max-width: 576px) {
  .product-single__price {
    font-size: 32px;
  }
}

.product-single__price .old-price {
  opacity: 0.75;
  font-weight: 300;
  font-size: 18px;
  display: block;
}

@media (max-width: 992px) {
  .product-single__price .old-price {
    font-size: 14px;
  }
}

.product-single__desc {
  color: #aaa;
  font-size: 15px;
  position: relative;
  padding-bottom: 10px;
  line-height: 24px;
}

.product-single__desc.compact {
  max-height: 168px;
  overflow: hidden;
  padding-bottom: 30px;
}

.product-single__desc.compact.fullsize {
  max-height: none;
  padding-bottom: 38px;
}

.product-single__desc.compact.fullsize .product-single__desc-show{
  box-shadow: none;
}

@media (max-width: 768px) {
  .product-single__desc {
    text-align: left;
    font-size: 14px;
  }
}

.product-single__desc.compact .product-single__desc-show {
  display: flex;
}

.product-single__desc-show {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 40px;
  background-color: #151515;
  z-index: 1;
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  align-items: center;
  box-shadow: rgba(21, 21, 21, 0.9) 0 0 10px 10px;
  justify-content: center;
  cursor: pointer;
}

.product-single__desc-show .close {
  display: none;
}
.product-single__desc.compact.fullsize .open {
  display: none;
}
.product-single__desc.compact.fullsize .close {
  display: block;
}

.product-single__desc p {
  padding-top: 10px;
  padding-bottom: 10px;
}

.product-single__desc ul {
  padding-left: 15px;
}

.product-single__desc .alert{
  color: #0e98cf;
  font-size: 17px;
  font-weight: bold;
  padding-top: 0;
}

.product-single__desc .alert strong{
  font-weight: bold;
}

.product-single__add {
  margin: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 992px) {
  .product-single__add {
    margin-bottom: 28px;
  }
}

.product-single__add .amount-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  width: 68px;
  height: 48px;
  position: relative;
}
.product-single__add .amount-wrapper:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 4px;
  margin: auto;
  height: 20px;
  width: 20px;
  background-image: url("../dsg/icons/chevron_forward-01.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  transform: rotate(90deg);
}

.product-single__add .amount-wrapper select {
  width: 68px;
  height: 48px;
  padding: 0;
  text-align: center;
  padding-right: 16px;
}

@media (max-width: 768px) {
  .product-single__add .amount-wrapper {
    justify-content: center;
  }
}

.product-single__add .amount-wrapper .plus,
.product-single__add .amount-wrapper .minus {
  cursor: pointer;
  height: 100%;
  width: 44px;
  transition: 0.3s;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24' fill='none' stroke='%23eee' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' class='feather feather-plus'%3E%3Cline x1='12' y1='5' x2='12' y2='19'/%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
  border: 1px solid #ccc;
}

.product-single__add .amount-wrapper .minus {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24' fill='none' stroke='%23eee' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' class='feather feather-minus'%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
}

.product-single__add .amount {
  border: none;
  outline: none;
  height: 100%;
  width: 50px;
  text-align: center;
  font-size: 16px;
}

.product-single__info {
  margin-bottom: 24px;
  padding: 24px 0;
  border-top: 1px solid #c9c9c9;
  border-bottom: 1px solid #c9c9c9;
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
}

.product-single__info-item {
  margin-right: 24px;
  color: #999999;
}

.product-single__info-item span {
  color: #000;
}

.product-single__soc-med {
  font-size: 14px;
  color: #999999;
  display: flex;
  align-items: center;
}

.product-single__soc-med__icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-left: 20px;
}

.product-single__soc-med__icons a {
  height: 24px;
  width: 24px;
  margin-right: 12px;
  transition: 0.3s;
}

.product-single__soc-med__icons a:hover {
  transform: translateY(-6px);
}

.product-single__add-btns {
  width: 100%;
  margin-left: 20px;
}

.product-single__add-btns .btn {
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: bold;
}

@media (max-width: 992px) {
  .product-single__add-btns .btn {
    font-size: 14px;
  }
}

.product-single__add-btns .btn.rainbow {
  background-color: #48A23F;;
  border: none;
  color: black;
  transition: 0.3s ease;
  font-weight: 300;
  font-family: "Titillium Web", sans-serif;
  font-size: 14px;
}

.product-single__add-btns .btn.rainbow:hover {
  opacity: 0.6;
}
.product-single__add-btns .btn.add-to-cart,
.special-offer-final .btn.add-to-cart {
  background-color: #48A23F;
  border: none;
  color: black;
  transition: 0.3s ease;
  font-weight: 400;
  font-family: "Titillium Web", sans-serif;
  font-size: 16px;
}
.special-offer-final .btn.add-to-cart img,
.product-single__add-btns .btn.add-to-cart img {
  width: 18px;
  margin-right: 12px;
}
.special-offer-final .btn.add-to-cart:hover,
.product-single__add-btns .btn.add-to-cart:hover {
  background-color: #a73394;
}

.btn.add-to-wishlist {
  padding: 8px;
  border: none;
  background-color: #cccccc;
  height: 38px;
  margin-top: 4px;
}

.btn.add-to-wishlist img {
  width: 30px;
}

.btn.add-to-wishlist:hover {
  background-color: #aaa;
  color: #000;
}

.all-products {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: #686868;
}

.full-cart {
  display: flex;
  border: none;
}

@media (max-width: 992px) {
  .full-cart {
    flex-direction: column;
  }
}

.cart-inner__left {
  width: calc(100% - 525px);
}

@media (max-width: 1200px) {
  .cart-inner__left {
    width: calc(100% - 340px);
  }
}

@media (max-width: 992px) {
  .cart-inner__left {
    width: 100%;
  }
}

.cart-inner__right {
  width: 525px;
  padding-left: 100px;
}

@media (max-width: 1200px) {
  .cart-inner__right {
    width: 340px;
    padding-left: 20px;
  }
}

@media (max-width: 992px) {
  .cart-inner__right {
    width: 100%;
    margin-top: 30px;
    padding-left: 0;
  }
}

@media (max-width: 576px) {
  .cart-inner__right {
    width: 100%;
  }

  .cart-inner__summary {
    padding: 20px !important;
  } 
}

.cart-inner__summary {
  background-color: #48A23F;
  padding: 30px;
  width: 100%;
  transform: translateY(-40px);
}

@media (max-width: 1200px) {
  .cart-inner__summary {
    padding: 36px 28px;
  }
}

@media (max-width: 992px) {
  .cart-inner__summary {
    transform: translateY(0);
  }
}

.summary-items {
  padding-bottom: 10px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  font-size: 14px;
}

.summary-item.total {
  font-weight: 700;
  font-size: 16px;
  color: black;
}

@media (max-width: 1200px) {
  .summary-item {
    padding: 20px 0;
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .summary-item {
    padding: 16px 0 10px;
    font-size: 14px;
  }

  .summary-item span {
    margin-bottom: 8px;
  }
}

.summary-title {
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: 600;
}

@media (max-width: 1200px) {
  .summary-title {
    margin-bottom: 28px;
    font-size: 18px;
  }
}

.summary-btn {
  margin-top: 14px;
}

.summary-btn .btn {
  width: 100%;
  font-size: 18px;
  padding: 20px 10px;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center; 
}

.cart-message {
  margin-top: 28px;
  background-color: #b5ead8;
  text-align: center;
  padding: 24px;
  font-weight: 300;
}

@media (max-width: 576px) {
  .cart-message {
    padding: 20px;
  }
}

.cart__item.secondary .cart__item-right {
  padding-left: 30px;
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 1200px) {
  .cart__item.secondary .cart__item-right {
    padding-left: 20px;
  }
}

@media (max-width: 576px) {
  .cart__item.secondary .cart__item-right {
    padding-left: 0;
    margin-top: 20px;
    width: 100%;
    flex-direction: column;
  }
}

.cart__item.secondary {
  padding: 24px 0;
  border-top: 1px solid #48A23F;
  border-bottom: none;
}

.cart__item.secondary:last-child {
  border-bottom: 1px solid #48A23F;
}

@media (max-width: 576px) {
  .cart__item.secondary {
    flex-direction: column;
  }
}

.cart__item.secondary .cart__item-remove {
  position: relative;
  height: 24px;
  width: 24px;
  background-size: 18px;
  margin-top: -2px;
  margin-left: 20px;
}

@media (max-width: 576px) {
  .cart__item.secondary .cart__item-remove {
    position: absolute;
    top: -108px;
    right: 0;
    margin-top: 0;
  }
}

.cart__item.secondary .cart__item-full {
  font-weight: 400;
}

@media (max-width: 576px) {
  .cart__item.secondary .cart__item-full {
    font-size: 18px;
  }
}

.cart__item.secondary .cart__item-info {
  margin-right: auto;
}

.cart__item.secondary .cart__item-count {
  margin-top: 0;
  height: 28px;
  width: 90px;
  justify-content: space-between;
  margin-right: 100px;
  background: #48A23F;
  border: 0;
}

@media (max-width: 576px) {
  .cart__item.secondary .cart__item-count {
    margin-right: 20px;
    margin-top: 20px;
  }
}

.cart__item.secondary .cart__item-down,
.cart__item.secondary .cart__item-up {
  border: none;
}

.cart__item-info {
  width: 300px;
}

@media (max-width: 576px) {
  .cart__item-info {
    width: 100%;
  }
}

.cart__item.secondary .cart__item-num {
  font-weight: 400;
  background: transparent;
}

.cart__item.secondary .cart__item-inner-right {
  display: flex;
}

@media (max-width: 576px) {
  .cart__item.secondary .cart__item-inner-right {
    margin-top: 20px;
    align-items: flex-start;
    width: 100%;
  }
}

.cart-inner__bottom {
  border-top: 1px solid #48A23F;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

@media (max-width: 576px) {
  .cart-inner__bottom {
    display: block;
  }
}

.btn.update {
  border-color: #c9c9c9;
  color: #686868;
  padding: 12px 40px;
}

@media (max-width: 576px) {
  .btn.update {
    width: 100%;
    text-align: center;
  }
}

.btn.update:hover,
.btn.use-code:hover {
  background-color: #48A23F;
}

.promo-wrapper {
  margin-bottom: 10px;
}

@media (max-width: 576px) {
  .promo-wrapper {
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }
}

.promo-wrapper input {
  margin-bottom: 0;
  padding-left: 15px;
  border-color: #48A23F;
  border-right: 0;
  width: 100%;
  height: 50px;
}

.promo-wrapper input::placeholder {
  color: #A7A7A7;
}

#discountform {
  display: flex;
}

.btn.use-code {
  border: none;
  background-color: #6f6f6f;
  color: black;
  height: 50px;
  font-size: 16px;
  padding: 14px 20px;
  text-align: center;
  flex-shrink: 0;
  margin-left: 10px;
}

.cart-gift-picker {
  margin-top: 60px;
}

.cart-gift-picker h3 {
  font-size: 18px;
  padding-bottom: 20px;
}

.cart-gift-picker .store-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
}


@media (max-width: 992px) {
.cart-gift-picker .store-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
}
}

.cart-gift-picker .store-item {
  position: relative;
  width: 100%;
}

.cart-gift-picker .store-item:hover {
  background-color: transparent;
  transform: translateY(0);
  border-radius: 0;
}

.cart-gift-picker .store-item:hover .overlay-link {
  opacity: 1;
}

.cart-gift-picker .store-item .overlay-link {
  position: absolute;
  z-index: 10;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all .2s ease-in-out;
  -webkit-transition: all .2s ease-in-out;
}

.cart-gift-picker .store-item .overlay-link .bg{
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
}

.cart-gift-picker .store-item .overlay-link .add{
  position: absolute;
  z-index: 2;
  width: 64px;
  height: 64px;
  inset: 0;
  margin: auto;
  color: black;
}

.dash {
  padding: 100px 0;
}

@media (max-width: 576px) {
  .dash {
    padding: 80px 0;
  }
}

.dash__left {
  width: 320px;
  text-align: right;
}

@media (max-width: 1200px) {
  .dash__left {
    width: 280px;
  }
}

@media (max-width: 992px) {
  .dash__left {
    width: 160px;
  }
}

@media (max-width: 768px) {
  .dash__left {
    width: 100%;
  }
}

.dash__right {
  width: calc(100% - 370px);
}

@media (max-width: 1200px) {
  .dash__right {
    width: calc(100% - 320px);
  }
}

@media (max-width: 992px) {
  .dash__right {
    width: calc(100% - 180px);
    overflow-x: auto;
  }
}

@media (max-width: 768px) {
  .dash__right {
    width: 100%;
    margin-top: 40px;
  }
}

.dash__content {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 992px) {
  .dash__content {
    flex-wrap: wrap;
  }
}

.dash__list-item {
  border-top: 1px solid #c9c9c9;
  padding: 16px 16px 16px 0;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
  position: relative;
  text-align: left;
}

@media (max-width: 992px) {
  .dash__list-item {
    padding: 12px 16px 12px 0;
  }
}

.dash__list-item:after {
  content: "";
  position: absolute;
  right: 0;
  top: 16px;
  width: 13px;
  height: 13px;
  border-radius: 100%;
  transition: 0.3s;
  background-image: url("../dsg/icons/chevron_forward-01.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}

.dash__list-item:hover:after {
  background-color: #f2f2f2;
}

.dash__list {
  border-bottom: 1px solid #c9c9c9;
  margin-bottom: 36px;
}

.dash__newsletters {
  border-bottom: 1px solid #c9c9c9;
  border-top: 1px solid #c9c9c9;
  padding: 22px 200px 22px 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

@media (max-width: 1400px) {
  .dash__newsletters {
    padding-right: 100px;
  }
}

@media (max-width: 1200px) {
  .dash__newsletters {
    padding: 16px 0;
  }
}

@media (max-width: 992px) {
  .dash__list-item {
    padding: 12px 16px 12px 0;
  }
}

@media (max-width: 768px) {
  .dash__newsletters {
    flex-direction: column;
    align-items: flex-end;
    padding: 24px 0;
  }
}

.dash__newsletters-checkbox {
  display: flex;
  font-weight: 600;
  display: flex;
  justify-content: flex-end;
  margin-right: 36px;
  font-weight: 300;
}

@media (max-width: 768px) {
  .dash__newsletters-checkbox {
    margin-bottom: 20px;
    margin-right: 0;
  }
}

.dash__newsletters-checkbox .checkbox {
  height: 20px;
  width: 20px;
  position: relative;
  background-color: #fff;
  border: 1px solid #828282;
  margin-left: 8px;
  flex-shrink: 0;
}

.dash__newsletters-checkbox .checkbox input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  cursor: pointer;
}

.dash__newsletters-checkbox .checkbox input:checked ~ .checkmark {
  background-image: url("../dsg/icons/check-01.svg");
}

.dash__newsletters-checkbox .checkbox .checkmark {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  background-repeat: no-repeat;
  background-position: center;
}

.dash__content-item {
  display: none;
}

.dash__content-item.active {
  display: flex;
}

.dash__addresses,
.dash__account {
  flex-wrap: wrap;
}

.dash__address {
  width: 36%;
  padding-right: 20px;
  font-size: 15px;
  margin-bottom: 80px;
}

@media (max-width: 1200px) {
  .dash__address {
    width: 50%;
  }
}

@media (max-width: 768px) {
  .dash__address {
    width: 100%;
    margin-bottom: 32px;
  }
}

.dash__address span {
  font-weight: 600;
  font-size: 19px;
  margin-bottom: 32px;
  display: block;
}

@media (max-width: 768px) {
  .dash__address span {
    font-size: 18px;
    margin-bottom: 24px;
  }
}

.dash__address ul {
  display: block;
  list-style: none;
}

.dash__address-edit {
  margin-top: 20px;
  color: black;
  display: inline-block;
}

.dash .empty {
  border-bottom: 1px solid #c9c9c9;
  border-top: 1px solid #c9c9c9;
  padding: 40px 0;
  text-align: center;
  width: 100%;
  position: relative;
  display: none;
}

@media (max-width: 1200px) {
  .dash__newsletters {
    padding: 32px 0;
  }
}

@media (max-width: 768px) {
  .dash__newsletters {
    padding: 24px 0;
  }
}

.empty-link {
  position: absolute;
  right: 0;
  bottom: -36px;
  display: inline-block;
  padding-right: 20px;
  background-image: url("../dsg/icons/chevron_forward-01.svg");
  background-repeat: no-repeat;
  background-position: right;
  background-position: right 4px center;
  background-size: 16px;
  transition: 0.3s;
}

.empty-link:hover {
  background-position: right;
}

.dash__info-form {
  max-width: 680px;
  width: 100%;
}

.dash__info-form span {
  margin-top: 80px;
  margin-bottom: 28px;
  font-size: 20px;
  display: block;
}

@media (max-width: 768px) {
  .dash__info-form span {
    margin-top: 40px;
    margin-bottom: 16px;
    font-size: 18px;
  }
}

.dash .wishlist-item {
  width: 100%;
  border-top: 1px solid #e5e5e5;
  border-bottom: none;
}

@media (max-width: 576px) {
  .dash .wishlist-item {
    padding-top: 24px;
  }
}

.dash .wishlist-item:last-of-type {
  border-bottom: 1px solid #e5e5e5;
}

.dash .wishlist-item__remove {
  width: 40px;
}

.dash .wishlist-item__img {
  width: 70px;
  height: 70px;
  margin-right: 32px;
}

.dash .wishlist-item__name {
  font-size: 14px;
  margin-bottom: 4px;
}

.dash .wishlist-item__price {
  font-size: 14px;
}

.dash .wishlist-item__btns {
  margin-top: 12px;
}

.dash__wishlist {
  flex-direction: column;
}

.dash__orders-table {
  width: 100%;
  display: block;
}

@media (max-width: 992px) {
  .dash__orders-table {
    width: 100%;
    min-width: 720px;
    font-size: 14px;
  }
}

.dash__orders-table__row {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

.dash__orders-table__row:first-of-type .dash__orders-table__item {
  padding: 0 0 8px;
  font-size: 15px;
  font-weight: 600;
}

.dash__orders-table__row:first-of-type .dash__orders-table__item:first-of-type {
  pointer-events: none;
  opacity: 0;
}

.dash__orders-table__row:first-of-type
  .dash__orders-table__item:nth-of-type(2) {
  padding-left: 28px;
}

.dash__orders-table__item {
  padding: 16px 0;
  border-bottom: 1px solid #e4e4e4;
  display: flex;
  align-items: center;
}

.dash__orders-table__item:first-of-type {
  width: 28px;
  position: absolute;
  left: 0;
  top: 0;
  height: 66px;
}

.dash__orders-table__item:nth-of-type(2) {
  width: 18%;
  padding-left: 28px;
}

.dash__orders-table__item:nth-of-type(3) {
  width: 14%;
}

.dash__orders-table__item:nth-of-type(4) {
  width: 13%;
}

.dash__orders-table__item:nth-of-type(5) {
  width: 35%;
  font-size: 15px;
}

.dash__orders-table__item:nth-of-type(6) {
  width: 20%;
}

.dash__orders-table .btn {
  padding: 7px 0;
  text-align: center;
  width: 100%;
}

.dash__orders .pending,
.dash__orders .accepted {
  color: #fedac2;
}

.dash__orders .processing {
  color: #e3efcb;
}

.dash__orders .sent {
  color: #c6cde9;
}

.dash__orders .finished,
.dash__orders .done {
  color: #b4e9d7;
}

.dash__orders .rejected,
.dash__orders .cancelled {
  color: #ff1e43;
}

.open-table-dropdown {
  cursor: pointer;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24' fill='none' stroke='%23eee' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' class='feather feather-chevron-down'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px;
  border-bottom: none;
  transition: 0.3s;
}

.open-table-dropdown.active {
  transform: rotate(180deg);
}

.dash__orders-table__dropdown {
  width: 100%;
  padding: 20px 0 20px 28px;
  background-color: #fafafa;
  border-bottom: 1px solid #e4e4e4;
  display: none;
}

.dash__orders-table__dropdown.active {
  display: flex;
}

.dropdown-left {
  width: 30%;
}

.dropdown-right {
  width: 70%;
}

.dropdown-left span {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 8px;
  display: block;
}

.dropdown-left ul {
  display: block;
  list-style: none;
  font-size: 14px;
}

.dropdown-item {
  display: flex;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid #e4e4e4;
}

@media (max-width: 992px) {
  .dropdown-item {
    padding: 12px 0;
  }
}

.dropdown-item:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.dropdown-item:first-of-type {
  padding-top: 0;
}

.dropdown-item__img {
  margin-right: 20px;
  position: relative;
  width: 80px;
  height: 80px;
  margin-right: 48px;
  overflow: hidden;
}

.dropdown-item__img img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  max-height: 100%;
  max-width: 100%;
  transition: 0.5s ease;
}

.dropdown-item__name {
  width: 250px;
  font-weight: 500;
  font-size: 14px;
}

.dropdown-item__amount {
  width: 100px;
  font-size: 14px;
  margin-left: auto;
}

.dropdown-item__price {
  font-size: 14px;
}



.checkout-1 {
  max-width: 420px;
}

/*
.checkout-2,
.checkout-3 {
  max-width: 680px;
}
*/

.checkout__login-form {
  margin-top: 60px;
}

.checkout__login-form .btn {
  width: 100%;
  text-align: center;
}

.sc-checkout__btns .container {
  max-width: 740px;
}


.checkout-step {
  display: none;
  width: 100%;
  margin: 0 auto;
}

.checkout-step.active {
  display: block;
}

.checkout-step .register-modal__checkbox {
  justify-content: flex-start;
}

.checkout-step .register-modal__checkbox .checkbox {
  margin-left: 0;
  margin-right: 14px;
}

.checkout-step textarea.input {
  margin-top: 40px;
  height: 40px;
  resize: none;
  margin-bottom: 0;
}

.checkout-step input:focus:required:invalid {
  background: #fef9f9;
  border: 2px solid #ff1e43;
}

.input.error {
  border: 1px solid #ff1e43;
}

.checkout-step__error {
  display: flex;
  flex-direction: column;
  text-align: center;
  color: #ff99a4;
  font-size: 15px;
}

.checkout-step__error img {
  width: 16px;
  margin-right: 12px;
}

.checkout-step__error span {
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-input {
  width: 100%;
  max-width: 312px;
  outline: none;
  height: 34px;
  display: block;
  padding: 0 16px;
  font-size: 15px;
  color: #48A23F;
  font-weight: 600;
  margin-top: 2px;
}

.card-input.secondary {
  width: 100%;
  max-width: 140px;
  padding: 0 12px;
  font-size: 15px;
  margin-right: 20px;
}

.payment-card__input {
  font-size: 13px;
  margin-top: 16px;
}

@media (max-width: 768px) {
  .payment-card__input {
    width: 100%;
  }
}

.checkout-step__payment-card .cards {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.checkout-step__payment-card .cards img {
  margin-left: 16px;
}

@media (max-width: 768px) {
  .checkout-step__payment-card .cards img {
    margin-right: 16px;
    margin-left: 0;
    margin-top: 16px;
  }
}

.checkout-step__payment-card {
  display: flex;
  align-items: flex-end;
}

@media (max-width: 768px) {
  .checkout-step__payment-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

.checkout-step__payment-card-info {
  display: flex;
}

@media (max-width: 576px) {
  .checkout-step__payment-card-info {
    display: block;
  }
}

.checkout-step__payment-form .register-modal__checkbox {
  margin-top: 16px;
}

.checkout-step__payment-form
  .register-modal__checkbox
  .register-modal__checkbox-text {
  font-size: 14px;
}

.checkout-step__summary-box h4 {
  font-size: 18px;
}


.dash__orders-pagination {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.pagination-left,
.pagination-right {
  height: 18px;
  width: 20px;
  background-image: url("../dsg/icons/chevron_forward-01.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 15px;
  cursor: pointer;
}
.pagination-left {
  transform: rotate(180deg);
}

.pagination-item {
  margin: 0 5px;
  font-weight: 400;
  font-size: 14px;
  cursor: pointer;
}
.pagination-item.active {
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .safari_only {
    padding-bottom: 150px; //resize
  }
}

.cookies {
  position: fixed;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 500px;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 999;
  color: #fff;
  box-sizing: border-box;
  padding: 20px;
  font-size: 14px;
  font-weight: 300;
  text-align: center;
}
.cookies a {
  color: #fff;
  font-weight: 600;
}
.cookies-button {
  display: block;
  margin: 0 auto;
  font-size: 15px;
  font-weight: 600;
  box-sizing: border-box;
  padding: 10px;
  background-color: black;
  margin-top: 20px;
  text-align: center;
  width: 150px;
  color: #fff;
}
.cookies-button:hover {
  background-color: #363636;
}

@media only screen and (max-width: 650px) {
  .cookies {
    width: 100%;
  }
}


.item-icons {
  /*
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  */
}

.item-icons .item-icon {
  clear: both;
  line-height: 40px;
}
.item-icons .item-icon img {
  height: 40px;
  float: left;
  margin-right: 10px;
}


.store-item__title.blog-item-title {
  height: 51px;
  overflow: auto;
  white-space: normal;
}

@media (max-width: 576px) {
  iframe {
    width: 100%;
  }
}


.show-more-items {
  color: #178cc5;
  font-size: 14px;
  font-weight: 400;
  flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23019ad0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-chevron-right'%3E%3Cpolyline points='9 18 15 12 9 6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
  padding-right: 24px;
  padding-right: 20px;
  background-size: 16px;
}

.show-more-items:hover {
  text-decoration: underline;
}

.category-title {
  font-size: 36px;
  font-weight: 700;
  color: #cbcccb;
  line-height: 1.3;
}

@media (max-width: 576px) {
  .category-title {
    font-size: 24px;
  }
}

.category-header {
  display: flex;
  gap: 16px;
  align-items: flex-end;
  flex-wrap: wrap;
  padding-right: 80px;
}
@media (max-width: 576px) {
  .category-header {
    flex-direction: column;
    align-items: flex-start;
    padding-right: 60px;
  }
}

.incategory .store-item {
  width: 33.3333%;
  padding: 0 16px;
}

@media (max-width: 768px) {
  .incategory .store-item {
    width: 50%;
  }
}

@media (max-width: 576px) {
  .incategory .store-item {
    width: 100%;
  padding: 0;
  }
}

.input,
textarea.input {
  display: block;
  width: 100%;
  height: 48px;
  outline: 0;
  border: 0;
  border: 1px solid #868686;
  background-color: #121212;
  color: #ccc;
  padding: 10px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 300;
}

@media (max-width: 576px) {
  .input {
    font-size: 16px;
  }
}

textarea.input {
  height: 160px;
  resize: none;
}

/*
.store-filters {
  max-height: calc(100vh - 180px);
  overflow-y: scroll;
  overflow-x: hidden;
}
*/
@media (max-width: 768px) {
  .store-filters {
    max-height: none;
  }
}

.store-filters a {
  transition: 0.3s ease;
  font-size: 16px;
  margin-bottom: 8px;
}

.store-filters a:hover {
  color: #48A23F;
}

.store-filters__title {
  font-size: 18px;
  color: black;
  font-weight: 600;
  border-top: 1px solid #48A23F;
  padding: 12px 28px 12px 0;
  display: block;
  cursor: pointer;
  position: relative;
}
.store-filters__group:first-of-type .store-filters__title {
  border-top: none;
}

.store-filters__title:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 20px;
  width: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-chevron-down'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E")
    no-repeat center / 20px;
  transform: scaleY(1);
  transition: 0.3s ease;
}

.store-filters__title.active:after {
  transform: scaleY(-1);
}

.store-filters__items {
  padding: 12px 0;
  display: none;
}
.store-filters__items.open {
  display: block;
}
@media (max-width: 992px) {
  .store-filters__items.open {
    display: none;
  }
}

.store-filters__repeater-items {
  display: flex;
  flex-direction: column;
}

.brands-category-title {
  font-size: 24px;
  color: #178cc5;
  padding: 10px 0;
  border-bottom: 1px solid #fafafa;
  margin-bottom: 12px;
  font-weight: 400;
}
@media (max-width: 576px) {
  .brands-category-title {
    font-size: 20px;
  }
}

.grid-container.artist-list {
  margin-bottom: 28px;
  gap: 4px 12px;
  font-size: 14px;
  grid-template-rows: initial;
  grid-template-areas: initial;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
@media (max-width: 576px) {
  .grid-container.artist-list {
    grid-template-columns: 1fr 1fr;
  }
}

.grid-container a {
  transition: 0.3s ease;
}

.grid-container a:hover {
  color: #178cc5;
}


.product-single__in-stock {
  color: #73d973;
  font-size: 14px;
  font-weight: 400;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2373d973' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-check-circle'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E")
    no-repeat left top 4px / 18px;
  padding: 4px;
  padding-left: 24px;
  margin-bottom: 5px;
}

.product-single__in-stock .label{
  color: #73d973;
  font-size: 14px;
  font-weight: 400;
}

.product-single__out-of-stock {
  color: #f14143;
  font-size: 14px;
  font-weight: 400;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23f14143' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-x-circle'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cline x1='15' y1='9' x2='9' y2='15'/%3E%3Cline x1='9' y1='9' x2='15' y2='15'/%3E%3C/svg%3E")
    no-repeat left top 4px / 18px;
  padding: 4px;
  padding-left: 24px;
  margin-bottom: 20px;
}

.product-single__out-of-stock .label{
  color: #f14143;
  font-size: 14px;
  font-weight: 400;
}

.product-single__last-stock {
  font-size: 14px;
  font-weight: 400;
  background: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23f14143' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-alert-circle'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cline x1='12' y1='8' x2='12' y2='12'%3E%3C/line%3E%3Cline x1='12' y1='16' x2='12.01' y2='16'%3E%3C/line%3E%3C/svg%3E")
    no-repeat left top 4px / 18px;
  padding: 4px;
  padding-left: 24px;
  margin-bottom: 20px;
}

.product-single__last-stock .label{
  font-size: 14px;
  font-weight: 400;
}

@media (max-width: 576px) {
.product-single__in-stock, .product-single__out-of-stock, .product-single__last-stock {
  font-size: 12px;
}
}

@media (max-width: 768px) {
  .header-main .container {
    max-width: 100%;
    width: 100%;
    padding-right: 16px;
  }
}

.product-single__recommend {
  margin: 20px 0;
}

.product-single__recommend-title {
  font-weight: 400;
  font-size: 14px;
}

.product-single__recommend-box,
.product-single__other-box {
  /*border: 0.5px solid #3279b9;*/
  /*border: 0.5px solid #cecece;*/
  /*background-color: #eaf0f7;*/
  background-color: #48A23F;
  padding: 20px 36px 20px 70px;
  margin-top: 8px;
  font-size: 13px;
  cursor: pointer;
  display: block;
  position: relative;
  transition: 0.3s ease;
}

.product-single__recommend-box:hover,
.product-single__other-box:hover {
  background-color: #fff;
}

/*
.product-single__recommend-box:after,
.product-single__other-box:after {
  content: "";
  height: 24px;
  width: 24px;
  position: absolute;
  right: 8px;
  top: 0;
  bottom: 0;
  margin: auto;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%233279b9' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-chevron-right'%3E%3Cpolyline points='9 18 15 12 9 6'/%3E%3C/svg%3E")
    no-repeat center center / 24px;
}
*/

.product-single__recommend-box strong,
.product-single__other-box strong {
  font-weight: 400;
}

.product-single__recommend__link,
.product-single__other-box__link {
  color: #3279b9;
  text-decoration: underline;
  margin-top: 8px;
}

.product-single__recommend__link:hover,
.product-single__other-box__link:hover {
  text-decoration: none;
}

.product-single__recommend__icon,
.product-single__other-box__icon {
  position: absolute;
  left: 18px;
  /*top: 18px;*/
  top: 0px;
  bottom: 0px;
  display: flex;
  width: 30px;
}

.product-single__recommend-text-title,
.product-single__other-box__text-title {
  font-weight: 400;
  margin-bottom: 8px;
}

.product-single__badges {
  margin-top: 24px;
}

.product-single__badge {
  margin-top: -1px;
  border-top: 1px solid #cecece;
  border-bottom: 1px solid #cecece;
  padding: 16px 0;
  display: grid;
  grid-template-columns: 48px 1fr;
  grid-gap: 20px;
  font-size: 14px;
}

.product-single__badge-title {
  font-weight: 400;
  font-size: 15px;
  margin-bottom: 4px;
}

.product-single__badge-text a {
  color: #3279b9;
  text-decoration: underline;
  font-weight: 400;
}

.product-single__other-text {
  font-size: 12px;
  margin: 12px 0;
  display: grid;
  grid-template-columns: 22px 1fr;
  grid-gap: 8px;
  align-items: center;
  line-height: 1;
}

.product-single__other-text a {
  color: #3279b9;
  text-decoration: underline;
  font-weight: 400;
}

.product-single__other {
  margin: 20px 0 40px;
}

.product-single__other-box {
  margin-top: -1px;
  background-color: #48A23F;
  border: 1px solid #aaa;
}

.product-single__other-box:hover {
  background-color: #181818;
}

.store-items__sort-wrapper {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  /*margin-bottom: 28px;*/
  z-index: 11;
}

@media (max-width: 768px) {
  .store-items__sort-wrapper {
    margin: 16px 0;

  }
}

@media (max-width: 576px) {
  .store-items__sort-wrapper {
    margin: 16px 0 0;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .store .title h1 {
    font-size: 28px;
  }
}

.store-items__sort {
  position: relative;
}

.store-items__sort-btn {
  width: 240px;
  height: 48px;
  font-size: 14px;
  font-weight: 400;
  padding: 4px 28px 4px 40px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: 0.3s ease;
  position: relative;
  background-color: #48A23F;
}

@media (max-width: 768px) {
  .store-items__sort-btn {
    width: 190px;
  }
}

.store-items__sort-btn:before {
  content: "";
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%233279b9' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' class='feather feather-sliders'%3E%3Cline x1='4' y1='21' x2='4' y2='14'/%3E%3Cline x1='4' y1='10' x2='4' y2='3'/%3E%3Cline x1='12' y1='21' x2='12' y2='12'/%3E%3Cline x1='12' y1='8' x2='12' y2='3'/%3E%3Cline x1='20' y1='21' x2='20' y2='16'/%3E%3Cline x1='20' y1='12' x2='20' y2='3'/%3E%3Cline x1='1' y1='14' x2='7' y2='14'/%3E%3Cline x1='9' y1='8' x2='15' y2='8'/%3E%3Cline x1='17' y1='16' x2='23' y2='16'/%3E%3C/svg%3E")
    no-repeat center center / 20px;
}
.store-items__sort-btn:after {
  content: "";
  position: absolute;
  right: 12px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%233279b9' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-chevron-right'%3E%3Cpolyline points='9 18 15 12 9 6'/%3E%3C/svg%3E")
    no-repeat center center / 20px;
  transform: rotate(90deg);
}

.store-items__sort-dropdown {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 47px;
  left: 0;
  width: 100%;
  font-size: 14px;
  font-weight: 300;
  transition: 0.3s ease;
  background-color: #48A23F;
  max-height: 200px;
  overflow: auto;
  padding: 6px 0;
}

.store-items__sort-item {
  padding: 8px 16px;
  cursor: pointer;
  transition: 0.3s ease;
  display: block;
}

.store-items__sort-item:hover {
  background-color: #000;
}

.store-items__sort.active .store-items__sort-dropdown {
  opacity: 1;
  pointer-events: auto;
}

.store-items__sort.active .store-items__sort-btn:after {
  transform: rotate(270deg);
}

.range-slider {
  position: relative;
  width: 100%;
}

.range-slider__top {
  display: grid;
  grid-template-columns: 1fr 20px 1fr;
  grid-gap: 12px;
  position: relative;
  align-items: center;
}
.range-slider__top span {
  text-align: center;
  font-weight: 400;
  font-size: 12px;
}

.range-slider__top .input {
  text-align: center;
  font-size: 14px;
  margin-bottom: 0;
  border: none;
  background: #48A23F;
}

.range-slider-container input {
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  margin: 0;
  overflow: hidden;
  border: 0;
  outline: none;
  background: linear-gradient(#cecece, #cecece) no-repeat center;
  background-size: 100% 6px;
  pointer-events: none;
}
.range-slider-container input:active,
.range-slider-container input:focus {
  outline: none;
}
.range-slider-container input::-webkit-slider-thumb {
  height: 20px;
  width: 8px;
  background-color: #178cc5;
  position: relative;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  pointer-events: all;
  z-index: 2;
}
.range-slider-container input::-moz-range-thumb {
  height: 20px;
  width: 8px;
  background-color: #178cc5;
  position: relative;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  pointer-events: all;
  z-index: 2;
}
.range-slider-container input {
  position: absolute;
}
.range-slider-container input:nth-child(2) {
  background: none;
}

.range-slider-container {
  width: 100%;
  position: relative;
  height: 20px;
  margin: 20px 0;
}

.range-slider-container .indicator {
  position: absolute;
  top: 0;
  height: 6px;
  width: 100%;
  margin: auto;
  background-color: #48A23F;;
  z-index: 1;
  bottom: 0;
}

.store-filters__price-btn {
  width: 100%;
  text-align: center;
  border: none;
}

.store-filters__checkbox {
  display: block;
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  font-size: 13px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin-bottom: 6px;
}

.store-filters__checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.store-filters__checkbox-checkmark {
  position: absolute;
  top: -2px;
  left: 0;
  height: 18px;
  width: 18px;
  border-radius: 3px;
  background-color: #353535;
  transition: 0.3s ease;
}

.store-filters__checkbox input:checked ~ .store-filters__checkbox-checkmark {
  background-color: #48A23F;
  border-color: #48A23F;
}

.store-filters__checkbox-checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.store-filters__checkbox
  input:checked
  ~ .store-filters__checkbox-checkmark:after {
  display: block;
}

.store-filters__checkbox-checkmark:after {
  left: 6px;
  top: 2px;
  width: 3px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: 0.3s ease;
}

.more-choice-slider__wrap {
  padding: 60px 0 0;
}

.brands__wrap {
  padding: 60px 0 40px;
}

.dont-miss-slider__wrap {
  padding: 40px 0 80px;
}

@media (max-width: 992px) {
  .dont-miss-slider__wrap,
  .more-choice-slider__wrap,
  .brands__wrap {
    padding: 40px 0 20px;
  }
}

@media (max-width: 576px) {
  .dont-miss-slider__wrap {
    padding-top: 0;
  }

  .more-choice-slider__wrap .category-title{
    font-size: 18px;
  }

  .incategory .more-choice-slider__wrap .category-title{
    font-size: 16px;
  }

  .incategory .more-choice-slider{
    margin-top: 15px;
  }
}

.more-choice-slider,
.brands-slider {
  margin-top: 30px;
  padding: 10px 0;
}

.category-load-more-buttton {
  width: 100%;
  margin: 40px 0 0;
}

.category-load-more-buttton button{
  max-width: 320px;
  margin: 0 auto;
}

.category-loader {
  width: 100%;
  display: flex;
  justify-content: center;
}

.unslider {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}
.dont-miss-slider-unslider-item {
  flex-direction: column;
  flex-basis: 100%;
}
.dont-miss-slider-unslider-item img {
  width: 100%;
  display: block;
}
@media (min-width: 576px) {
  .dont-miss-slider-unslider-item {
    flex: 1
  }
}

.new-slider-arrows,
.reviews-slider__arrows {
  position: relative;
  width: 100%;
  height: 0;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
  margin-top: -12px;
}
@media (max-width: 576px) {
  .new-slider-arrows,
  .reviews-slider__arrows {
    gap: 4px;
  }
}

.new-slider-arrow {
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  margin: 0;
  transform: none;
  display: block;
  position: relative;
  height: 32px;
  width: 32px;
  color: transparent;
  background-color: transparent;
  border: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='36' viewBox='0 0 24 24' fill='none' stroke='%23eee' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' class='feather feather-chevron-right'%3E%3Cpolyline points='9 18 15 12 9 6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media (max-width: 576px) {
  .new-slider-arrow {
    height: 24px;
    width: 24px;
  }
}
.new-slider-arrow.swiper-button-prev {
  transform: rotate(180deg);
}

.dont-miss-slider__slide,
.more-choice-slider__slide,
.the-best__tab,
.brands-slider__slide {
  transition: 0.3s ease;
  display: flex;
  width: 100%;
}
.brands-slider__slide {
  padding: 12px 40px;
}
@media (max-width: 576px) {
  .brands-slider__slide {
    padding: 12px 20px;
  }
}

.dont-miss-slider__slide img,
.more-choice-slider__slide img,
.brands-slider__slide img {
  width: 100%;
}

.dont-miss-slider__slide:hover,
.more-choice-slider__slide:hover {
  transform: translateY(-6px);
  box-shadow: rgba(100, 100, 111, 0.2) 0px 5px 10px 0px;
}

.best-deals__wrap,
.extra-banners__wrap {
  padding: 80px 0;
  background-color: #fafafa;
}
@media (max-width: 992px) {
  .best-deals__wrap,
  .extra-banners__wrap {
    padding: 60px 0;
  }
}
@media (max-width: 576px) {
  .best-deals__wrap,
  .extra-banners__wrap {
    padding: 40px 0;
  }
}

.best-deals {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 20px;
}
@media (max-width: 992px) {
  .best-deals {
    grid-gap: 12px;
  }
}
@media (max-width: 576px) {
  .best-deals {
    grid-template-columns: repeat(4, 1fr);
  }
}

.best-deals__item {
  width: 100%;
  display: flex;
  grid-column: span 2;
}

.best-deals__item:nth-of-type(4),
.best-deals__item:nth-of-type(5) {
  grid-column: span 3;
}
@media (max-width: 576px) {
  .best-deals__item:nth-of-type(4),
  .best-deals__item:nth-of-type(5) {
    grid-column: span 2;
  }
  .best-deals__item:nth-of-type(3),
  .best-deals__item:nth-of-type(6) {
    grid-column: span 4;
  }
}

.best-deals__item img {
  width: 100%;
}

.product-single__popup {
  position: sticky;
  bottom: -60px;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 1;
  background-color: #000;
  transition: 0.3s ease;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.5);
}
.product-single__popup.visible {
  bottom: 0;
}
@media (max-width: 576px) {
  .product-single__popup {
    height: 46px;
    bottom: -46px;
  }
  .product-single__popup .container {
    max-width: calc(100% - 8px);
  }
}

.product-single__popup-inner {
  display: grid;
  grid-template-columns: 80px 1fr auto 80px;
  grid-gap: 8px;
  align-items: center;
  max-width: 720px;
  margin: 0 auto;
  height: 100%;
}
@media (max-width: 576px) {
  .product-single__popup-inner {
    grid-template-columns: 60px 1fr 60px;
    grid-gap: 12px;
  }
}

.product-single__popup .action {
  padding-top: 5px;
  padding-bottom: 5px;
  margin-left: 10px;
}

.product-single-popup__img {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}
@media (max-width: 576px) {
  .product-single-popup__img {
    padding: 8px;
  }
}

.product-single-popup__img img {
  width: 100%;
  max-height: 36px;
  object-fit: contain;
}
@media (max-width: 576px) {
  .product-single-popup__img img {
    max-height: 28px;
  }
}

.product-single-popup__btn {
  background-color: #48A23F;;
  width: 100%;
  cursor: pointer;
  height: 50px;
  position: relative;
  margin-top: -1px;
  transition: 0.3s ease;
  display: block;
}
.product-single-popup__btn:hover {
  opacity: 0.6;
}
.product-single-popup__btn:before {
  width: 100%;
  height: 100%;
  background-image: url("../dsg/icons/shopping-cart.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
  position: absolute;
  content: "";
}
@media (max-width: 576px) {
  .product-single-popup__btn {
    height: 40px;
  }
}

.product-single-popup__text {
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 400;
}
@media (max-width: 576px) {
  .product-single-popup__text {
    display: none;
  }
}

.product-single-popup__price {
  font-size: 14px;
  font-weight: 400;
}
@media (max-width: 576px) {
  .product-single-popup__price {
    text-align: right;
  }
  
}

.more-choice-slider__slide,
.the-best__tab {
  padding: 5px 12px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
}

.the-best__tab {
  justify-content: center;
}

.more-choice-slider__slide {
  background-color: #48A23F;
  color: #ccc;
  border-radius: 3px;
}

.more-choice-slider .swiper-slide {
  height: auto;
}

.store-items .more-choice-slider__wrap {
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
}

.store-items.incategory .more-choice-slider__wrap {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

@media (max-width: 576px) {
  .store-items .more-choice-slider__wrap {
    padding-left: 0;
    padding-right: 0;
  }
}

.store-items .store-items__sort-wrapper {
  padding-left: 10px;
  padding-right: 10px;
}

.store-items .more-choice-slider__wrap .container {
  width: 100%;
  max-width: 100%;
}

.store-items .more-choice-slider__slide {
  padding: 4px 2px;
  gap: 8px;
  font-size: 14px;
}

.store-items .more-choice-slider__slide img {
  max-width: 44px;
  max-height: 44px;
  object-fit: contain;
}

.product-single__countdown {
  display: grid;
  font-size: 14px;
  grid-template-columns: 1fr auto;
  grid-gap: 16px;
  align-items: center;
  margin-bottom: 24px;
}

.more-choice-slider__wrap .more-choice-slider__slide img{
  width: 50px;
}

@media (max-width: 576px) {
  .more-choice-slider__wrap .more-choice-slider__slide img{
    width: 32px;
  }
}

@media (max-width: 1400px) {
  .product-single__countdown {
    grid-template-columns: 1fr;
  }
}

.product-single__countdown.is-finished {
  display: none;
}

.product-single__countdown-right {
  display: grid;
  grid-template-columns: repeat(4, auto);
  grid-gap: 4px;
  align-items: center;
  color: #ccc;
}

.product-single__countdown-right > div {
  font-size: 10px;
  text-transform: uppercase;
  text-align: center;
  color: black;
  line-height: 1;
}

.product-single__countdown-right div span {
  display: block;
  width: 55px;
  height: 55px;
  font-weight: 600;
  font-size: 36px;
  color: black;
  position: relative;
  background: linear-gradient(180deg, #2F2F2F 0%, #1B1B1B 50%, #363636 50%, #222 100%);
  border: 1px solid black;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-single__countdown-right div span::after,
.product-single__countdown-right div span::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
}

.product-single__countdown-right div span::after{
  top: 26px;
  background: black;
  border-bottom: 1px solid rgba(255,255,255,0.3)
}

@media (max-width: 1400px) {
  .product-single__countdown-right div span {
    font-size: 34px;
  }
}

.product-single__brand {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 24px;
}

.product-single__brand img {
  width: 100px;
  flex-shrink: 0;
  width: auto;
  max-height: 20px;
  display: block;
}

@media (max-width: 576px) {
  .product-single__brand img {
    width: 70px;
  }
}

.product-single__brand-delivery {
  font-weight: 300;
  font-size: 12px;
  margin-left: auto;
  padding: 6px 12px;
  background-color: #9a2e88;
  color: #eee;
  line-height: normal;
  border-radius: 16px;
}

.product-single__in-stock span,
.product-single__out-of-stock span {
  font-size: 12px;
  color: black;
  font-weight: 300;
}

.product-single__rating {
  display: flex;
  align-items: center;
  gap: 17px;
  font-size: 12px;
  line-height: normal;
  margin-bottom: 32px;
}

.product-single__rating-stars {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(5, 20px);
  gap: 2px;
}

.product-single__price-saving {
  font-size: 13px;
  font-weight: 400;
  margin-left: 8px;
}

.product-single__instructions {
  padding: 16px 24px;
  background-color: #221f20;
  font-size: 18px;
  font-weight: 300;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  transition: 0.3s ease;
}

.product-single__instructions:hover {
  color: #48A23F;
}

.product-single__instructions span {
  font-weight: 800;
  font-size: 20px;
}

.product-single__price-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-gap: 20px;
  margin-bottom: 16px;
  padding-top: 20px;
  padding-bottom: 28px;
  border-bottom: 1px solid lightgrey; 
  align-items: center;
  margin-bottom: 28px;
}

@media (max-width: 576px) {
  .product-single__price-wrap {
    padding-top: 8px;
    padding-bottom: 16px;
    margin-bottom: 28px;
  }
}

.product-single__price-tooltip {
  position: relative;
}

.product-single__delivery-tooltip {
  position: relative;
}

.product-single__price-tooltip .open-tooltip {
  cursor: pointer;
  position: relative;
  height: 36px;
  width: 36px;
  border-radius: 100%;
  border: 1px solid #b4b5b4;
  color: #b4b5b4;
  font-weight: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  line-height: 0.6;
  transition: 0.3s ease;
}

.product-single__price-tooltip .open-tooltip svg {
  width: 100%;
}

.product-single__delivery-tooltip .open-tooltip {
  text-decoration: underline;
  position: relative;
  cursor: pointer;
}

.product-single__delivery-tooltip .open-tooltip:hover {
  text-decoration: none;
}

.product-single__price-tooltip-popup,
.product-single__delivery-tooltip-popup {
  position: absolute;
  top: 0;
  right: 32px;
  width: 180px;
  background-color: #48A23F;
  font-size: 12px;
  z-index: 1;
  cursor: auto;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
  transform: translateY(20px);
  padding: 16px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
}

.product-single__delivery-tooltip-popup {
  position: absolute;
  top: 100%;
  right: 0;
  width: 265px;
  padding-right: 28px;
  background-color: #48A23F;
  line-height: 1.4;
}

.product-single__price-tooltip.is-active .product-single__price-tooltip-popup,
.product-single__delivery-tooltip.is-active .product-single__delivery-tooltip-popup {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.product-single__price-tooltip-popup .close-tooltip,
.product-single__delivery-tooltip-popup .close-tooltip {
  position: absolute;
  top: 4px;
  right: 4px;
  height: 20px;
  width: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24' fill='none' stroke='%23eee' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' class='feather feather-x'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
  cursor: pointer;
}

.product-single__gift {
  background: linear-gradient(to right, #CA61BE, #913386);
  display: flex;
  align-items: center;
  padding: 1px;
  margin: 20px 0;
  box-shadow: 0px 0px 20px 0px rgba(240, 125, 250, 0.2);
}

.product-single__gift .inside{
  background: #101010;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 7px;
}

.product-single__gift figure{
  flex-shrink: 0;
  margin-right: 20px;
}

.product-single__gift figure img{
  display: block;
}

.product-single__gift__title{
  padding-bottom: 3px;
}

.product-single__gift__title b{
  font-weight: bold;
}

.product-single__gift__label{
  font-size: 12px;
}

.product-single__user {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.product-single__user-img {
  height: 40px;
  width: 40px;
  border-radius: 100%;
  flex-shrink: 0;
  overflow: hidden;
}
.product-single__user-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.product-single__user-text {
  font-size: 14px;
  line-height: 1.2;
}

.product-single__user-text a {
  text-decoration: underline;
  color: #48A23F;
}

.product-single__bonus {
  background-color: #eee;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.product-single__bonus-img {
  height: 32px;
  width: 32px;
  border-radius: 100%;
  flex-shrink: 0;
  overflow: hidden;
  background-color: black;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-single__bonus-img img {
  height: 90%;
  width: 90%;
  object-fit: contain;
}

.product-single__bonus-text {
  font-size: 12px;
  line-height: 1.2;
}

.product-single__add-immediately {
  width: 100%;
  margin-top: -16px;
  margin-bottom: 28px;
}

.add-to-cart-immediately {
  width: 100%;
  border: none;
  color: #fff;
  position: relative;
  background-color: #48A23F;;
  min-height: 48px;
  font-size: 16px;
}

.add-to-cart-immediately:hover {
  background: linear-gradient(to right, #b63aa1, #0da5da);
}

.add-to-cart-immediately:hover {
     background-position: 0 0;

}


.product-single__accordion {
  background-color: #e6e7e9;
  margin-bottom: 12px;
  border: 1px solid #c1c2c5;
  color: black;
}

.product-single__accordion-title {
  position: relative;
  font-size: 18px;
  font-weight: 300;
  cursor: pointer;
  transition: 0.3s ease;
  padding: 16px 24px;
}
.product-single__accordion-title:after {
  content: "";
  position: absolute;
  pointer-events: none;
  top: 0;
  bottom: 0;
  right: 8px;
  margin: auto;
  height: 28px;
  width: 28px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 24 24' fill='none' stroke='%23c1c2c5' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' class='feather feather-chevron-down'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: 0.3s ease;
}

.product-single__accordion-title:hover {
  background-color: #c1c2c5;
}

.product-single__accordion-text {
  font-size: 14px;
  line-height: 20px;
  display: none;
  padding: 0px 24px 16px 24px;
}

.product-single__accordion.active .product-single__accordion-title:after {
  transform: scaleY(-1);
}

.product-single__lower-price {
  display: flex;
  margin-bottom: 8px;
  min-height: 40px;
  padding: 16px;
  font-size: 13px;
  line-height: 1;
  transition: 0.3s ease;
  position: relative;
  border: 2px solid #48A23F;
  margin-top: 20px;
}

.product-single__lower-price:after {
  content: "";
  position: absolute;
  pointer-events: none;
  top: 0;
  bottom: 0;
  right: 8px;
  margin: auto;
  height: 20px;
  width: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='36' viewBox='0 0 24 24' fill='none' stroke='%23eee' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' class='feather feather-chevron-right'%3E%3Cpolyline points='9 18 15 12 9 6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: 0.3s ease;
}

.product-single__lower-price:hover {
  background-color: #48A23F;
}

.product-single__lower-price:hover:after {
  right: 4px;
}

.sc-product-special {
  padding-top: 40px;
  padding-bottom: 40px;
  border-top: 1px solid #292929;
}

.special-offer {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 20% 10% 20% 10% 30%;
}

@media (max-width: 992px) {
  .special-offer {
    grid-template-columns: 25% 10% 25% 10% 30%;
  }
}
@media (max-width: 768px) {
  .special-offer {
    grid-template-columns: 40% 20% 40%;
  }
}

.special-offer .store-item__bottom {
  cursor: auto;
  gap: 0;
}

.special-offer .store-item {
  width: 100%;
}

.special-offer-plus {
  height: 100%;
  position: relative;
}

.special-offer-plus:before {
  content: "";
  height: 28px;
  width: 4px;
  background-color: #aaa;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.special-offer-plus:after {
  content: "";
  height: 4px;
  width: 28px;
  background-color: #aaa;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
@media (max-width: 768px) {
  .special-offer-plus:before {
    height: 14px;
    width: 2px;
  }

  .special-offer-plus:after {
    height: 2px;
    width: 14px;
  }
}

.special-offer-equals {
  height: 100%;
  position: relative;
}
@media (max-width: 768px) {
  .special-offer-equals {
    grid-column: 1 / 4;
    height: 64px;
  }
}

.special-offer-equals:before {
  content: "";
  height: 4px;
  width: 28px;
  background-color: #aaa;
  position: absolute;
  top: 0;
  bottom: -10px;
  left: 0;
  right: 0;
  margin: auto;
}

.special-offer-equals:after {
  content: "";
  height: 4px;
  width: 28px;
  background-color: #aaa;
  position: absolute;
  top: -10px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
@media (max-width: 768px) {
  .special-offer-equals:before {
    height: 2px;
    width: 14px;
    bottom: -6px;
  }

  .special-offer-equals:after {
    height: 2px;
    width: 14px;
    top: -6px;
  }
}

.special-offer-final {
  display: block;
}
@media (max-width: 768px) {
  .special-offer-final {
    grid-column: 1 / 4;
  }
}

.special-offer-final .add-to-cart {
  width: 100%;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-top: 20px;
}

.special-offer-final__price-final {
  font-size: 24px;
  font-weight: 400;
}

.special-offer-final__price-final__savings {
  font-size: 12px;
  font-weight: 300;
  margin-left: 8px;
}

.special-offer-final__price-slashed {
  opacity: 0.75;
  font-weight: 300;
  font-size: 16px;
  display: block;
}

.special-offer-final__price {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.hero-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: start;
  grid-gap: 28px;
  padding: 40px 0 0;
}

@media (max-width: 992px) {
  .hero-icons {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 12px 28px;
    padding: 28px 0 0;
  }
}

@media (max-width: 576px) {
  .hero-icons {
    grid-gap: 10px;
  }
}

.hero-icon {
  display: grid;
  grid-template-columns: 42px 1fr;
  grid-gap: 12px;
  font-size: 14px;
  align-items: center;
  padding: 15px;
  height: 100%;
  border: 1px solid #48A23F;
}

@media (max-width: 768px) {
  .hero-icon {
    display: grid;
    grid-template-columns: 32px 1fr;
    grid-gap: 8px;
    font-size: 12px;
  }
}
@media (max-width: 576px) {
  .hero-icon {
    grid-template-columns: 1fr;
    grid-gap: 2px;
  }
  .hero-icon__img{
    width: 38px;
    margin-left: 0;
    margin-right: 0;
  }
}

.hero-icon img {
  width: 100%;
}
@media (max-width: 576px) {
  .hero-icon img {
    width: 20px;
  }
}

.hero-icon__text {
  line-height: 1.5;
}

.hero-icon strong {
  font-weight: 600;
}

.extra-banner.without-content {
  /* height: 0;
  padding-bottom: 50%;
  min-height: 0 !important; */
}

.extra-banner.without-content .extra-banner__img {
  width: 100%;
}

.extra-banner.main.without-content {
  /* height: 0;
  padding-bottom: 100%; */
}

.product-single__new-tag {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #221f20;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  z-index: 1;
  padding: 20px 48px;
  border-radius: 0 40px 40px 40px;
}

@media (max-width: 576px) {
  .product-single__new-tag {
    font-size: 12px;
    color: #fff;
    z-index: 1;
    padding: 12px 24px;
  }
}

.product-single__img-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.product-single__img-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
  flex-shrink: 0;
  overflow: auto;
}

@media (max-width: 576px) {
  .product-single__img-gallery {
    gap: 8px;
  }
}

.product-single__img-gallery a {
  flex: 0 0 calc((100% - 140px) / 8) !important;
  max-width: calc((100% - 140px) / 8) !important;
  width: calc((100% - 140px) / 8) !important;
  aspect-ratio: 1 / 1;
  border: 1px solid #ccc;
  position: relative;
  flex: 1 0 10%;
}

.product-single__img-gallery a img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: 80%;
  width: 80%;
  object-fit: contain;
}

.double-slider .store-item {
  width: 100%;
}

.double-slider .swiper-slide {
  height: auto;
}

.double-slider .store-item {
  height: 100% !important;
}

.double-slider {
  padding: 60px 0 0;
}

.double-slider__left {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.double-slider__right {
  width: 100%;
}

.double-slider__tab {
  padding: 12px 16px;
  line-height: 1;
  font-size: 16px;
  font-weight: 400;
  border-bottom: 4px solid transparent;
  transition: 0.3s ease;
  cursor: pointer;
  text-transform: uppercase;
}

.double-slider__tab.active {
  border-bottom: 2px solid #9a2e88;
  color: #fff;
}

.double-slider__item {
  display: none;
}

.double-slider__item.active {
  display: block;
}

.double-slider__arrows {
  width: 100%;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
  padding: 20px 0;
}

@media (max-width: 576px) {
  .double-slider__arrows {
    gap: 4px;
  }

  .double-slider__tab {
    font-size: 14px;
  }
}

.featured {
  padding: 20px 0 40px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-gap: 20px;
}

@media (max-width: 992px) {
  .featured {
    padding: 40px 0;
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
}

.featured-left {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
}
@media (max-width: 992px) {
  .featured-left {
    order: 2;
  }
}

.featured-left .store-item {
  width: 100%;
  height: 100% !important;
}

.featured-right {
  color: #fff;
  /*
  background-image: url(../dsg/header_bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right;
  */
  background: linear-gradient(180deg, rgba(169, 4, 244, 0.30) 0%, rgba(0, 0, 0, 0.30) 100%), radial-gradient(50% 50% at 50% 50%, #CC36FA 0%, #13004A 100%);
  background: linear-gradient(180deg, rgba(169, 4, 244, 0.10) 0%, rgba(0, 0, 0, 0.10) 100%), radial-gradient(99.48% 50% at 50% 50%, #6C2980 0%, #13004A 83.33%);
  background: transparent radial-gradient(closest-side at 50% 50%,#292929 0,#1b1b1b 100%) 0 0 no-repeat padding-box;
  text-align: center;
  padding: 60px 20px;
  border: 1px solid #2e2e2e;
}
@media (max-width: 992px) {
  .featured-right {
    order: 1;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.featured-right .product-single__countdown-right {
  justify-content: center;
}

.featured-right .product-single__countdown {
  grid-template-columns: 1fr;
  grid-gap: 8px;
}
@media (max-width: 992px) {
  .featured-right {
    order: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 40px;
  }
}
@media (max-width: 576px) {
  .featured-right {
    grid-template-columns: 1fr;
    grid-gap: 0;
    padding: 30px 10px;
  }

  .featured-right .category-title {
    margin-bottom: 20px;
    width: 100%;
  }
}

.featured-right .category-title {
  margin: 0 auto;
  margin-bottom: 40px;
  width: 80%;
  font-weight: 600;
  line-height: 1.4;
}

.featured-right .store-item {
  width: 100%;
  text-align: center;
  margin: 0 auto;
  color: black;
  background: transparent !important;
  margin-top: 0px;
  border: 0;
}

.featured-right .store-item:hover .action .btn{
  background: #9a2e88;
  border-color: #9a2e88;
}

.featured-right .store-item__bottom {
  padding: 0;
  padding-top: 10px;
}

.featured-right .store-item__price {
  font-size: 20px;
  flex-direction: row-reverse;
  line-height: 1;
  justify-content: center;
  padding-top: 10px;
}

.featured-right .store-item__price span {
  font-size: 20px;
  margin-right: 5px;
}

.featured-right .store-item__shipping {
  font-size: 12px;
  margin-left: auto;
  margin-right: auto;
  padding: 6px 12px;
  background-color: #9a2e88;
  color: #eee;
  line-height: normal;
  border-radius: 16px;
}

.featured-right .action span {
  max-width: 240px;
  width: 100%;
  margin-top: 30px;
  font-size: 16px;
  font-weight: 600;
}

@media (max-width: 992px) {
  .featured-right .store-item {
    max-width: 100%;
    margin-top: 0;
  }
  .featured-right .store-item__bottom {
    padding-top: 20px;
  }

  .featured-right .store-item__shipping {
    font-size: 18px;
  }


}

.featured-right .store-item__title {
  text-align: center;
  font-size: 24px;
  line-height: 1.5;
  font-weight: 600;
}
@media (max-width: 992px) {
  .featured-right .store-item__title {
    font-size: 20px;
  }
}

.store-item__shipping {
  font-size: 13px;
}

.the-best {
  padding: 60px 0 0;
}

.the-best .category-title{
  padding-bottom: 10px;
}

.the-best__top {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

@media (max-width: 992px) {
  .the-best__top {
    margin-bottom: 10px;
  }
.the-best .category-title{
  padding-bottom: 20px;
}
}

.the-best__right {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 992px) {
  .the-best__right {
    justify-content: flex-end;
  }
}

.the-best__btns {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 992px) {
  .the-best__btns {
    flex-wrap: wrap;
  }
}

.the-best__tab {
  width: 120px;
  height: 44px;
  cursor: pointer;
}
@media (max-width: 1200px) {
  .the-best__tab {
    width: auto;
    padding: 10px 15px;
  }
}

.the-best__tab.active {
  background: #48A23F;
}

.the-best__tab img {
  opacity: 0.4;
  transition: 0.3s ease;
  max-height: 20px;
  width: auto;
  display: block;
}

.the-best__tab:hover img,
.the-best__tab.active img {
  opacity: 1;
}

.the-best__sliders {
  padding: 20px;
  background-color: #48A23F;
}

@media (max-width: 768px) {
  .the-best__sliders {
    padding: 0;
    background: transparent;
  }

  .the-best__top {
    justify-content: flex-start;
  }
}

@media (max-width: 576px) {
  .the-best__tab {
    padding-top: 12px;
    padding-bottom: 12px;
    height: auto;
  }

  .the-best__tab img {
    max-height: 14px;
  }

  .the-best__sliders .btn{
    padding: 8px 18px;
  }
}

.sc-the-best {
  /*
  background-color: #48A23F;
  */
}

.the-best-item {
  display: none;
}

@media (max-width: 768px) {
  .the-best-item {
    flex-direction: column-reverse;
  }
}

.the-best-item.active {
  display: block;
}

.the-best-item__left {
  width: 33%;
  padding: 40px;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 1200px) {
  .the-best-item__left {
    width: 40%;
    padding: 40px 20px;
  }
}
@media (max-width: 768px) {
  .the-best-item__left {
    width: 100%;
    padding: 0;
  }
}

.the-best-item__left .btn {
  margin-top: auto;
  padding: 12px 20px;
}

.the-best-item__logo {
  margin-bottom: 12px;
}

.the-best-item__logo img {
  height: 20px;
}

.the-best-item .category-title {
  margin-bottom: 20px;
}

.the-best-item__text {
  margin-bottom: 40px;
  display: none;
}
@media (max-width: 1200px) {
  .the-best-item__text {
    margin-bottom: 20px;
  }
}

.the-best-item__right {
  width: 67%;
  padding: 30px 0 30px;
}
@media (max-width: 1200px) {
  .the-best-item__right {
    width: 60%;
    padding: 0 0 20px 0;
  }
}
@media (max-width: 768px) {
  .the-best-item__right {
    width: 100%;
  }
}

.the-best-item__right .swiper {
  padding-right: 20px;
}
@media (max-width: 992px) {
  .the-best-item__right .swiper {
    padding-right: 0;
  }
}

.the-best-item .store-item {
  width: 100%;
  background-color: #000;
}

.the-best-item .swiper-slide {
  width: 30%;
}
@media (max-width: 1200px) {
  .the-best-item .swiper-slide {
    width: 44%;
  }
}
@media (max-width: 992px) {
  .the-best-item .swiper-slide {
    width: 60%;
  }
}

.the-best-slider__arrows {
  position: relative;
  width: 100%;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
}

.the-best-slider__arrows_arrows {
  display: flex;
  align-items: center;
}
@media (max-width: 576px) {
  .the-best-slider__arrows {
    margin-top: 15px;
  }
}

.sc-grid {
  padding: 60px 0 0;
}

.sc-double-slider .double-slider {
  padding-top: 30px;
}

@media (max-width: 576px) {
  .sc-grid,
  .double-slider,
  .sc-featured,
  .featured,
  .the-best {
    padding: 20px 0;
  }

  .sc-double-slider {
    margin: 40px 0 30px !important;
  }

  .sc-double-slider .double-slider{
    padding: 20px 0 0 !important;
  }
}

.grid__content {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  grid-gap: 0;
}

@media (max-width: 768px) {
  .grid__content {
    margin-top: 20px;
    grid-template-columns: 1fr;
    grid-gap: 12px;
  }
}

.grid__item {
  width: 100%;
  padding-bottom: 50%;
  position: relative;
}
@media (max-width: 768px) {
  .grid__item {
    padding-bottom: 0%;
    grid-row: auto !important;
    grid-column: auto !important;
  }
}

.grid__item.row-2 {
  grid-row: span 2;
}

.grid__item.col-2 {
  grid-column: span 2;
}

.grid__item.col-3 {
  grid-column: span 3;
}

.grid__item.col-4 {
  grid-column: span 4;
}

.grid__item.col-5 {
  grid-column: span 5;
}

.grid__item.col-6 {
  grid-column: span 6;
}

.grid__item.col-7 {
  grid-column: span 7;
}

.grid__item.col-8 {
  grid-column: span 8;
}

.grid__item.col-9 {
  grid-column: span 9;
}

.grid__item.col-10 {
  grid-column: span 10;
}

.grid__item.col-11 {
  grid-column: span 11;
}

.grid__item.col-12 {
  grid-column: span 12;
}

.grid__item img {
  position: absolute;
  top: 10px;
  left: 10px;
  display: block;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  object-fit: cover;
}
@media (max-width: 1200px) {
  .grid__item img {
    top: 5px;
    left: 5px;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
  }
}
@media (max-width: 768px) {
  .grid__item img {
    position: relative;
    height: auto;
    width: auto;
    top: 0;
    left: 0;
  }
}

.homepage-grid-stack-1 .items{
  display: flex;
}

.homepage-grid-stack-1 .item{
  margin-bottom: 20px;
}

.homepage-grid-stack-1 .item img{
  display: block;
  width: 100%;
}

.homepage-grid-stack-1 .item-1,
.homepage-grid-stack-1 .item-4  {
  width: 979px;
}

.homepage-grid-stack-1 .item-2,
.homepage-grid-stack-1 .item-3 {
  width: 460px;
}

.homepage-grid-stack-1 .item-1,
.homepage-grid-stack-1 .item-3  {
 margin-right: 20px;
}

@media (max-width: 576px) {
  .homepage-grid-stack-1 .items {
    display: block;
  }

  .homepage-grid-stack-1 .item {
    width: 100% !important;
    display: block;
    margin-bottom: 15px;
  }
}

.reviews {
  padding: 60px 0;
  overflow: hidden;
}

.reviews-item {
  background-color: #121212;
  padding: 40px 24px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: 0.3s ease;
}
@media (max-width: 992px) {
  .reviews-item {
    padding: 28px 20px;
    border-radius: 8px;
  }
}

.reviews-item:hover {
  transform: translateY(-8px);
  box-shadow: rgba(100, 100, 111, 0.2) 0px 5px 10px 0px;
}

.sc-home-tabs-slider {
  padding: 100px 0 60px;
}

.sc-home-category-slider-1 {
  padding: 100px 0 0;
}

.sc-home-category-slider-1 .category-header{
  padding-bottom: 30px;
}

.sc-home-category-slider-1__banner {
  margin-top: 40px;
  display: block;
}

@media (max-width: 576px) {
  .sc-home-tabs-slider {
    padding: 20px 0 0;
  }

  .sc-home-category-slider-1 {
    padding: 60px 0 0;
  }

  .sc-home-category-slider-2 {
    margin-top: 0 !important;
  }
}

.reviews .swiper {
  overflow: visible;
}

.reviews .swiper-slide {
  height: auto;
}

.reviews .swiper-slide-next + .swiper-slide + .swiper-slide {
  opacity: 0.4;
  transition: 0.3s ease;
}
@media (max-width: 992px) {
  .reviews .swiper-slide-next + .swiper-slide + .swiper-slide {
    opacity: 1;
    transition: 0.3s ease;
  }
  .reviews .swiper-slide-next + .swiper-slide {
    opacity: 0.4;
    transition: 0.3s ease;
  }
}

.reviews-item__image {
  margin-bottom: 24px;
  width: 100%;
  padding-bottom: 66%;
  position: relative;
}

.reviews-item__image img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  object-fit: cover;
}

.reviews-item__rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 12px;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .reviews-item__rating {
    gap: 8px;
    font-size: 10px;
  }
}

.reviews-item__rating img {
  width: 18px;
}
@media (max-width: 992px) {
  .reviews-item__rating img {
    width: 16px;
  }
}

.reviews-item__text {
  font-size: 16px;
  line-height: 1.6;
  font-style: italic;
  padding: 0 28px;
  font-weight: 400;
  position: relative;
  margin-top: 32px;
}
@media (max-width: 992px) {
  .reviews-item__text {
    font-size: 14px;
    padding: 0 20px;
    margin-top: 28px;
  }
}

.reviews-item__text:before,
.reviews-item__text:after {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  display: block;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.0' width='512.000000pt' height='512.000000pt' viewBox='0 0 512.000000 512.000000' preserveAspectRatio='xMidYMid meet'%3E%3Cg transform='translate(0.000000,512.000000) scale(0.100000,-0.100000)' fill='%23eee' stroke='none'%3E%3Cpath d='M1080 4235 c-552 -104 -943 -597 -916 -1155 13 -273 117 -516 307 -714 140 -147 302 -246 486 -299 46 -13 85 -26 88 -29 9 -9 -49 -140 -111 -252 -81 -145 -169 -273 -298 -436 -98 -122 -117 -152 -128 -198 -23 -103 26 -204 121 -254 76 -40 131 -38 275 12 733 253 1231 784 1415 1511 61 242 75 358 76 624 0 185 -3 244 -17 302 -106 432 -408 757 -810 869 -78 22 -119 26 -253 30 -111 2 -183 -1 -235 -11z'/%3E%3Cpath d='M3611 4229 c-367 -77 -675 -333 -811 -673 -64 -160 -74 -213 -74 -421 -1 -178 1 -196 27 -289 107 -384 412 -691 780 -786 59 -15 71 -21 69 -37 -2 -10 -32 -77 -68 -149 -80 -162 -213 -365 -340 -520 -110 -134 -133 -178 -134 -252 0 -65 17 -108 65 -160 81 -91 173 -93 390 -12 910 339 1438 1120 1439 2130 0 208 -8 264 -59 416 -131 390 -463 684 -858 759 -113 21 -308 19 -426 -6z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.3;
  transform: rotate(180deg);
  top: -20px;
  left: 0;
}

.reviews-item__text:after {
  transform: rotate(0deg);
  top: auto;
  left: auto;
  bottom: -20px;
  right: 0;
}

.reviews-slider {
  margin-top: 40px;
}

.ambassador {
  padding: 60px 0;
}
@media (max-width: 768px) {
  .ambassador {
    padding: 40px 0;
  }
}

.ambassador-intro {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #eee;
}
@media (max-width: 576px) {
  .ambassador-intro {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}

.ambassador-intro__text {
  margin-top: 20px;
  max-width: 66%;
}
@media (max-width: 992px) {
  .ambassador-intro__text {
    max-width: 75%;
  }
}
@media (max-width: 768px) {
  .ambassador-intro__text {
    max-width: 95%;
  }
}

.ambassador-content {
  display: grid;
  grid-template-columns: 1fr 3fr;
  grid-gap: 40px;
}
@media (max-width: 992px) {
  .ambassador-content {
    grid-template-columns: 1fr 2fr;
    grid-gap: 20px;
  }
}
@media (max-width: 768px) {
  .ambassador-content {
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
}


@media (max-width: 768px) {
  .ambassador-img img {
    max-height: 300px;
  }
}

.ambassador-desc__title h2 {
  font-weight: 500;
  margin-bottom: 20px;
  color: #178cc5;
}

.ambassador-desc__socials {
  display: flex;
  align-items: center;
  margin-top: 40px;
  gap: 4px 8px;
  flex-wrap: wrap;
}

.ambassador-social {
  display: flex;
  height: 40px;
  width: 40px;
  border-radius: 100%;
  padding: 9px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  background-color: #22a1d2;
  transition: 0.3s ease;
}

.ambassador-social:hover {
  transform: translateY(-4px);
  box-shadow: rgba(100, 100, 111, 0.2) 0px 5px 10px 0px;
}

.ambassador__feed {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 8px;
}
@media (max-width: 992px) {
  .ambassador__feed {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 8px;
  }
}

.ambassador__feed-item {
  display: block;
  width: 100%;
  padding-bottom: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  transition: 0.3s ease;
}

.ambassador__feed-item img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  transition: 0.5s ease;
  object-fit: cover;
}

.ambassador__feed-item:hover {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 5px 10px 0px;
}

.ambassador__feed-item:hover img {
  transform: scale(1.1);
}

.featured-left .swiper-slide {
  padding: 10px;
  padding: 0;
}

.sc-product-similar .store-item {
  padding: 10px;
}

.sc-product-similar .category-title {
  padding-bottom: 80px;
}
@media (max-width: 576px) {
  .sc-product-similar .category-title {
    padding-bottom: 28px;
  }
}


select.minimal {
  border: none;
  width: 100%;
  margin-bottom: 20px;
}

.sc-checkout {
  padding: 20px 0 60px;
}

.header-checkout {
  background: #1F1F1F;
  padding: 18px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-checkout .back{
  display: inline-flex;
  align-items: center;
  line-height: 1;
  font-size: 14px;
  color: #b8b8b8;
  transition: 0.3s;
}

.header-checkout .back:hover{
  color: #d1d1d1;
}

.header-checkout .back svg{
  width: 16px;
  margin-right: 6px;
}

.header-checkout .logo{
  margin: 0 !important;
  max-width: none !important;
}

.header-checkout .logo svg{
  width: 220px;
}

.header-checkout .button-help{
  display: inline-flex;
  align-items: center;
  line-height: 1;
  font-size: 14px;
  padding: 8px 16px 8px 13px;
  border: 0;
  outline: none;
  border-radius: 0;
  background: rgba(255,255,255,0.1);
  color: #b8b8b8;
  cursor: pointer;
  transition: 0.3s;
  font-family: "Titillium Web", sans-serif;
}

.header-checkout .button-help:hover{
  background: rgba(255,255,255,0.15);
}

.header-checkout .button-help svg{
  width: 26px;
  margin-right: 6px;
}

.header-checkout__info .info-modal{
  max-width: 320px;
  padding: 30px;
}

.header-checkout__info .info-modal__content{
  display: block;
}

.header-checkout__info h3{
  font-size: 22px;
  font-weight: 600;
  padding-bottom: 16px;
}

.header-checkout__info span, 
.header-checkout__info a{
  font-size: 16px;
  color: #b8b8b8;
  font-weight: 400;
}

.header-checkout__info span {
  display: block;
  padding: 0 0 6px;
}

.header-checkout__info .info-modal__item:last-child {
  margin-bottom: 0;
}

.checkout-page {
  background: #F0F0F0;
  padding-top: 0;
}

.checkout-page .checkout{
  background: #F0F0F0;
  max-width: 1024px;
  margin: 0 auto;
}

.checkout-step{
  background: #fff;
  padding: 0 80px 80px;
  box-shadow: 0px 4px 70px 0px rgba(0, 0, 0, 0.10);
}

.checkout-step.checkout-3 {
  padding-bottom: 30px;
}

.checkout-step.checkout-5 {
  padding-bottom: 40px;
}

.checkout-header {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  color: #919191;
  margin-bottom: 45px;
  position: relative;
}

.checkout-header:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 100%;
  height: 1px;
  background: #D9D9D9;
}

.checkout-header__item {
  display: flex;
  line-height: 1;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.checkout-header__item:first-child {
  justify-content: flex-start;
}

.checkout-header__item:last-child {
  justify-content: flex-end;
}

.checkout-header__item.active {
  color: #925F8A;
}

.checkout-header__item__inside {
  display: flex;
  line-height: 1;
  justify-content: center;
  position: relative;
  z-index: 1;
  background: #F0F0F0;
  padding-left: 30px;
  padding-right: 30px;
}

.checkout-header__item:first-child .checkout-header__item__inside {
  padding-left: 0;
}

.checkout-header__item:last-child .checkout-header__item__inside {
  padding-right: 0;
}

.checkout-header__item-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #D0D0D0;
  color: black;
  font-size: 14px;
  line-height: 1;
  flex-shrink: 0;
}

.checkout-header__item.active .checkout-header__item-icon {
  background: rgba(154, 46, 136, 0.52);
}

.checkout-header__item.done .checkout-header__item-icon {
  text-indent: -999999px;
}

.checkout-header__item-text {
  padding-top: 7px;
  padding-left: 14px;
}

.checkout-step__head{
  background: #F8F8F8;
  padding: 30px 80px;
  margin: 0 -80px 60px;
  border-bottom: 1px solid #E7E7E7;
}

.checkout-step__head h1 {
  font-size: 26px;
  color: black;
  font-weight: 600;
}

.checkout-step .widget-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 0px;
}

.checkout-step .widget {
  padding-bottom: 30px;
}

.checkout-step .widget label {
  font-size: 15px;
  font-weight: 600;
  color: #5D5D5D;
  padding-bottom: 5px;
  display: block;
}

.checkout-step .widget label span.mandatory{
  color: #FF0000;
}

.checkout-step input{
  height: 56px;
  padding: 20px;
  font-size: 16px;
  color: black;
  background: white;
  border: 2px solid #CACACA;
  transition: 0.3s;
  margin: 0;
}

.checkout-step input.error{
  background: #fef9f9;
  border: 2px solid #FF0000;
}

.checkout-step input:focus{
  border-color: #E2E2E2;
}

.checkout-step input::placeholder {
  color: #8B8B8B;
}

.widget-checkbox .field{
  display: inline-flex;
}

.widget-checkbox .checkbox{
  position: relative;
}

.widget-checkbox input{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  cursor: pointer;
}

.widget-checkbox .checkmark{
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border: 2px solid #CACACA;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  cursor: pointer;
}

.widget-checkbox .checkmark svg{
  width: 10px;
  color: #fff;
  margin-bottom: 1px;
  opacity: 0;
  transition: 0.3s;
}

.widget-checkbox input:checked ~ .checkmark{
  border-color: #178cc5;
  background: #178cc5;
}

.widget-checkbox input:checked ~ .checkmark svg{
  opacity: 1;
}

.widget-checkbox label{
  padding-left: 10px;
  padding-top: 4px;
  margin-bottom: 0;
}

#delivery_other,
#receipt-company {
  padding: 30px 30px 0;
  background-color: #F8F8F8;
}

#receipt-company {
 margin-bottom: 30px;
 margin-top: -20px;
}

.checkout__btns {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 40px;
}

.checkout-step.checkout-5 .checkout__btns{
  margin-top: 0;
}

.checkout__btns .next,
.checkout__btns .finish-order{
  width: 100%;
  height: 64px;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.checkout__btns .prev{
  height: auto;
  padding: 0;
  border: 0;
  text-align: center;
  font-size: 16px;
  margin-top: 20px;
  transition: 0.3s;
  font-weight: 400;
  color: #a5a5a5;
  background: transparent;
}

.checkout__btns .prev:hover{
  color: black;
  background: transparent;
}

.checkout__btns .next svg{
  width: 20px;
  margin-left: 8px;
}

.checkout-step__payment-item {
  background: #F8F8F8;
  padding: 20px;
  margin-bottom: 10px;
}

.checkout-step__radio {
  display: flex;
}

.checkout-step__radio .radio{
  position: relative;
}

.checkout-step__radio .radio input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  cursor: pointer;
}

.checkout-step__radio .checkmark {
  display: block;
  height: 24px;
  width: 24px;
  border-radius: 100%;
  border: 2px solid #CACACA;
  flex-shrink: 0;
  cursor: pointer;
}

.checkout-step__radio .radio .checkmark:before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  top: 6px;
  left: 6px;
  margin: auto;
  border-radius: 50%;
  pointer-events: none;
  transition: 0.3s;
}

.checkout-step__radio .radio input:checked ~ .checkmark {
  border-color: #48A23F;
}

.checkout-step__radio .radio input:checked ~ .checkmark:before {
  background-color: #48A23F;
}

.checkout-step__radio-text {
  font-size: 14px;
  padding-left: 15px;
  cursor: pointer;
  color: #898989;
}

.checkout-step__radio-text span {
  font-size: 16px;
  display: block;
  margin-bottom: 4px;
  color: black;
  font-weight: 600;
}

.checkout-step__payment-details {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #dedede;
  padding: 0 20px 20px;
  color: #8d8d8d;
}

.payment-detail {
  width: 50%;
  padding-right: 20px;
  padding-top: 20px;
}
@media (max-width: 576px) {
  .payment-detail {
    width: 100%;
    padding-right: 0;
  }
}
.payment-detail.contact {
  width: 100%;
  padding-right: 0;
  padding-bottom: 28px;
  border-bottom: 1px solid #dedede;
}

.payment-detail span {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 8px;
  display: block;
  color: #616161;
}

.payment-detail ul {
  display: block;
  list-style: none;
  font-size: 15px;
}
.payment-detail ul li {
  display: flex;
}
.payment-detail ul li span {
  font-size: 15px;
  margin-right: 8px;
  margin-bottom: 4px;
}
.payment-detail ul li:last-child span {
  margin-bottom: 0;
}
.payment-detail ul li a:hover {
  text-decoration: underline;
}

.checkout-step__summary-box {
  margin-top: 30px;
}

.checkout-step__items {
  margin-bottom: 20px;
}

.checkout-step .dropdown-item {
  border: none;
  border-bottom: 1px solid #e6e6e6;
  padding: 15px 0;
  color: #949494;
}

.checkout-step .dropdown-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.thank-you {
  text-align: center;
  padding: 100px 0 200px;
}

@media (max-width: 576px) {
  .thank-you {
    padding: 80px 0 160px;
  }
}

.thank-you__icon {
  width: 110px;
  margin: 0 auto;
  margin-bottom: 40px;
}

@media (max-width: 576px) {
  .thank-you__icon {
    width: 80px;
    margin-bottom: 40px;
  }
}

.thank-you__text {
  margin-bottom: 80px;
  font-weight: 300;
}

.thank-you__text h1 {
  text-align: center;
  color: black;
  font-weight: 600;
  padding-bottom: 10px;
}

.thank-you-reg-box {
  display: flex;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  max-width: 1100px;
}

.thank-you__reg-box__left {
  max-width: 580px;
  margin-right: 60px;
  font-size: 18px;
  padding-top: 20px;
  line-height: 1.4;
}

.thank-you__reg-box__left > *{
  padding-bottom: 20px;
}

.thank-you__reg-box__left h3{
  font-size: 24px;
  font-weight: 600;
  color: black;
}

.thank-you__reg-box__left h3 strong{
  font-weight: 700;
}

.thank-you__reg-box__left ul{
  list-style: none;
}

.thank-you__reg-box__left li{
  font-weight: 600;
  padding-bottom: 5px;
}

.thank-you__reg-box__right {
  flex: 1 0 auto;
  background: #48A23F;
  padding: 30px;
}

.thank-you__reg-box__right h3{
  padding-bottom: 30px;
  font-size: 26px;
  font-weight: 600;
}

.thank-you__reg-box__right h4{
  font-size: 14px;
  font-weight: 400;
  margin: -10px 0 10px;
}

.thank-you__reg-box__right .widget-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 0px;
}

.thank-you__reg-box__right .widget {
  padding-bottom: 30px;
}

.thank-you__reg-box__right .widget label {
  font-size: 15px;
  font-weight: 600;
  color: #ccc;
  padding-bottom: 5px;
  display: block;
}

.thank-you__reg-box__right .widget label span.mandatory{
  color: #FF0000;
}

.thank-you__reg-box__right input{
  height: 50px;
  padding: 20px;
  width: 100%;
  font-size: 16px;
  color: black;
  background: white;
  border: 0;
  transition: 0.3s;
  margin: 0;
}

.thank-you__reg-box__right button{
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  height: 50px;
}

@media (max-width: 576px) {
  .checkout-step .dropdown-item {
    display: block;
  }
}

.checkout-step .dropdown-item__img {
  margin-right: 32px;
  width: 100px;
  height: 100px;
}

.checkout-step .dropdown-item__amount,
.checkout-step .dropdown-item__price {
  width: auto;
}

.checkout-step .dropdown-item__name{
  color: black;
  font-size: 18px;
  font-weight: 600;
  width: 420px;
}

.checkout-step .dropdown-item__amount,
.checkout-step .dropdown-item__price {
  font-size: 16px;
  font-weight: 600;
}

.footer-checkout {
  padding-top: 40px;
  text-align: center;
  font-size: 14px;
  color: #8d8d8d;
  padding-bottom: 20px;
}

.footer-checkout__bottom ul{
  display: flex;
  justify-content: center;
  list-style: none;
  padding-top: 10px;
}

.footer-checkout__bottom ul li{
  padding: 5px;
}

@media (max-width: 576px) {
  .checkout-step .dropdown-item__name,
  .checkout-step .dropdown-item__amount,
  .checkout-step .dropdown-item__price {
    display: block;
    margin-top: 4px;
    width: auto;
  }

  .checkout-step .dropdown-item__amount {
    font-size: 14px;
  }

  .checkout-step .dropdown-item__price {
    font-size: 16px;
  }
}

.checkout-step .dropdown-item__price {
  margin-left: auto;
}

.checkout-step__info {
  background: #F8F8F8;
  padding: 20px;
  color: #949494;
  margin-bottom: 30px;
}

.checkout-step__info-item {
  display: flex;
  justify-content: flex-end;
  padding: 7px 0;
  font-size: 15px;
}

.checkout-step__info-item.total {
  font-size: 16px;
  font-weight: 600;
  color: black;
}

.checkout-step__info-item span:last-child {
  width: 120px;
  text-align: right;
}

@media (max-width: 1200px) {
  .sucheckout-step__infomary-item {
    padding: 20px 0;
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .checkout-step__info-item {
    padding: 16px 0 10px;
    font-size: 13px;
  }

  .checkout-step__info-item span {
    margin-bottom: 8px;
  }
}

@media (max-width: 768px) {
  .header-checkout {
    padding: 18px 20px;
  }

  .header-checkout .back {
    display: none;
  }

  .header-checkout .logo svg{
    width: 150px;
  }

  .header-checkout .button-help {
    padding: 0;
    background: transparent;
  }

  .checkout-header{
    margin-bottom: 30px;
  }

  .checkout-header:before{
    bottom: auto;
    top: 11px;
  }

  .checkout-header__item__inside {
    flex-direction: column;
    padding-right: 10px;
    padding-left: 10px;
    align-items: center;
  }

  .checkout-header__item-icon {
    width: 20px;
    height: 20px;
    font-size: 10px;
    padding-top: 1px;
  }

  .checkout-header__item-text {
    padding-left: 0;
    font-size: 12px;
  }

  .checkout-header__item:first-child .checkout-header__item__inside{
    align-items: flex-start;
  }

  .checkout-header__item:last-child .checkout-header__item__inside{
    align-items: flex-end;
  }

  .checkout-step {
    padding: 0 20px 30px;
    margin-left: -10px;
    margin-right: -10px;
    width: auto;
  }

  .checkout-step__head {
    margin-left: -20px;
    margin-right: -20px;
    padding: 20px 20px;
    margin-bottom: 36px;
  }

  .checkout-step__head h1{
    font-size: 20px;
  }

  .checkout-step .widget-group {
    display: block;
  }

  .thank-you-reg-box {
    display: block;
  }

  .thank-you__reg-box__left {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .thank-you__text {
    margin-bottom: 40px;
  }

  .thank-you__reg-box__left {
    font-size: 16px;
    padding-bottom: 20px;
  }

  .thank-you__reg-box__left h3 {
    font-size: 20px;
  }

  .thank-you__reg-box__right .widget-group {
    display: block;
  }
}

.image-show-desktop {
  display: block !important;
}

.image-show-mobile {
  display: none !important;
}

@media (max-width: 576px) {
  .image-show-desktop {
    display: none !important;
  }

  .image-show-mobile {
    display: block !important;
  }
}

@media (max-width: 768px) {
  .double-slider__left,
  .the-best__btns {
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    display: block;
  }

  .double-slider__left > *,
  .the-best__btns > * {
    display: inline-block;
  }

  .the-best__right {
    margin-bottom: 10px;
    display: block !important;
  }

  .sc-double-slider .category-header,
  .sc-featured .category-header{
    padding-right: 0;
  }
}

.homepage-domzzy-banner a{
    max-width: 1920px;
    display: block;
    width: 100%;
    margin: 0 auto;
}

#mobile-filtes-trigger {
  position: fixed;
  z-index: 20;
  bottom: 20px;
  right: 20px;
  padding: 9px 16px;
  background: white;
  color: black;
  border-radius: 20px;
  border: 0;
  outline: none;
  display: flex;
  align-items: center;
  line-height: 1;
  font-weight: 600;
  font-size: 14px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 4px, rgba(0, 0, 0, 0.2) 0px 3px 12px 2px;
  display: none;
}

#mobile-filtes-trigger svg {
  width: 20px;
  margin-right: 4px;
}

.store-filters__mobile-header__title {
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  display: none;
}

.store-filters__mobile-header__title button{
  width: 18px;
  height: 18px;
  border: 0;
  outline: none;
  background: transparent;
}

.store-filters__category .store-filters__category-mobile-title{
  position: absolute;
  left: 0;
  top: 10px;
  font-size: 14px;
  color: #959595;
  display: none;
}

.store-items__sort__mobile {
  display: none;
}

@media (max-width: 992px) {
  #mobile-filtes-trigger {
    display: flex;
  }

  .store-filters__mobile-header__title {
    display: flex;
  }

  .store-filters {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    background: black;
    padding: 20px;
    display: none;
  }

  .store-filters.open-mobile,
  .store-filters__category .store-filters__category-mobile-title {
    display: block;
  }

  .store-filters__category {
    position: relative;
  }

  .store-filters__category .store-filters__title{
    padding-top: 38px;
  }

  .store-items__sort__desktop {
    display: none;
  }

  .store-items__sort__mobile {
    display: block;
    width: 100%;
    margin-bottom: 20px;
    z-index: 1;
  }

  .store-items__sort__mobile .store-items__sort-btn{
    width: 100%;
  }
}