/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
    margin: 0;
    padding: 0;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

a{
    text-decoration: none;
}

button {
	background-color: transparent;
	border: 0;
	outline: 0;
}

input {
	background-color: white;
	padding: 0 0 0 15px;
	border-radius: 0;
}

:root {
    /* ---------------- B2b THEME VARİABLE------------ */
    --theme-color-primary: #650e6d;
    --theme-color-secondary: #f0e9df;
    --theme-color-white: #ffffff;
    --theme-color-black: #000000;
    /* ---------------- COLORS----------------------- */
    --default-theme-dark-blue: #26292D;
    --default-color-black: #000;
    --default-color-black2: #111;
    --default-theme-light-blue: #627B97;
    --default-theme-white: #fff;
    --default-theme-off-white: #f7f7f7;
    --default-theme-off-white2: #e9e9e9;
    --default--theme-grey-bg: #F5F5F5;
    --header-bg-color: #f7f7f7;
    --body-bg-color: #fff;
    --body-bg-altenative: #f4f6f8;
    --product-sale-badge-bg:#e90808;
    /* ---------------- DARK MOOD COLORS-------------- */
    --default-theme-dark-body-bg: #2D3133;
    --default-theme-dark-section-bg: #363C40;
    --default-themes-dark-purple: #3c6382;
    --text-dark-white-color: #ffffffa8;
    --table-dark-bg: #3a4249;
    --footer-dark-bg-color: #111111;
    /* ---------------- TEXT-------------------------- */
    --text-white-color: #fff;
    --text-black-color: #111;
    /* ---------------- BORDER------------------------ */
    --header-border-color: #ffffff52;
    --header-menu-border-color: #e9e9e9;
    --search-border-color: #00000026;
    /* ---------------- TOPBAR------------------------ */
    --topbar-background-color: #fff;
    --header-top-bg: #f1f1f1;
    /* ---------------- BUTTON STYLE------------------ */
    --button-border-color: #3045a1;
    --button-text-color: #3045a1;
    /* ---------------- FOOTER------------------------ */
    --footer-bg-color: #f9f9f9;
    --footer-bg-color2: #f5f5f5;
    --footer-title-color: #001747;
    --footer-text-color: #001747;
    /* ---------------- ICON-------------------------- */
    --social-media-icon-bg: #ececee;
    --hover-social-media-bg: #00164744;
}

@font-face {
  font-family: 'Roboto';
  src: url('../content/fonts/roboto/Roboto-Bold.woff2') format('woff2'),
       url('../content/fonts/roboto/Roboto-BoldItalic.woff') format('woff'),
       url('../content/fonts/roboto/Roboto-Bold.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}


:root {

  /* ---------------- FONT FAMILY-------------------- */
  --font-family-body: 'Roboto', sans-serif;

  /* ---------------- FONT-------------------------- */
  --default-font-size: 1rem;

  /* ---------------- FONT WEIGHT------------------- */
  --font-w-800: 800;
  --font-w-700: 700;
  --font-w-600: 600;
  --font-w-500: 500;
  --font-w-400: 400;
  --font-w-300: 300;
  --font-w-200: 200;

  /* ---------------- FONT-SIZE---------------------- */
  --font-sm: 10px;
  --font-med: 18px;
  --font-lg: 30px;
  --font-xlg: 3.25rem;

  /* ---------------- BORDER RADIUS----------------- */
  --border-radius-30: 30px;
  --border-radius-15: 15px;
  --border-radius-5: 5px;

}

/* -------------------ANIMASTION-------------------- */
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -5%, 0);
    transform: translate3d(0, -10%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -5%, 0);
    transform: translate3d(0, -5%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}


/*------------------------------------------------
              light/dark mood
--------------------------------------------------- */
.topbar__mood {
  display: flex;
  align-items: center;
  position: relative;
  display: block;
}

body.dark {
  background: var(--default-theme-dark-blue);
  color: var(--text-dark-white-color);
}

body.dark .footer__box__item,
body.dark .footer__box__title,
body.dark .footer__contact li p,
body.dark .footer__newsletter--title,
body.dark .footer__newsletter--text,
body.dark .site-footer__copyright {
  color: var(--text-dark-white-color);
}

body.dark .block-slideshow__slide-image--desktop::before {
  background-color: #0000008c;
}

body.dark .flyout__icon i,
body.dark .flyout-cart-nodata-text {
  color: var(--default-theme-white) !important;
}

body.dark .nav-li__home--arrow svg,
body.dark .header__seacrh .search__button i,
body.dark .iconset__btn i,
body.dark .all__Categories a svg {
  fill: var(--text-dark-white-color);
  color: var(--text-dark-white-color);
}

body.dark .checkout__number,
body.dark .input-check__input:checked~.input-check__box {
  background: var(--default-themes-dark-purple);
}

body.dark .wishlist-qty,
body.dark .cart-qty {
  background-color: var(--text-dark-white-color);
  color: var(--default-theme-dark-blue);
}

body.dark .dark svg,
body.dark .dropcart__product-remove svg {
  fill: var(--default-theme-white);
}

body.dark .wishlist-table .cart__table thead,
body.dark .account-nav__item a:hover {
  background-color: var(--table-dark-bg);
}

body.dark .product__name,
body.dark .input-number__input,
body.dark .product__actions-item--wishlist i,
body.dark .default__btn--line,
body.dark .shopping-cart-container .cart__table,
body.dark .shopping-cart-container .cart__table a,
body.dark h5.text-muted,
body.dark .address__name,
body.dark .account-nav__item--active a,
body.dark .address-list-page .card-header,
body.dark .delete-address-button,
body.dark .edit-address-button,
body.dark .order-list-page .order-info strong,
body.dark .order-list-page .order-status {
  color: var(--default-theme-white);
}

body.dark input,
body.dark .card {
  background-color: var(--default-theme-dark-blue);
}

body.dark .footer,
body.dark .footer__bottom,
body.dark .footer__form input,
body.dark .account-page {
  background: var(--default-theme-dark-section-bg);
}

body.dark .tab__section,
body.dark .cartsummary__cart {
  background-color: var(--default-theme-dark-section-bg);
}

body.dark .default__btn--line {
  border-color: var(--text-dark-white-color);
}

body.dark #account__dropdown,
body.dark .language .topbar-dropdown__body,
body.dark .currency .topbar-dropdown__body,
body.dark .page-link:hover {
  background-color: var(--default-theme-dark-section-bg);
}

body.dark a:hover,
body.dark #account__dropdown ul li a,
body.dark .topbar__mood,
body.dark .topbar__item-value,
body.dark .breadcrumb-item a,
body.dark .bread__icon,
body.dark .product__meta li,
body.dark .productdetail__size .product__option-label,
body.dark span.order-txt,
body.dark .order-summary-li .product a,
body.dark #ordersummarypagecart .badge,
body.dark .productAttributeOption,
body.dark .cart-total-left,
body.dark .value-summary,
body.dark .product-card__name a {
  color: var(--text-dark-white-color);
}

body.dark .account-page .generalTitle,
body.dark .return-request-page .generalTitle,
body.dark .order-details-page>.generalTitle,
body.dark .order-cancel-page>.generalTitle,
body.dark .address-list-page .address-item .info,
body.dark .account-nav__title {
  color: var(--text-dark-white-color);
  border-color: rgb(255 253 253 / 26%);
}

body.dark .default__btn--w,
body.dark .return-items-button,
body.dark .table.table-hover tr td {
  border-color: rgb(255 253 253 / 26%);
  color: var(--default-theme-white)
}

body.dark .info__Card {
  background-color: var(--default-theme-dark-section-bg);
}

body.dark #account__dropdown .topbar__box #edit__product:hover a {
  background: transparent !important;
  color: var(--text-dark-white-color) !important;
  opacity: 1 !important;
}

body.dark .product-card__new-price,
body.dark .product-card__prices {
  color: var(--text-dark-white-color);
}

body.dark .product__accordion .accordion-button:not(.collapsed) {
  background-color: var(--default-theme-dark-section-bg);
  color: var(--text-dark-white-color);
}

body.dark #edit__product {
  background-color: var(--default-theme-dark-section-bg) !important;
  color: var(--text-dark-white-color);
}

body.dark .accordion-item,
body.dark .accordion-button,
body.dark .order-right-cart {
  background: var(--default-theme-dark-section-bg);
  color: var(--text-dark-white-color);
}

body.dark .product__accordion .accordion-item,
body.dark .accordion-button:not(.collapsed) {
  border-color: rgb(255 253 253 / 26%);
  box-shadow: inset 0 -1px 0 rgb(255 253 253 / 26%);
}

body.dark .default__btn {
  background-color: var(--default-themes-dark-purple);
  border-color: var(--default-themes-dark-purple);
}

body.dark .productdetail__size label {
  border-color: var(--body-bg-color);
}

body.dark .delivery-date {
  color: var(--text-dark-white-color) !important;
}

body.dark .order-total {
  background-color: var(--default-theme-light-blue);
}

body.dark .header__menu,
body.dark .header__culture,
body.dark .header__seacrh .search__button,
body.dark .nav-li__home--subbox,
body.dark .all__Categories,
body.dark .address--box,
body.dark .address--box--title,
body.dark .shipping-method,
body.dark .form-control,
body.dark div#CreditCardInfoModel,
body.dark div#bankTransferPayment,
body.dark #paymentTabs li a,
body.dark .banktransfer__box--title,
body.dark .banktransfer__box,
body.dark .terms-of-service,
body.dark .info__date div .custom-select {
  border-color: #cccccc2b;
}

body.dark .border {
  border-color: #cccccc2b !important;
}

body.dark textarea,
body.dark select {
  background-color: var(--default-theme-dark-blue);
  color: var(--text-dark-white-color);
}

body.dark .seacrh__title--modal h2,
body.dark .search--location--header .search__input::placeholder,
body.dark .search--location--header .search__input,
body.dark .seacrhModal .btn-close,
body.dark .nav__subbox--link {
  color: var(--text-dark-white-color);
}

body.dark .nav-li__home .nav-li__home--link,
body.dark .icon_title,
body.dark .dropcart__title,
body.dark .dropcart__product-name a,
body.dark .productAttribute,
body.dark .dropcart__product-meta,
body.dark .dropcart__totals {
  color: var(--text-dark-white-color) !important;
}

body.dark .header__seacrh .search__button,
body.dark .header__seacrh .search__button input {
  background-color: var(--default-theme-dark-section-bg);
}

body.dark .seacrhModal .modal-content,
body.dark .search--location--header .search__body,
body.dark .search--location--header .search__suggestions {
  background-color: var(--default-theme-dark-blue);
}

body.dark #small-search-box-form .search__form-wrapper {
  background-color: var(--default-theme-dark-section-bg);
}

body.dark .dropcart--style--offcanvas .dropcart__backdrop,
body.dark .dropcart__product-remove {
  background: #262323c9;
}

body.dark .dropcart--style--offcanvas .dropcart__header,
body.dark .dropcart--style--offcanvas .dropcart__body {
  background-color: var(--default-theme-dark-body-bg);
}

body.dark .nav-li__sub--arrow svg {
  fill: var(--text-dark-white-color);
}

body.dark .nav-li__home--subbox {
  background-color: var(--default-theme-dark-blue);
}

body.dark .nav__subbox--list.nav-sub-1 li:hover {
  background-color: transparent;
}

body.dark .nav__subbox--list {
  background-color: var(--default-theme-dark-blue);
}

body.dark .block-header__title,
body.dark .order-completed-page .succes-message,
body.dark .order-completed-page .order-info {
  color: var(--text-dark-white-color);
}

body.dark .block-header__arrow {
  background-color: var(--text-dark-white-color);
}

body.dark .dropcart__product-remove {
  background-color: transparent;
  border: 0;
}

body.dark .block-header__group--active {
  color: var(--text-dark-white-color);
  border-color: var(--text-dark-white-color);
}

.mood-control {
  display: flex;
  align-items: center;
  display: none;
}

.mood-control span.dark {
  display: none;
}

.mood-control input:checked+span.light {
  display: none;
}

.mood-control input:checked+span.light+span.dark {
  display: inline-block;
}

.mood-control span div {
  display: flex;
  align-items: center;
  padding: 0 30px 0 0;
}

.mood-control span svg {
  margin-right: 8px;
}

.mood-control input {
  position: absolute;
  opacity: 0;
}

/* ------------------------------------------------
                  Animation 
--------------------------------------------------- */
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.animate__fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideIn {
  from {
    max-height: 0;
  }

  to {
    max-height: 1000px;
  }
}

/* ------------------------------------------------
                   1-COMMON
--------------------------------------------------- */

/*---------- 1.2-BASE----------- */

html,
body {
  height: 100%;
}

body {
  height: auto;
  font-family: var(--font-family-body);
  color: var(--text-black-color);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow-x: hidden;
  overflow-y: scroll;
  line-height: 1.4;
}

[dir="ltr"] body {
  text-align: left;
  direction: ltr;
}

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

svg {
  display: block;
}

a:hover {
  color: var(--default-theme-dark-blue);
}

.toast__box {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  z-index: 99999999999;
}

.toast {
  width: 350px;
  max-width: 100%;
  font-size: 0.875rem;
  pointer-events: auto;
  background-color: var(--default-theme-white);
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
  display: flex;
  position: relative;
  border-radius: 8px;
  z-index: 99999999999;
  box-shadow: rgba(3, 101, 214, 0.118) 0px 4px 12px;
}

.toast-body .notification-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  margin-right: 15px;
}

.toast-body {
  display: flex;
  align-items: center;
  padding: 20px;
  font-size: 17px;
}

.toast-body a {
  color: var(--text-black-color) !important;
}

.toast .close {
  position: absolute;
  right: 10px;
  top: 10px;
  border-radius: 100%;
  width: 20px;
  height: 20px;
  background-color: #dfe6e9;
  color: var(--text-black-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}

#notification-error-icon {
  background-color: red;
}

#notification-error-icon i,
#notification-success-icon svg {
  color: var(--default-theme-white);
  fill: var(--default-theme-white);
}

#notification-success-icon {
  background-color: green;
}

.icon {
  font-size: 18px;
  vertical-align: middle;
  text-decoration: none;
}

/*---------- 1.2-DOCUMNET----------- */
.document {
  padding: 12px;
}

.document__header {
  text-align: center;
  margin-bottom: 80px;
}

.document__subtitle {
  margin-top: 12px;
  font-size: 14px;
  line-height: 22px;
}

.c_title,
.block-header__title {
  font-size: 24px;
  font-weight: 500;
}


section {
  margin: 80px 0;
}

@media (min-width: 1440px) {
  .container {
    max-width: 1440px;
  }
}

@media (max-width: 1199px) {
  .document {
    padding: 75px 110px 110px;
  }

  .document__header {
    margin-bottom: 60px;
  }
}

@media (max-width: 991px) {
  .header__seacrh .search__button {
    border: 0 !important;
  }

  .search__wrapper-area {
    flex-direction: column;
  }

  .document {
    padding: 45px 35px 60px;
  }

  .document__header {
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {

  .document {
    padding: 35px 30px 50px;
  }

  .document__header {
    margin-bottom: 30px;
  }

  .document__title {
    font-size: 30px;
    margin-bottom: 0;
  }

  .document__subtitle {
    margin-top: 6px;
  }

}

@media (max-width: 575px) {
  .document {
    padding: 26px 20px 40px;
  }

  [dir="ltr"] .document__header {
    text-align: left;
  }

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


/*---------- 1.3-PAGE HEADER----------- */
.breadcrumb {
  background: transparent;
  padding: 0;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 0;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bread__icon {
  color: var(--text-black-color);
  position: relative;
  padding: 0 15px;
}

.breadcrumb-item {
  position: relative;
}

[dir=ltr] .breadcrumb-item {
  padding-left: 0;
}

[dir=rtl] .breadcrumb-item {
  padding-right: 0;
  padding-left: 15px;
}

.breadcrumb-item a {
  color: var(--text-black-color);
  -webkit-transition: color .15s;
  transition: color .15s;
}

.breadcrumb-item a:hover {
  color: var(--default-theme-light-blue);
}

[dir=ltr] .breadcrumb-item+.breadcrumb-item {
  padding-left: 0;
  padding-right: 30px;
}

[dir=rtl] .breadcrumb-item+.breadcrumb-item {
  padding-right: 0;
  padding-left: 30px;
}

.breadcrumb-item+.breadcrumb-item::before {
  display: none;
}

.breadcrumb-item.active {
  color: #999;
}

.breadcrumb-arrow {
  fill: #d1d1d1;
  position: absolute;
  top: 5px;
}

[dir=ltr] .breadcrumb-arrow {
  right: 11px;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

[dir=rtl] .breadcrumb-arrow {
  left: 11px;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}


.page-header__container {
  padding: 18px 0;
}

.page-header__breadcrumb {
  padding-top: 16px;
  padding-left: 10px;
  height: 100%;
}

.page-header__title {
  padding-bottom: 10px;
  color: var(--text-black-color);
  font-weight: 600;
  position: relative;
  font-size: 30px;
}

.page-header__title h1 {
  margin-bottom: 0;

}

@media (min-width: 768px) and (max-width: 991px) {
  .page-header__title {
    padding-top: 4px;
  }

  .page-header__title h1 {
    margin-bottom: 0;
  }
}

@media (max-width: 767px) {
  .page-header__container {
    padding-bottom: 24px;
  }

  .page-header__title {
    padding-top: 2px;
  }

  .page-header__title h1 {
    margin-bottom: 0;
    font-size: 30px;
  }
}

/*---------- 1.4-FAKE-SVG-ICON----------- */
.fake-svg-icon {
  font-family: "stroyka" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: none;
  vertical-align: top;
}

.fake-svg-icon--wishlist-16 {
  width: 16px;
  height: 16px;
  font-size: 16px;
}

.fake-svg-icon--wishlist-16::before {
  content: "\e904";
}

.fake-svg-icon--compare-16 {
  width: 16px;
  height: 16px;
  font-size: 16px;
}

.fake-svg-icon--compare-16::before {
  content: "\e901";
}

/*---------- 1.5-SITE----------- */
.site {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.site__header {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.site__body {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.site__footer {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.footer__logo {
  border-left: 1px solid #dedede26;
  border-right: 1px solid #dedede26;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

/* ------------------------------------------------
                   2-HEADER
-------------------------------------------------- */
.logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

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

.header__contact {
  background-color: var(--default-theme-dark-blue);
  color: var(--text-white-color);
  padding: 6px 0;
  display: flex;
  align-items: center;
}

.header__culture {
  display: flex;
  border: 1px solid #ccccccc7;
}

.header__culture--box {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 10px 0;
}

.topbar__language--item,
.topbar__currency--item {
  padding: 10px 15px;
}

.language {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-right: 15px;
}

.language .topbar-dropdown__btn {
  display: flex;
  align-items: center;
}

.language .topbar-dropdown__btn img {
  width: 18px;
  height: auto;
}

.language .topbar__item-value {
  margin-left: 8px;
}

.language--list,
.currency--list {
  display: flex;
  flex-direction: column;
}

.language--list a,
.currency--list a {
  display: block;
  font-size: 13px;
}

.language--list li {
  padding: 10px 5px;
  margin-right: 10px;
}

.currency--list li {
  padding: 10px;
  margin-right: 10px;
}

.language--list li a {
  display: flex;
  color: var(--text-black-color);
}

.language--list li a img {
  margin-right: 5px;
}

.header__contact--social {
  display: flex;
  justify-content: flex-end;
}

.header__contact--social--list {
  display: flex;
}

.header__contact--social--list li a i {
  color: var(--text-white-color);
  font-size: 15px;
  margin: 0 5px;
}

.header__contact--social--list li:hover i {
  color: var(--default-theme-dark-blue);
}

.header__contact--social--list li:last-child a i {
  margin: 0 0 0 5px;
}

.container-submenu-2 {
  display: none;
}

.header__content {
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tab__section {
  background-color: var(--default--theme-grey-bg);
  padding: 80px 0;
  margin: 0;
}

.tab__carusel--all {
  margin-top: 140px;
}

@media (min-width: 992px) and (max-width: 1199px) {}

@media screen and (max-width: 767px) {
  .header__contact {
    display: none;
  }
}

/* ============================ HEADER MOBILE MENU START ============================ */
.header__menu {
  border-top: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
  position: relative;
}

.header__top--page ul {
  display: flex;
}

.header__top--page ul li a {
  font-size: 13px;
  margin: 0 10px 0 0;
}

.notification-bar {
  background-color: var(--default-theme-white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 0;
}

.notification-bar a {
  color: var(--default-color-black);
  font-size: 11px;
}

.logo a img {
  object-fit: contain;
}

.site-header__nav-panel {
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon-set {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.mobile-nav-wrapper {
  display: none;
}

.closemobileMenu {
  display: flex;
  justify-content: space-between;
  margin: 10px;
  text-transform: capitalize;
}

.mobile-icons {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.burger-menu {
  border: none;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 30px;
  height: 20px;
  background-color: transparent;
  outline: 0;
  padding: 0;
}

.burger-menu span {
  display: block;
  background-color: var(--default-color-black);
  width: 100%;
  height: 2px;
}

.burger-menu span::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background-color: var(--default-color-black);
  top: 0;
  left: 0;
  right: 0;
}

.burger-menu span::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background-color: var(--default-color-black);
  bottom: 0;
  left: 0;
  right: 0;
}

a {
  color: inherit;
}

.default__bg {
  background-color: var(--default-theme-dark-blue);
  color: var(--text-white-color);
  width: 100%;
  padding: 10px 30px;
  display: block;
  text-align: center;
  width: 300px;
}

.default__bg:hover {
  color: var(--text-white-color);
  opacity: 0.8;
}

.layout-switcher__button--active,
.layout-switcher__button--active:hover {
  background-color: transparent !important;
}

.default__btn--line {
  border: 1px solid var(--default-theme-dark-blue);
  color: var(--text-black-color);
  width: 100%;
  padding: 15px 30px;
  display: block;
  text-align: center;
  min-width: 300px;
  font-weight: 600;
}

.default__btn--w {
  width: 100%;
  background-color: var(--default-theme-dark-blue);
  color: var(--text-white-color);
  border: 1px solid var(--default-theme-dark-blue);
  padding: 6px 12px;
  font-size: 12px;
}

.default__btn--b {
  width: 100%;
  background-color: transparent;
  color: var(--default-theme-dark-blue);
  border: 1px solid var(--default-theme-dark-blue);
  padding: 6px 12px;
  margin: 10px 0;
  font-size: 12px;
}

.default__btn--line:hover {
  background: var(--default-theme-dark-blue);
  color: var(--text-white-color);
  transition: 500ms all;
}

.default__btn {
  background-color: var(--default-theme-dark-blue);
  color: var(--text-white-color);
  width: 100%;
  padding: 15px 30px;
  display: block;
  text-align: center;
  min-width: 300px;
}

.default__btn:hover {
  opacity: 0.8;
  color: var(--text-white-color);
}

.btn-load-more {
  max-width: 300px;
  margin: auto;
  border-radius: 30px;
  border: 3px solid var(--default-color-black);
  background-color: transparent;
  color: var(--text-black-color);
}

.btn-load-more:hover {
  background-color: var(--text-black-color);
  color: var(--text-white-color);
}

.category-description {
  height: 150px;
  overflow: hidden;
  transition: 500ms all;
  margin: 30px 0;
}

.category-description.is-active {
  height: 100%;
  transition: 500ms all;
}

#categories__more--btn {
  font-weight: bold;
}

.all__Categories {
  border-top: 1px solid #cccccc;
  padding: 30px;

}

.all__Categories a {
  display: flex;
  align-items: center;
  transition: 500ms all;
}

.all__Categories a:hover {
  padding-left: 10px;
  transition: 500ms all;
}

.all__Categories a svg {
  margin-left: 10px;
}

.all__Categories a span {
  margin-right: 10px;
}

.edit-address-button {
  border: 0;
  border-bottom: 1px solid var(--default-theme-dark-blue);
  text-align: center;
  padding: 0 !important;
}

.edit-address-button:hover {
  opacity: 0.5;
  transition: 500ms all;
}

.address1 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  max-height: 3.6em;
  margin: 10px 0;
}

.address-item ul li {
  margin: 5px 0;
  font-size: 15px;
}

.mobile-topic-menu {
  display: none;
}

@media (min-width: 990px) {

  .container-submenu-1 {
    margin: auto;
  }

  .nav_list {
    display: flex;
    list-style-type: none;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    padding: 0;
  }

  .menu__categories--img {
    position: relative;
    height: 100%;
    margin: 20px 0;
    display: flex;
    align-items: start;
    justify-content: center;
  }

  .menu__categories--img img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .menu__categories--img span {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    z-index: 2;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    text-decoration: underline;
    color: var(--text-white-color);
  }

  .nav-li__home {
    display: flex;
    padding: 20px 0;
    font-size: 15px;
    font-weight: 500;
    width: 100%;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid transparent;
  }

  .nav-li__home:hover {
    border-bottom: 1px solid var(--text-black-color);

  }

  .nav-sub-1>li.active {
    background-color: var(--default-theme-white);
  }


  .nav-li__home .nav-arrow-href {
    background-color: transparent;
    border: 0;
    outline: 0;
  }

  .nav-sub-head {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }

  .megamenu .nav-li__home--subbox {
    position: absolute;
    top: 60px;
    display: none;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 200;
    background-color: var(--default-theme-white);
    border-top: 1px solid #f2f2f2;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  }

  .nav-sub-2 .nav__subbox--li {
    padding: 18px 10px;
  }

  .nav__subbox--list.nav-sub-1 {
    background-color: #fbfbfb;
    height: auto;
  }

  .nav-sub-3 li a {
    transition: 500ms all;
  }

  .nav-sub-3 li:hover a {
    padding-left: 10px;
    transition: 500ms all;
  }

  .nav__subbox--list.nav-sub-1 li:hover {
    background-color: var(--text-white-color);
  }

  .container-submenu-3,
  .container-submenu-3 .row,
  .container-submenu-3 .col {
    padding-left: 0;
  }

  .container-submenu-3 ul li {
    padding: 10px 0;
  }

  .nav-li__home--arrow {
    background-color: transparent;
    border: 0;
    outline: 0;
  }

  .nav-sub-2 li div button {
    display: none;
  }

  #MobileNav>li>a {
    text-wrap: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    text-wrap: nowrap;
    font-family: var(--font-family-body);
    font-size: 15px;
    font-weight: var(--font-w-500);

  }

  #MobileNav>li.nav-li__home.nav-li__home--submenu ul>li ul:not(.nav-sub-3) {
    min-width: 450px;
    display: flex;
    min-height: 300px;
    height: 100%;
    max-height: 450px;
    flex-wrap: wrap;
    flex-direction: column;
  }

  .nav-sub-4 {
    min-height: auto !important;
    min-width: auto !important;
  }

  #MobileNav>li.nav-li__home.nav-li__home--submenu ul>li ul>li>ul {
    display: static;

  }

  .nav__subbox--list.nav-sub-1::before {
    position: absolute;
    content: '';
    width: 50%;
    height: 100%;
    background-color: #fbfbfb;
    bottom: 0;
    left: 0;
    z-index: -1;
  }

  .categori-all-item a span {
    display: flex;
    align-items: center;
  }

  .categori-all-item a span svg {
    margin-left: 10px;
  }

  .home-menu-container {
    background-color: white;
  }

  .nav__subbox--list {
    background-color: var(--default-theme-white);
    list-style: none;
    padding: 0;
    margin: 0;
    width: max-content;
    min-width: 300px
  }

  .nav-sub-1 .nav__subbox--li.active .nav__subbox--submenu {
    display: block;
  }

  .nav-links__item {
    display: flex;
    padding: 20px 0;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    width: 100%;
    justify-content: center;
    align-items: center;
  }

  .nav__subbox--li {
    white-space: nowrap;
    color: var(--default-color-black);
    font-size: 15px;
    padding: 25px 15px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(128, 128, 128, 0.212);
  }

  .nav-sub-1 .nav__subbox--li {
    background-color: #fbfbfb;
  }

  .nav-sub-2 .nav__subbox--li {
    background-color: white;
  }

  .megamenu .nav-li__home:hover .nav-li__home--subbox {
    display: block;
  }

  .nav-li__sub--arrow {
    background-color: transparent;
    border: 0;
    outline: 0;
  }

  .nav__subbox--submenu ul li {
    border: 0;
  }

  .nav__subbox--link {
    color: #444444;
  }

  .nav-li__home .nav-li__home--link {
    color: #444444;
  }

  .nav-sub-1 .nav__subbox--submenu,
  .nav-sub-2 .nav__subbox--submenu {
    position: absolute;
    left: 16%;
    top: 0;
    display: none;
    width: 15%;
    padding-left: 30px;
    z-index: 6;
    height: 100%;

  }

  .all-categories-item {
    border: 1px solid #eee;
    background-color: white;
    padding: 32px 0;
    position: relative;
    z-index: 99;
  }

  .nav__subbox--li:last-child {
    border-bottom: 0;
  }

  .nav__subbox--list.nav-sub-3 li {
    padding: 10px 0 !important;
  }

  .nav-sub-2 li {
    flex-direction: column;
  }

  .nav-sub-3 li a {
    font-weight: 400;
    text-transform: capitalize;
  }

  .nav-sub-2 .nav__subbox--submenu {
    position: unset;
    padding-left: 0;
    width: max-content;
  }

  .nav-li__home .nav__subbox--li:hover .nav__subbox--submenu {
    display: block;
  }
}

.mobil-icons .burger-menu {
  display: none;
}

.megamenu .nav-li__home a {
  color: #000000bd;
}

.megamenu .nav-li__home:hover a {
  color: #000;
}

.megamenu:hover .nav-li__home:not(:hover) a {
  color: #00000077;
}

@media screen and (max-width: 990px) {
  .header__menu {
    display: none;
  }

  .mobil-icons .burger-menu {
    display: flex;
    margin-right: 20px;
  }

  .mobil-icons {
    display: flex;
    align-items: center;
  }

  .header__content {
    padding: 15px 0;
  }

  .logo {
    margin-top: 6px;
  }
}

@media (min-width:1700px) and (max-width:1900px) {

  .nav-sub-1 .nav__subbox--submenu,
  .nav-sub-2 .nav__subbox--submenu {
    left: 14%;
  }
}

@media (min-width:1901px) and (max-width:2100px) {

  .nav-sub-1 .nav__subbox--submenu,
  .nav-sub-2 .nav__subbox--submenu {
    left: 20%;
  }
}

@media (min-width:2100px) and (max-width:2200px) {

  .nav-sub-1 .nav__subbox--submenu,
  .nav-sub-2 .nav__subbox--submenu {
    left: 14%;
  }
}

@media (min-width:2200px) and (max-width:2350px) {

  .nav-sub-1 .nav__subbox--submenu,
  .nav-sub-2 .nav__subbox--submenu {
    left: 13%;
  }
}

@media (min-width:2349px) and (max-width:2600px) {

  .nav-sub-1 .nav__subbox--submenu,
  .nav-sub-2 .nav__subbox--submenu {
    left: 29%;
  }
}

@media screen and (min-width:2600px) {

  .nav-sub-1 .nav__subbox--submenu,
  .nav-sub-2 .nav__subbox--submenu {
    left: 11%;
  }
}


@media screen and (max-width:1500px) {
  .categoriestopmenu__imgbox {
    display: none;
  }
}


@media screen and (max-width: 1500px) and (min-width:990px) {

  .nav-li__home,
  .nav-links__item {
    display: flex;
    padding: 15px 0;
    font-size: 12px;
    font-weight: 500;
  }
}

.nav-sub-2 .nav-li__sub--arrow {
  display: none;
}

.nav-li__home--arrow i,
.nav-li__sub--arrow i {
  display: none;
}

@media screen and (max-width: 990px) {
  .nav-sub-2 .nav-li__sub--arrow {
    display: block;
  }

  .nav-li__home--arrow i,
  .nav-li__sub--arrow i {
    display: block;
    font-size: 12px;
  }

  .nav-li__home--arrow svg,
  .nav-li__sub--arrow svg {
    display: none;
  }

  .header__menu {
    display: none;
  }

  .logo a img {
    max-width: 120px;
  }

  #MobileNav {
    flex-direction: column;
  }

  /* menu item   */

  .mobile-nav-wrapper {
    display: block;
    position: relative;
  }

  .mobile-nav-wrapper .logo img {
    height: 20px;
  }

  body.menuOn {
    position: relative;
    overflow: hidden;
  }

  body.menuOn .body-bg {
    position: relative;
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background-color: #000000c2;
    width: 100%;
    height: 100%;
    z-index: 99;
  }

  .site-header__menu {
    border: 0;
    padding: 0;
    font-size: 17px;
    display: block;
    cursor: pointer;
  }

  #MobileNav {
    height: 100%;
    overflow: auto;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .mobile-nav-wrapper .closemobileMenu {
    color: var(--default-color-black);
    font-size: 13px;
    padding: 8px 12px;
    background-color: #eee;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .mobile-nav-wrapper .closemobileMenu .logo {
    height: 30px;
    margin: 0;
  }

  .mobile-nav-wrapper .closemobileMenu .anm {
    font-size: 13px;
    padding: 2px;
    float: right;
  }

  .mobile-nav-wrapper {
    width: 270px;
    height: 100%;
    position: fixed;
    left: -270px;
    top: 0;
    z-index: 10000;
    background-color: #ffffff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    -ms-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }

  .mobile-nav-wrapper.active {
    left: 0;
    opacity: 1;
    visibility: visible;
  }

  #MobileNav li {
    border-bottom: 1px solid #eeeeee;
    position: relative;
  }

  #MobileNav li.grid__item {
    float: none;
    padding: 0;
  }

  .categori-all-item {
    display: none;
  }

  #MobileNav li a {
    color: #333333;
    font-size: 13px;
    text-decoration: none;
    display: block;
    opacity: 1;
    -webkit-font-smoothing: antialiased;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: relative;
  }


  .mobile-nav-wrapper .closemobileMenu {
    margin: 0;
  }

  .nav-li__home a,
  .nav-links__item a {
    padding: 15px 15px;
  }

  .nav__subbox--list {
    padding: 0;
    margin: 0;
    list-style-type: none;
    position: relative;
  }

  .nav__subbox--submenu {
    display: none;
  }

  .megamenu .nav-li__home--subbox {
    display: none;
  }

  .megamenu .nav-li__home--subbox.active {
    display: block;
  }

  .nav__subbox--submenu.active {
    display: block;
  }

  .nav-sub-1 {
    background-color: #f7f7f7;
  }

  .nav-li__home--arrow,
  .nav-li__sub--arrow {
    position: absolute;
    right: 15px;
    top: 15px;
    top: -1px;
    width: 30px;
    height: 52px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 0;
    outline: none;
  }

  #MobileNav li:last-child {
    border-bottom: 0;
  }

  .nav-sub-3 li {
    padding-left: 12px;
  }

  .nav__subbox--submenu .nav__subbox--link {
    padding-left: 35px;
  }

}

/* popüler kategoriler menu  */
.nav__categories--box {
  width: 100%;
  height: 200px;
}

.nav__categories--box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



@media screen and (min-width:1650px) {

  .d-container {
    max-width: 1650px !important;
    margin: auto;
  }


}

/* ============================ HEADER MOBILE MENU END ============================== */




/* ----------------------------------------
// Components
// ---------------------------------------- */

/*
// .account-nav
*/


.account-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.account-nav__item a {
  display: block;
  color: #6c757d;
  font-size: 15px;
}

.account-nav__item a:hover {
  background-color: var(--default-theme-off-white);
}

.add-address-button {
  font-size: 16px;
}

.product-questions-list .form-group,
.product-review-item {
  border-bottom: 1px solid #cccccc;
  padding-bottom: 25px;
  margin-bottom: 25px;
}


@media (min-width: 992px) {
  .account-nav {
    padding-right: 20px;
    padding-top: 50px;

  }

  .account-nav ul {
    padding-bottom: 18px;
  }

  .account-nav__title {
    font-size: 20px;
    padding: 25px 25px;
    font-weight: 600;
    margin-bottom: 1rem;
    border-bottom: 1px solid #cccccc;
  }

  .account-nav__item a {
    padding: 15px 26px;
  }

  [dir=rtl] .account-nav__item a {
    margin-right: -2px;

  }

  .account-nav__item--active a {
    color: #3d464d;
    font-weight: 500;
  }

  [dir=ltr] .account-nav__item--active {}

  [dir=rtl] .account-nav__item--active a {
    font-weight: bold;
  }
}

@media (max-width: 991px) {
  .account-nav__title {
    display: none;
  }

  .account-nav {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .account-nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    white-space: nowrap;
    width: 100%;
    border-bottom: 2px solid #f0f0f0;
  }

  .account-nav__item a {
    padding: 8px 16px;
    margin-bottom: -2px;
    border-bottom: 2px solid #f0f0f0;
  }

  .account-nav__item--active a {
    color: #3d464d;
    font-weight: 500;
    border-color: var(--default-theme-dark-blue);
  }
}

/*
// .alert
*/

.alert {
  border: none;
  border-radius: 2px;
  font-size: 15px;
  line-height: 20px;
  padding: .75rem 1rem;
}

.alert a {
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  color: currentColor;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 1.5px;
  padding: 0 3px;
}

.alert a:hover {
  background: rgba(255, 255, 255, 0.85);
}

.alert a:active {
  background: rgba(255, 255, 255, 0.5);
}

.alert-primary {
  background: #b2d9ff;
  color: #36414d;
}

.alert-secondary {
  background: #d9d9d9;
  color: #4d4d4d;
}

.alert-info {
  background: #b8e2e5;
  color: #2d3e40;
}

.alert-success {
  background: #bde5a1;
  color: #34402d;
}

.alert-danger {
  background: #ffb8b8;
  color: #473333;
}

.alert-warning {
  background: #f2e291;
  color: #4d472e;
}

.alert-lg {
  font-size: 16px;
  padding: 1.125rem 1.375rem;
}

[dir=ltr] .alert-dismissible {
  padding-right: 3rem;
}

[dir=rtl] .alert-dismissible {
  padding-left: 3rem;
}

.alert-dismissible .close {
  opacity: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 1rem;
  height: 100%;
  -webkit-transition: all .2s;
  transition: all .2s;
  fill: rgba(0, 0, 0, 0.3);
  background: transparent;
}

[dir=ltr] .alert-dismissible .close {
  left: auto;
  right: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 1.5px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 1.5px;
}

[dir=rtl] .alert-dismissible .close {
  right: auto;
  left: 0;
  border-top-right-radius: 0;
  border-top-left-radius: 1.5px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 1.5px;
}

.alert-dismissible .close:focus {
  outline: none;
}

.alert-dismissible .close:not(:disabled):not(.disabled):focus,
.alert-dismissible .close:not(:disabled):not(.disabled):hover {
  background: rgba(0, 0, 0, 0.08);
  fill: rgba(0, 0, 0, 0.5);
  opacity: 1;
}

/*
// .badge
*/

.badge {
  border-radius: 1.5px;
  font-weight: 500;
  padding: .25em .5em;
}

/**-----------------------------------------------------
                   .block-header
  --------------------------------------------------------*/

.block-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 24px;
}

.block-header__title {
  margin-bottom: 0;
  font-size: 35px;
  font-size: 30px;
  font-weight: 500;
  color: #00163a;
  position: relative;
  font-weight: 800;

  text-decoration: underline;
  text-transform: uppercase;
  letter-spacing: -1px;
}

/* .block-header__title::before {
    position: absolute;
    background-color: var(--default-theme-light-blue);
    content: '';
    width: 100%;
    height: 5px;

    z-index: 0;
    bottom: 0;
  } */
.block-header__groups-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

[dir="ltr"] .block-header__groups-list li+li {
  margin-left: 3px;
}

[dir="rtl"] .block-header__groups-list li+li {
  margin-right: 3px;
}

.accountInfoForm--col {}

.accountInfoForm--col>label {
  position: unset;
  transform: translateY(0) !important;
  left: 0 !important;
  margin-bottom: 5px;
}

.block-header__group {
  background: transparent;
  border: none;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  cursor: pointer;
  display: block;
  color: inherit;
  padding: 10px 20px;
  border-radius: 12px;
  -webkit-box-shadow: none;
  box-shadow: none;
  font-size: 16px;
  border: 1px solid transparent;
}

.block-header__group:focus {
  outline: none;
}

.block-header__group:focus,
.block-header__group:hover {

  border: 1px solid #ebebeb;
  color: inherit;
  border-radius: var(--border-radius-30);
}

.block-header__group--active,
.block-header__group--active:focus,
.block-header__group--active:hover {
  cursor: default;
  color: var(--text-black-color);
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: var(--border-radius-30);

  padding: 10px 20px;
}

.block-header__arrows-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.block-header__arrow {
  width: 27px;
  height: 29px;
  padding: 0;
  margin: 0;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 1.5px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}



.block-header__arrow {
  background-color: #8a8ac82b;
  border-radius: 100%;
  width: 50px;
  height: 50px;
}


.block-header__arrow:focus {
  outline: none;
}

.block-header__arrow:focus,
.block-header__arrow:hover {
  fill: #3d464d;
}

.block-header__arrow:active svg {
  -webkit-transition-duration: 0s;
  transition-duration: 0s;

  fill: #3d464d;
}

[dir="ltr"] .block-header__arrow+.block-header__arrow {
  margin-left: 3px;
}

[dir="rtl"] .block-header__arrow+.block-header__arrow {
  margin-right: 3px;
}

[dir="ltr"] .block-header__arrow svg {

  fill: var(--text-black-color);
  width: 20px;
  height: 20px;
}

[dir="rtl"] .block-header__arrow svg {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.block-header__arrow--left svg {
  position: relative;
}

[dir="ltr"] .block-header__arrow--left svg {
  left: -1px;
}

[dir="rtl"] .block-header__arrow--left svg {
  right: -1px;
}

.block-header__arrow--right svg {
  position: relative;
}

[dir="ltr"] .block-header__arrow--right svg {
  left: 1px;
}

[dir="rtl"] .block-header__arrow--right svg {
  right: 1px;
}

[dir="ltr"] .block-header__title+.block-header__divider {
  margin-left: 16px;
}

[dir="rtl"] .block-header__title+.block-header__divider {
  margin-right: 16px;
}

[dir="ltr"] .block-header__divider+.block-header__groups-list {
  margin-left: 12px;
}

[dir="rtl"] .block-header__divider+.block-header__groups-list {
  margin-right: 12px;
}



[dir="rtl"] .block-header__groups-list+.block-header__arrows-list {
  margin-right: 10px;
}

[dir="ltr"] .block-header__divider+.block-header__arrows-list {
  margin-left: 16px;
}

[dir="rtl"] .block-header__divider+.block-header__arrows-list {
  margin-right: 16px;
}

@media (max-width: 767px) {
  .block-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .mobile-topic-menu {
    display: block;
    width: 100%;

  }

  .mobile-topic-menu ul li {
    padding: 12px !important;
    border-bottom: 1px solid #eee;
  }

  .mobile-topic-menu ul li a {
    font-size: 13px;
    color: #333333;
    letter-spacing: 0.05em;
  }

  .block-header__groups-list {
    padding: 8px 0;
    margin-top: 8px;
    margin-bottom: -8px;
    -webkit-box-ordinal-group: 101;
    -ms-flex-order: 100;
    order: 100;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  [dir="ltr"] .block-header__divider+.block-header__groups-list {
    margin-left: auto;
    margin-right: auto;
  }

  [dir="rtl"] .block-header__divider+.block-header__groups-list {
    margin-right: auto;
    margin-left: auto;
  }

  [dir="ltr"] .block-header__divider+.block-header__groups-list+.block-header__arrows-list {
    margin-left: 16px;
  }

  [dir="rtl"] .block-header__divider+.block-header__groups-list+.block-header__arrows-list {
    margin-right: 16px;
  }

  .products-list[data-layout="grid-3-sidebar"][data-mobile-grid-columns="2"] .product-card .product-card__image {
    height: auto;
    min-height: unset;
  }
}



.btn-loading,
.btn-loading:hover,
.btn-loading.focus,
.btn-loading:focus,
.btn-loading:not(:disabled):not(.disabled).active,
.btn-loading:not(:disabled):not(.disabled):active,
.btn-loading.disabled,
.btn-loading:disabled {
  color: transparent;
  fill: transparent;
}

.btn-loading:after {
  display: block;
  content: '';
  position: absolute;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-top-color: rgba(0, 0, 0, 0.5);
  -webkit-transition: border-color .1s;
  transition: border-color .1s;
  -webkit-animation-name: preloader-animation;
  animation-name: preloader-animation;
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.btn-loading:after {
  left: calc(50% - 11px);
  top: calc(50% - 11px);
  width: 22px;
  height: 22px;
  border-radius: 11px;
}

.btn-loading.btn-xl:after {
  left: calc(50% - 21px);
  top: calc(50% - 21px);
  width: 42px;
  height: 42px;
  border-radius: 21px;
}

.btn-loading.btn-lg:after {
  left: calc(50% - 14px);
  top: calc(50% - 14px);
  width: 28px;
  height: 28px;
  border-radius: 14px;
}

.btn-loading.btn-sm:after {
  left: calc(50% - 8px);
  top: calc(50% - 8px);
  width: 16px;
  height: 16px;
  border-radius: 8px;
}

.btn-loading.btn-xs:after {
  left: calc(50% - 7px);
  top: calc(50% - 7px);
  width: 14px;
  height: 14px;
  border-radius: 7px;
}

/*
// .card
*/

.card {
  border: 2px solid #f0f0f0;
  border-radius: 2px;
}

.card-header,
.card-footer {
  padding: 1.5rem 2rem;
  border-top: none;
  border-bottom: none;
  background-color: transparent;
}

.card-header h1,
.card-header h2,
.card-header h3,
.card-header h4,
.card-header h5,
.card-header h6,
.card-footer h1,
.card-footer h2,
.card-footer h3,
.card-footer h4,
.card-footer h5,
.card-footer h6 {
  margin-bottom: 0;
}

.card-title {
  margin-bottom: 1.75rem;
}

.card-title h1,
.card-title h2,
.card-title h3,
.card-title h4,
.card-title h5,
.card-title h6 {
  margin-bottom: 0;
}

.card-divider {
  height: 2px;
  background: #f0f0f0;
}

.card-body .card-title:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) and (max-width: 991px) {

  .card-header,
  .card-footer {
    padding: 1.25rem 1.5rem;
  }

  .card-title {
    font-size: 26px;
    margin-bottom: 1.5rem;
  }

  .card-body {
    padding: 1.5rem;
  }
}



@media (max-width: 767px) {

  .card-header,
  .card-footer {
    padding: 1rem 1.375rem;
  }

  .card-title {
    font-size: 26px;
    margin-bottom: 1.5rem;
  }

  .card-body {
    padding: 1.375rem;
  }
}

/*
// .card-table
*/

.card-table {
  font-size: 15px;
}

.card-table a:not(.btn):hover {
  text-decoration: underline;
}

.card-table table {
  width: 100%;
  min-width: 500px;
}

[dir=ltr] .card-table table {
  text-align: left;
}

[dir=rtl] .card-table table {
  text-align: right;
}

.card-table thead th {
  border-bottom: 2px solid #f0f0f0;
  text-transform: uppercase;
  color: #6c757d;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 12px;
}

.card-table tbody th,
.card-table tbody td,
.card-table tfoot th,
.card-table tfoot td {
  padding: 12px 12px;
}

.card-table tfoot th,
.card-table tfoot td {
  padding-top: 16px;
  padding-bottom: 16px;
}

.card-table tbody+tbody tr th,
.card-table tbody+tbody tr td,
.card-table tbody+tfoot tr th,
.card-table tbody+tfoot tr td,
.card-table tbody tr+tr th,
.card-table tbody tr+tr td {
  border-top: 1px solid #f0f0f0;
}

.card-table tbody tr:hover>*,
.card-table tfoot tr:hover>* {
  background-color: var(--default-theme-off-white);
}

[dir=ltr] .card-table th:first-child,
[dir=ltr] .card-table td:first-child {
  padding-left: 2rem;
}

[dir=ltr] .card-table th:last-child,
[dir=ltr] .card-table td:last-child {
  padding-right: 2rem;
}

[dir=rtl] .card-table th:first-child,
[dir=rtl] .card-table td:first-child {
  padding-right: 2rem;
}

[dir=rtl] .card-table th:last-child,
[dir=rtl] .card-table td:last-child {
  padding-left: 2rem;
}

.card-table .card-table__body--merge-rows th,
.card-table .card-table__body--merge-rows td {
  padding-top: 3px;
  padding-bottom: 3px;
}

.card-table .card-table__body--merge-rows tr:first-child th,
.card-table .card-table__body--merge-rows tr:first-child td {
  padding-top: 12px;
}

.card-table .card-table__body--merge-rows tr:last-child th,
.card-table .card-table__body--merge-rows tr:last-child td {
  padding-bottom: 12px;
}

.card-table .card-table__body--merge-rows tr+tr th,
.card-table .card-table__body--merge-rows tr+tr td {
  border-top: none;
}

@media (min-width: 768px) and (max-width: 991px) {
  .card-table {
    font-size: 14px;
  }

  [dir=ltr] .card-table th:first-child,
  [dir=ltr] .card-table td:first-child {
    padding-left: 1.5rem;
  }

  [dir=ltr] .card-table th:last-child,
  [dir=ltr] .card-table td:last-child {
    padding-right: 1.5rem;
  }

  [dir=rtl] .card-table th:first-child,
  [dir=rtl] .card-table td:first-child {
    padding-right: 1.5rem;
  }

  [dir=rtl] .card-table th:last-child,
  [dir=rtl] .card-table td:last-child {
    padding-left: 1.5rem;
  }
}

@media (max-width: 767px) {
  .card-table {
    font-size: 14px;
  }

  [dir=ltr] .card-table th:first-child,
  [dir=ltr] .card-table td:first-child {
    padding-left: 1.375rem;
  }

  [dir=ltr] .card-table th:last-child,
  [dir=ltr] .card-table td:last-child {
    padding-right: 1.375rem;
  }

  [dir=rtl] .card-table th:first-child,
  [dir=rtl] .card-table td:first-child {
    padding-right: 1.375rem;
  }

  [dir=rtl] .card-table th:last-child,
  [dir=rtl] .card-table td:last-child {
    padding-left: 1.375rem;
  }
}

/*
// .filters-button
*/

.filters-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 9px;
  height: 32px;
  border: 1px solid #e5e5e5;
  border-radius: 2px;
  background: #fff;
  cursor: pointer;
  font-family: inherit;
  font-weight: 500;
  font-size: 14px;
  color: inherit;
}

.filters-button:focus {
  outline: none;
}

.filters-button:hover {
  background: var(--default--theme-grey-bg);
  border-color: #e5e5e5;
}

.filters-button__icon {
  fill: #3d464d;
}

[dir=ltr] .filters-button__icon {
  margin-right: 8px;
}

[dir=rtl] .filters-button__icon {
  margin-left: 8px;
}

.filters-button__counter {
  display: block;
  height: 20px;
  font-size: 13px;
  font-weight: 500;
  padding: 2px 5px 0;
  border-radius: 2px;
  line-height: 16px;
  background: #ffd333;
  color: #3d464d;
}

[dir=ltr] .filters-button__counter {
  margin-left: 12px;
  margin-right: -4px;
}

[dir=rtl] .filters-button__counter {
  margin-right: 12px;
  margin-left: -4px;
}

/*
// forms
*/

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

[dir=ltr] .form-check {
  padding-left: 1.5rem;
}

[dir=rtl] .form-check {
  padding-right: 1.5rem;
}

.form-check-input {
  position: absolute;
  margin-top: .1875rem;
}

[dir=ltr] .form-check-input {
  margin-left: -1.5rem;
}

[dir=rtl] .form-check-input {
  margin-right: -1.5rem;
}

@media (max-width: 767px) {
  .form-group {
    margin-bottom: 1.125rem;
  }
}

.form-control {
  border-radius: 2px;
  line-height: 1.25;
}

.form-control-sm {
  height: calc(1.875rem + 2px);
  line-height: 1.25;
  padding: .3125rem .5rem;
}

.form-control-lg {
  height: calc(2.75rem + 2px);
  line-height: 1.25;
}

.form-control:valid,
.form-control.is-valid,
.form-control:invalid,
.form-control.is-invalid {
  background-image: none;
}

select.form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
}

select.form-control::-ms-expand {
  display: none;
}

select.form-control,
select.form-control:valid,
select.form-control.is-valid,
select.form-control:invalid,
select.form-control.is-invalid {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 5 10'%3E%3Cpath fill='%234d4d4d' d='M4.503,4 L0.497,4 C0.094,4 -0.142,3.492 0.089,3.122 L2.095,0.233 C2.293,-0.084 2.712,-0.084 2.911,0.233 L4.911,3.122 C5.142,3.492 4.906,4 4.503,4 ZM0.497,6 L4.503,6 C4.906,6 5.142,6.504 4.911,6.871 L2.905,9.737 C2.707,10.052 2.288,10.052 2.089,9.737 L0.089,6.871 C-0.142,6.504 0.094,6 0.497,6 Z'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: 5px 10px;

}

[dir=ltr] select.form-control,
[dir=ltr] select.form-control:valid,
[dir=ltr] select.form-control.is-valid,
[dir=ltr] select.form-control:invalid,
[dir=ltr] select.form-control.is-invalid {
  background-position: right 0.75rem center;

  padding-right: calc(.75rem * 2 + 5px);
}

[dir=rtl] select.form-control,
[dir=rtl] select.form-control:valid,
[dir=rtl] select.form-control.is-valid,
[dir=rtl] select.form-control:invalid,
[dir=rtl] select.form-control.is-invalid {
  background-position: left 0.75rem center;
  padding-left: calc(.75rem * 2 + 5px);
}

[dir=ltr] select.form-control-sm,
[dir=ltr] select.form-control-sm:valid,
[dir=ltr] select.form-control-sm.is-valid,
[dir=ltr] select.form-control-sm:invalid,
[dir=ltr] select.form-control-sm.is-invalid {
  background-position: right 0.5rem center;
  padding-right: calc(.5rem * 2 + 5px);
}

[dir=rtl] select.form-control-sm,
[dir=rtl] select.form-control-sm:valid,
[dir=rtl] select.form-control-sm.is-valid,
[dir=rtl] select.form-control-sm:invalid,
[dir=rtl] select.form-control-sm.is-invalid {
  background-position: left 0.5rem center;
  padding-left: calc(.5rem * 2 + 5px);
}

[dir=ltr] select.form-control-lg,
[dir=ltr] select.form-control-lg:valid,
[dir=ltr] select.form-control-lg.is-valid,
[dir=ltr] select.form-control-lg:invalid,
[dir=ltr] select.form-control-lg.is-invalid {
  background-position: right 1rem center;
  padding-right: calc(1rem * 2 + 5px);
}

[dir=rtl] select.form-control-lg,
[dir=rtl] select.form-control-lg:valid,
[dir=rtl] select.form-control-lg.is-valid,
[dir=rtl] select.form-control-lg:invalid,
[dir=rtl] select.form-control-lg.is-invalid {
  background-position: left 1rem center;
  padding-left: calc(1rem * 2 + 5px);
}

/*
// .input-check
*/

.input-check {
  display: inline-block;
}

.input-check__body {
  display: block;
  position: relative;
  width: 16px;
  height: 16px;
}

.input-check__input {
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  cursor: inherit;
}

.input-check__box {
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 1.2px;
  background: #fff;
  -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15) inset;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15) inset;
  -webkit-transition: background 0.15s, -webkit-box-shadow 0.15s;
  transition: background 0.15s, -webkit-box-shadow 0.15s;
  transition: background 0.15s, box-shadow 0.15s;
  transition: background 0.15s, box-shadow 0.15s, -webkit-box-shadow 0.15s;
}

.input-check__icon {
  pointer-events: none;
  position: absolute;
  left: 4px;
  top: 5px;
  fill: #fff;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition: fill 0.15s, visibility 0s 0.15s, -webkit-transform 0.15s;
  transition: fill 0.15s, visibility 0s 0.15s, -webkit-transform 0.15s;
  transition: fill 0.15s, transform 0.15s, visibility 0s 0.15s;
  transition: fill 0.15s, transform 0.15s, visibility 0s 0.15s, -webkit-transform 0.15s;
}

.input-check__input:checked~.input-check__box {
  background: var(--text-black-color);
  -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05) inset;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05) inset;
}

.input-check__input:checked~.input-check__icon {
  fill: var(--default-theme-white);
  -webkit-transition-delay: 0s, 0s, 0s;
  transition-delay: 0s, 0s, 0s;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.input-check__input:disabled~.input-check__box {
  background: #f2f2f2;
  -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1) inset;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1) inset;
}

.input-check__input:disabled~.input-check__icon {
  fill: rgba(0, 0, 0, 0.2);
}

/*
// .input-check-color
*/

.input-check-color {
  display: inline-block;
}

.input-check-color__body {
  display: block;
  position: relative;
  width: 26px;
  height: 26px;
  border-radius: 1.2px;
  cursor: inherit;
  margin: 0;
}

.input-check-color__input {
  position: absolute;
  visibility: hidden;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.input-check-color__box {
  display: block;
  width: 30px;
  height: 30px;
  background: currentColor;
  cursor: inherit;
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}

.input-check-color__icon {
  position: absolute;
  left: 7px;
  top: 9px;
  fill: #fff;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition: -webkit-transform 0.15s;
  transition: -webkit-transform 0.15s;
  transition: transform 0.15s;
  transition: transform 0.15s, -webkit-transform 0.15s;
}

.input-check-color__input:checked~.input-check-color__icon {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.input-check-color__input:disabled {
  cursor: default;
}

.input-check-color__input:disabled~.input-check-color__box {
  position: relative;
  left: 0px;
  top: 0px;
  width: 22px;
  height: 22px;
  opacity: .5;
  cursor: default;
}

.input-check-color__input:disabled~.input-check-color__stick {
  pointer-events: none;
  display: block;
  position: absolute;
  width: 2px;
  border-radius: 1px;
  height: 34px;
  left: calc(50% - 1px);
  top: -6px;
  background: rgba(102, 102, 102, 0.9);
  -webkit-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
  -webkit-transform-origin: center center;
  transform-origin: center center;
}

.input-check-color--light .input-check-color__icon {
  fill: #3d464d;
}

.input-check-color--white .input-check-color__box {
  -webkit-box-shadow: 0 0 0 2px #d9d9d9 inset;
  box-shadow: 0 0 0 2px #d9d9d9 inset;

}

.input-check-color--white .input-check-color__icon {
  fill: #bfbfbf;
}

/*
// .input-number
*/

.input-number {
  display: block;
  width: 100%;
  position: relative;
}

.input-number__input {
  -moz-appearance: textfield;
  display: block;
  width: 100%;
  min-width: 88px;
  padding: 0 24px 1px;
  text-align: center;
}

.input-number__input::-webkit-inner-spin-button,
.input-number__input::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

.input-number__sub,
.input-number__add {
  position: absolute;
  height: calc(100% - 2px);
  width: 24px;
  top: 1px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  opacity: .3;
  -webkit-transition: opacity .18s;
  transition: opacity .18s;
}

.input-number__sub:before,
.input-number__sub:after,
.input-number__add:before,
.input-number__add:after {
  display: block;
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  background: currentColor;
}

.input-number__sub:before,
.input-number__add:before {
  width: 8px;
  height: 2px;
}

.input-number__sub:hover,
.input-number__add:hover {
  opacity: 1;
}

.input-number__sub:active,
.input-number__add:active {
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.05);
}

[dir=ltr] .input-number__sub {
  left: 1px;
}

[dir=rtl] .input-number__sub {
  right: 1px;
}

[dir=ltr] .input-number__add {
  right: 1px;
}

[dir=rtl] .input-number__add {
  left: 1px;
}

.input-number__add:after {
  width: 2px;
  height: 8px;
}

/*
// .input-radio
*/

.input-radio {
  display: inline-block;
}

.input-radio__body {
  display: block;
  position: relative;
  width: 16px;
  height: 16px;
}

.input-radio__input {
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  cursor: inherit;
}

.input-radio__circle {
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 8px;
  background: #fff;
  -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.17) inset;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.17) inset;
  -webkit-transition: background 0.2s, -webkit-box-shadow 0.2s;
  transition: background 0.2s, -webkit-box-shadow 0.2s;
  transition: background 0.2s, box-shadow 0.2s;
  transition: background 0.2s, box-shadow 0.2s, -webkit-box-shadow 0.2s;
}

.input-radio__circle::after {
  display: block;
  content: '';
  position: absolute;
  left: 5px;
  top: 5px;
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: #fff;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition: background 0.2s, visibility 0s 0.2s, -webkit-transform 0.2s;
  transition: background 0.2s, visibility 0s 0.2s, -webkit-transform 0.2s;
  transition: background 0.2s, transform 0.2s, visibility 0s 0.2s;
  transition: background 0.2s, transform 0.2s, visibility 0s 0.2s, -webkit-transform 0.2s;
  visibility: hidden;
}

.input-radio__input:checked~.input-radio__circle {
  background: var(--text-dark-white-color);
  -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08) inset;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08) inset;
}

.input-radio__input:checked~.input-radio__circle::after {
  background: #3d464d;
  visibility: visible;
  -webkit-transition-delay: 0s, 0s, 0s;
  transition-delay: 0s, 0s, 0s;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.input-radio__input:disabled~.input-radio__circle {
  background: #f2f2f2;
  -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12) inset;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12) inset;
}

.input-radio__input:disabled~.input-radio__circle::after {
  background: rgba(0, 0, 0, 0.2);
}

/*-------------------------------------------------
                   .input-radio-color
  ----------------------------------------------------*/

.product__option {
  display: flex;
}

.input-radio-color {
  display: block;
}

.input-radio-color__list {
  padding: 1px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -2px;
}

.input-radio-color__item {
  width: 30px;
  height: 30px;
  display: block;
  margin: 2px;
  cursor: pointer;
}

.input-radio-color__item input {
  pointer-events: none;
  opacity: 0;
  position: absolute;
}

.input-radio-color__item span {
  position: relative;
  width: 30px;
  height: 30px;
  display: block;
  border-radius: 15px;
  background: currentColor;
  -webkit-transform: scale(0.73333);
  transform: scale(0.73333);
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}

.input-radio-color__item span:before,
.input-radio-color__item span:after {
  display: block;
  position: absolute;
  content: "";
  border-radius: 1000px;
}

.input-radio-color__item span:before {
  left: 3px;
  top: 3px;
  width: 24px;
  height: 24px;
  background: #fff;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}

.input-radio-color__item span:after {
  left: 8px;
  top: 8px;
  width: 14px;
  height: 14px;
  background: currentColor;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}

.input-radio-color__item:hover input:enabled~span {
  -webkit-transform: scale(0.86667);
  transform: scale(0.86667);
}

.input-radio-color__item input:enabled:checked~span,
.input-radio-color__item input:enabled:checked~span:before,
.input-radio-color__item input:enabled:checked~span:after {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.input-radio-color__item--disabled {
  cursor: default;
}

.input-radio-color__item--disabled span {
  -webkit-transform: scale(0.75);
  transform: scale(0.75);
}

.input-radio-color__item--disabled span:before {
  -webkit-transform: scale(1.33) rotateZ(45deg);
  transform: scale(1.33) rotateZ(45deg);
  left: 14px;
  top: -1px;
  width: 2px;
  height: calc(100% + 2px);
  background: rgba(0, 0, 0, 0.3);
}

.input-radio-color__item--white span {
  -webkit-box-shadow: inset 0 0 0 2px #ccc;
  box-shadow: inset 0 0 0 2px #ccc;
}

.input-radio-color__item--white span:after {
  -webkit-box-shadow: inset 0 0 0 2px #ccc;
  box-shadow: inset 0 0 0 2px #ccc;
}

/*------------------------------------------------------
                       .input-radio-label
  --------------------------------------------------------*/

.input-radio-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
}

.input-radio-label__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -3px;
}

.input-radio-label__list input {
  position: absolute;
  pointer-events: none;
  opacity: 0;
}

.input-radio-label__list label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 5px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.input-radio-label__list span {
  cursor: pointer;
  display: block;
  height: auto;
  padding: 0 3px;
  border-radius: 0;
  background: transparent;
  color: #001747;
  -webkit-transition: background-color 0.2s, color 0.2s;
  transition: background-color 0.2s, color 0.2s;
}

.input-radio-label__list input:not(:checked):not(:disabled)~span:hover {
  background: #e0e0e0;
  color: #3d464d;
}

.input-radio-label__list input:checked~span {
  cursor: default;
  border-bottom: 1px solid var(--default-theme-dark-blue);
  color: #3d464d;
  -webkit-transition-duration: 0.08s, 0.08s;
  transition-duration: 0.08s, 0.08s;
}

.input-radio-label__list input:disabled~span {
  cursor: default;
  opacity: 0.5;
}

/*------------------------------------------------------------
                           .layout-switcher
  --------------------------------------------------------------*/
.product__options {
  margin: 14px 0 0 0;
}

.layout-switcher__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.layout-switcher__button {

  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 9px;
  height: 32px;
  border-radius: 0;
  background: #fff;
  fill: #a1abb3;
}

.layout-switcher__button:focus {
  outline: none;
}

.layout-switcher__button:hover {
  border-color: #e5e5e5;
  background: #f2f2f2;
  fill: #3d464d;
}

[dir="ltr"] .layout-switcher__button:first-child {
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
}

[dir="rtl"] .layout-switcher__button:first-child {
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
}

[dir="ltr"] .layout-switcher__button:last-child {
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
}

[dir="rtl"] .layout-switcher__button:last-child {
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
}

[dir="ltr"] .layout-switcher__button+.layout-switcher__button {
  margin-left: -1px;
}

[dir="rtl"] .layout-switcher__button+.layout-switcher__button {
  margin-right: -1px;
}

.layout-switcher__button--active,
.layout-switcher__button--active:hover {
  cursor: default;
  border-color: var(--default-theme-dark-blue);
  background: var(--default-theme-dark-blue);
  fill: #3d464d;
  z-index: 1;
}

/*
// .modal
*/

.modal {
  -webkit-overflow-scrolling: touch;
}

.modal-content {
  border: none;
  border-radius: 2px;
  -webkit-box-shadow: 0 1px 20px rgba(0, 0, 0, 0.15), 0 1px 3px rgba(0, 0, 0, 0.15);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.15), 0 1px 3px rgba(0, 0, 0, 0.15);
}

/*
// .nouislider
*/

/* Functional styling;
 * These styles are required for noUiSlider to function.
 * You don't need to change these rules to apply your design.
 */

.noUi-target,
.noUi-target * {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  -ms-touch-action: none;
  touch-action: none;
  -ms-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.noUi-target {
  position: relative;
  direction: ltr;
}

.noUi-base,
.noUi-connects {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

/* Wrapper for all connect elements.
 */

.noUi-connects {
  overflow: hidden;
  z-index: 0;
}

.noUi-connect,
.noUi-origin {
  will-change: transform;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  -ms-transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  -webkit-transform-style: preserve-3d;
  transform-origin: 0 0;
  -webkit-transform-style: flat;
  transform-style: flat;
}

.noUi-connect {
  height: 100%;
  width: 100%;
}

.noUi-origin {
  height: 10%;
  width: 10%;
}

/* Offset direction
 */

html:not([dir="rtl"]) .noUi-horizontal .noUi-origin {
  left: auto;
  right: 0;
}

/* Give origins 0 height/width so they don't interfere with clicking the
 * connect elements.
 */

.noUi-vertical .noUi-origin {
  width: 0;
}

.noUi-horizontal .noUi-origin {
  height: 0;
}

.noUi-handle {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: absolute;
}

.noUi-touch-area {
  height: 100%;
  width: 100%;
}

.noUi-state-tap .noUi-connect,
.noUi-state-tap .noUi-origin {
  -webkit-transition: transform 0.3s;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.noUi-state-drag * {
  cursor: inherit !important;
}

/* Slider size and handle placement;
 */

.noUi-horizontal {
  height: 18px;
}

.noUi-horizontal .noUi-handle {
  width: 34px;
  height: 28px;
  left: -17px;
  top: -6px;
}

.noUi-vertical {
  width: 18px;
}

.noUi-vertical .noUi-handle {
  width: 28px;
  height: 34px;
  left: -6px;
  top: -17px;
}

.noUi-target {
  height: 16px;
}

.noUi-base {
  padding-top: 5px;
}

.noUi-connects {
  background: #e0e0e0;
  border-radius: 3px;
  height: 6px;
}

.noUi-connect {
  border-radius: 2px;
  background: #ffd333;
}

.noUi-horizontal .noUi-handle {
  cursor: ew-resize;
  width: 16px;
  height: 16px;
  border-radius: 8px;
  background: #3d464d;
  -webkit-box-shadow: 0 0 0 0 rgba(61, 70, 77, 0);
  box-shadow: 0 0 0 0 rgba(61, 70, 77, 0);
  -webkit-transition: -webkit-box-shadow .2s;
  transition: -webkit-box-shadow .2s;
  transition: box-shadow .2s;
  transition: box-shadow .2s, -webkit-box-shadow .2s;
}

.noUi-horizontal .noUi-handle:after {
  top: 0;
  display: block;
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  margin: 5px;
  border-radius: 3px;
  background: #ffd333;
  -webkit-transition: -webkit-transform .2s;
  transition: -webkit-transform .2s;
  transition: transform .2s;
  transition: transform .2s, -webkit-transform .2s;
}

.noUi-horizontal .noUi-handle:focus {
  outline: none;
  -webkit-box-shadow: 0 0 0 3px rgba(61, 70, 77, 0.3);
  box-shadow: 0 0 0 3px rgba(61, 70, 77, 0.3);
}

.noUi-horizontal .noUi-handle:focus:after {
  -webkit-transform: scale(0);
  transform: scale(0);
}

.noUi-horizontal .noUi-handle {
  top: 0px;
}

[dir=ltr] .noUi-horizontal .noUi-handle {
  left: auto;
  right: -8px;
}

[dir=rtl] .noUi-horizontal .noUi-handle {
  right: auto;
  left: -8px;
}

/*
// .pagination
*/

.pagination {
  margin-bottom: 0;
}

.page-link {
  font-weight: 500;
  border-radius: 2px;
  border: none;
  line-height: 1;
  margin: 0 2px;
  padding: 9px 10px 8px;
  height: 33px;
  background: transparent;
  color: #3d464d;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.page-link:hover,
.page-link:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  background: #ebebeb;
  color: #3d464d;
}

.page-link--with-arrow {
  width: 29px;
  position: relative;
}

.page-link--with-arrow .page-link__arrow {
  position: absolute;
  fill: currentColor;
  top: 10px;
}

[dir=ltr] .page-link--with-arrow .page-link__arrow {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

[dir=rtl] .page-link--with-arrow .page-link__arrow {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

[dir=ltr] .page-link--with-arrow .page-link__arrow--left {
  left: 10px;
}

[dir=rtl] .page-link--with-arrow .page-link__arrow--left {
  right: 10px;
}

[dir=ltr] .page-link--with-arrow .page-link__arrow--right {
  left: 11px;
}

[dir=rtl] .page-link--with-arrow .page-link__arrow--right {
  right: 11px;
}

.page-item:first-child .page-link {
  border-radius: 2px;
}

[dir=ltr] .page-item:first-child .page-link {
  margin-left: 0;
}

[dir=rtl] .page-item:first-child .page-link {
  margin-right: 0;
}

.page-item:last-child .page-link {
  border-radius: 2px;
}

[dir=ltr] .page-item:last-child .page-link {
  margin-right: 0;
}

[dir=rtl] .page-item:last-child .page-link {
  margin-left: 0;
}

.page-item.active .page-link {
  background: var(--default-theme-dark-blue);
  color: var(--text-white-color);
  cursor: default;
  z-index: 2;
}

.subscription-list .data-table .product img {
  max-width: 80px;
}

.page-item.disabled .page-link {
  background: transparent;
  color: #b3b3b3;
}

/*
// .post-card
*/

.post-card__image {
  position: relative;
  overflow: hidden;
  border-radius: 1.5px;
}

.post-card__image img {
  max-width: 100%;
}

.post-card__image ::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  opacity: 0;
  -webkit-transition: opacity .6s;
  transition: opacity .6s;
  z-index: 1;
}

.post-card__image:hover ::before {
  opacity: 1;
}

.post-card__category {
  font-size: 14px;
  color: #adadad;
}

.post-card__category a {
  color: inherit;
  -webkit-transition: .15s;
  transition: .15s;
}

.post-card__category a:hover {
  color: #1a66ff;
}

.post-card__date {
  font-size: 14px;
  color: #adadad;
}

.post-card__name {
  font-size: 20px;
  line-height: 1.125;
  font-weight: 500;
}

.post-card__name a {
  color: inherit;
  -webkit-transition: .15s;
  transition: .15s;
}

.post-card__name a:hover {
  color: #1a66ff;
}

.post-card__content {
  font-size: 15px;
  line-height: 24px;
}

.post-card--layout--related .post-card__name {
  width: 100%;
  font-size: 17px;
  margin-top: 16px;
  line-height: 24px;
}

.post-card--layout--related .post-card__name a {
  -webkit-transition: all .2s;
  transition: all .2s;
}

.post-card--layout--related .post-card__name a:hover {
  color: #1a66ff;
}

.post-card--layout--related .post-card__date {
  margin-top: 8px;
  font-size: 15px;
}

@media (max-width: 767px) {
  .post-card--layout--related .post-card__name {
    margin-top: 12px;
    font-size: 15px;
    line-height: 20px;
  }

  .post-card--layout--related .post-card__date {
    margin-top: 4px;
    font-size: 14px;
  }
}

.post-card--layout--grid .post-card__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.post-card--layout--grid .post-card__image {
  margin-bottom: 14px;
}

.post-card--layout--grid .post-card__category {
  display: none;
}

.post-card--layout--grid .post-card__date {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
}

.post-card--layout--grid .post-card__name {
  width: 100%;
  font-size: 18px;
  margin-top: 4px;
  line-height: 22px;
}

.post-card--layout--grid .post-card__content {
  width: 100%;
  margin-top: 12px;
}

.post-card--layout--grid .post-card__read-more {
  width: 100%;
  display: none;
}

.post-card--layout--grid.post-card--size--lg .post-card__image {
  margin-bottom: 0;
  border-radius: 3px;
}

.post-card--layout--grid.post-card--size--lg .post-card__info {
  padding: 28px 36px 12px;
}

.post-card--layout--grid.post-card--size--lg .post-card__category {
  font-size: 15px;
  -webkit-box-ordinal-group: -1;
  -ms-flex-order: -2;
  order: -2;
  display: block;
}

.post-card--layout--grid.post-card--size--lg .post-card__date {
  font-size: 15px;
  position: relative;
}

[dir=ltr] .post-card--layout--grid.post-card--size--lg .post-card__date {
  padding-left: 22px;
}

[dir=rtl] .post-card--layout--grid.post-card--size--lg .post-card__date {
  padding-right: 22px;
}

.post-card--layout--grid.post-card--size--lg .post-card__date::before {
  top: 9px;
  content: '';
  display: block;
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 2px;
  background: currentColor;
}

[dir=ltr] .post-card--layout--grid.post-card--size--lg .post-card__date::before {
  left: 9px;
}

[dir=rtl] .post-card--layout--grid.post-card--size--lg .post-card__date::before {
  right: 9px;
}

.post-card--layout--grid.post-card--size--lg .post-card__name {
  margin-top: 8px;
  font-size: 24px;
  line-height: 32px;
}

.post-card--layout--grid.post-card--size--lg .post-card__content {
  margin-top: 20px;
  font-size: 16px;
}

.post-card--layout--grid.post-card--size--lg .post-card__read-more {
  display: block;
  margin-top: 18px;
}

@media (max-width: 767px) {
  .post-card--layout--grid.post-card--size--lg .post-card__info {
    padding: 20px 20px 12px;
  }

  .post-card--layout--grid.post-card--size--lg .post-card__name {
    font-size: 22px;
    line-height: 26px;
  }

  .post-card--layout--grid.post-card--size--lg .post-card__content {
    margin-top: 12px;
  }
}

@media (max-width: 479px) {
  .post-card--layout--grid.post-card--size--lg .post-card__info {
    padding: 12px 12px 12px;
  }

  .post-card--layout--grid.post-card--size--lg .post-card__name {
    font-size: 20px;
    line-height: 22px;
  }

  .post-card--layout--grid.post-card--size--lg .post-card__content {
    margin-top: 10px;
    font-size: 15px;
  }
}

@media (max-width: 379px) {
  .post-card--layout--grid.post-card--size--lg .post-card__name {
    margin-top: 4px;
  }

  .post-card--layout--grid.post-card--size--lg .post-card__info {
    padding: 10px 0;
  }
}

.post-card--layout--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.post-card--layout--list.post-card--size--nl .post-card__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-top: 10px;
}

.post-card--layout--list.post-card--size--nl .post-card__image {
  width: 350px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

[dir=ltr] .post-card--layout--list.post-card--size--nl .post-card__image {
  margin-right: 30px;
}

[dir=rtl] .post-card--layout--list.post-card--size--nl .post-card__image {
  margin-left: 30px;
}

.post-card--layout--list.post-card--size--nl .post-card__category {
  font-size: 15px;
  -webkit-box-ordinal-group: -1;
  -ms-flex-order: -2;
  order: -2;
  display: block;
}

.post-card--layout--list.post-card--size--nl .post-card__date {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
  font-size: 15px;
  position: relative;
}

[dir=ltr] .post-card--layout--list.post-card--size--nl .post-card__date {
  padding-left: 22px;
}

[dir=rtl] .post-card--layout--list.post-card--size--nl .post-card__date {
  padding-right: 22px;
}

.post-card--layout--list.post-card--size--nl .post-card__date::before {
  top: 9px;
  content: '';
  display: block;
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 2px;
  background: currentColor;
}

[dir=ltr] .post-card--layout--list.post-card--size--nl .post-card__date::before {
  left: 9px;
}

[dir=rtl] .post-card--layout--list.post-card--size--nl .post-card__date::before {
  right: 9px;
}

.post-card--layout--list.post-card--size--nl .post-card__name {
  margin-top: 6px;
  font-size: 18px;
  line-height: 24px;
  width: 100%;
}

.post-card--layout--list.post-card--size--nl .post-card__content {
  margin-top: 20px;
  font-size: 16px;
  width: 100%;
}

.post-card--layout--list.post-card--size--nl .post-card__read-more {
  display: block;
  margin-top: 14px;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .post-card--layout--list.post-card--size--nl .post-card__info {
    padding-top: 0;
  }

  .post-card--layout--list.post-card--size--nl .post-card__image {
    width: 260px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }

  [dir=ltr] .post-card--layout--list.post-card--size--nl .post-card__image {
    margin-right: 22px;
  }

  [dir=rtl] .post-card--layout--list.post-card--size--nl .post-card__image {
    margin-left: 22px;
  }

  .post-card--layout--list.post-card--size--nl .post-card__content {
    margin-top: 8px;
    font-size: 16px;
    overflow: hidden;
    height: 48px;
  }

  .post-card--layout--list.post-card--size--nl .post-card__read-more {
    margin-top: 10px;
  }
}

@media (max-width: 767px) {
  .post-card--layout--list.post-card--size--nl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .post-card--layout--list.post-card--size--nl .post-card__image {
    width: auto;
  }

  [dir=ltr] .post-card--layout--list.post-card--size--nl .post-card__image {
    margin-right: 0;
  }

  [dir=rtl] .post-card--layout--list.post-card--size--nl .post-card__image {
    margin-left: 0;
  }

  .post-card--layout--list.post-card--size--nl .post-card__content {
    margin-top: 10px;
  }
}

.post-card--layout--list.post-card--size--sm .post-card__image {
  width: 240px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

[dir=ltr] .post-card--layout--list.post-card--size--sm .post-card__image {
  margin-right: 22px;
}

[dir=rtl] .post-card--layout--list.post-card--size--sm .post-card__image {
  margin-left: 22px;
}

.post-card--layout--list.post-card--size--sm .post-card__name {
  margin-top: 10px;
  font-size: 16px;
  line-height: 20px;
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
  height: 40px;
  overflow: hidden;
}

.post-card--layout--list.post-card--size--sm .post-card__date {
  margin-top: 6px;
}

.post-card--layout--list.post-card--size--sm .post-card__category {
  display: none;
}

.post-card--layout--list.post-card--size--sm .post-card__content {
  margin-top: 10px;
  font-size: 15px;
  line-height: 22px;
  height: 66px;
  overflow: hidden;
}

.post-card--layout--list.post-card--size--sm .post-card__read-more {
  display: none;
}

/*---------------------------------
  // .product-card
  -----------------------------------*/

.product-card {
  position: relative;
  padding: 1px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.product-card:hover::before {
  -webkit-transition-duration: 0s;
  transition-duration: 0s;
  -webkit-box-shadow: 0 0 0 2px var(--default-theme-dark-blue) inset;
  box-shadow: 0 0 0 2px var(--default-theme-dark-blue) inset;
  z-index: 2;
}

.product-card:hover .product-card__quickview:not(.product-card__quickview--preload) {
  color: #3d464d;
}

.product-card__image {
  padding: 18px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.category-page .product-card__image {
  padding: 0px;

}

@supports (-ms-ime-align: auto) {
  .product-card__quickview svg {
    display: none;
  }

  .product-card__quickview .fake-svg-icon {
    display: block;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    font-size: 16px;
  }

  .product-card__quickview .fake-svg-icon::before {
    content: "\e900";
  }
}

.product-card__quickview:focus {
  outline: none;
}

.product-card__quickview--preload {
  color: transparent;
}

.product-card__quickview--preload:after {
  display: block;
  content: "";
  position: absolute;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-top-color: rgba(0, 0, 0, 0.5);
  -webkit-transition: border-color 0.1s;
  transition: border-color 0.1s;
  -webkit-animation-name: preloader-animation;
  animation-name: preloader-animation;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  left: calc(50% - 8px);
  top: calc(50% - 8px);
  width: 16px;
  height: 16px;
  border-radius: 8px;
}

.product-card__info {
  padding: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.product-card__name {
  font-size: 15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 70%;
  line-height: 19px;
  margin-top: 6px;
}

.product-info-detail {
  position: relative;
  padding-bottom: 5px;
}

.product-info-detail::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 10%;
  background-color: var(--default-theme-dark-blue);
  width: 0;
  height: 3px;
  transition: 500ms all;
}

.product-card:hover .product-info-detail::before {
  width: 100%;
  transition: 500ms all;
}

.block-slideshow .swiper-button-next:after,
.block-slideshow .swiper-button-prev:after {
  color: #fff;
}

/* swiper-pagination-bullet-active */
.block-slideshow .swiper-pagination-bullet {
  height: 3px;
  width: 15px;
  background: #fff;
  border-radius: 2px;
  opacity: 1;
}

.block-slideshow .swiper-pagination-bullet-active {
  background: var(--default-theme-dark-blue);
  width: 20px;
}

.block-slideshow__slide-image--desktop img {
  height: 100%;
  width: 100%;
  object-fit: cover;

}

.product-card__name a {
  color: inherit;
  -webkit-transition: 0.15s;
  transition: 0.15s;
  font-size: 17px;
  font-weight: 500;
  color: var(--text-black-color);
}

.product-card__name a:hover {
  color: var(--default-theme-dark-blue);
}

.product-card__rating {
  margin-top: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.block-products-carousel__slider .product__options .product__option .input-radio-label__list .outofstock {
  display: none;
}

.product-card__rating-stars,
.product-card__rating-legend {
  margin-top: 3px;
}

[dir="ltr"] .product-card__rating-stars {
  margin-right: 8px;
}

[dir="rtl"] .product-card__rating-stars {
  margin-left: 8px;
}

.product-card__rating-legend {
  font-size: 13px;
  line-height: 1;
  color: #b3b3b3;
  padding-top: 1px;
  white-space: nowrap;
}

.product-card__prices {

  line-height: 1;
  font-weight: 700;
  color: #3d464d;
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-around;
}

.color-squares li {
  position: relative;
  border: 1px solid #8686865c;
  height: 25px;
  width: 25px;
  margin: 3px 2px;
  border-radius: 100%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.color-squares li a {

  height: 15px;
  width: 15px;
  margin: 0;
  border: 1px solid #8686865c;
}

.product-card__new-price,
.product-card__prices {
  color: var(--text-black-color);
  font-weight: 400;
  font-size: 16px;
}

.product-card__old-price {
  color: #6d6d6d;
  font-weight: 400;
  font-size: 12px;
  text-decoration: line-through;
}

.product-card__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 24px;
}

#ModalAddToCart .modal-content {
  margin-top: 10%;
  width: 90%;
  padding: 25px;
  font-size: 18px;
}

#ModalAddToCart .form-group h4 a {
  text-align: left;
  font-size: 18px;
}

#ModalAddToCart .form-group h4 {
  height: auto;
}

#ModalAddToCart .attributes {
  font-size: 20px;
  font-weight: 400;
  color: var(--text-black-color);
  text-align: left;
  font-size: 18px;
}

/* thumnail */
ul.list-options.color-swatch {

  opacity: 1 !important;
}


ul.list-options.color-swatch li {
  list-style: none;
  display: inline-block;
  width: 34px;
  height: 34px;
  margin: 3px;
}

ul.list-options.color-swatch li img {
  width: 100%;
}

ul.list-options.color-swatch li a {
  display: block;
  height: 100%;
}

/* .color-swatch li>* {
  display: block;
  overflow: hidden;
  width: 100%;
  height: 100%;
  margin: 1px;
  cursor: pointer;
  text-decoration: none;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px transparent;
} */


/* .color-swatch {
  position: absolute;
  z-index: 2;
  bottom: 5px;
  left: 0;
  right: 0;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row;

  transition: transform 0.2s, opacity 0.3s 0.1s;
  width: 100%;
  pointer-events: none;
  opacity: 0;
  -ms-flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
} */

/* product alternative  */
#product__alternative--img {
  display: flex;
  flex-direction: row;
  left: 0;
  width: 100%;
  bottom: 0;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 9;
  justify-content: space-between;
}

#product__alternative--img li {
  width: 100%;
  background-color: transparent;
  border-bottom: 5px solid #d8d8d8;
  ;
  margin: 0 3px;
  height: 100%;
  cursor: pointer;
}

#product__alternative--img li:hover {
  border-color: var(--default-theme-dark-blue);
}

#product__alternative--img li img {
  opacity: 0;
}

/* .product-card:hover .color-swatch {
  transform: translate3d(0, 0, 0);
  pointer-events: all;
  opacity: 1;
} */

.product-card__addtocart--list {
  display: none;
}

.product-card__features-list {
  list-style: none;
  margin: 10px 0 6px;
  padding: 0;
  color: #6c757d;
  font-size: 13px;
  line-height: 15px;
}

.product-card__features-list li {
  padding: 3px 0 3px;
  position: relative;
}

[dir="ltr"] .product-card__features-list li {
  padding-left: 12px;
}

[dir="rtl"] .product-card__features-list li {
  padding-right: 12px;
}

.product-card__features-list li::before {
  content: "";
  display: block;
  position: absolute;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 2.5px;
  border: 1px solid currentColor;
}

[dir="ltr"] .product-card__features-list li::before {
  left: 0;
}

[dir="rtl"] .product-card__features-list li::before {
  right: 0;
}

.product-card__badges-list {
  top: 18px;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  z-index: 1;
  width: 100%;

}

[dir="ltr"] .product-card__badges-list {
  left: 18px;
}

[dir="rtl"] .product-card__badges-list {
  right: 18px;
}

.product-card__badge {
  font-size: 11px;
  border-radius: 1.5px;
  letter-spacing: 0.02em;
  line-height: 1;
  padding: 5px 8px 4px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 4px;
}

[dir="ltr"] .product-card__badge {
  margin-right: 4px;
}

[dir="rtl"] .product-card__badge {
  margin-left: 4px;
}

.product-card__badge--sale {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 36px;
  margin-right: 8px !important;
  background-color: var(--product-sale-badge-bg);
  color: #fff;
  margin-right: 6px;
  font-size: .9375rem;
}

.product-card__badge--new {
  background: var(--default-theme-dark-blue);
  color: #fff;
}

.product-card--stock {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
  z-index: -5;

}

.product-card__badge--stock {
  background-color: red;
  color: var(--text-white-color);
  width: 50%;
  padding: 15px 30px;
  font-size: 15px;
  text-align: center;
  margin-top: 35%;
}

.product-card__badge--hot {
  background: var(--default-theme-dark-blue);
  color: #fff;
}

.product-card--layout--horizontal {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.product-card--layout--horizontal .product-card__image {
  width: 120px;
  padding: 16px;
}

.product-card--layout--horizontal .product-card__badges-list {
  top: 10px;
}

[dir="ltr"] .product-card--layout--horizontal .product-card__badges-list {
  left: 10px;
}

[dir="rtl"] .product-card--layout--horizontal .product-card__badges-list {
  right: 10px;
}

.product-card--layout--horizontal .product-card__badge {
  padding: 3px 5px 2px;
}

.product-card--layout--horizontal .product-card__info {
  padding-top: 14px;
  padding-bottom: 42px;
  width: 100%;
}

[dir="ltr"] .product-card--layout--horizontal .product-card__info {
  padding-left: 0;
  padding-right: 30px;
}

[dir="rtl"] .product-card--layout--horizontal .product-card__info {
  padding-right: 0;
  padding-left: 30px;
}

.product-card--layout--horizontal .product-card__name {
  overflow: hidden;
  max-height: 38px;
}

.product-card--layout--horizontal .product-card__rating {
  white-space: nowrap;
}

.product-card--layout--horizontal .product-card__description {
  display: none;
}

.product-card--layout--horizontal .product-card__availability {
  display: none;
}

.product-card--layout--horizontal .product-card__buttons {
  display: none;
}

.product-card--layout--horizontal .product-card__actions {
  position: absolute;
  bottom: 18px;
}

[dir="ltr"] .product-card--layout--horizontal .product-card__actions {
  left: 120px;
}

[dir="rtl"] .product-card--layout--horizontal .product-card__actions {
  right: 120px;
}

.product-card--layout--horizontal .product-card__features-list {
  display: none;
}

.product-card--layout--grid .product-card__image {
  padding: 18px 18px 20px;
}

.product-card--layout--grid .product-card__info {
  padding: 0 24px 0;
}

.product-card--layout--grid .product-card__actions {
  padding: 0 24px 24px;
}

.product-card--layout--grid .product-card__description {
  display: none;
}

.product-card--layout--grid .product-card__availability {
  display: none;
}

.product-card--layout--grid .product-card__features-list {
  display: none;
}

.product-card--layout--grid.product-card--size--sm .product-card__image {
  padding: 15px;
}

.product-card--layout--grid.product-card--size--sm .product-card__badges-list {
  top: 16px;
}

[dir="ltr"] .product-card--layout--grid.product-card--size--sm .product-card__badges-list {
  left: 16px;
}

[dir="rtl"] .product-card--layout--grid.product-card--size--sm .product-card__badges-list {
  right: 16px;
}

.product-card--layout--grid.product-card--size--sm .product-card__info {
  padding: 0 15px 0;
}

.product-card--layout--grid.product-card--size--sm .product-card__actions {
  padding: 0 15px 15px;
}

.product-card--layout--grid.product-card--size--sm .product-card__buttons .btn {
  font-size: 0.8125rem;
  height: calc(1.5rem + 2px);
  line-height: 1.25;
  padding: 0.25rem 0.5625rem;
  font-weight: 500;
}

.product-card--layout--grid.product-card--size--sm .product-card__buttons .btn.btn-svg-icon {
  width: calc(1.5rem + 2px);
}

@media (hover: hover) {
  .product-card--layout--grid.product-card--size--sm--hidden-actions .product-card__buttons {
    display: none;
  }

  .product-card--layout--grid.product-card--size--sm--hidden-actions:hover {
    position: relative;
    z-index: 3;
    margin-bottom: -50px;
  }

  .product-card--layout--grid.product-card--size--sm--hidden-actions:hover .product-card__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
  .product-card--layout--grid.product-card--size--sm--hidden-actions .product-card__buttons {
    display: none;
  }

  .product-card--layout--grid.product-card--size--sm--hidden-actions:hover {
    position: relative;
    z-index: 3;
    margin-bottom: -50px;
  }

  .product-card--layout--grid.product-card--size--sm--hidden-actions:hover .product-card__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.product-card--layout--grid.product-card--size--nl .product-card__buttons .btn {
  font-size: 0.875rem;
  height: calc(1.875rem + 2px);
  line-height: 1.25;
  padding: 0.375rem 1rem;
  font-weight: 500;
}

.product-card--layout--grid.product-card--size--nl .product-card__buttons .btn.btn-svg-icon {
  width: calc(1.875rem + 2px);
}

@media (hover: hover) {
  .product-card--layout--grid.product-card--size--nl--hidden-actions .product-card__buttons {
    display: none;
  }

  .product-card--layout--grid.product-card--size--nl--hidden-actions:hover {
    position: relative;
    z-index: 3;
    /* margin-bottom: -56px; */
  }

  .product-card--layout--grid.product-card--size--nl--hidden-actions:hover .product-card__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
  .product-card--layout--grid.product-card--size--nl--hidden-actions .product-card__buttons {
    display: none;
  }

  .product-card--layout--grid.product-card--size--nl--hidden-actions:hover {
    position: relative;
    z-index: 3;
    margin-bottom: -56px;
  }

  .product-card--layout--grid.product-card--size--nl--hidden-actions:hover .product-card__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.product-card--layout--grid.product-card--size--lg .product-card__image {
  padding: 25px;
}

.product-card--layout--grid.product-card--size--lg .product-card__info {
  padding: 0 30px 0;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
}

.product-card--layout--grid.product-card--size--lg .product-card__name {
  font-size: 17px;
  line-height: 23px;
}

.product-card--layout--grid.product-card--size--lg .product-card__actions {
  padding: 0 30px 30px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.product-card--layout--grid.product-card--size--lg .product-card__rating {
  margin-top: 7px;
}

.product-card--layout--grid.product-card--size--lg .product-card__prices {
  margin-bottom: auto;
  font-size: 20px;
}

.product-card--layout--list {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.product-card--layout--list .product-card__image {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding: 24px;
  width: 210px;
}

.product-card--layout--list .product-card__info {
  padding: 20px 0;
}

[dir="ltr"] .product-card--layout--list .product-card__info {
  padding-left: 0;
  padding-right: 20px;
}

[dir="rtl"] .product-card--layout--list .product-card__info {
  padding-right: 0;
  padding-left: 20px;
}

.product-card--layout--list .product-card__name {
  font-size: 16px;
  line-height: 20px;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
}

.product-card--layout--list .product-card__rating {
  margin-top: 4px;
}

.product-card--layout--list .product-card__description {
  color: #6c757d;
  font-size: 15px;
  line-height: 22px;
  margin-top: 12px;
}

.product-card--layout--list .product-card__actions {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 190px;
  padding: 16px 20px;
}

[dir="ltr"] .product-card--layout--list .product-card__actions {
  border-left: 1px solid #ebebeb;
}

[dir="rtl"] .product-card--layout--list .product-card__actions {
  border-right: 1px solid #ebebeb;
}

.product-card--layout--list .product-card__prices {
  margin-top: 16px;
  font-size: 18px;
}

.product-card--layout--list .product-card__old-price {
  font-size: 14px;
}

.product-card--layout--list .product-card__buttons {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.product-card--layout--list .product-card__addtocart {
  display: none;
}

.product-card--layout--list .product-card__addtocart--list {
  display: block;
}

.product-card--layout--list .product-card__addtocart {
  width: 100%;
}

[dir="ltr"] .product-card--layout--list .product-card__addtocart+* {
  margin-left: 0;
}

[dir="rtl"] .product-card--layout--list .product-card__addtocart+* {
  margin-right: 0;
}

.product-card--layout--list .product-card__addtocart~* {
  margin-top: 8px;
}

.product-card--layout--list .product-card__addtocart,
.product-card--layout--list .product-card__wishlist,
.product-card--layout--list .product-card__compare {
  font-size: 0.875rem;
  height: calc(1.875rem + 2px);
  line-height: 1.25;
  padding: 0.375rem 1rem;
  font-weight: 500;
}

.product-card--layout--list .product-card__addtocart.btn-svg-icon,
.product-card--layout--list .product-card__wishlist.btn-svg-icon,
.product-card--layout--list .product-card__compare.btn-svg-icon {
  width: calc(1.875rem + 2px);
}

.product-card--layout--list .product-card__availability {
  color: #999;
  font-size: 14px;
}

[dir="ltr"] .product-card--layout--list .product-card__availability {
  padding-right: 10px;
}

[dir="rtl"] .product-card--layout--list .product-card__availability {
  padding-left: 10px;
}

.product-card--layout--list .product-card__features-list {
  font-size: 14px;
  line-height: 16px;
  margin-bottom: 0;
}

.product-card--layout--list .product-card__features-list li {
  padding: 3px 0;
}

[dir="ltr"] .product-card--layout--list .product-card__features-list li {
  padding-left: 12px;
  padding-right: 0;
}

[dir="rtl"] .product-card--layout--list .product-card__features-list li {
  padding-right: 12px;
  padding-left: 0;
}

.product-card--layout--list .product-card__features-list li::before {
  top: 8px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .product-card--layout--list .product-card__image {
    width: 180px;
  }

  [dir="ltr"] .product-card--layout--list .product-card__image {
    padding-left: 20px;
    padding-right: 20px;
  }

  [dir="rtl"] .product-card--layout--list .product-card__image {
    padding-right: 20px;
    padding-left: 20px;
  }

  [dir="ltr"] .product-card--layout--list .product-card__info {
    padding-left: 4px;
    padding-right: 20px;
  }

  [dir="rtl"] .product-card--layout--list .product-card__info {
    padding-right: 4px;
    padding-left: 20px;
  }
}

@media screen and (max-width:1250px) and (min-width:767px) {

  [dir="ltr"] .product-card__badge {
    margin-right: 37px;
  }

  .product-card__badge--stock {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .product-card--layout--list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .block-slideshow__slide-image--mobile {
    background-position: top center;
    display: block;
    height: 100%;
  }

  .block-slideshow__slide-image--mobile img {
    height: 600px;
    object-fit: cover;
    object-position: bottom center;
  }

  [dir="ltr"] .product-card__badge {
    margin-right: 37px;
  }

  section {
    margin: 20px 0;
  }

  .block-header__title {
    font-size: 25px;
  }

  .block-products-carousel .owl-stage {
    margin-bottom: 0;
  }

  .product-card__badge--stock {
    width: 100%;
  }

  .product-card--layout--list .product-card__image {
    width: 250px;
    max-width: 100%;
    padding: 20px;
    margin: 0 auto;
  }

  .product-card--layout--list .product-card__info {
    border-top: 1px solid #ebebeb;
    padding: 20px;
  }

  [dir="ltr"] .product-card--layout--list .product-card__info {
    padding-left: 20px;
    padding-right: 20px;
  }

  [dir="rtl"] .product-card--layout--list .product-card__info {
    padding-right: 20px;
    padding-left: 20px;
  }

  .product-card--layout--list .product-card__actions {
    width: auto;
    border-top: 1px solid #ebebeb;
    padding: 20px;
  }

  [dir="ltr"] .product-card--layout--list .product-card__actions {
    border-left: none;
  }

  [dir="rtl"] .product-card--layout--list .product-card__actions {
    border-right: none;
  }

  .product-card--layout--list .product-card__buttons {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }

  .product-card--layout--list .product-card__buttons .btn {
    font-size: 1rem;
    height: calc(2.25rem + 2px);
    line-height: 1.5;
    padding: 0.375rem 1.25rem;
    font-weight: 500;
  }

  .product-card--layout--list .product-card__buttons .btn.btn-svg-icon {
    width: calc(2.25rem + 2px);
  }

  .product-card--layout--list .product-card__addtocart--list {
    width: auto;
  }

  [dir="ltr"] .product-card--layout--list .product-card__addtocart--list {
    margin-right: auto;
  }

  [dir="rtl"] .product-card--layout--list .product-card__addtocart--list {
    margin-left: auto;
  }
}



/*-------------------------------------------
                 .product-image
  ----------------------------------------------*/

.product-image__body {
  display: block;
  position: relative;
  padding-bottom: 100%;
  width: 100%;
  height: 100%;
}

.product-image__hover {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: 500ms all;
}

.block-products-carousel__cell .product-card:hover .product-image__hover {
  opacity: 1;
  transition: 500ms all;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.product-image__img {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.owl-carousel .owl-item img {
  object-fit: cover;
  object-position: top;
  height: 100%;
  width: 100%;

}

.page-not-found {
  line-height: 1.8;
}

.page-not-found a {
  background-color: var(--default-theme-dark-blue) !important;
  color: var(--text-white-color);
  box-shadow: none;
  border: 0;
  margin-top: 25px;
}

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {

  .product-image__img,
  .owl-carousel .owl-item .product-image__img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
  }
}

.owl-carousel .owl-item .product-image--location--gallery .product-image__img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  object-fit: cover;
}

/*--------------------------------------------------------
                        Rating
  ----------------------------------------------------------*/

.rating__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.rating__star {
  height: 10px;
}

[dir="ltr"] .rating__star+.rating__star {
  margin-left: 3px;
}

[dir="rtl"] .rating__star+.rating__star {
  margin-right: 3px;
}

[dir="ltr"] .rating__star:first-child+.rating__star--only-edge {
  margin-left: 0;
}

[dir="rtl"] .rating__star:first-child+.rating__star--only-edge {
  margin-right: 0;
}

.rating__fill {
  color: #ccc;
  fill: currentColor;
}

.rating__stroke {
  color: rgba(0, 0, 0, 0.08);
  fill: currentColor;
}

.rating__star--active .rating__fill {
  color: #ffd333;
}

.rating__star--active .rating__stroke {
  color: rgba(0, 0, 0, 0.08);
}

.rating__star--only-edge {
  position: relative;
  display: none;
}

@supports (-ms-ime-align: auto) {
  svg.rating__star {
    display: none;
  }

  .rating__star--only-edge {
    display: block;
  }

  .rating__fill .fake-svg-icon,
  .rating__stroke .fake-svg-icon {
    display: block;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 13px;
    height: 12px;
    font-size: 12px;
  }

  .rating__fill .fake-svg-icon::before {
    content: "\e902";
  }

  .rating__stroke {
    position: absolute;
    top: 0;
  }

  [dir="ltr"] .rating__stroke {
    left: 0;
  }

  [dir="rtl"] .rating__stroke {
    right: 0;
  }

  .rating__stroke .fake-svg-icon::before {
    content: "\e903";
  }
}

/*
// .select2
*/

.cartsummary__cart {
  background-color: var(--default--theme-grey-bg);
  padding-top: 30px !important;
}

.form-control+.select2-container {
  width: 100%;
}

.form-control+.select2-container .select2-selection__arrow {
  display: none;
}

.form-control+.select2-container .select2-selection--single {
  border-radius: 2px;
  border-width: 1px;
  border-style: solid;
  background-clip: border-box;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 5 10'%3E%3Cpath fill='%234d4d4d' d='M4.503,4 L0.497,4 C0.094,4 -0.142,3.492 0.089,3.122 L2.095,0.233 C2.293,-0.084 2.712,-0.084 2.911,0.233 L4.911,3.122 C5.142,3.492 4.906,4 4.503,4 ZM0.497,6 L4.503,6 C4.906,6 5.142,6.504 4.911,6.871 L2.905,9.737 C2.707,10.052 2.288,10.052 2.089,9.737 L0.089,6.871 C-0.142,6.504 0.094,6 0.497,6 Z'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: 5px 10px;
  -webkit-transition: border-color .15s ease-in-out, background .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
  transition: border-color .15s ease-in-out, background .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
  transition: border-color .15s ease-in-out, background .15s ease-in-out, box-shadow .15s ease-in-out;
  transition: border-color .15s ease-in-out, background .15s ease-in-out, box-shadow .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
}

.form-control+.select2-container .select2-selection--single:focus {
  outline: none;
}

.form-control+.select2-container .select2-selection__rendered {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.form-control+.select2-container .select2-selection--single {
  background-color: #fff;
  border-color: #ced4da;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.form-control+.select2-container .select2-selection__rendered {
  color: #495057;
}

.form-control+.select2-container--disabled .select2-selection--single {
  background-color: #e9ecef;
}

.form-control+.select2-container--open .select2-selection--single {
  border-color: #80bdff;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.form-control+.select2-container .select2-selection--single {
  height: 50px;
  border-radius: 5px;
}

[dir=ltr] .form-control+.select2-container .select2-selection--single {
  background-position: right 12px center;
}

[dir=rtl] .form-control+.select2-container .select2-selection--single {
  background-position: left 12px center;
}

.form-control+.select2-container .select2-selection__rendered {
  line-height: 34px;
  padding: calc(15px / 2) 12px;
  font-size: 16px;
}

[dir=ltr] .form-control+.select2-container .select2-selection__rendered {
  padding-right: 31px;
}

[dir=rtl] .form-control+.select2-container .select2-selection__rendered {
  padding-left: 31px;
}

.form-control-lg+.select2-container .select2-selection--single {
  height: 46px;
}

[dir=ltr] .form-control-lg+.select2-container .select2-selection--single {
  background-position: right 16px center;
}

[dir=rtl] .form-control-lg+.select2-container .select2-selection--single {
  background-position: left 16px center;
}

.form-control-lg+.select2-container .select2-selection__rendered {
  line-height: 25px;
  padding: calc(19px / 2) 16px;
  font-size: 20px;
}

[dir=ltr] .form-control-lg+.select2-container .select2-selection__rendered {
  padding-right: 39px;
}

[dir=rtl] .form-control-lg+.select2-container .select2-selection__rendered {
  padding-left: 39px;
}

.form-control-sm+.select2-container .select2-selection--single {
  height: 32px;
}

[dir=ltr] .form-control-sm+.select2-container .select2-selection--single {
  background-position: right 8px center;
}

[dir=rtl] .form-control-sm+.select2-container .select2-selection--single {
  background-position: left 8px center;
}

.form-control-sm+.select2-container .select2-selection__rendered {
  line-height: 17px;
  padding: calc(13px / 2) 8px;
  font-size: 14px;
}

[dir=ltr] .form-control-sm+.select2-container .select2-selection__rendered {
  padding-right: 23px;
}

[dir=rtl] .form-control-sm+.select2-container .select2-selection__rendered {
  padding-left: 23px;
}

.select2-dropdown {
  background: #fff;
  border: none;
  border-radius: 0;
  -webkit-box-shadow: 0 1px 20px rgba(0, 0, 0, 0.2), 0 1px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.2), 0 1px 5px rgba(0, 0, 0, 0.1);
}

.select2-search--dropdown {
  padding: 0;
  border-bottom: 1px solid #e5e5e5;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: none;
  padding: 6px 10px;
  font-size: 15px;
}

.select2-container--default .select2-search--dropdown .select2-search__field:focus {
  outline: none;
}

.select2-container--default .select2-results__option[aria-selected=true] {
  background: #f2f2f2;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background: #d9ecff;
  color: #36414d;
}

.select2-results__option {
  padding: 4px 10px;
  font-size: 15px;
}

.select2-results__options:before,
.select2-results__options:after {
  display: list-item;
  content: '';
  height: 6px;
}

/*
// .share-links
*/

.share-links__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 11px;
  line-height: 18px;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
}

[dir=ltr] .share-links__item+.share-links__item {
  margin-left: 4px;
}

[dir=rtl] .share-links__item+.share-links__item {
  margin-right: 4px;
}

.share-links__item a {
  border-radius: 1.5px;
  display: block;
  padding: 2px 6px 1px 6px;
}

.share-links__item a,
.share-links__item a:hover {
  color: inherit;
  text-decoration: none;
}

.share-links__item--type--like a {
  background: #4267b2;
}

.share-links__item--type--like a:hover {
  background: #3b5c9f;
}

.share-links__item--type--tweet a {
  background: #1b95e0;
}

.share-links__item--type--tweet a:hover {
  background: #1886c9;
}

.share-links__item--type--pin a {
  background: #e63939;
}

.share-links__item--type--pin a:hover {
  background: #e32222;
}

.share-links__item--type--counter a {
  color: #737373;
  -webkit-box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2);
}

.share-links__item--type--counter a:hover {
  color: #666666;
}

/*
// .social-links
*/

.social-links__list {
  list-style: none;
  padding: 0;
  margin: 0 0 -7px -7px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.social-links__item {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: 7px;
  margin-bottom: 7px;
}

.social-links__link {
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  -webkit-transition: all .2s;
  transition: all .2s;
  background: var(--default-color-black);
}

.social-links__link,
.social-links__link:hover {
  color: #fff;
}

.social-links__link:hover {
  opacity: .8;
}

.social-links--shape--circle .social-links__link {
  border-radius: 17px;
}

.social-links--shape--rounded .social-links__link {
  border-radius: 2px;
}

.social-links__link--type--facebook {
  background: #3c5a99;
}

.social-links__link--type--twitter {
  background: #00a2e8;
}

.social-links__link--type--youtube {
  background: #e52e2e;
}

.social-links__link--type--instagram {
  background: #815dc7;
}

.social-links__link--type--rss {
  background: #ffc338;
}

.social-links__link--type--rss,
.social-links__link--type--rss:hover {
  color: #3d464d;
}

/*
// .tags
*/

.tags__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 500;
  line-height: 18px;
  margin: -2px;
}

.tags__list a {
  display: block;
  background: transparent;
  border: 1px solid #e5e5e5;
  color: #3d464d;
  border-radius: 1.5px;
  padding: 3px 8px 2px;
  margin: 2px;
  -webkit-transition: all .15s;
  transition: all .15s;
}

.tags__list a:focus,
.tags__list a:hover {
  background: var(--default-theme-dark-blue);
  border: 1px solid var(--default-theme-dark-blue);
  color: var(--text-white-color);
}

.tags--lg .tags__list {}

.tags--lg .tags__list a {
  padding: 6px 10px 5px;
  margin: 3px;
}

.tags--lg .tags__list a i {
  margin-left: 5px;
}

/*
// .tooltip
*/

.tooltip {
  pointer-events: none;
  -webkit-transition-duration: 0s;
  transition-duration: 0s;
  font-family: inherit;
}

.tooltip.show {
  opacity: 1;
}

.tooltip-inner {
  background: #3d464d;
  color: #fff;
  border-radius: 1.5px;
  position: relative;
  padding: .1875rem .625rem .125rem;
}

.tooltip .arrow {
  width: 8px;
  height: 8px;
}

.tooltip .arrow::before {
  width: 8px;
  height: 8px;
  border-radius: 1px;
  border: none;
  background: #3d464d;
  -webkit-transform: rotateZ(45deg) scale(0.7619);
  transform: rotateZ(45deg) scale(0.7619);
}

.bs-tooltip-auto[x-placement^=top],
.bs-tooltip-top {
  padding: 4px 0;
}

.bs-tooltip-auto[x-placement^=top] .arrow,
.bs-tooltip-auto[x-placement^=top] .tooltip-inner,
.bs-tooltip-top .arrow,
.bs-tooltip-top .tooltip-inner {
  bottom: 3px;
}

.bs-tooltip-auto[x-placement^=bottom],
.bs-tooltip-bottom {
  padding: 4px 0;
}

.bs-tooltip-auto[x-placement^=bottom] .arrow,
.bs-tooltip-auto[x-placement^=bottom] .tooltip-inner,
.bs-tooltip-bottom .arrow,
.bs-tooltip-bottom .tooltip-inner {
  top: 3px;
}

.bs-tooltip-auto[x-placement^=right],
.bs-tooltip-right {
  padding: 0 4px;
}

.bs-tooltip-auto[x-placement^=right] .arrow,
.bs-tooltip-auto[x-placement^=right] .tooltip-inner,
.bs-tooltip-right .arrow,
.bs-tooltip-right .tooltip-inner {
  left: 3px;
}

.bs-tooltip-auto[x-placement^=left],
.bs-tooltip-left {
  padding: 0 4px;
}

.bs-tooltip-auto[x-placement^=left] .arrow,
.bs-tooltip-auto[x-placement^=left] .tooltip-inner,
.bs-tooltip-left .arrow,
.bs-tooltip-left .tooltip-inner {
  right: 3px;
}

/*
// .typography
*/

.typography {
  line-height: 1.625;
}

.typography a:hover {
  text-decoration: underline;
}

.typography h1,
.typography h2,
.typography h3,
.typography h4,
.typography h5,
.typography h6 {
  margin-top: 1.75em;
  margin-bottom: .75em;
}

.typography p {
  margin-bottom: 1.5em;
}

.typography ol,
.typography ul {
  margin: 1.7em 0;
}

.typography li {
  margin-bottom: .7em;
}

.typography>*:first-child {
  margin-top: 0;
}

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

.typography a>img {
  -webkit-transition: opacity .2s;
  transition: opacity .2s;
}

.typography a:hover>img {
  opacity: .8;
}

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

.typography figure {
  margin: 2.5em 0;
}

.typography figcaption {
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
  color: #999;
}

.typography hr {
  position: relative;
  width: 4px;
  height: 4px;
  border-radius: 2px;
  border: none;
  background: #ccc;
  margin: 2.5em auto;
}

.typography hr::after,
.typography hr::before {
  position: absolute;
  content: '';
  display: block;
  width: inherit;
  height: inherit;
  border-radius: inherit;
  background: inherit;
}

[dir=ltr] .typography hr::after {
  left: -30px;
}

[dir=rtl] .typography hr::after {
  right: -30px;
}

[dir=ltr] .typography hr::before {
  right: -30px;
}

[dir=rtl] .typography hr::before {
  left: -30px;
}

.typography blockquote {
  margin: 3em 2.5em 2.5em;
  text-align: center;
  font-size: 18px;
  font-style: italic;
}

.typography blockquote cite {
  margin-top: -.5em;
  color: #999;
  display: block;
  font-size: 15px;
  font-style: normal;
}

.typography blockquote p {
  margin-bottom: 1.25em;
}

.typography blockquote>*:first-child {
  margin-top: 0;
}

.typography blockquote>*:last-child {
  margin-bottom: 0;
}

@media (max-width: 991px) {

  .typography h1,
  .typography h2,
  .typography h3,
  .typography h4,
  .typography h5,
  .typography h6 {
    margin-top: 1.25em;
    margin-bottom: .5em;
  }
}

@media (max-width: 767px) {

  .typography ol,
  .typography ul {
    margin: 1.5em 0;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .typography blockquote {
    margin: 2.5em 1.5em 2em;
  }
}

@media (max-width: 575px) {
  .typography blockquote {
    font-size: 16px;
    margin: 2.25em 0;
  }

  [dir=ltr] .typography blockquote {
    text-align: left;
  }

  [dir=rtl] .typography blockquote {
    text-align: right;
  }
}

@media (min-width: 992px) {
  .typography--expanded figure {
    text-align: center;
    position: relative;
    width: calc(100% + 190px);
    margin: 3em 0;
  }

  [dir=ltr] .typography--expanded figure {
    left: -95px;
  }

  [dir=rtl] .typography--expanded figure {
    right: -95px;
  }

  .typography--expanded figure img {
    overflow: hidden;
    border-radius: 3px;
  }
}

/* ----------------------------------------
// Filters
// ---------------------------------------- */

/*
// .filter
*/

.filter__title {
  display: block;
  border: none;
  padding: 6px 10px;
  cursor: pointer;
  width: 100%;
  position: relative;
  color: inherit;
  font-weight: 500;
  font-size: 18px;
  line-height: 18px;
  border-radius: 2px;
  margin: 0;
  -webkit-transition: background-color .2s, fill .2s;
  transition: background-color .2s, fill .2s;
  background: var(--default-theme-white);
  fill: #ccc;
  padding: 20px;
  border-bottom: 1px solid #b3b3b333;
}

.filter--opened .filter__title {
  background: grey;
  background-color: var(--default-theme-white);
}

[dir=ltr] .filter__title {
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
}

[dir=rtl] .filter__title {
  text-align: right;
  transition: 500ms all;
}

.filter__title:focus,
.filter__title:hover {
  -webkit-transition-duration: .1s, .1s;
  transition-duration: .1s, .1s;
  text-decoration: underline;
  fill: #b3b3b3;
  transition: 500ms all;
}

.filter__title:focus {
  outline: none;
}

.filter__arrow {
  position: absolute;
  top: 11px;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}

[dir=ltr] .filter__arrow {
  right: 10px;
}

[dir=rtl] .filter__arrow {
  left: 10px;
}

.filter__body {
  margin: 0 -20px;
  overflow: hidden;
  visibility: hidden;
  height: 0;
  opacity: 0;
  -webkit-transition: height 0.2s, opacity 0.2s, visibility 0s 0.2s;
  transition: height 0.2s, opacity 0.2s, visibility 0s 0.2s;

}

.filter__container {
  padding: 10px 20px 16px;
  overflow-y: scroll;
}

.block-sidebar--offcanvas--always .filter__body {
  height: 0 !important;
  margin: 0;
}

.block-sidebar--offcanvas--always .filter__arrow {
  top: 25px;
}

.filter--opened .filter__body {
  -webkit-transition-delay: 0s, 0s;
  transition-delay: 0s, 0s;
  visibility: visible;
  height: max-content !important;
  opacity: 1;
  width: 100%;
  max-width: 600px;
  min-width: 85%;
}

.filter--opened .filter__arrow {
  -webkit-transform: rotateZ(180deg);
  transform: rotateZ(180deg);
}


/* filter container scroll  */
.filter__container::-webkit-scrollbar {
  width: 8px;
}

.filter__container::-webkit-scrollbar-thumb {
  background-color: var(--text-black-color);
  border-radius: 6px;
}

.filter__container::-webkit-scrollbar-track {
  background-color: var(--default-theme-off-white);
}

.filter__container::-moz-scrollbar {
  width: 12px;
}

.filter__container::-moz-scrollbar-thumb {
  background-color: var(--text-black-color);
  border-radius: 6px;
}

.filter__container::-moz-scrollbar-track {
  background-color: var(--default-theme-off-white);
}

/*
// .filter-categories
*/

.filter-categories__list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 15px;
  line-height: 18px;
}

.filter-categories__list a {
  -webkit-transition: color .15s;
  transition: color .15s;
  font-size: 14px;
}

.filter-categories__list a:hover {
  color: var(--default-theme-light-blue);
}

.filter-categories__item {
  padding: 0 13px 13px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.filter-categories__item>a {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

[dir=ltr] .filter-categories__item>a {
  padding-right: 10px;
}

[dir=rtl] .filter-categories__item>a {
  padding-left: 10px;
}

.filter-categories__item--parent {
  position: relative;
}


[dir=rtl] .filter-categories__item--parent {
  padding-right: 14px;
}

.filter-categories__item--current {
  font-weight: 500;
}

.filter-categories__item--child {
  position: relative;
  font-size: 15px;
}


[dir=rtl] .filter-categories__item--child {
  padding-right: 14px;
}

.filter-categories__arrow {
  fill: #ccc;
  position: absolute;
  top: 10px;
}

[dir=ltr] .filter-categories__arrow {
  left: 0;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

[dir=rtl] .filter-categories__arrow {
  right: 0;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.filter-categories__counter {
  font-size: 12px;
  line-height: 12px;
  padding-top: 4px;
  font-weight: 400;
  color: #999;
}

/*
// .filter-categories-alt
*/

.filter-categories-alt__list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 15px;
  line-height: 18px;
}

.filter-categories-alt__list a {
  color: inherit;
  -webkit-transition: color .15s;
  transition: color .15s;
}

.filter-categories-alt__list a:hover {
  color: #1a66ff;
}

.filter-categories-alt__expander {
  margin: -3px 0;
  width: 24px;
  height: 24px;
  position: relative;
  border: none;
  border-radius: 1.5px;
  cursor: pointer;
  padding: 0;
  background: transparent;
  color: #ccc;
  -webkit-transition: all .2s;
  transition: all .2s;
}

[dir=ltr] .filter-categories-alt__expander {
  float: right;
  margin-right: -6px;
  margin-left: 8px;
}

[dir=rtl] .filter-categories-alt__expander {
  float: left;
  margin-left: -6px;
  margin-right: 8px;
}

.filter-categories-alt__expander:before,
.filter-categories-alt__expander:after {
  display: block;
  position: absolute;
  content: '';
  background: currentColor;
  width: 8px;
  height: 2px;
  top: calc(50% - 1px);
}

[dir=ltr] .filter-categories-alt__expander:before,
[dir=ltr] .filter-categories-alt__expander:after {
  left: calc(50% - 4px);
}

[dir=rtl] .filter-categories-alt__expander:before,
[dir=rtl] .filter-categories-alt__expander:after {
  right: calc(50% - 4px);
}

.filter-categories-alt__expander:after {
  -webkit-transform: rotateZ(90deg);
  transform: rotateZ(90deg);
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}

.filter-categories-alt__expander:focus,
.filter-categories-alt__expander:hover {
  background: rgba(0, 0, 0, 0.05);
  color: #a6a6a6;
}

.filter-categories-alt__expander:focus {
  outline: none;
}

.filter-categories-alt__children {
  overflow: hidden;
  height: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: height 0.2s, opacity 0.2s, visibility 0s 0.2s;
  transition: height 0.2s, opacity 0.2s, visibility 0s 0.2s;
}

.filter-categories-alt__children:before,
.filter-categories-alt__children:after {
  display: block;
  content: '';
  clear: both;
}

.filter-categories-alt__list--level--1>.filter-categories-alt__item {
  padding: 6px 0;
}

.filter-categories-alt__list--level--1>.filter-categories-alt__item>.filter-categories-alt__children {
  margin: 0 -20px;
}

.filter-categories-alt__list--level--1>.filter-categories-alt__item>.filter-categories-alt__children:before {
  height: 12px;
}

.filter-categories-alt__list--level--2 {
  list-style: none;
  padding: 10px 20px;
  margin: 0;
  font-size: 14px;
  line-height: 17px;
  border: 0 solid #ebebeb;
  border-top-width: 1px;
  border-bottom-width: 1px;
  background: var(--default-theme-off-white);
}

.filter-categories-alt__list--level--2>.filter-categories-alt__item {
  padding: 4px 0;
}

.filter-categories-alt__list--level--2 .filter-categories-alt__children {
  width: calc(100% + 40px);
  margin: 0 -20px;
  padding: 0 20px;
}

.filter-categories-alt__list--level--2 .filter-categories-alt__children:before {
  height: 5px;
}

.filter-categories-alt__list--level--3,
.filter-categories-alt__list--level--3 .filter-categories-alt__list {
  font-size: 14px;
  line-height: 17px;
}

[dir=ltr] .filter-categories-alt__list--level--3,
[dir=ltr] .filter-categories-alt__list--level--3 .filter-categories-alt__list {
  border-left: 1px solid rgba(0, 0, 0, 0.08);
  padding-left: 14px;
  margin-left: 6px;
}

[dir=rtl] .filter-categories-alt__list--level--3,
[dir=rtl] .filter-categories-alt__list--level--3 .filter-categories-alt__list {
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  padding-right: 14px;
  margin-right: 6px;
}

.filter-categories-alt__list--level--3>.filter-categories-alt__item,
.filter-categories-alt__list--level--3 .filter-categories-alt__list>.filter-categories-alt__item {
  padding: 2px 0;
}

.filter-categories-alt__list--level--3 .filter-categories-alt__children:after,
.filter-categories-alt__list--level--3 .filter-categories-alt__list .filter-categories-alt__children:after {
  height: 3px;
}

.filter-categories-alt__item--open>.filter-categories-alt__expander:after {
  -webkit-transform: none;
  transform: none;
}

.filter-categories-alt__item--open>.filter-categories-alt__children {
  height: auto;
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: 0s, 0s, 0s;
  transition-delay: 0s, 0s, 0s;
}

.filter-categories-alt__item--current>a {
  font-weight: 700;
}

/*--------------------------------------------
                  filter-color
-----------------------------------------------*/
.filter-color {
  padding: 20px 0 0 0;
}

.filter-color__list {
  padding: 2px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -4px;

}

.filter-color__item {
  cursor: pointer;
  margin: 7px;
  position: relative;
}

.input-check-color__stick {
  background-color: var(--default-color-black);
  position: absolute;
  top: -114%;
  left: -50%;
  width: auto;
  color: var(--default-theme-white);
  padding: 5px;
  border-radius: 3px;
  text-align: center;
  display: none;
  font-size: 12px;
  white-space: nowrap;
}

.filter-color__item:hover .input-check-color__stick {
  display: block;
}

.input-check-color__stick::after {
  background-color: var(--text-black-color);
}

.filter-color__check {
  display: block;
}

/*
// .filter-list
*/


.filter-list__item {
  padding: 1px 0;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 10px 0;
}

.filter-list__input {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

[dir=ltr] .filter-list__input {
  margin-right: 7px;
}

[dir=rtl] .filter-list__input {
  margin-left: 7px;
}

.filter-list__title {
  padding: 1px 0;
  font-size: 14px;
  line-height: 16px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.filter-list__counter {
  padding-top: 3px;
  font-size: 12px;
  line-height: 12px;
  color: #999;
}

[dir=ltr] .filter-list__counter {
  margin-left: 12px;
}

[dir=rtl] .filter-list__counter {
  margin-right: 12px;
}

.filter-list__item--disabled {
  cursor: default;
}

.filter-list__item--disabled .filter-list__title {
  color: #999;
}


/*
// .filter-price
*/

.filter-price__slider {
  margin-top: 6px;
}

.filter-price__title {
  margin-top: 16px;
  font-size: 14px;
  color: #999;
}

#priceStart,
#priceEnd {

  border-radius: 0;
  height: 40px;
}

.prices__btn {
  background-color: var(--default-theme-dark-blue);
  color: var(--text-white-color);
  padding: 5px 15px;
  transition: 300ms all;
}

.prices__btn:hover {
  opacity: 0.7;
  transition: 300ms all;
}

/*------------------------------- 
            size
-----------------------------------*/
#AttrsContainer .filter-list__list {
  display: flex;
  flex-wrap: wrap;
}

#AttrsContainer .filter-list__list label {
  border: 1px solid #e4e4e400;
  width: 45px;
  height: 45px;
  border-radius: 100%;
  margin: 5px 6px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0 13px 13px 0;
}

#AttrsContainer .filter-list__list label .filter-list__input,
#AttrsContainer .filter-list__list label .input-check__body {

  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: absolute;
}

#AttrsContainer .filter-list__list label .input-check__box {
  background-color: var(--text-white-color);
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #808080;
  text-align: center;
  font-size: 11px;
}

#AttrsContainer .filter-list__list label .input-check__box:hover {
  background-color: var(--default-theme-dark-blue);
  color: var(--default-theme-white);
  transition: 500ms all;
}

#AttrsContainer .filter-list__list label input:checked+.input-check__box {
  background-color: var(--default-theme-dark-blue);
  color: var(--default-theme-white);
}


#AttrsContainer .filter-list__list label .input-check__icon {
  opacity: 0;
}


.added-wishlist i {
  color: red !important;

}

/*------------------------------- 
            color
-----------------------------------*/

/* ----------------------------------------
// Header
// ---------------------------------------- */

/*
// .account-menu
*/

.account-menu {
  -webkit-box-shadow: 0 1px 15px rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 15px rgba(0, 0, 0, 0.25);
  background: #fff;
  color: #3d464d;
  width: 280px;
  overflow-y: auto;
  overscroll-behavior-y: contain;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
}

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
  .account-menu {
    -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15);
  }
}

.account-menu__form {
  padding: 0 30px 32px;
}

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

.account-menu__form-title {
  text-align: center;
  padding: 30px 0 26px;
  font-weight: 700;
}

.account-menu__form-button {
  margin-top: 32px;
  text-align: center;
}

.account-menu__form-button .btn {
  padding-left: 28px;
  padding-right: 28px;
}

.account-menu__form-link {
  font-size: 14px;
  text-align: center;
}

.account-menu__form-link a {
  color: #6c757d;
  -webkit-transition: color .1s;
  transition: color .1s;
}

.account-menu__form-link a:hover {
  color: inherit;
}

.account-menu__form-forgot {
  position: relative;
}

.account-menu__form-forgot-link {
  position: absolute;
  top: 5px;
  bottom: 5px;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 500;
  background: transparent;
  color: #3d464d;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 7px;
  -webkit-transition: background .1s, color .1s;
  transition: background .1s, color .1s;
}

[dir=ltr] .account-menu__form-forgot-link {
  right: 5px;
}

[dir=rtl] .account-menu__form-forgot-link {
  left: 5px;
}

.account-menu__form-forgot-link:hover {
  background: #f0f0f0;
  color: #3d464d;
}

.account-menu__form-forgot-link:active {
  background: #e5e5e5;
  color: #3d464d;
}

.account-menu__divider {
  height: 1px;
  background: #ebebeb;
}

.account-menu__user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 14px 20px;
  color: inherit;
}

.account-menu__user:hover {
  color: inherit;
  background: #f2f2f2;
}

.account-menu__user-avatar {
  width: 44px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

[dir=ltr] .account-menu__user-avatar {
  margin-right: 14px;
}

[dir=rtl] .account-menu__user-avatar {
  margin-left: 14px;
}

.account-menu__user-avatar img {
  border-radius: 100%;
  max-width: 100%;
}

.account-menu__user-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.account-menu__user-name {
  font-size: 15px;
  line-height: 20px;
  font-weight: 500;
}

.account-menu__user-email {
  font-size: 14px;
  line-height: 18px;
  color: #999;
  margin-top: 1px;
}

.account-menu__links {
  list-style: none;
  padding: 12px 0;
  margin: 0;
}

.account-menu__links a {
  display: block;
  color: inherit;
  font-size: 15px;
  padding: 5px 20px;
  font-weight: 500;
}

.account-menu__links a:hover {
  background: #f2f2f2;
}

/*
// .departments
*/

.departments {
  width: 255px;
  height: 42px;
  color: #fff;
  position: relative;
}

.departments__button {
  border: none;
  background: transparent;
  color: inherit;
  font-size: 15px;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  cursor: default;
  font-weight: 500;
  padding: 0;
}

[dir=ltr] .departments__button {
  padding-right: 32px;
  padding-left: 47px;
  text-align: left;
}

[dir=rtl] .departments__button {
  padding-left: 32px;
  padding-right: 47px;
  text-align: right;
}

.departments__button:focus {
  outline: none;
}

.departments__button-icon {
  position: absolute;
  top: calc(50% - 7px);
  fill: #859ba6;
  -webkit-transition: fill .2s;
  transition: fill .2s;
}

[dir=ltr] .departments__button-icon {
  left: 16px;
}

[dir=rtl] .departments__button-icon {
  right: 16px;
}

div.checkout-data.col-12 {
  position: sticky;
  top: 0;
}

.departments__button-arrow {
  position: absolute;
  top: calc(50% - 3px);
  fill: #859ba6;
  -webkit-transition: fill .2s, -webkit-transform .2s;
  transition: fill .2s, -webkit-transform .2s;
  transition: fill .2s, transform .2s;
  transition: fill .2s, transform .2s, -webkit-transform .2s;
}

[dir=ltr] .departments__button-arrow {
  right: 13px;
}

[dir=rtl] .departments__button-arrow {
  left: 13px;
}

.departments__body {
  width: 100%;
  padding-top: 42px;
  position: absolute;
  background: #3d464d;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 2px;
  top: 0;
}

.departments__links {
  position: relative;
  list-style: none;
  padding: 0 0 14px;
  margin: 0;
  overflow-y: auto;
  overscroll-behavior-y: contain;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
}

.departments__item-link {
  font-weight: 400;
  position: relative;
  display: block;
  padding: 10px 16px;
  color: inherit;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: .02em;
}

.departments__item-link:hover {
  color: inherit;
}

.departments__item--hover .departments__item-link {
  background: #525d66;
}

.departments__item-arrow {
  top: calc(50% - 5px);
  position: absolute;
  fill: #98aab3;
}

[dir=ltr] .departments__item-arrow {
  right: 14px;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

[dir=rtl] .departments__item-arrow {
  left: 14px;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.departments__submenus-container {
  position: absolute;
  height: calc(100% - 48px);
  top: 48px;
  width: 100%;
}

.departments__submenu {
  position: absolute;
  top: 0;
  visibility: hidden;
  display: none;
  z-index: 100;
}

[dir=ltr] .departments__submenu {
  left: 100%;
}

[dir=rtl] .departments__submenu {
  right: 100%;
}

.departments__submenu--type--megamenu {
  min-height: 100%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.departments__submenu--open {
  visibility: visible;
  opacity: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.departments__submenu--size--sm {
  width: 237px;
}

.departments__submenu--size--nl {
  width: 443px;
}

.departments__submenu--size--lg {
  width: 649px;
}

.departments__submenu--size--xl {
  width: 855px;
}

.departments__links-wrapper {
  overflow: hidden;
  height: 0;
  opacity: 0;
  -webkit-transition: height 0.25s ease-in-out, opacity 0.25s ease-in-out;
  transition: height 0.25s ease-in-out, opacity 0.25s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-height: 100%;
}

.departments__links-wrapper:before {
  display: block;
  content: '';
  height: 6px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.departments:not(.departments--fixed) .departments__button {
  cursor: pointer;
}

.departments:not(.departments--fixed) .departments__button:hover .departments__button-icon,
.departments:not(.departments--fixed) .departments__button:hover .departments__button-arrow {
  fill: currentColor;
}

.departments--open .departments__links-wrapper {
  overflow: visible;
  height: auto;
  opacity: 1;
}

.departments--open .departments__button-arrow {
  -webkit-transform: rotateZ(180deg);
  transform: rotateZ(180deg);
}

.departments--transition .departments__links,
.departments--transition .departments__links-wrapper {
  overflow: hidden;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .departments {
    width: 210px;
  }

  .departments__submenu--size--sm {
    width: 204px;
  }

  .departments__submenu--size--nl {
    width: 376px;
  }

  .departments__submenu--size--lg {
    width: 548px;
  }

  .departments__submenu--size--xl {
    width: 720px;
  }
}

/* ------------------------------------------------
                 DROPCART -SEPET
     ------------------------------------------------ */

.dropcart {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-black-color);
  overflow-y: auto;
  overscroll-behavior-y: contain;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
}

.dropcart__empty {
  padding: 42px 30px;
  text-align: center;
}

.dropcart__products-list {
  padding: 20px 16px;
}

.dropcart__product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 400px;
}

.dropcart__product+.dropcart__product {
  margin-top: 24px;
}

.dropcart__product-image {
  width: 70px;
  height: 70px !important;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.dropcart__product-name {
  margin-top: -2px;
  line-height: 18px;
  font-size: 15px;
}

.dropcart__product-name a {
  color: inherit;
  -webkit-transition: 0.15s;
  transition: 0.15s;
  font-weight: 700;
  font-size: 15px;
}

.dropcart__product-name a:hover {
  color: var(--default-theme-dark-blue);
}

.dropcart__product-info {
  margin: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

[dir="ltr"] .dropcart__product-info {
  padding-right: 10px;
  padding-left: 16px;
}

[dir="rtl"] .dropcart__product-info {
  padding-left: 10px;
  padding-right: 16px;
}

.dropcart__product-options {
  list-style: none;
  margin: 3px 0 0;
  padding: 0;
  font-size: 13px;
  line-height: 16px;
  color: var(--text-black-color);
}

.dropcart__product-meta {
  margin-top: 5px;
  font-size: 13px;
}

.dropcart__product-price {
  font-size: 14px;
}

.dropcart__product-remove {
  margin-top: -6px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

[dir="ltr"] .dropcart__product-remove {
  margin-right: -6px;
}

[dir="rtl"] .dropcart__product-remove {
  margin-left: -6px;
}

.dropcart__totals {
  line-height: 24px;
  padding: 16px 20px 0;
  margin-bottom: 20px;
}

[dir="ltr"] .dropcart__totals th {
  padding-right: 16px;
}

[dir="rtl"] .dropcart__totals th {
  padding-left: 16px;
}

[dir="ltr"] .dropcart__totals td {
  text-align: right;
}

[dir="rtl"] .dropcart__totals td {
  text-align: left;
}

.dropcart__totals table {
  width: 100%;
}

.dropcart__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 4px;
}

.dropcart__buttons a {
  background-color: var(--default-theme-dark-blue);
  color: var(--text-white-color);
  padding: 20px;
  text-align: center;
  width: 50% !important;
  min-width: 50% !important;
}

.dropcart__buttons>* {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

[dir="ltr"] .dropcart__buttons> :first-child {
  margin-right: 8px;
}

[dir="rtl"] .dropcart__buttons> :first-child {
  margin-left: 8px;
}

.dropcart--style--dropdown {
  -webkit-box-shadow: 0 1px 15px rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 15px rgba(0, 0, 0, 0.25);
  background: #fff;
  width: 320px;
}

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
  .dropcart--style--dropdown {
    -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15);
  }
}

.dropcart--style--offcanvas {
  visibility: hidden;
  -webkit-transition: visibility 0s 0.3s;
  transition: visibility 0s 0.3s;
}

.dropcart--style--offcanvas .dropcart__backdrop {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  z-index: 1000;
}

.dropcart--style--offcanvas .dropcart__body {
  position: fixed;
  top: 0;
  z-index: 1010;
  height: 100%;
  max-height: 100%;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 500px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  width: 450px;
}

[dir="ltr"] .dropcart--style--offcanvas .dropcart__body {
  margin-left: 30px;
  right: 0;
  -webkit-transform: translateX(calc(100% + 30px));
  transform: translateX(calc(100% + 30px));
}

[dir="rtl"] .dropcart--style--offcanvas .dropcart__body {
  margin-right: 30px;
  left: 0;
  -webkit-transform: translateX(calc(-100% + -30px));
  transform: translateX(calc(-100% + -30px));
}

.dropcart--style--offcanvas .dropcart__header {
  height: 55px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-bottom: 1px solid #ebebeb;
  border-bottom: 1px solid #020e282b;
}

.dropcart--style--offcanvas .dropcart__title {
  font-size: 15px;
  font-weight: 500;
  margin: 0 20px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.dropcart--style--offcanvas .dropcart__close {
  border: none;
  padding: 0;
  margin: 0;
  width: 40px;
  height: 54px;
  background: transparent;
  fill: #999;
  -webkit-transition: fill 0.2s;
  transition: fill 0.2s;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.dropcart--style--offcanvas .dropcart__close:focus {
  outline: none;
}

.dropcart--style--offcanvas .dropcart__close:focus,
.dropcart--style--offcanvas .dropcart__close:hover {
  fill: #3d464d;
}

.dropcart--style--offcanvas .dropcart__products-list {
  -ms-flex-negative: 1;
  flex-shrink: 1;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.dropcart--style--offcanvas .dropcart__totals,
.dropcart--style--offcanvas .dropcart__buttons {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.dropcart--style--offcanvas.dropcart--open {
  visibility: visible;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.dropcart--style--offcanvas.dropcart--open .dropcart__backdrop {
  opacity: 0.9;
}

.dropcart--style--offcanvas.dropcart--open .dropcart__body {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.flyout__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.flyout__icon i {
  font-size: 80px;
}

.flyout-cart-nodata-text {
  height: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.dropcart__product a.product-image__body {
  padding: 0;
  height: 100%;
  width: 100%;
}

.dropcart__products-list .dropcart__product {
  border: 0;
}

.dropcart__product-remove {
  margin-left: 20px;
}

.dropcart__product-remove svg {
  color: var(--default-theme-dark-blue);
  fill: var(--default-theme-dark-blue);
}

.dropcart__product-image {
  border-radius: 100%;
  overflow: hidden;
  border: 1px solid var(--default-theme-dark-blue);
}

.dropcart__product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dropcart__product-name {
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  max-width: 200px;
  text-overflow: ellipsis;
}

@media (min-height: 600px) {
  .dropcart--style--offcanvas .dropcart__products-list {
    overflow-y: auto;
    overscroll-behavior-y: contain;
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
  }
}

@media (max-height: 599px) {
  .dropcart--style--offcanvas .dropcart__header {
    top: 0;
    position: -webkit-sticky;
    position: sticky;
    background: #fff;
    z-index: 1;
  }

  .dropcart--style--offcanvas .dropcart__body {
    overflow-y: auto;
    overscroll-behavior-y: contain;
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
  }
}


/*
// .indicator
*/

.indicator {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: none;
}

.indicator__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  color: inherit;
  fill: currentColor;
}

.indicator__button:focus {
  outline: none;
}

.indicator__button:hover {
  color: inherit;
}

.indicator__area {
  background: transparent;
  -webkit-transition: background-color .2s;
  transition: background-color .2s;
  border-radius: 2px;
  height: 42px;
  padding: 0 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.indicator__value {
  height: 15px;
  font-size: 10px;
  padding: 0 5px;
  border-radius: 1000px;
  position: relative;
  top: -11px;
  background: #fff;
  color: #3d464d;
  font-weight: 700;
}

[dir=ltr] .indicator__value {
  margin-left: -5px;
  margin-right: -8px;
}

[dir=rtl] .indicator__value {
  margin-right: -5px;
  margin-left: -8px;
}

.indicator__dropdown {
  display: none;
  top: 100%;
  position: absolute;
  visibility: hidden;
  -webkit-transform-origin: top;
  transform-origin: top;
  -webkit-transform: rotateX(60deg);
  transform: rotateX(60deg);
  opacity: 0;
  -webkit-transition: opacity 0.2s, visibility 0s 0.2s, -webkit-transform 0.2s;
  transition: opacity 0.2s, visibility 0s 0.2s, -webkit-transform 0.2s;
  transition: transform 0.2s, opacity 0.2s, visibility 0s 0.2s;
  transition: transform 0.2s, opacity 0.2s, visibility 0s 0.2s, -webkit-transform 0.2s;
}

[dir=ltr] .indicator__dropdown {
  right: 0;
}

[dir=rtl] .indicator__dropdown {
  left: 0;
}

.indicator__icon {
  -webkit-transition: opacity .2s, -webkit-transform .2s;
  transition: opacity .2s, -webkit-transform .2s;
  transition: transform .2s, opacity .2s;
  transition: transform .2s, opacity .2s, -webkit-transform .2s;
}

.indicator__icon--open {
  position: absolute;
}

.indicator--display .indicator__dropdown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}



.indicator--open .indicator__dropdown {
  z-index: 1;
  -webkit-transition-delay: 0s, 0s, 0s;
  transition-delay: 0s, 0s, 0s;
  opacity: 1;
  visibility: visible;
  -webkit-transform: rotateX(0deg);
  transform: rotateX(0deg);
}

.indicator--trigger--click:not(.indicator--open) .indicator__icon--open {
  -webkit-transform: scale(0);
  transform: scale(0);
  opacity: 0;
}

.indicator--trigger--click.indicator--open .indicator__icon:not(.indicator__icon--open) {
  -webkit-transform: scale(0);
  transform: scale(0);
  opacity: 0;
}

.indicator--mobile .indicator__area {
  height: 36px;
  padding: 0 10px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .indicator__area {
    padding: 0 12px;
  }
}

/*
// .megamenu
*/

.megamenu {
  background: #fff;
  color: #3d464d;
  min-height: 100%;
  width: 100%;
  line-height: 1.5;
  letter-spacing: .01em;


}

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
  .megamenu {
    -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15);
  }
}

.megamenu__body {
  padding: 26px 30px;
  background-repeat: no-repeat;
  width: 100%;
  min-height: 100%;
}

[dir=ltr] .megamenu__body {
  background-position: right bottom;
}

[dir=rtl] .megamenu__body {
  background-position: left bottom;
}

[dir=ltr] .megamenu--departments {
  padding-right: 31px;
}

[dir=rtl] .megamenu--departments {
  padding-left: 31px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  [dir=ltr] .megamenu--departments {
    padding-right: 32px;
  }

  [dir=rtl] .megamenu--departments {
    padding-left: 32px;
  }
}

.megamenu__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.megamenu__links a {
  color: inherit;
  -webkit-transition: color .15s;
  transition: color .15s;
}

.megamenu__links a:hover {
  color: #1a66ff;
}

.megamenu__links--level--0>.megamenu__item+.megamenu__item--with-submenu,
.megamenu__links--level--0>.megamenu__item--with-submenu+.megamenu__item {
  margin-top: 20px;
}

.megamenu__links--level--0>.megamenu__item {
  padding: 1px 0;
}

.megamenu__links--level--0>.megamenu__item>a {
  font-weight: 500;
}

.megamenu__links--level--0>.megamenu__item>a+.megamenu__links {
  padding-top: 10px;
  margin-top: 3px;
  border-top: 1px solid #e5e5e5;
}

.megamenu__links--level--1>.megamenu__item>a {
  font-size: 14px;
  color: #5c6b73;
  -webkit-transition: color .15s;
  transition: color .15s;
}

.megamenu__links--level--1>.megamenu__item>a:hover {
  color: #1a66ff;
}

/*
// .menu
*/

.menu {
  color: #3d464d;
  background: #fff;
  -webkit-box-shadow: 0 1px 15px rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 15px rgba(0, 0, 0, 0.25);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 190px;
  min-width: 190px;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: .02em;
  font-weight: 500;
}

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
  .menu {
    -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15);
  }
}

.menu__list {
  list-style: none;
  padding: 10px 0;
  overflow-y: auto;
  overscroll-behavior-y: contain;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin: 0;
}

.menu__item {
  position: relative;
}

.menu__item-submenu-offset {
  position: absolute;
  top: -10px;
}

.menu__item-link {
  background: transparent;
  border: none;
  width: 100%;
  font-weight: inherit;
  display: block;
  padding-top: 8px;
  padding-bottom: 6px;
  color: inherit;
}

[dir=ltr] .menu__item-link {
  text-align: left;
  padding-right: 24px;
  padding-left: 16px;
}

[dir=rtl] .menu__item-link {
  text-align: right;
  padding-left: 24px;
  padding-right: 16px;
}

.menu__item-link:hover {
  color: inherit;
}

.menu__item-link:focus {
  outline: none;
}


[dir=ltr] .menu__item-icon {
  left: 15px;
}

[dir=rtl] .menu__item-icon {
  right: 15px;
}

.menu__item-arrow {
  position: absolute;
  top: calc(50% - 5px);
  fill: #b3b3b3;
}

[dir=ltr] .menu__item-arrow {
  right: 12px;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

[dir=rtl] .menu__item-arrow {
  left: 12px;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.menu__item--hover .menu__item-link {
  background: #f2f2f2;
}

.menu__item--hover>.menu__submenu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
}

.menu__submenu {
  position: absolute;
  visibility: hidden;
  -webkit-transform: rotateY(45deg);
  transform: rotateY(45deg);
  opacity: 0;
  -webkit-transition: opacity .2s, -webkit-transform .2s;
  transition: opacity .2s, -webkit-transform .2s;
  transition: transform .2s, opacity .2s;
  transition: transform .2s, opacity .2s, -webkit-transform .2s;
  display: none;
  z-index: 1;
}

[dir=ltr] .menu__submenu {
  left: 100%;
  -webkit-transform-origin: left;
  transform-origin: left;
}

[dir=rtl] .menu__submenu {
  right: 100%;
  -webkit-transform-origin: right;
  transform-origin: right;
}

[dir=ltr] .menu__submenu--reverse {
  left: auto;
  right: 100%;
  -webkit-transform-origin: right;
  transform-origin: right;
}

[dir=rtl] .menu__submenu--reverse {
  right: auto;
  left: 100%;
  -webkit-transform-origin: left;
  transform-origin: left;
}

.menu__submenu--display {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.menu__submenu--open {
  visibility: visible;
  opacity: 1;
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
}

[dir=ltr] .menu--with-icons .menu__item-link {
  padding-left: 50px;
}

[dir=rtl] .menu--with-icons .menu__item-link {
  padding-right: 50px;
}

.menu--layout--topbar {
  width: 250px;
  min-width: 150px;
  -webkit-box-shadow: 0 1px 7px rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 7px rgba(0, 0, 0, 0.25);
}

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
  .menu--layout--topbar {
    -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15);
  }
}

.menu--layout--topbar .menu__list {
  padding: 6px 0;
}

.menu--layout--topbar .menu__item-link {
  display: block;
  padding-top: 8px;
  padding-bottom: 6px;
  color: inherit;
}

[dir=ltr] .menu--layout--topbar .menu__item-link {
  padding-right: 21px;
  padding-left: 13px;
}

[dir=rtl] .menu--layout--topbar .menu__item-link {
  padding-left: 21px;
  padding-right: 13px;
}

.menu--layout--topbar.menu--with-icons .menu__item-icon {
  position: absolute;
  top: 3px;
}

[dir=ltr] .menu--layout--topbar.menu--with-icons .menu__item-icon {
  left: 12px;
}

[dir=rtl] .menu--layout--topbar.menu--with-icons .menu__item-icon {
  right: 12px;
}

[dir=ltr] .menu--layout--topbar.menu--with-icons .menu__item-link {
  padding-left: 45px;
}

[dir=rtl] .menu--layout--topbar.menu--with-icons .menu__item-link {
  padding-right: 45px;
}


/*
// .nav-panel
*/

.nav-panel {
  height: 54px;
  background: #fff;
  -webkit-box-shadow: 0 1px rgba(0, 0, 0, 0.04), inset 0 -1px rgba(0, 0, 0, 0.04);
  box-shadow: 0 1px rgba(0, 0, 0, 0.04), inset 0 -1px rgba(0, 0, 0, 0.04);
  color: #3d464d;
}

.nav-panel--stuck {
  z-index: 10;
  width: 100%;
  position: fixed;
  top: 0;
  -webkit-box-shadow: 0 1px rgba(0, 0, 0, 0.04), inset 0 -1px rgba(0, 0, 0, 0.04), 0 1px 20px rgba(0, 0, 0, 0.15);
  box-shadow: 0 1px rgba(0, 0, 0, 0.04), inset 0 -1px rgba(0, 0, 0, 0.04), 0 1px 20px rgba(0, 0, 0, 0.15);
  -webkit-transform: translateY(-150%);
  transform: translateY(-150%);
  -webkit-transition: -webkit-transform .3s ease-in-out;
  transition: -webkit-transform .3s ease-in-out;
  transition: transform .3s ease-in-out;
  transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out;
}

.nav-panel--stuck.nav-panel--show {
  -webkit-transform: none;
  transform: none;
}

.nav-panel__container {
  height: 100%;
}

.nav-panel__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  height: 100%;
}

.nav-panel__logo svg {
  display: block;
  fill: #3d464d;
}

.nav-panel__departments {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

[dir=ltr] .nav-panel__logo+.nav-panel__nav-links,
[dir=ltr] .nav-panel__departments+.nav-panel__nav-links {
  margin-left: 18px;
}

[dir=rtl] .nav-panel__logo+.nav-panel__nav-links,
[dir=rtl] .nav-panel__departments+.nav-panel__nav-links {
  margin-right: 18px;
}

[dir=ltr] .nav-panel__nav-links {
  margin-right: 4px;
}

[dir=rtl] .nav-panel__nav-links {
  margin-left: 4px;
}

.nav-panel__indicators {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}

[dir=ltr] .nav-panel__indicators {
  margin-left: auto;
}

[dir=rtl] .nav-panel__indicators {
  margin-right: auto;
}

@media (min-width: 992px) and (max-width: 1199px) {

  [dir=ltr] .nav-panel__logo+.nav-panel__nav-links,
  [dir=ltr] .nav-panel__departments+.nav-panel__nav-links {
    margin-left: 14px;
  }

  [dir=rtl] .nav-panel__logo+.nav-panel__nav-links,
  [dir=rtl] .nav-panel__departments+.nav-panel__nav-links {
    margin-right: 14px;
  }
}

/* ------------------------------------------------
                 SEARCH
     ------------------------------------------------ */

/*  Serach modal */

.seacrhModal {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 50vh;
  height: 90%;
  max-height: 100vh;
  width: 100%;
  overflow: hidden;

}

.seacrhModal .modal-header {
  border: 0;
}

.seacrhModal .btn-close {
  padding: 80px 80px 0 0;
  font-weight: bold;
  font-size: 16px;
  color: var(--default-color-black);
  opacity: 1;
  position: absolute;
  z-index: 9;
  right: 25px;
  top: 10px;
}

.seacrh__title--modal {
  font-weight: 600;
  font-size: 38px;
  margin-bottom: 30px;
  text-transform: capitalize;
}

.modal__quicky-world {
  margin-top: 10px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: flex-start !important;
}

.modal__quicky-world strong {
  color: #808080;
  font-weight: 500;
}

.search--location--header .search__body {
  position: relative;
  z-index: 2;
  /* border: 1px solid #1111115e; */
  display: flex;
  justify-content: space-between;
  border-radius: var(--border-radius-5);
  width: 100%;
  background-color: var(--body-bg-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: auto;
  padding-top: 40px;
  height: 100%;
}

#small-search-box-form .search__form-wrapper {
  display: flex;
  justify-content: space-between;
  background: var(--text-white-color);
  border: 1px solid #26292d57;
  width: 100%;
  height: 60px;

}

.search__content {
  margin-top: 25px;
  /* box-shadow: inset 0 -1px 0 0 var(--default-theme-off-white2); */
  /* border-top: 1px solid rgba(128, 128, 128, 0.466); */
  z-index: 1000;
}

/* .search--location--header .search__form {
  height: 42px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
} */

.search--location--header .search__button i {
  margin-left: 8px;
  color: var(--default-theme-light-blue);
  font-weight: bold;
  margin-right: 5px;
}

.header__seacrh {
  align-self: center;
  margin-left: 20px;
}

.header__seacrh .search__button {
  border: 1px solid #c1c1c1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  height: 50px;
  padding: 10px;
  padding-right: 15px !important;
  min-width: 500px;
}

.header__seacrh .search__button input {
  border: 0;
  width: 100%;
}

.header__seacrh .search__button input::placeholder {
  font-size: 15px;
}

.header__seacrh .search__button input:focus {
  border: 0;
  outline: 0;
}

.header__seacrh .search__button i {
  margin: 0;
  font-weight: bold;
  color: var(--default-color-black2);
  font-size: 18px;
}

.search--location--header .search__button:hover span {
  opacity: 0.9;
}

.search--location--header .search__border {
  position: absolute;
  pointer-events: none;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 3px;
  -webkit-transition: background 0.15s, -webkit-box-shadow 0.15s;
  transition: background 0.15s, -webkit-box-shadow 0.15s;
  transition: box-shadow 0.15s, background 0.15s;
  transition: box-shadow 0.15s, background 0.15s, -webkit-box-shadow 0.15s;
}

.search--location--header .search__categories {
  margin: 2px;
  padding: 0 14px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background-color: transparent;
  color: inherit;
  font-size: 14px;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
  max-width: 30%;
  cursor: pointer;
  border-radius: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 5 10'%3E%3Cpath fill='%234d4d4d' d='M4.503,4 L0.497,4 C0.094,4 -0.142,3.492 0.089,3.122 L2.095,0.233 C2.293,-0.084 2.712,-0.084 2.911,0.233 L4.911,3.122 C5.142,3.492 4.906,4 4.503,4 ZM0.497,6 L4.503,6 C4.906,6 5.142,6.504 4.911,6.871 L2.905,9.737 C2.707,10.052 2.288,10.052 2.089,9.737 L0.089,6.871 C-0.142,6.504 0.094,6 0.497,6 Z'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: 5px 10px;
}

[dir="ltr"] .search--location--header .search__categories {
  border-right: 2px solid #e5e5e5;
  padding-right: 31px;
  margin-right: 0;
  background-position: center right 13px;
}

[dir="rtl"] .search--location--header .search__categories {
  border-left: 2px solid #e5e5e5;
  padding-left: 31px;
  margin-left: 0;
  background-position: center left 13px;
}

.search--location--header .search__categories:hover {
  background-color: var(--default-theme-dark-blue);
}

.search--location--header .search__categories:focus {
  outline: none;
}

.search--location--header .search__input {
  border: none;
  padding: 0 30px;
  background: transparent;
  width: 1px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  font-size: 15px;
  -webkit-transition: color 0.15s;
  transition: color 0.15s;
  color: inherit;
  font-weight: 500;
  font-size: 18px;
  text-transform: uppercase;
}




.search--location--header .search__input::-webkit-input-placeholder {
  color: var(--default-theme-dark-blue);
}

.search--location--header .search__input::-moz-placeholder {
  color: var(--default-theme-dark-blue);
}

.search--location--header .search__input:-ms-input-placeholder {
  color: var(--default-theme-dark-blue);
}

.search--location--header .search__input::-ms-input-placeholder {
  color: var(--default-theme-dark-blue);
}

.search--location--header .search__input::placeholder {
  color: var(--default-theme-dark-blue);
  font-weight: 500;
  font-size: 16px;
}

.search--location--header .search__input~.search__border {
  background: transparent;
  -webkit-box-shadow: 0 0 0 2px #e5e5e5 inset;
  box-shadow: 0 0 0 2px #e5e5e5 inset;
}

.search--location--header .search__input:hover {
  color: inherit;
}

.search--location--header .search__input:hover::-webkit-input-placeholder {
  color: var(--default-theme-dark-blue);
}

.search--location--header .search__input:hover::-moz-placeholder {
  color: var(--default-theme-dark-blue);
}

.search--location--header .search__input:hover:-ms-input-placeholder {
  color: var(--default-theme-dark-blue);
}

.search--location--header .search__input:hover::-ms-input-placeholder {
  color: var(--default-theme-dark-blue);
}

.search--location--header .search__input:hover::placeholder {
  color: var(--default-theme-dark-blue);
}

.search--location--header .search__input:hover~.search__border {
  background: transparent;
  -webkit-box-shadow: 0 0 0 2px #d4d4d4 inset;
  box-shadow: 0 0 0 2px #d4d4d4 inset;
}

.search--location--header .search__input:hover~.search__button {
  fill: var(--default-theme-dark-blue);
}

.search--location--header .search__input:focus {
  outline: none;
  color: inherit;
}

.search--location--header .search__input:focus::-webkit-input-placeholder {
  color: var(--default-theme-dark-blue);
}

.search--location--header .search__input:focus::-moz-placeholder {
  color: var(--default-theme-dark-blue);
}

.search--location--header .search__input:focus:-ms-input-placeholder {
  color: var(--default-theme-dark-blue);
}

.search--location--header .search__input:focus::-ms-input-placeholder {
  color: var(--default-theme-dark-blue);
}

.search--location--header .search__input:focus::placeholder {
  color: var(--default-theme-dark-blue);
}

.search--location--header .search__input:focus~.search__button {
  fill: var(--default-theme-dark-blue);
}

.search--location--header .search__button {
  border: none;
  padding: 0;
  background: transparent;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  width: 42px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  fill: var(--default-theme-dark-blue);
  -webkit-transition: fill 0.15s;
  transition: fill 0.15s;
  margin-right: 15px;
}

.search--location--header .search__button:hover,
.search--location--header .search__button:focus {
  outline: none;
  fill: var(--default-theme-dark-blue);
}

.search--location--header .search__suggestions {
  z-index: -1;
  position: relative;

  box-shadow: none;
  background: #fff;
  left: -12px;
  top: -12px;
  width: calc(100% + 24px);
  padding-bottom: 10px;
  border-radius: 2px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.2s, visibility 0s 0.2s;
  transition: opacity 0.2s, visibility 0s 0.2s;
  border-radius: var(--border-radius-30);
}

.search--location--header.search--has-suggestions.search--suggestions-open .search__suggestions {
  -webkit-transition-delay: 0s, 0s;
  transition-delay: 0s, 0s;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}



/*
  // .suggestions
  */

.suggestions__list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 15px;
  line-height: 19px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-top: 15px;
  margin-top: 10px;
}

.seacrh__allview {
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
}

.search__product-box-title {
  font-weight: bold;
  margin-bottom: 10px;

}

.suggestions__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  width: 200px;
  height: 100%;
  margin: 10px;
  border-radius: 8px;
  overflow: hidden;
}

.suggestions__item:before {
  z-index: 1;
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.suggestions__item-image {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  margin-bottom: 8px;
}

.suggestions__item-image .product-image__img {
  object-fit: cover !important;
  height: 230px;
}

.suggestions__item-image .product-image__body {
  height: 230px;
}

.suggestions__item-info {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding: 3px 0 2px;
  margin-top: 8px;
}

.suggestions__item-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 90%;
  display: block;
  font-weight: 600;
}

.suggestions__item-name,
.suggestions__item-name:hover {
  color: inherit;
}

.suggestions__item-name:before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.suggestions__item-meta {
  margin-top: 1px;
  font-size: 13px;
  line-height: 15px;
  display: none;
}

.suggestions__item-price {
  white-space: nowrap;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding: 3px 0 2px;
  font-weight: 700;
  font-size: 14px;
  color: grey;
  font-weight: 400;
}

[dir=ltr] .suggestions__item-price {
  margin-top: 6px;
}

[dir=rtl] .suggestions__item-price {
  margin-right: 12px;
}

.suggestions__item-actions {
  -ms-flex-item-align: center;
  align-self: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

[dir=ltr] .suggestions__item-actions {
  margin-left: 14px;
}

[dir=rtl] .suggestions__item-actions {
  margin-right: 14px;
}

.suggestions--location--header {
  color: #3d464d;
}

.suggestions--location--header .suggestions__item:hover:before {
  background: rgba(0, 0, 0, 0.03);
}

.suggestions--location--header .suggestions__item-meta {
  color: #999;
}

.suggestions--location--indicator {
  color: #3d464d;
}

.suggestions--location--indicator .suggestions__item:hover:before {
  background: rgba(0, 0, 0, 0.03);
}

.suggestions--location--indicator .suggestions__item-meta {
  color: #999;
}

.suggestions--location--indicator .suggestions__item-actions {
  display: none;
}

.suggestions--location--mobile-header {
  color: #3d464d;
}

.suggestions--location--mobile-header .suggestions__item:hover:before {
  background: rgba(0, 0, 0, 0.03);
}

.suggestions--location--mobile-header .suggestions__item-meta {
  color: #999;
}

.suggestions--location--mobile-header .suggestions__item-actions {
  display: none;
}


/*
  // .search--location--indicator
  */
.search--location--indicator .search__body {
  color: #3d464d;
  background: #fff;
  -webkit-box-shadow: 0 1px 15px rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 15px rgba(0, 0, 0, 0.25);
  width: 340px;
}

.search--location--indicator .search__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 50px;
}

.search--location--indicator .search__suggestions {
  border-top: 1px solid #ebebeb;
  padding: 6px 0;
  display: none;
}

.search--location--indicator .search__input,
.search--location--indicator .search__button {
  border: none;
  padding: 0;
  background: transparent;
}

.search--location--indicator .search__input:focus,
.search--location--indicator .search__button:focus {
  outline: none;
}

.search--location--indicator .search__input {
  padding: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  width: 0;
}

[dir="ltr"] .search--location--indicator .search__input {
  padding-left: 18px;
}

[dir="rtl"] .search--location--indicator .search__input {
  padding-right: 18px;
}

.search--location--indicator .search__button {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 52px;
  fill: var(--default-theme-dark-blue);
  -webkit-transition: fill 0.2s;
  transition: fill 0.2s;
}

.search--location--indicator .search__button:hover {
  fill: var(--default-theme-dark-blue);
}

.search--location--indicator.search--has-suggestions.search--suggestions-open .search__suggestions {
  display: block;
}

/*
// .site-header
*/

.site-header {
  position: relative;
  z-index: 100;
  background: transparent;
  color: inherit;
}

.site-header__middle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 104px;
}

.site-header__logo {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 255px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: inherit;
}

[dir=ltr] .site-header__logo {
  margin-right: 30px;
}

[dir=rtl] .site-header__logo {
  margin-left: 30px;
}

.site-header__logo a {
  color: inherit;
}

.site-header__logo svg {
  fill: currentColor;
}

.site-header__search {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.site-header__phone {
  line-height: 1;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

[dir=ltr] .site-header__phone {
  text-align: right;
  margin-left: 80px;
}

[dir=rtl] .site-header__phone {
  text-align: left;
  margin-right: 80px;
}

.site-header__phone-title {
  font-size: 14px;
  color: #999;
  margin-bottom: 6px;
}

.site-header__phone-number {
  font-size: 20px;
  font-weight: 700;
}

.site-header__nav-panel {
  height: 54px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .site-header__logo {
    width: 210px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  [dir=ltr] .site-header__logo {
    margin-right: 24px;
  }

  [dir=rtl] .site-header__logo {
    margin-left: 24px;
  }
}


@media screen and (max-width:990px) {
  .search--location--header .search__body {
    width: 100%;
  }

  .seacrh__title--modal {
    font-size: 20px;
    margin-bottom: 15px;
  }

  #small-search-box-form .search__form-wrapper {
    height: 40px;
  }

  .modal__quicky-world {
    margin-top: 9px;
    font-size: 14px;
  }

  .suggestions__item {
    width: 140px;
  }

  .search__product-box {
    display: none !important;
  }
}

/* ------------------------------------------------
                 TOPBAR
     ------------------------------------------------ */
.topbar {
  height: 32px;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-bottom: none;
  font-size: 14px;
  line-height: 14px;
  color: var(--text-black-color);
  position: relative;
  z-index: 20;
}

.topbar__container {
  height: 100%;
}

.topbar__row {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0;
}

.topbar__item {
  margin: 0 0;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.topbar__item-value {
  color: var(--default-theme-dark-blue);
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}

.topbar__spring {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

[dir="ltr"] .topbar__item--link+.topbar__item--link {
  margin-left: 16px;
}

[dir="rtl"] .topbar__item--link+.topbar__item--link {
  margin-right: 16px;
}

/* .topbar-dropdown */
.topbar-dropdown {
  position: relative;
  height: 100%;
}

.topbar-dropdown__btn {
  height: 100%;
  border: none;
  padding: 0;
  cursor: pointer;
  position: relative;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
  background: transparent;
  color: inherit;
  fill: var(--default-theme-dark-blue);
  text-transform: capitalize;
}

[dir="ltr"] .topbar-dropdown__btn {
  padding-left: 0px;
  padding-right: 15px;
  font-size: 14px;
}

[dir="rtl"] .topbar-dropdown__btn {
  padding-right: 10px;
  padding-left: 20px;
}

.topbar-dropdown__btn:focus {
  outline: none;
}

.topbar-dropdown__btn svg {
  position: absolute;
  top: calc(50% - 4px);
  fill: var(--default-color-black);
}

[dir="ltr"] .topbar-dropdown__btn svg {
  right: 7px;
  fill: var(--default-color-black);
}

[dir="rtl"] .topbar-dropdown__btn svg {
  left: 7px;
  fill: var(--default-color-black);
}

.topbar-dropdown__body {
  position: absolute;
  top: 100%;
  visibility: hidden;
  -webkit-transform-origin: top;
  transform-origin: top;
  -webkit-transform: rotateX(60deg);
  transform: rotateX(60deg);
  opacity: 0;
  -webkit-transition: opacity 0.2s, visibility 0s 0.2s, -webkit-transform 0.2s;
  transition: opacity 0.2s, visibility 0s 0.2s, -webkit-transform 0.2s;
  transition: transform 0.2s, opacity 0.2s, visibility 0s 0.2s;
  transition: transform 0.2s, opacity 0.2s, visibility 0s 0.2s,
    -webkit-transform 0.2s;
  background-color: var(--body-bg-color);
  width: 100%;
  padding: 10px;
  border-radius: var(--border-radius-5);
  box-shadow: 0 1px 7px #00000040;
}

#edit__product {
  background-color: var(--default-theme-white) !important;
  color: var(--text-black-color);
  text-align: left;
  display: flex;
  justify-content: flex-start !important;
  padding: 15px !important;
}


#topbar__login {
  width: 100%;
  min-width: 180px;
}

#topbar__login .topbar__list li {
  padding: 15px 10px;
}

#topbar__login .topbar__list li a {
  font-weight: 600;
}

[dir="ltr"] .topbar-dropdown__body {
  right: 0;
}

[dir="rtl"] .topbar-dropdown__body {
  left: 0;
}

.topbar-dropdown__body--list li {
  padding: 10px 0;
}

.topbar-dropdown__body--list li:hover a {
  color: var(--default-theme-dark-blue);
  cursor: pointer;
}

.topbar-dropdown__btn:after {
  content: "\eb66";
  font-family: "annimex-icons";
  display: inline-block;
  position: absolute;
  right: 0;
  top: -1px;
  font-size: 17px;
}

.topbar-dropdown--opened .topbar-dropdown__btn,
.topbar-dropdown__btn:hover,
.topbar-dropdown__btn:focus {
  background: transparent;
}

.topbar-dropdown--opened .topbar-dropdown__btn .topbar__item-value,
.topbar-dropdown__btn:hover .topbar__item-value,
.topbar-dropdown__btn:focus .topbar__item-value {
  color: #444444;
}

.topbar-dropdown--opened .topbar-dropdown__body {
  z-index: 21;
  -webkit-transition-delay: 0s, 0s, 0s;
  transition-delay: 0s, 0s, 0s;
  opacity: 1;
  visibility: visible;
  -webkit-transform: rotateX(0deg);
  transform: rotateX(0deg);
}

.currency .topbar-dropdown__body {
  min-width: 115px;
  right: -38%;
}

.language .topbar-dropdown__body {
  min-width: 115px;
  left: -7%;
}

.currency .topbar-dropdown__btn {
  margin-left: 15px;
}

/* ---.topbar-link--- */
.topbar-link {
  color: inherit;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.topbar-link:hover {
  color: var(--default-theme-dark-blue);
}


/* ------------------------------------------------
                 ıconset
     ------------------------------------------------ */
.iconset {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
}

.icon_title {
  font-weight: 500;
  font-size: 12px;
  color: #444444;
  margin-left: 5px;
  opacity: 0.8;
  display: none;
}

.iconset__btn::after {
  display: none;
}

.wislist__icon {
  padding: 0 30px 0 15px;
}

.wislist__icon,
.shop__box {
  position: relative;
}

.shop__box {
  padding: 0;
}


.iconset__btn,
.shop__box {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  align-items: center;
}

.iconset__btn i {
  font-size: 25px;
  color: var(--default-theme-dark-blue);
}

.wishlist-qty {
  width: 15px;
  height: 15px;
  background-color: var(--default-theme-dark-blue);
  color: var(--text-white-color);
  border-radius: 100%;
  position: absolute;
  top: -1px;
  padding: 8px;
  left: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

.cart-qty {
  width: 15px;
  height: 15px;
  background-color: var(--default-theme-dark-blue);
  color: var(--text-white-color);
  border-radius: 100%;
  position: absolute;
  top: -1px;
  padding: 8px;
  left: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

#account__dropdown {
  width: 100%;
  min-width: 200px;
  top: 140%;
  left: -45%;
  padding: 0;
  overflow: hidden;
  padding: 10px 0 0;
}

#account__dropdown li {
  padding: 15px;
  transition: 300ms all;
}

#account__dropdown li:hover {
  opacity: 0.7;
  transition: 300ms all;
}

#account__dropdown li:hover a {
  transition: 500ms all;
  opacity: 0.7;
}

#account__dropdown .topbar__box {
  background-color: var(--default-theme-dark-blue);
  color: var(--text-white-color);
  margin-top: 5px;
}

#account__dropdown .topbar__box li {
  padding: 15px 10px;
  display: flex;
  justify-content: center;
}

#account__dropdown .topbar__box li a:hover {
  color: var(--default-theme-white) !important;
}

#account__dropdown .topbar__box .menu__item-link {
  text-align: center;
}

#account__dropdown .topbar__box #edit__product:hover a {
  background: var(--text-white-color) !important;
  color: var(--text-black-color) !important;
  opacity: 1 !important;
}

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

.search-page {
  margin-top: 50px;
}

@media screen and (max-width: 1140px) {
  .icon_title {
    display: none;
  }

  .cart-qty {
    left: 31px;
    top: -5px;
  }

  .wishlist-qty {
    left: 26px;
    top: -5px;
  }
}

@media screen and (max-width: 990px) {


  .search__button input {
    display: none;
  }

  .header__seacrh .search__button {
    width: auto;
    height: auto;
    min-width: auto;
  }

  .account__col {

    justify-content: flex-end;

  }
}


@media screen and (max-width: 767px) {
  #account__dropdown {
    left: -400%;
    min-width: 170px;
  }

  .iconset__btn i {
    font-size: 20px;
  }

  .wislist__icon {
    padding: 0;
    padding-right: 12px !important;
  }

  .topbar-dropdown__btn {

    padding-right: 12px !important;

  }

  .header__seacrh .search__button {
    border: 0;
    padding: 12px !important;
    height: 42px;

  }

  .header__seacrh .search__button i {
    font-size: 20px;
    color: var(--default-theme-dark-blue);
    font-weight: lighter;
  }

  .cart-qty {
    left: 10px;
    top: 2px;
  }

  .wishlist-qty {
    left: 13px;
    top: 2px;
  }

  .dropcart--style--offcanvas .dropcart__body {
    width: 90%;
  }

  .dropcart__product {
    width: 96%;

  }

  .dropcart__product-name a {
    font-size: 13px;
  }

  .dropcart__products-list {
    padding: 10px;
  }

  .dropcart__product-remove {
    margin-left: 0;
  }

  .seacrhModal .btn-close {

    padding: 0;
    right: 20px !important;
    top: 40px !important;
  }

  .search--location--header .search__body {
    padding: 0;
  }

  .search__body .logo {

    margin: 0 0 10px;
  }

  .search--location--header .search__suggestions {
    padding-top: 15px;
    left: 0;
    top: 0;
  }

  .search__list--box {
    flex-direction: column;
    align-items: flex-start;
  }

  .search__list--box a {
    font-size: 12px;
  }

  .seacrhModal {
    height: 100vh;
  }
}

/* ---------------------------------------------
                    FOOTER  
  ------------------------------------------------*/
.footer {
  padding: 80px 0 0;
  background: var(--footer-bg-color2);
  line-height: 1.3;
  border-top: 1px solid #0000001e;
}


.footer .logo {
  justify-content: flex-start;
}

.footer__col--two {
  display: flex;
  flex-direction: column;

}

#resultMessage {
  font-weight: 200;
  letter-spacing: 1px;
  line-height: 1.8;
  color: var(--text-black-color);
}

.footer__contact {
  margin-top: 30px;
}

.footer__contact li {
  margin: 15px 0 0;
  line-height: 1.4;
}

.footer__contact li p {
  color: var(--text-black-color);
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: 300;
  text-align: left;
  letter-spacing: 1px;
  line-height: 2;
}

.footer__contact li p a {

  font-size: 16px;

  letter-spacing: 1px;
}

.footer__contact li span {
  color: var(--text-white-color);
}

.footer .social-links {
  display: flex;
  align-items: center;
  margin: 10px 0;

}

.footer .social-links__item {
  width: 35px;
  height: 35px;
  border-radius: 30px;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: flex-start;

  /* border: 1px solid var(--text-black-color); */
}

.footer__box {
  display: inline-block;
  min-width: 250px;
}

.footer .social-links__item i {
  color: var(--text-black-color);
  font-size: 13px;
}


.footer__end {
  display: flex;
  justify-content: flex-end;
  align-items: start;
}

.footer__box__title {
  font-weight: 500;
  font-size: 16px;
  color: var(--text-black-color);
  text-transform: uppercase;
  padding: 0;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.footer__box__item {
  padding: 11px 0;
  color: var(--text-black-color);
  transition: 500ms all;
  cursor: pointer;
}

.footer__box__item a {
  color: var(--text-black-color);
  font-size: 16px;

  letter-spacing: 1px;
  font-weight: 300;
}

.footer__categori {
  font-weight: bold;
  font-weight: 700;
  font-size: 16px;
  color: var(--text-black-color);
  text-transform: uppercase;
  padding: 0;
  margin-bottom: 15px;
  margin-top: 20px;
}

.footer__categori a {
  opacity: 1;
}

.footer__box__item:hover {
  padding-left: 0.5rem;
  transition: 500ms all;
}

.footer__newsletter--title {
  font-weight: 500;
  font-size: 16px;
  color: var(--text-black-color);
  margin: 0 0 20px 0;


}

.footer__newsletter {
  margin: 30px 30px 0 0;
}

.footer__newsletter--text {
  text-transform: lowercase;
  margin-bottom: 13px;
  font-size: 16px;

  letter-spacing: 1px;
  font-weight: 300;
  letter-spacing: 1px;
  line-height: 1.8;
  color: var(--text-black-color);
}

#footer-newsletter-address {
  color: var(--text-black-color);
  background-color: transparent;
  border: 0;
  outline: 0;
}

.footer__form {
  display: flex;
  border: 1px solid #00000078;
  margin: 30px 30px 0 0;
}

.footer__form--input {
  border: 0;
  box-shadow: none;
  background-color: transparent;
  padding: 0 0 10px;
  color: var(--default-theme-white);
}

.footer__form--input:focus {
  border: 0;
  box-shadow: none;
  background-color: transparent;
}

.footer__form--input::placeholder {
  color: #eeeeee;
  opacity: 0.5;
}

.footer__form--button {
  color: #eeeeee;
  transition: 500ms all;
  background-color: var(--text-black-color);
  text-wrap: nowrap;
  padding: 5px 15px;
  font-size: 13px;
}

.footer__form--button svg {
  fill: #eeeeee;
  color: #eeeeee;
}

.footer__form:hover .footer__form--button {

  transition: 500ms all;
}

.footer__bottom {
  margin-top: 50px;
  background-color: var(--footer-bg-color2);
  padding: 30px 0;
}

.footer__bottom img {

  width: auto;
}


.footer__bottom--box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #0000003c;
  padding-top: 30px;
}

.footer .site-footer__payments {
  display: flex;
  justify-content: flex-end;
}

.footer .payment-icons {
  display: flex;
}

.footer .payment-icons li {
  margin: 0 5px;
}

.footer .payment-icons li i {
  color: var(--text-black-color);
  font-size: 23px;
}

.footer .totop {
  position: fixed;
  display: flex;
  justify-content: flex-end;
  bottom: 0;
  right: 0;
}

.site-footer__copyright {
  color: var(--text-black-color);
  margin: 0;
  opacity: 0.7;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.productAttributeMappings {
  justify-content: flex-start !important;
  font-size: 15px !important;
  color: #001747 !important;
}

.productAttribute {
  font-size: 15px !important;
  color: #001747 !important;
}

#nprogress .bar {
  background-color: var(--text-black-color) !important;
  box-shadow: none !important;
}

.totop {
  position: relative;
  z-index: 9;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.3s, visibility 0s 0.3s;
  transition: opacity 0.3s, visibility 0s 0.3s;
}

#checkout-shipping-method-load {
  position: unset;
}

.totop__body {
  position: fixed;
  bottom: 36px;
  left: 0;
  top: auto;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: -20px;
}

.totop__container {
  margin: 0 -15px;
}

.totop__start,
.totop__end {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  min-width: 0;
}

.totop__end {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.totop__end:before {
  content: "";
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.totop__button {
  pointer-events: auto;
  width: 39px;
  height: 39px;
  border-radius: 19.5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0;
  border: none;
  cursor: pointer;
  color: #3d464d;
  background: #465a7f;
  fill: currentColor;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transition: background-color 0.15s, color 0.15s;
  transition: background-color 0.15s, color 0.15s;
}

[dir="ltr"] .totop__button {
  margin-left: 80px;
  margin-right: 24px;
}

[dir="rtl"] .totop__button {
  margin-right: 80px;
  margin-left: 24px;
}

.totop__button:focus {
  outline: none;
}

@media (hover: hover) {
  .totop__button:hover {
    color: #fff;
    background: #3d464d;
  }
}

.totop__button:active {
  color: #fff;
  background: #546069;
}

.totop__button svg {
  margin-top: -2px;
  margin-bottom: 1px;
  color: var(--default-theme-white);
}

.totop--show {
  visibility: visible;
  opacity: 1;
  -webkit-transition-delay: 0s, 0s;
  transition-delay: 0s, 0s;
}

.footer__box__list {
  display: block;
}

@media screen and (max-width: 767px) {
  .footer {
    padding: 30px 0;
  }

  .footer__box__list {
    display: none;
  }

  .footer__box__list.active {
    display: block;
    animation: slideIn 0.3s ease-out;
  }

  .footer__box {
    display: inline-block;
    min-width: 100%;
  }

  .footer__end {
    justify-content: flex-start;
  }

  .footer__bottom--box {
    flex-direction: column;
    justify-content: space-around;
    border: 0;
  }

  .footer__bottom--box img:not(.liva-logo) {
    width: 100%;
    object-fit: contain;
  }

  .footer__bottom img {
    margin: 0 0 15px 0;
  }

  .footer__box__title {
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.288);
    margin: 0;
    padding: 20px 5px;
    width: 100%;
    text-align: left;
  }

  .footer__box__title:after {
    content: "\e64b";
    font-family: "themify";
    font-size: 12px;
    display: block;
    position: absolute;
    right: 5px;
    top: 25px;
  }

  .footer__box__list {
    margin-left: 15px;
  }

  .footer__bottom {
    margin: 0;
    padding: 0;
  }

  .footer .social-links,
  .footer__newsletter {
    margin-bottom: 25px;
  }

  .site-footer__copyright,
  .site-footer__payments {
    justify-content: center !important;
    margin-bottom: 20px;
  }

  .block-header__arrow {
    width: 40px;
    height: 40px;
  }
}

/* ----------------------------------------
// Pages
// ---------------------------------------- */

/*
// .about-us
*/

.about-us__image {
  background-image: url("../content/images/aboutus.jpg");
  background-size: cover;
  background-position: bottom center;
  height: 500px;
}

.about-us__body {
  background: #fff;
  min-height: 380px;
  margin-top: -380px;
  border-radius: 4px 4px 0 0;
  padding: 75px 92px;
}

.about-us__title {
  text-align: center;
  margin-bottom: 50px;
}

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

.about-us__team {
  margin-top: 75px;
  text-align: center;
}

.about-us__team-subtitle {
  margin-top: 24px;
}

.about-us__teammates {
  margin-top: 42px;
}

.teammates .owl-carousel .owl-dots {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.teammates .owl-carousel .owl-dots.disabled {
  display: none;
}

.teammates .owl-carousel .owl-dot {
  display: block;
  color: #e5e5e5;
  -webkit-transition: color .2s;
  transition: color .2s;
}

.teammates .owl-carousel .owl-dot::before {
  display: block;
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 6px;
  background: currentColor;
  margin: 6px;
}

.teammates .owl-carousel .owl-dot:focus {
  outline: none;
}

.teammates .owl-carousel .owl-dot:hover {
  color: #ccc;
}

.teammates .owl-carousel .owl-dot.active {
  color: #ffd333;
}

.teammate__avatar img {
  max-width: 100%;
  border-radius: 2px;
}

.teammate__name {
  font-size: 18px;
  font-weight: 500;
  margin-top: 16px;
}

.teammate__position {
  font-size: 14px;
}

@media (max-width: 991px) and (min-width: 768px) {
  .about-us__image {
    height: 460px;
  }

  .about-us__title {
    margin-bottom: 36px;
  }

  .about-us__body {
    padding: 50px;
  }

  .about-us__team {
    margin-top: 75px;
  }
}

@media (max-width: 767px) and (min-width: 576px) {
  .about-us__image {
    height: 360px;
  }

  .about-us__title {
    margin-bottom: 24px;
  }

  .about-us__body {
    min-height: 290px;
    margin-top: -290px;
    padding: 40px;
  }

  .about-us__team {
    margin-top: 50px;
  }
}

@media (max-width: 767px) {
  .about-us__image {
    height: 330px;
  }

  .about-us__body {
    min-height: 290px;
    margin-top: -290px;
    padding: 30px 24px;
  }

  .about-us__title {
    margin-bottom: 20px;
  }

  .about-us__team {
    margin-top: 50px;
  }
}

/*
// .checkout
*/

.checkout__totals {
  font-size: 15px;
  line-height: 19px;
  width: 100%;
  margin-bottom: 40px;
}

.checkout__totals th,
.checkout__totals td {
  padding: 4px 0;
}

.checkout__totals th {
  font-weight: 700;
}

[dir=ltr] .checkout__totals tr> :first-child {
  padding-right: 20px;
}

[dir=rtl] .checkout__totals tr> :first-child {
  padding-left: 20px;
}

.checkout__totals tr> :last-child {
  white-space: nowrap;
}

[dir=ltr] .checkout__totals tr> :last-child {
  text-align: right;
}

[dir=rtl] .checkout__totals tr> :last-child {
  text-align: left;
}

.checkout__totals-header tr:last-child>* {
  padding-bottom: 10px;
}

.checkout__totals-products tr:first-child>* {
  padding-top: 20px;
  border-top: 1px solid #ebebeb;
}

.checkout__totals-products tr:last-child>* {
  padding-bottom: 20px;
  border-bottom: 1px solid #ebebeb;
}

.checkout__totals-subtotals tr:first-child>* {
  padding-top: 20px;
}

.checkout__totals-subtotals tr:last-child>* {
  padding-bottom: 20px;
  border-bottom: 1px solid #ebebeb;
}

.checkout__totals-footer {
  font-size: 24px;
}

.checkout__totals-footer th {
  font-weight: 500;
}

.checkout__totals-footer tr:first-child>* {
  padding-top: 20px;
}

.payment-methods {
  margin-bottom: 30px;
}

.payment-methods__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.payment-methods__item {
  border-radius: 2px;
  background: transparent;
  border: 1px solid #e5e5e5;
}

.payment-methods__item:hover {
  background: var(--default-theme-off-white);
  border: 1px solid #e5e5e5;
}

.payment-methods__item+.payment-methods__item {
  margin-top: 6px;
}

.payment-methods__item-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 8px 14px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .01em;
  cursor: pointer;
  margin-bottom: 0;
}

[dir=ltr] .payment-methods__item-radio {
  margin-right: 10px;
}

[dir=rtl] .payment-methods__item-radio {
  margin-left: 10px;
}

.payment-methods__item-container {
  overflow: hidden;
  height: 0;
  -webkit-transition: height .2s;
  transition: height .2s;
}

.payment-methods__item-description {
  font-size: 15px;
  line-height: 20px;
  padding: 2px 16px 13px 16px;
}

.payment-methods__item--active,
.payment-methods__item--active:hover {
  background: var(--default-theme-off-white);
  border: 1px solid #e5e5e5;
}

.payment-methods__item--active .payment-methods__item-container {
  height: auto;
}

.checkout__agree {
  margin-bottom: 36px;
}

.checkout__agree a:hover {
  text-decoration: underline;
}

/*
// .contact-us
*/

.contact-us__map {
  position: relative;
  height: 440px;
  margin: -2px;
  margin-bottom: 6px;
  overflow: hidden;
  border-radius: 2px 2px 0 0;
}

.contact-us__map iframe {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}

@media (max-width: 1199px) {
  .contact-us__map {
    height: 400px;
  }
}

@media (max-width: 991px) {
  .contact-us__map {
    height: 380px;
  }
}

@media (max-width: 767px) {
  .contact-us__map {
    height: 360px;
  }
}

@media (max-width: 575px) {
  .contact-us__map {
    height: 320px;
  }
}

/*
// .faq
*/

.faq__section+.faq__section {
  margin-top: 70px;
}

.faq__section-title {
  margin-bottom: 20px;
}

.faq__section-title h3 {
  font-size: 22px;
  font-weight: 500;
}

.faq__section-body {
  border: 2px solid #f0f0f0;
  border-radius: 2px;
  padding: 48px 44px;
}

@media (max-width: 991px) {
  .faq__section+.faq__section {
    margin-top: 40px;
  }

  .faq__section-body {
    padding: 28px 24px;
  }

  .faq__section-column+.faq__section-column {
    margin-top: 1.5em;
  }
}

/*
// .not-found
*/

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

.not-found__404 {
  font-size: 80px;
  font-weight: 700;
  color: #ebebeb;
  padding: 40px 0 20px;
}

.not-found__content {
  width: 480px;
  max-width: 100%;
  margin: 0 auto;
}

.not-found__title {
  margin-bottom: 30px;
}

.not-found__text {
  margin-bottom: 20px;
}

.not-found__search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
}

.not-found__search-input {
  width: 1px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

[dir=ltr] .not-found__search-input {
  margin-right: 10px;
}

[dir=rtl] .not-found__search-input {
  margin-left: 10px;
}

@media (max-width: 991px) {
  .not-found__404 {
    font-size: 60px;
  }
}

@media (max-width: 767px) {
  .not-found__404 {
    font-size: 50px;
    line-height: 54px;
    padding: 40px 0 32px;
  }

  .block-products-carousel__cell .product-card {
    /* margin-bottom: 130px !important; */
    padding: 0;
  }

  .tab__section .block-products-carousel__cell .product-card {
    /* margin-bottom: 130px !important; */
    padding: 10px;
  }

  .tab__section {

    padding: 40px 0;
    margin: 40px 0 0 0;
  }

  .slider-wrapper .block-header {
    margin-bottom: 0;
  }

  .tab__carusel--all {
    margin-top: 35px;
  }

}



/* ----------------------------------------
// Shop
// ---------------------------------------- */

/*
// .address-card
*/

.address-card {
  position: relative;
}

.address-card__badge {
  position: absolute;
  background-color: #ffd333;
  color: #3d464d;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 4px 8px 2px;
  top: -2px;
}

[dir=ltr] .address-card__badge {
  right: .75rem;
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
}

[dir=rtl] .address-card__badge {
  left: .75rem;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
}

.address-card__badge--muted {
  background-color: #f0f0f0;
  color: #3d464d;
}

.address-card__body {
  padding: 1.5rem;
  font-size: 15px;
  line-height: 18px;
}

.address-card__name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 1.125rem;
}

.address-card__row+.address-card__row {
  margin-top: .75rem;
}

.address-card__row-title {
  font-size: 12px;
  color: #999;
}

.address-card__footer {
  margin-top: 1.625rem;
}

.address-card--featured .address-card__body {
  padding: 2rem;
}

.address-card--featured .address-card__name {
  font-weight: 700;
}

@media (min-width: 768px) and (max-width: 991px) {
  .address-card--featured .address-card__body {
    padding: 1.5rem;
  }
}

@media (max-width: 767px) {
  .address-card--featured .address-card__body {
    padding: 1.375rem;
  }
}

/*
// .addresses-list
*/

.addresses-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.addresses-list__item {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.addresses-list__item--new {
  border-radius: 2px;
  border: 2px dashed #ebebeb;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 2rem;
}

.addresses-list__divider:last-child {
  display: none;
}

.addresses-list__plus {
  width: 60px;
  height: 60px;
  border: 2px dashed #ebebeb;
  position: relative;
  border-radius: 30px;
  margin-bottom: 24px;
  -webkit-transition: border-color .2s;
  transition: border-color .2s;
}

.addresses-list__plus::before,
.addresses-list__plus::after {
  content: '';
  position: absolute;
  width: 32px;
  height: 4px;
  background-color: #e5e5e5;
  border-radius: 1.5px;
  top: calc(50% - 2px);
  -webkit-transition: background-color .2s;
  transition: background-color .2s;
}

[dir=ltr] .addresses-list__plus::before,
[dir=ltr] .addresses-list__plus::after {
  left: calc(50% - 16px);
}

[dir=rtl] .addresses-list__plus::before,
[dir=rtl] .addresses-list__plus::after {
  right: calc(50% - 16px);
}

.addresses-list__plus::after {
  -webkit-transform: rotateZ(90deg);
  transform: rotateZ(90deg);
}

.addresses-list__item--new:hover .addresses-list__plus {
  border-color: #e0e0e0;
}

.addresses-list__item--new:hover .addresses-list__plus::before,
.addresses-list__item--new:hover .addresses-list__plus::after {
  background-color: #dbdbdb;
}

@media (min-width: 1200px) {
  .addresses-list__item {
    max-width: calc((100% - 32px) / 3);
  }

  .addresses-list__divider:nth-child(2n) {
    width: 16px;
  }

  .addresses-list__divider:nth-child(6n) {
    width: 100%;
    height: 16px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .addresses-list__item {
    max-width: calc((100% - 24px) / 3);
  }

  .addresses-list__divider:nth-child(2n) {
    width: 12px;
  }

  .addresses-list__divider:nth-child(6n) {
    width: 100%;
    height: 12px;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .addresses-list__item {
    max-width: calc((100% - 12px) / 2);
  }

  .addresses-list__divider:nth-child(2n) {
    width: 12px;
  }

  .addresses-list__divider:nth-child(4n) {
    width: 100%;
    height: 12px;
  }
}

@media (max-width: 479px) {
  .addresses-list__item {
    max-width: calc((100% - 0px) / 1);
  }

  .addresses-list__divider:nth-child(2n) {
    width: 12px;
  }

  .addresses-list__divider:nth-child(2n) {
    width: 100%;
    height: 12px;
  }
}

/*
// .cart
*/

.cart__actions {
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.cart__coupon-form {
  width: calc(50% - 15px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cart__coupon-form .btn {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

[dir=ltr] .cart__coupon-form .btn {
  margin-left: .5rem;
}

[dir=rtl] .cart__coupon-form .btn {
  margin-right: .5rem;
}

.cart__buttons {
  width: calc(50% - 15px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

[dir=ltr] .cart__update-button {
  margin-left: .5rem;
}

[dir=rtl] .cart__update-button {
  margin-right: .5rem;
}

.cart__totals {
  font-size: 16px;
  line-height: 20px;
  width: 100%;
  margin-bottom: 40px;
}

.cart__totals a:hover {
  text-decoration: underline;
}

.cart__totals th,
.cart__totals td {
  vertical-align: top;
  padding: 6px 0;
}

.cart__totals th {
  font-weight: 700;
}

/* 
[dir=ltr] .cart__totals tr> :first-child {
  padding-right: 20px;
} */

[dir=rtl] .cart__totals tr> :first-child {
  padding-left: 20px;
}

[dir=ltr] .cart__totals tr> :last-child {
  text-align: right;
}

[dir=rtl] .cart__totals tr> :last-child {
  text-align: left;
}

.cart__totals-header tr:last-child>* {
  padding-bottom: 10px;
}

.cart__totals-body tr:first-child>* {
  padding-top: 20px;
  border-top: 1px solid #ebebeb;
}

.cart__totals-body tr:last-child>* {
  padding-bottom: 20px;
  border-bottom: 1px solid #ebebeb;
}

.cart__totals-footer {
  font-size: 24px;
}

.cart__totals-footer th {
  font-weight: 500;
}

.cart__totals-footer tr:first-child>* {
  padding-top: 20px;
}

.cart__calc-shipping {
  margin-top: 2px;
  font-size: 15px;
}

@media (max-width: 767px) {
  .cart__actions {
    margin-top: 1.5rem;
    display: block;
  }

  .cart__coupon-form {
    width: 100%;
  }

  .cart__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 2.5rem;
    width: 100%;
  }

  .cart__update-button {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    margin-bottom: .75rem;
  }

  [dir=ltr] .cart__update-button {
    margin-left: 0;
  }

  [dir=rtl] .cart__update-button {
    margin-right: 0;
  }
}

@media (max-width: 479px) {
  .cart__checkout-button {
    font-size: 1.125rem;
    height: calc(2.75rem + 2px);
    padding: .8125rem 2rem;
    line-height: 1;
    font-weight: 500;
  }

  .cart__checkout-button.btn-svg-icon {
    width: calc(2.75rem + 2px);
  }
}

@media (max-width: 379px) {
  .cart__checkout-button {
    font-size: 1rem;
    height: calc(2.25rem + 2px);
    line-height: 1.5;
    padding: .375rem 1.25rem;
    font-weight: 500;
  }

  .cart__checkout-button.btn-svg-icon {
    width: calc(2.25rem + 2px);
  }
}

/*
// .cart-table
*/

.cart-right {
  padding: 0px 15px 22px 15px;
  margin-left: 15px;
  display: inline-table;
}

.cart-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.cart-table__product-name--box {
  color: inherit;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  /* max-width: 120px; */
  margin-left: 15px;
}

.cart-table__product-name {
  font-weight: 500;
  font-size: 16px;
}

.cart-table__options {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  font-size: 14px;
  color: #999;
  line-height: 19px;
}

.discount-btn {
  border: 1px solid #80808024;
}


.message-error {
  color: red;
  display: none;
}

@media (min-width: 768px) {
  td.cart-table__column.cart-table__column--product {
    max-width: 200px;
  }

  .cart-table__column {
    /* padding: 12px 18px; */
    border-top: 1px solid #ebebeb;
  }




  [dir=rtl] .cart-table__column:first-child {
    border-right: 1px solid #ebebeb;
  }

  /* [dir=ltr] .cart-table__column:last-child {
    border-right: 1px solid #ebebeb;
  } */
  [dir=rtl] .cart-table__column:last-child {
    border-left: 1px solid #ebebeb;
  }

  .cart-table__head {
    font-size: 15px;
    line-height: 49px;
  }

  .cart-table__head .cart-table__column {
    font-weight: 400;
  }

  [dir=ltr] .cart-table__head .cart-table__column:first-child {
    border-top-left-radius: 2.5px;
  }

  [dir=rtl] .cart-table__head .cart-table__column:first-child {
    border-top-right-radius: 2.5px;
  }

  [dir=ltr] .cart-table__head .cart-table__column:last-child {
    border-top-right-radius: 2.5px;
  }

  [dir=rtl] .cart-table__head .cart-table__column:last-child {
    border-top-left-radius: 2.5px;
  }

  /* .cart-table__body .cart-table__column {
    padding-top: 18px;
    padding-bottom: 18px;
  } */
  .cart-table__body .cart-table__row:last-child .cart-table__column {
    border-bottom: none;
  }

  [dir=ltr] .cart-table__body .cart-table__row:last-child .cart-table__column:first-child {
    border-bottom-left-radius: 2.5px;
  }

  [dir=rtl] .cart-table__body .cart-table__row:last-child .cart-table__column:first-child {
    border-bottom-right-radius: 2.5px;
  }

  [dir=ltr] .cart-table__body .cart-table__row:last-child .cart-table__column:last-child {
    border-bottom-right-radius: 2.5px;
  }

  [dir=rtl] .cart-table__body .cart-table__row:last-child .cart-table__column:last-child {
    border-bottom-left-radius: 2.5px;
  }

  .cart-table__column--image {
    width: 1px;
    text-align: center;
  }

  /* [dir=ltr] .cart-table__column--image {
    padding-right: 4px;
  } */
  [dir=rtl] .cart-table__column--image {
    padding-left: 4px;
  }

  .cart-table__column--image .product-image {
    min-width: 100px;
    padding-top: 10px;
    display: flex;
    justify-content: space-between;
    height: 120px;
  }

  /* .cart-table__column--price {
    width: 170px;
  } */
  [dir=ltr] .cart-table__column--price {
    text-align: center;
  }

  [dir=rtl] .cart-table__column--price {
    text-align: left;
  }

  .cart-table__column--quantity {
    text-align: center;
    width: 1px;
  }

  /* [dir=ltr] .cart-table__column--quantity {
    padding-left: 90px;
  }
  [dir=rtl] .cart-table__column--quantity {
    padding-right: 90px;
  } */
  /* .cart-table__column--total {
    width: 170px;
  } */
  [dir=ltr] .cart-table__column--total {
    text-align: center;
  }

  [dir=rtl] .cart-table__column--total {
    text-align: left;
  }

  .cart-table__column--remove {
    width: 1px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {}

@media (min-width: 768px) and (max-width: 991px) {
  [dir=ltr] .cart-table__column--quantity {
    padding-left: 0;
    padding-right: 0;
  }

  [dir=rtl] .cart-table__column--quantity {
    padding-right: 0;
    padding-left: 0;
  }

  .cart-table__column--price,
  .cart-table__column--total {
    width: 1px;
  }

  [dir=ltr] .cart-table__column--remove {
    padding-left: 0;
  }

  [dir=rtl] .cart-table__column--remove {
    padding-right: 0;
  }
}

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

  .cart-table__head {
    display: none;
  }

  .cart-table__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .cart-table__row {
    position: relative;
    width: 100%;
    display: flex;
    border-bottom: 1px solid #ebebeb;
    border-radius: 2px;
  }

  .cart-table__row+.cart-table__row {
    margin-top: 15px;
  }

  .cart-table__column {
    display: block;
    padding: 0;
  }

  .cart-table__column--image {
    padding: 20px 20px 12px;
    text-align: center;
  }

  .cart-table__column--image .product-image {
    width: 100%;
    max-width: 160px;
    margin: 0 auto;
  }

  .cart-table__column--product {
    text-align: center;
    border-bottom: 1px solid #ebebeb;
    padding: 0 20px 18px;
  }



  .cart-table__column--price,
  .cart-table__column--quantity,
  .cart-table__column--total {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 8px 20px;
  }

  .cart-table__column--price::before,
  .cart-table__column--quantity::before,
  .cart-table__column--total::before {
    font-weight: 500;
    width: 55%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    content: attr(data-title) ": ";
    display: none
  }

  [dir=ltr] .cart-table__column--price::before,
  [dir=ltr] .cart-table__column--quantity::before,
  [dir=ltr] .cart-table__column--total::before {
    text-align: right;
  }

  [dir=rtl] .cart-table__column--price::before,
  [dir=rtl] .cart-table__column--quantity::before,
  [dir=rtl] .cart-table__column--total::before {
    text-align: left;
  }

  .cart-table__column--quantity .input-number {
    width: 110px;
  }

  .cart-table__column--price {
    padding-top: 18px;
  }

  .cart-table__column--total {
    padding-bottom: 18px;
  }

  .cart-table__column--remove {
    position: unset;
  }

  [dir=ltr] .cart-table__column--remove {
    right: 5px;
  }

  [dir=rtl] .cart-table__column--remove {
    left: 5px;
  }

  .cart-table__options li::before {
    display: none;
  }

  .cart-table__product-name--box {

    max-width: 120px;

  }

  .cart-table__options {
    text-align: left;
    display: flex;
    justify-content: flex-start;
  }

  .cart-table__column--remove {
    display: flex;
    justify-content: flex-end;
  }

  .deleteshoppingcartitem {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/*
// .category-card
*/

.category-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.category-card__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 2px;
  background: #fff;
  -webkit-box-shadow: 0 1px 16px rgba(0, 0, 0, 0.04);
  box-shadow: 0 1px 16px rgba(0, 0, 0, 0.04);
  padding: 24px 20px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.category-card__image {
  width: 130px;
}

[dir=ltr] .category-card__image {
  margin-right: 24px;
}

[dir=rtl] .category-card__image {
  margin-left: 24px;
}

.category-card__image img {
  max-width: 100%;
}

.category-card__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.category-card__name {
  margin-top: -2px;
  font-weight: 500;
  font-size: 17px;
  line-height: 19px;
}

.category-card__name a {
  color: inherit;
  -webkit-transition: .15s;
  transition: .15s;
}

.category-card__name a:hover {
  color: #1a66ff;
}

.category-card__links {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  font-size: 14px;
  line-height: 22px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.category-card__links a {
  color: #6c757d;
  -webkit-transition: .15s;
  transition: .15s;
}

.category-card__links a:hover {
  color: #1a66ff;
}

.category-card__all {
  margin-top: 14px;
  font-size: 14px;
}

.category-card__all a:hover {
  text-decoration: underline;
}

.category-card__products {
  display: none;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .category-card--layout--classic .category-card__image {
    width: 90px;
  }
}

@media (min-width: 480px) and (max-width: 991px) {
  .category-card--layout--classic .category-card__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 24px 28px;
  }

  .category-card--layout--classic .category-card__image {
    width: auto;
    margin: 0 0 18px;
  }
}

@media (min-width: 400px) and (max-width: 479px) {
  .category-card--layout--classic .category-card__image {
    width: 40%;
  }
}

@media (max-width: 399px) {
  .category-card--layout--classic .category-card__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 24px 28px;
    text-align: center;
  }

  .category-card--layout--classic .category-card__image {
    width: 120px;
    margin: 0 auto 18px;
  }
}

.category-card--layout--compact .category-card__body {
  padding: 16px 30px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.category-card--layout--compact .category-card__image {
  width: 74px;
}

[dir=ltr] .category-card--layout--compact .category-card__image {
  margin-right: 30px;
}

[dir=rtl] .category-card--layout--compact .category-card__image {
  margin-left: 30px;
}

.category-card--layout--compact .category-card__links {
  display: none;
}

.category-card--layout--compact .category-card__all {
  display: none;
}

.category-card--layout--compact .category-card__name {
  margin-top: 0;
  font-size: 17px;
  line-height: 19px;
}

.category-card--layout--compact .category-card__products {
  display: block;
  font-size: 15px;
  color: #999;
  margin-top: 5px;
}

/*
// .compare-table
*/

.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 15px;
  line-height: 18px;
}

.compare-table tr>* {
  border-top: 1px solid #ebebeb;
}

[dir=ltr] .compare-table tr>* {
  border-left: 1px solid #ebebeb;
}

[dir=rtl] .compare-table tr>* {
  border-right: 1px solid #ebebeb;
}

[dir=ltr] .compare-table tr>*:last-child {
  border-right: 1px solid #ebebeb;
}

[dir=rtl] .compare-table tr>*:last-child {
  border-left: 1px solid #ebebeb;
}

[dir=ltr] .compare-table>*:first-child>tr:first-child>*:first-child {
  border-top-left-radius: 2.5px;
}

[dir=rtl] .compare-table>*:first-child>tr:first-child>*:first-child {
  border-top-right-radius: 2.5px;
}

[dir=ltr] .compare-table>*:first-child>tr:first-child>*:last-child {
  border-top-right-radius: 2.5px;
}

[dir=rtl] .compare-table>*:first-child>tr:first-child>*:last-child {
  border-top-left-radius: 2.5px;
}

[dir=ltr] .compare-table>*:last-child>tr:last-child>*:first-child {
  border-bottom-left-radius: 2.5px;
}

[dir=rtl] .compare-table>*:last-child>tr:last-child>*:first-child {
  border-bottom-right-radius: 2.5px;
}

[dir=ltr] .compare-table>*:last-child>tr:last-child>*:last-child {
  border-bottom-right-radius: 2.5px;
}

[dir=rtl] .compare-table>*:last-child>tr:last-child>*:last-child {
  border-bottom-left-radius: 2.5px;
}

.compare-table>*:last-child>tr:last-child>* {
  border-bottom: 1px solid #ebebeb;
}

.compare-table th {
  min-width: 140px;
  background: var(--default-theme-off-white);
  font-weight: 500;
}

[dir=ltr] .compare-table th {
  text-align: right;
}

[dir=rtl] .compare-table th {
  text-align: left;
}

.compare-table td {
  min-width: 180px;
  max-width: 180px;
  text-align: center;
  vertical-align: top;
}

.compare-table td,
.compare-table th {
  padding: 14px 16px;
}

.compare-table__product-link {
  display: block;
  padding: 8px 8px 0;
  color: inherit;
}

.compare-table__product-image {
  margin: 0 auto 14px;
  width: 140px;
  max-width: 100%;
}

.compare-table__product-name {
  line-height: 20px;
}

.compare-table__product-rating {
  padding-top: 3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.compare-table__product-rating-legend {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1;
  color: #b3b3b3;
}

.compare-table__product-badge {
  font-size: 12px;
}

/*
// .dashboard
*/

.dashboard {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.dashboard__orders {
  margin-top: 24px;
  width: 100%;
}

@media (min-width: 768px) {

  .dashboard__profile,
  .dashboard__address {
    width: calc(50% - 12px);
  }
}

@media (max-width: 767px) {

  .dashboard__profile,
  .dashboard__address {
    width: 100%;
  }

  .dashboard__address {
    margin-top: 24px;
  }
}

/*
// .order-header
*/

.order-header {
  padding: 1.625rem 2rem 1.375rem;
}

.order-header:after {
  display: block;
  content: '';
  clear: both;
}

.order-header__actions {
  margin-top: -1px;
}

[dir=ltr] .order-header__actions {
  float: right;
}

[dir=rtl] .order-header__actions {
  float: left;
}

.order-header__title {
  border-bottom: 2px solid #e5e5e5;
  padding-bottom: 4px;
  margin-bottom: 0;
}

[dir=ltr] .order-header__title {
  padding-right: 3.5rem;
  float: left;
}

[dir=rtl] .order-header__title {
  padding-left: 3.5rem;
  float: right;
}

.order-header__subtitle {
  color: #6c757d;
  font-size: 14px;
  line-height: 1.375;
  clear: both;
  padding-top: 12px;
}

.order-header__subtitle mark {
  padding: 0;
  color: #3d464d;
  background: transparent;
  font-weight: 500;
}

@media (min-width: 768px) and (max-width: 991px) {
  .order-header {
    padding: 1.375rem 1.5rem 1.25rem;
  }
}

@media (max-width: 767px) {
  .order-header {
    padding: 1.125rem 1.375rem 1rem;
  }
}

@media (max-width: 440px) {
  .order-header__actions {
    margin-bottom: .875rem;
  }

  [dir=ltr] .order-header__actions {
    float: none;
  }

  [dir=rtl] .order-header__actions {
    float: none;
  }
}

/*
// .order-list
*/

.order-list a {
  color: inherit;
}

.order-list a:hover {
  color: inherit;
  text-decoration: underline;
}

.order-list table {
  width: 100%;
  font-size: 15px;
}

.order-list__header th,
.order-list__header td {
  text-transform: uppercase;
  color: #6c757d;
  font-size: 13px;
  font-weight: 500;
}

.order-list__footer {
  font-size: 20px;
}

.order-list__footer th {
  font-weight: 500;
}

.order-list__column-image {
  width: 1px;
}

.order-list__column-image .product-image {
  width: 40px;
}

.order-list__column-product {
  line-height: 1.25;
}

.order-list__column-quantity {
  text-align: center;
}

[dir=ltr] .order-list__column-total {
  text-align: right;
}

[dir=rtl] .order-list__column-total {
  text-align: left;
}

.order-list__options {
  color: #6c757d;
  font-size: 13px;
  margin-top: 2px;
}

.order-list__options-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.order-list__options-item:not(:last-child) {
  position: relative;
}

[dir=ltr] .order-list__options-item:not(:last-child) {
  padding-right: 19px;
}

[dir=rtl] .order-list__options-item:not(:last-child) {
  padding-left: 19px;
}

.order-list__options-item:not(:last-child):after {
  position: absolute;
  content: '';
  display: block;
  background: #ccc;
  width: 1px;
  height: 10px;
  top: calc(50% - 5px);
  -webkit-transform: skewX(-20deg);
  transform: skewX(-20deg);
}

[dir=ltr] .order-list__options-item:not(:last-child):after {
  right: 9px;
}

[dir=rtl] .order-list__options-item:not(:last-child):after {
  left: 9px;
}

@media (min-width: 576px) {

  .order-list th,
  .order-list td {
    padding: 4px 12px;
  }

  [dir=ltr] .order-list th:first-child,
  [dir=ltr] .order-list td:first-child {
    padding-left: 1.5rem;
  }

  [dir=rtl] .order-list th:first-child,
  [dir=rtl] .order-list td:first-child {
    padding-right: 1.5rem;
  }

  [dir=ltr] .order-list th:last-child,
  [dir=ltr] .order-list td:last-child {
    padding-right: 1.5rem;
  }

  [dir=rtl] .order-list th:last-child,
  [dir=rtl] .order-list td:last-child {
    padding-left: 1.5rem;
  }

  .order-list__header th,
  .order-list__header td {
    border-bottom: 2px solid #f0f0f0;
    padding: 10px 12px;
  }

  .order-list__products th,
  .order-list__products td {
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .order-list__products tr:first-child th,
  .order-list__products tr:first-child td {
    padding-top: 14px;
  }

  .order-list__products tr:last-child th,
  .order-list__products tr:last-child td {
    padding-bottom: 14px;
  }

  [dir=ltr] .order-list__products .order-list__column-product {
    padding-left: 4px;
  }

  [dir=rtl] .order-list__products .order-list__column-product {
    padding-right: 4px;
  }

  .order-list__subtotals th,
  .order-list__subtotals td {
    padding-top: 3px;
    padding-bottom: 3px;
  }

  .order-list__subtotals tr:first-child th,
  .order-list__subtotals tr:first-child td {
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
  }

  .order-list__subtotals tr:last-child th,
  .order-list__subtotals tr:last-child td {
    padding-bottom: 12px;
  }

  .order-list__footer th,
  .order-list__footer td {
    padding-top: 14px;
    padding-bottom: 14px;
    border-top: 1px solid #f0f0f0;
  }
}

@media (max-width: 575px) {

  .order-list table,
  .order-list tr,
  .order-list th,
  .order-list td {
    display: block;
    padding: 0;
  }

  .order-list__header,
  .order-list__products,
  .order-list__subtotals,
  .order-list__footer {
    display: block;
  }

  .order-list__header tr,
  .order-list__products tr,
  .order-list__subtotals tr,
  .order-list__footer tr {
    padding: 0 1rem;
  }

  .order-list__header tr,
  .order-list__subtotals tr,
  .order-list__footer tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .order-list__header .order-list__column-label,
  .order-list__subtotals .order-list__column-label,
  .order-list__footer .order-list__column-label {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }

  .order-list__header .order-list__column-quantity,
  .order-list__subtotals .order-list__column-quantity,
  .order-list__footer .order-list__column-quantity {
    display: none;
  }

  .order-list__header tr {
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
  }

  .order-list__products tr {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .order-list__products tr:not(:first-child) {
    border-top: 1px solid #f0f0f0;
  }

  .order-list__products .order-list__column-image {
    width: 40px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }

  .order-list__products .order-list__column-product {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: calc(100% - 40px);
  }

  [dir=ltr] .order-list__products .order-list__column-product {
    padding-left: 1rem;
  }

  [dir=rtl] .order-list__products .order-list__column-product {
    padding-right: 1rem;
  }

  .order-list__products .order-list__column-quantity:before {
    content: attr(data-title) " ";
  }

  .order-list__products .order-list__column-total {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }

  .order-list__products .order-list__column-quantity,
  .order-list__products .order-list__column-total {
    margin-top: .625rem;
    margin-bottom: -.125rem;
  }

  .order-list__subtotals {
    padding-top: 12px;
    padding-bottom: 12px;
    border-top: 1px solid #f0f0f0;
  }

  .order-list__subtotals th,
  .order-list__subtotals td {
    padding-top: 2px;
    padding-bottom: 2px;
  }

  .order-list__footer {
    padding-top: 12px;
    padding-bottom: 12px;
    border-top: 1px solid #f0f0f0;
  }
}

/*
// .order-success
*/

.order-success__body {
  max-width: 690px;
  margin: 0 auto;
}

.order-success__header {
  padding: 60px 0 52px;
  text-align: center;
}

.order-success__icon {
  fill: #ffd333;
  margin: 0 auto;
  display: block;
}

.order-success__title {
  margin-top: 24px;
  margin-bottom: 2px;
}

.order-success__subtitle {
  font-size: 19px;
  font-weight: 500;
}

.order-success__actions {
  margin-top: 20px;
}

.order-success__meta {
  margin-bottom: 28px;
  text-align: center;
}

.order-success__meta-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.order-success__meta-item {
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  line-height: 1.25;
  position: relative;
  padding: 2px 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.order-success__meta-item:not(:last-child):before {
  position: absolute;
  display: block;
  content: '';
  border-left: 2px dashed #ebebeb;
  width: 0;
  height: 100%;
  top: 0;
}

[dir=ltr] .order-success__meta-item:not(:last-child):before {
  right: -1px;
}

[dir=rtl] .order-success__meta-item:not(:last-child):before {
  left: -1px;
}

.order-success__meta-title {
  display: block;
  font-size: 13px;
  color: #6c757d;
  margin-bottom: 4px;
}

.order-success__meta-value {
  display: block;
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
}

@media (max-width: 767px) {
  .order-success__header {
    padding: 44px 0 40px;
  }

  .order-success__meta-list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .order-success__meta-item {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
  }

  .order-success__meta-item:nth-child(2n):before {
    display: none;
  }

  .order-success__meta-item:nth-child(n+3) {
    margin-top: 16px;
  }
}

/*---------------------------------------------------------
                             .product
  -----------------------------------------------------------*/

.product__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 50% 50%;
  grid-template-columns: [gallery] calc(65% - 20px) [info] calc(37% - 20px);
  grid-template-rows: auto auto auto auto auto;
  grid-column-gap: 0px;
}

.product__gallery {
  -ms-grid-row: 1;
  -ms-grid-row-span: 6;
  -ms-grid-column: 1;
  grid-row-start: 1;
  grid-row-end: 6;
  min-height: 0;
}

.product-details-sticky {
  position: sticky;
  top: 0;
}

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
  [dir="ltr"] .product__gallery {
    margin-right: 40px;
  }

  [dir="rtl"] .product__gallery {
    margin-left: 40px;
  }
}

.product__info {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  position: relative;
  min-height: 0;
  margin-top: 10px;
}

.product__sidebar {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
}

.product__footer {
  -ms-grid-row: 3;
  -ms-grid-column: 2;
}

.product__wishlist-compare {
  display: none;
}

.product__name {
  margin: 10px 0;
  font-weight: 600;
  font-size: 25px;
  color: var(--text-black-color);
}

.product__rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 5px;
  align-items: center;
}

.product__rating-stars {
  padding-top: 2px;
}

[dir="ltr"] .product__rating-stars {
  margin-right: 12px;
}

[dir="rtl"] .product__rating-stars {
  margin-left: 12px;
}

.product__rating-legend {
  font-size: 14px;
  line-height: 20px;
  color: #b3b3b3;
}

.product__rating-legend a {
  color: inherit;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}

.product__rating-legend a:hover {
  color: var(--default-theme-dark-blue);
}

.product__rating-legend span {
  content: "/";
  padding: 0 7px;
}

.product__description {
  font-size: 16px;
}

.product__features {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.product__features li {
  padding-top: 1px;
  padding-bottom: 1px;
  position: relative;
}

[dir="ltr"] .product__features li {
  padding-left: 13px;
  padding-right: 0;
}

[dir="rtl"] .product__features li {
  padding-right: 13px;
  padding-left: 0;
}

.product__features li::before {
  content: "";
  display: block;
  position: absolute;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 2.5px;
  border: 1px solid currentColor;
}

[dir="ltr"] .product__features li::before {
  left: 0;
}

[dir="rtl"] .product__features li::before {
  right: 0;
}

.product__meta {

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  flex-direction: column;
  color: #999;
  font-size: 14px;
}

[dir="ltr"] .product__meta li {
  margin-right: 18px;
  color: var(--text-black-color);
  font-size: 16px;
}

[dir="rtl"] .product__meta li {
  margin-left: 18px;
}

.product__meta .label {
  font-weight: 600;
}

.product__meta a {
  color: inherit;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}

.product__meta a:hover {
  color: #1a66ff;
}

.product__meta .manufacturers {
  color: #808080;
  font-weight: 500;
  font-size: 18px;
}

.product__availability {
  display: none;
}

.product__prices {

  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #3d464d;
  display: flex;
  align-items: center;

}

.productdetail__color {
  margin: 15px 0;
}

.productdetail__color .image-container--product {
  display: block;
  border-radius: 100%;
}

.productdetail__color .image-container--product img {
  height: 72px;
}

.productdetail__color.image-container--product img {
  width: 100%;
  height: 100%;
  object-fit: cover;

}

.product-color-label {
  color: #808080;
  font-size: 16px;
}

.productdetail__color .color-squares li,
.productdetail__color .color-squares li a {
  width: 100%;
  height: 100%;
  border: 0;
  margin-right: 3px;
}

.delivery {
  margin: 10px 0 !important;
}

.delivery-date {
  color: var(--text-black-color) !important;
  margin-top: 10px;
}

.product__new-price {
  color: var(--text-black-color);
  font-size: 18px;
}

.product__old-price {
  color: #b3b3b3;
  font-weight: 400;
  font-size: 20px;
  text-decoration: line-through;
  white-space: nowrap;
  margin-right: 10px;

}


.productdetail__size label {
  border: 1px solid #0e0d0d8e;
  width: 70px;
  height: 40px;

  display: flex;
  align-items: center;
  justify-content: center;
  color: #808080;
}

.productdetail__size label.outofstock {
  border: 1px solid #bcb7b749;
  background-color: #bcb7b749;
}

.productdetail__size label:hover {
  background-color: var(--default-theme-dark-blue);
  color: var(--text-white-color);
}

.productdetail__size .input-radio-label__list input:not(:checked):not(:disabled)~span:hover {
  background-color: var(--default-theme-dark-blue);
  color: var(--text-white-color);
}

.productdetail__size .input-radio-label__list input:checked~span {
  cursor: default;
  background-color: var(--default-theme-dark-blue);
  color: var(--text-white-color);
  -webkit-transition-duration: 0.08s, 0.08s;
  transition-duration: 0.08s, 0.08s;
  width: 100%;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
}


.accordion-button::after {
  background-size: 12px !important;
}

.productdetail__size .product__option-label {
  border: 0;
  margin-right: 20px;
  min-width: 100px;
  font-weight: 500;
  justify-content: flex-start;
  color: var(--text-black-color);
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.productdetail__size .product__option-label .sizeguide-btn {
  font-weight: 500;
  text-decoration: underline;
  color: #808080;
  font-size: 16px;
}

.productdetail__size .product__option-label .sizeguide-btn i {
  color: var(--default-color-black);
  text-decoration: none;
}

.productdetail__size .product__option-label:hover {
  background-color: transparent;
  color: var(--text-black-color);
}

.product-details-categories-link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-black-color);
  text-decoration: underline;
  margin: 25px 0;
}

.product-details-categories-link svg {
  margin-right: 10px;
}

.product-details-page-link,
.accordion-header {
  display: flex;
  align-items: center;
  text-transform: none;
  padding: 0 18px;
  height: 64px;
  font-size: 16px;
  font-weight: 400;
  color: var(--default-color-black2);
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, .2);
  border: 1px solid #eee;
  justify-content: space-between;
  font-weight: 500;
  margin-bottom: 8px;
}

.accordion-header svg {
  display: none;
}

.product-details-page-link .stok--title {
  display: flex;

}

.product-details-page-link .stok--title svg {
  margin-right: 10px;
}

.product-size-standart {
  font-size: 13px;
  color: #808080;
  margin-top: 7px;
  display: block;
}

.productdetail__size .product__option {
  display: flex;
  flex-direction: column;
}

.productdetail__size label span {
  color: #808080;
  font-size: 16px;
  text-align: center;
}

.your-price {
  font-size: 18px;
}

.product__option {
  margin-bottom: 18px;
}

.product__option:last-child {
  margin-bottom: 0;
}

.product__option-label {
  font-size: 14px;
  text-transform: capitalize;
  font-weight: 400;
  color: #001747;
  padding-bottom: 2px;
  display: flex;
  color: var(--default-theme-dark-blue);
  margin-right: 10px;
}

.product__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -4px;
}

.product__actions-item {
  margin: 4px;
}

.productdetails__box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.productdetails__box .product__actions-item--addtocart {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.product__quantity {
  min-width: 120px;
  width: 100%;

}


.productdetails__cart {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5px;
  width: 100%;
}

.product__footer {
  margin-top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.product__share-links {
  margin-top: 2px;
  margin-bottom: 2px;
}

[dir="ltr"] .product__share-links {
  margin-left: 24px;
  margin-right: 0;
}

[dir="rtl"] .product__share-links {
  margin-right: 24px;
  margin-left: 0;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .product__name {
    font-size: 24px;
    margin-bottom: 18px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .product__content {
    -ms-grid-columns: 44% 56%;
    grid-template-columns: [gallery] calc(44% - 15px) [info] calc(56% - 15px);
    grid-column-gap: 30px;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) and (-ms-high-contrast: active),
(min-width: 768px) and (max-width: 991px) and (-ms-high-contrast: none) {
  [dir="ltr"] .product__gallery {
    margin-right: 30px;
  }

  [dir="rtl"] .product__gallery {
    margin-left: 30px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .product__name {
    font-size: 24px;
    margin-bottom: 18px;
  }

  .product__footer {
    display: block;
    margin-top: 18px;
  }

  .product__share-links {
    margin: 12px 0 0;
  }
}

@media (max-width: 767px) {
  .product__content {
    display: block;
  }

  .product__gallery {
    margin-bottom: 24px;
  }

  .product__name {
    font-size: 24px;
    margin-bottom: 18px;
  }
}

@media (max-width: 559px) {
  .product__footer {
    display: block;
    margin-top: 24px;
  }

  .product__share-links {
    margin: 12px 0 0;
  }
}

/***************************************
              admin login  
****************************************/
.admin-login-layout {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #a5b1c261;
}


.main_container .admin-login-card {
  width: 600px;
  height: auto;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  position: relative;
  border: 1px solid hsla(0, 0%, 65%, 0.158);
  box-shadow: 0 0 36px 1px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  backdrop-filter: blur(20px);
  z-index: 5;
  background-color: #F6F6F6;
}


@keyframes wobble {
  0% {
    transform: scale(1.025);
    -webkit-transform: scale(1.025);
    -moz-transform: scale(1.025);
    -ms-transform: scale(1.025);
    -o-transform: scale(1.025);
  }

  25% {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }

  75% {
    transform: scale(1.025);
    -webkit-transform: scale(1.025);
    -moz-transform: scale(1.025);
    -ms-transform: scale(1.025);
    -o-transform: scale(1.025);
  }

  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }
}

@keyframes rotateAroundCircle {
  0% {
    transform: translate(-50%, -50%) rotate(0deg) translate(100px) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg) translate(100px) rotate(-360deg);
  }
}

@keyframes rotateAroundCircle2 {
  0% {
    transform: translate(-50%, -50%) rotate(360deg) translate(100px) rotate(-360deg);
  }

  100% {

    transform: translate(-50%, -50%) rotate(0deg) translate(100px) rotate(0deg);
  }
}

@keyframes rotateAroundCircle3 {
  0% {
    transform: translate(-50%, -50%) rotate(360deg) translate(50px) rotate(-360deg);
  }

  100% {

    transform: translate(-50%, -50%) rotate(0deg) translate(50px) rotate(0deg);
  }
}

.main_container .admin-login-card::before {
  width: 20px;
  height: 20px;
  background: #0d6efd14;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  position: absolute;
  content: '';
  left: -100px;
  top: 13px;
  z-index: -3;
  box-shadow: 0 0 16px 1px rgba(0, 0, 0, 0.2);
  animation: rotateAroundCircle3 10s linear infinite;
}

.main_container .admin-login-card::after {
  width: 20px;
  height: 20px;
  background: #ff6348;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  position: absolute;
  content: '';
  bottom: -40px;
  right: -70px;
  z-index: -3;
  box-shadow: 0 0 16px 1px rgba(0, 0, 0, 0.2);
  animation: rotateAroundCircle3 10s linear infinite;
  opacity: 0.2;
}


.admin-login-card .circle {
  width: 1rem;
  height: 1rem;
  background: #fd79a8;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  z-index: -3;
  box-shadow: 0 0 16px 1px rgba(0, 0, 0, 0.2);
  animation: rotateAroundCircle 10s linear infinite;
  opacity: 0.2;
}


.admin-login-card .circle::before {
  width: 15px;
  height: 15px;
  background: #2ed573;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  z-index: -3;
  box-shadow: 0 0 16px 1px rgba(0, 0, 0, 0.2);
  animation: rotateAroundCircle 15s linear infinite;

}



.admin-login-card .circle::after {
  width: 10px;
  height: 10px;
  background: #ffa502;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  position: absolute;
  content: '';
  top: -100px;
  right: -150px;
  z-index: -3;
  box-shadow: 0 0 16px 1px rgba(0, 0, 0, 0.2);
  animation: rotateAroundCircle2 17s linear infinite;
  opacity: 0.2;
}


.main_container .admin-login-card h5 {
  padding: 30px 20px;
  font-weight: 500;
  text-align: center;
  font-size: 25px;
  color: #ffffff99;
}

.admin-login-card .card-body {
  border-top-right-radius: 30px;
  padding: 0 20px 0;
}

.admin-login-card .card {
  background: transparent;
}

.admin-login-card .card-footer .buttons .admin-login-button {
  width: 100%;
  background: #0E325D;
  color: var(--default-theme-white);
  padding: 10px 30px;
  border: 0;
  outline: 0;
  transition: 500ms all;
  margin: 0 20px;
  position: relative;
}

.admin-login-card .card-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.admin-login-card .card-header .card-header-logo {
  border-right: 1px solid #a4b0be;
  padding-right: 20px;
  margin-right: 20px;
  height: 40px;
}

.card-header,
.card-footer {
  padding: 30px 20px;
}

.admin-login-card .card-header strong {
  color: #2f3542;
  font-size: 20px;
}

.admin-login-card .card-header .card-header-logo img {
  height: 30px;

}

.admin-login-card .card-footer .buttons .admin-login-button:hover {
  background-color: var(--default-color-black);
  color: var(--default-theme-white);
  transition: 500ms all;
}

.admin-login-card .form-group label {
  font-size: 14px;
  color: #2f3542;
  font-weight: 400;
  display: flex;
  align-items: center;
}

.admin-login-card .form-group input {
  border: 0;
  background-color: #9191911f;
  backdrop-filter: blur(15px);
  height: 40px;
  margin-top: 8px;
  color: var(--default-color-black);
}

.admin-login-card .form-group input:focus {
  box-shadow: 0 0 16px 1px rgba(0, 0, 0, 0.2);
  animation: wobble 0.3s ease-in;
  -webkit-animation: wobble 0.3s ease-in;
}

.admin-login-card .form-group #RememberMe:focus {
  box-shadow: none;
}

.admin-login-card .card-footer .buttons .admin-login-button:focus {
  animation: wobble 0.3s ease-in;
  -webkit-animation: wobble 0.3s ease-in;
}

.admin-login-card .forgot-password {
  font-size: 12px;
  color: #2f3542;
  display: flex;
  align-items: center;
  font-weight: 400;
  text-decoration: underline;
}

.admin-login-card .forgot-password a:hover {
  color: var(--default-color-black);
  text-decoration: underline;
}

.admin-login-card .custom-control-description {
  font-size: 12px;
  color: #2f3542;
  margin: 8px 0 0 5px;
  font-weight: 400;
}

.admin-login-card .card-footer .buttons {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width:800px) {
  .main_container .admin-login-card {
    width: 100%;
  }

  .main_container .admin-login-card h5 {
    font-size: 20px;
  }
}

/* login   */
.login__card,
.register__card {
  padding: 30px 15px 50px;
  background-color: #f9f9f9;
  margin: 50px 0 100px;

}

.login__card ul li {
  display: flex;
  margin: 30px 0;
  color: var(--default-color-black2);
  font-size: 14px;
}

.input-check__input {
  opacity: 0;
}

.register__Date select {
  margin-top: 10px;
  width: 30%;
  height: 45px;
  border: 1px solid #ced4da;
}

.register__Date select:focus-visible {
  border: 0;
}

#RegisterForm label {
  display: inline;
  font-size: 14px;
}

.login__card ul li svg {
  margin-right: 15px;
}

.login__card--title,
.register__card--title {
  border-bottom: 1px solid #c1c1c1;
  padding: 0 0 30px 0;
  margin-bottom: 30px;
  font-weight: 500;
  font-weight: 600;
  font-size: 17px;
  text-align: center;
}

.form-floating>.form-control,
.form-floating>.form-select {
  height: 45px;
}

.form-control:focus {
  border: 1px solid #c1c1c1;
  box-shadow: none;
}

.form-floating>.form-control:focus,
.form-floating>.form-control:not(:placeholder-shown) {
  padding: 0 0 0 15px;

}

.input-check__body {
  position: relative;
}

.input-check__input+.input-check__box+.input-check__icon {
  display: none;
  position: absolute;
  top: 4px;
  left: 3px;
}

.input-check__input:checked+.input-check__box+.input-check__icon {
  display: block;

}



.address--box--title .input-check__input+.input-check__box+.input-check__icon {
  display: none;
  position: absolute;
  top: 5px;
  right: 5px;
  left: unset;
}

.address--box--title .input-check__input:checked+.input-check__box+.input-check__icon {
  display: block;
}


#login-remember {
  opacity: 0;
}


.form-control {
  border-radius: 0;
  height: 33px;
}

#LoginForm label {
  margin-bottom: 10px;
  font-weight: 600;
}

.product__actions-item--wishlist {
  height: 53px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  border: 1px solid var(--default-color-black);
}

.product__actions-item--wishlist i {
  font-weight: bold;
  color: var(--text-black-color);
}

.product__actions-item--wishlist svg {
  fill: transparent;
  stroke-width: 1px;
  stroke: var(--default-color-black);
  fill: transparent;
}

.product__actions-item--wishlist .added-wishlist svg {
  fill: red;
  stroke: red;
}

@media screen and (max-width:767px) {

  .login__card,
  .register__card {
    margin: 0 0 15px 0;
  }
}

/*
// .product--layout--columnar
*/

@media (min-width: 992px) {
  .product--layout--columnar .product__content {
    -ms-grid-columns: 380px auto 260px;
    grid-template-columns: [gallery] 380px [info] auto [sidebar] 260px;
    grid-template-rows: auto auto auto auto;
    grid-column-gap: 0;
  }

  .product--layout--columnar .product__gallery {
    grid-row-start: 1;
    grid-row-end: 4;
    min-height: 0;
  }
}

@media screen and (min-width: 992px) and (-ms-high-contrast: active),
(min-width: 992px) and (-ms-high-contrast: none) {
  [dir=ltr] .product--layout--columnar .product__gallery {
    margin-right: 0;
  }

  [dir=rtl] .product--layout--columnar .product__gallery {
    margin-left: 0;
  }
}

@media (min-width: 992px) {
  .product--layout--columnar .product__info {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
    grid-row: 1;
    grid-column: info;
    padding: 0 30px;
    min-height: 0;
  }

  .product--layout--columnar .product__sidebar {
    -ms-grid-row: 1;
    -ms-grid-row-span: 4;
    -ms-grid-column: 3;
    grid-column: sidebar;
    grid-row-start: 1;
    grid-row-end: 4;
    min-height: 0;
    padding-top: 10px;
    padding-bottom: 20px;
  }

  [dir=ltr] .product--layout--columnar .product__sidebar {
    border-left: 2px solid #f0f0f0;
    padding-left: 30px;
  }

  [dir=rtl] .product--layout--columnar .product__sidebar {
    border-right: 2px solid #f0f0f0;
    padding-right: 30px;
  }

  .product--layout--columnar .product__footer {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
    grid-row: 2;
    grid-column: info;
    padding: 0 30px;
    min-height: 0;
  }

  .product--layout--columnar .product__wishlist-compare {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  [dir=ltr] .product--layout--columnar .product__wishlist-compare {
    right: 8px;
  }

  [dir=rtl] .product--layout--columnar .product__wishlist-compare {
    left: 8px;
  }

  .product--layout--columnar .product__wishlist-compare>*+* {
    margin-top: 2px;
  }

  .product--layout--columnar .product__name {
    font-size: 24px;
    margin-bottom: 12px;
  }

  [dir=ltr] .product--layout--columnar .product__name {
    padding-right: 16px;
  }

  [dir=rtl] .product--layout--columnar .product__name {
    padding-left: 16px;
  }

  .product--layout--columnar .product__description {
    margin: 10px 0 12px;
    font-size: 15px;
  }

  .product--layout--columnar .product__features {
    display: block;
  }

  .product--layout--columnar .product__meta {
    margin: 12px 0 0;
    padding: 0;
    border-top: none;
  }

  .product--layout--columnar .product__meta-availability {
    display: none;
  }

  .product--layout--columnar .product__footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .product--layout--columnar .product__share-links {
    margin-top: 12px;
    margin-bottom: 0;
  }

  [dir=ltr] .product--layout--columnar .product__share-links {
    margin-left: 1px;
    margin-right: 0;
  }

  [dir=rtl] .product--layout--columnar .product__share-links {
    margin-right: 1px;
    margin-left: 0;
  }

  .product--layout--columnar .product__prices {
    margin-top: 20px;
    margin-bottom: 24px;
    line-height: 28px;
  }

  .product--layout--columnar .product__new-price {
    display: block;
  }

  .product--layout--columnar .product__quantity {
    width: 88px;
  }

  .product--layout--columnar .product__actions {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }

  .product--layout--columnar .product__actions-item--addtocart {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }

  .product--layout--columnar .product__actions-item--addtocart .btn {
    width: 100%;
  }

  [dir=ltr] .product--layout--columnar .product__actions-item--addtocart .btn {
    padding-left: .5rem;
    padding-right: .5rem;
  }

  [dir=rtl] .product--layout--columnar .product__actions-item--addtocart .btn {
    padding-right: .5rem;
    padding-left: .5rem;
  }

  .product--layout--columnar .product__actions-item--wishlist,
  .product--layout--columnar .product__actions-item--compare {
    display: none;
  }

  .product--layout--columnar .product__availability {
    display: block;
    font-size: 14px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .product--layout--columnar .product__content {
    -ms-grid-columns: 320px auto 200px;
    grid-template-columns: [gallery] 320px [info] auto [sidebar] 200px;
  }

  [dir=ltr] .product--layout--columnar .product__sidebar {
    padding-left: 24px;
  }

  [dir=rtl] .product--layout--columnar .product__sidebar {
    padding-right: 24px;
  }

  .product--layout--columnar .product__option {
    margin-bottom: 12px;
  }

  .product--layout--columnar .product__actions {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0;
  }

  .product--layout--columnar .product__quantity {
    width: 100px;
  }

  .product--layout--columnar .product__actions-item {
    margin: 0;
  }

  .product--layout--columnar .product__actions-item--addtocart {
    margin-top: 16px;
  }
}


@media (min-width: 992px) {
  .product--layout--sidebar .product__content {
    -ms-grid-columns: 50% 50%;
    grid-template-columns: [gallery] calc(50% - 16px) [info] calc(50% - 16px);
    grid-column-gap: 32px;
  }
}

@media screen and (min-width: 992px) and (-ms-high-contrast: active),
(min-width: 992px) and (-ms-high-contrast: none) {
  [dir=ltr] .product--layout--sidebar .product__gallery {
    margin-right: 32px;
  }

  [dir=rtl] .product--layout--sidebar .product__gallery {
    margin-left: 32px;
  }
}

@media (min-width: 992px) {
  .product--layout--sidebar .product__name {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .product--layout--sidebar .product__footer {
    display: block;
    margin-top: 18px;
  }

  .product--layout--sidebar .product__share-links {
    margin: 12px 0 0;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .product--layout--quickview .product__content {
    grid-template-columns: [gallery] calc(50% - 16px) [info] calc(50% - 16px);
    grid-column-gap: 32px;
  }

  .product--layout--quickview .product__name {
    margin-bottom: 12px;
  }

  .product--layout--quickview .product__footer {
    display: block;
    margin-top: 18px;
  }

  .product--layout--quickview .product__share-links {
    margin: 12px 0 0;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .product--layout--quickview .product__content {
    display: block;
  }

  .product--layout--quickview .product__gallery {
    margin-bottom: 24px;
  }

  .product--layout--quickview .product__name {
    font-size: 24px;
    margin-bottom: 18px;
  }
}

/*-------------------------------------------------
                  .product-gallery
---------------------------------------------------*/
/* .product-gallery , #product-image{
  height: 100%;
}  */

.product-gallery__featured {
  position: relative;
  -webkit-box-shadow: 0 0 0 2px #f2f2f2 inset;
  box-shadow: 0 0 0 2px #f2f2f2 inset;
  padding: 2px;
  border-radius: 2px;
  height: 100%;
}

.product-gallery__grid {
  display: flex;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
  padding-right: 25px;
}

.product-gallery__grid .product-image {
  width: 50%;
  padding-right: 15px !important;
  padding-bottom: 15px !important;
}

/* #product-details-form .owl-stage-outer,
#product-details-form  .owl-carousel .owl-stage,
#product-details-form .owl-item,
#product-details-form .product-image--location--gallery  {
  height: 100%;
}  */

.product-gallery__zoom {
  position: absolute;
  cursor: pointer;
  padding: 11px;
  border: none;
  z-index: 2;
  bottom: 0;
  background: transparent;
  fill: #d9d9d9;
  -webkit-transition: background .2s, fill .2s;
  transition: background .2s, fill .2s;
  opacity: 1;
}

[dir=ltr] .product-gallery__zoom {
  right: 13px;
  border-top-right-radius: 2.5px;
  border-bottom-left-radius: 2px;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

[dir=rtl] .product-gallery__zoom {
  left: 0;
  border-top-left-radius: 2.5px;
  border-bottom-right-radius: 2px;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.product-gallery__zoom:focus {
  outline: none;
}

.product-gallery__zoom:hover {
  background: #f2f2f2;
  fill: rgba(0, 0, 0, 0.25);
}

.product-gallery__zoom:active {
  background: #ebebeb;
  fill: rgba(0, 0, 0, 0.25);
}

.product-gallery__carousel {
  margin-top: 16px;
}

.product-gallery__carousel-item {
  cursor: pointer;
  display: block;


}


/*
// .product__tabs
*/

@-webkit-keyframes product-tabs-sticky {
  from {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes product-tabs-sticky {
  from {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes product-tabs-sticky-header {
  from {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  to {
    -webkit-transform: translateY(54px);
    transform: translateY(54px);
  }
}

@keyframes product-tabs-sticky-header {
  from {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  to {
    -webkit-transform: translateY(54px);
    transform: translateY(54px);
  }
}

@-webkit-keyframes product-tabs-sticky-header-hidden {
  from {
    -webkit-transform: translateY(54px);
    transform: translateY(54px);
  }

  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes product-tabs-sticky-header-hidden {
  from {
    -webkit-transform: translateY(54px);
    transform: translateY(54px);
  }

  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.product-tabs {
  margin-top: 50px;
}

.product-tabs__list {
  height: 68px;
  margin-bottom: -2px;
}

.product-tabs__list-container {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.product-tabs__list-container::after,
.product-tabs__list-container::before {
  content: '';
  display: block;
  width: 8px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.product-tabs__item {
  font-size: 20px;
  padding: 18px 48px;
  border-bottom: 2px solid transparent;
  color: inherit;
  font-weight: 500;
  border-radius: 3px 3px 0 0;
  -webkit-transition: border-color .15s, background-color .15s;
  transition: border-color .15s, background-color .15s;
}

.product-tabs__item:hover {
  color: inherit;
  background: var(--default-theme-off-white);
  border-bottom-color: #d9d9d9;
}

[dir=ltr] .product-tabs__item:first-child {
  margin-left: auto;
}

[dir=rtl] .product-tabs__item:first-child {
  margin-right: auto;
}

[dir=ltr] .product-tabs__item:last-child {
  margin-right: auto;
}

[dir=rtl] .product-tabs__item:last-child {
  margin-left: auto;
}

.product-tabs__item--active {
  -webkit-transition-duration: 0s;
  transition-duration: 0s;
}

.product-tabs__item--active,
.product-tabs__item--active:hover {
  cursor: default;
  border-bottom: 3px solid var(--default-theme-dark-blue);
  background: transparent;
}

.product-tabs__content {
  border-top: 2px solid #f0f0f0;
  border-bottom: 2px solid #f0f0f0;
  border-radius: 2px;
  padding: 80px 90px;
}

.product-tabs__pane {
  overflow: hidden;
  height: 0;
  opacity: 0;
  -webkit-transition: opacity .5s;
  transition: opacity .5s;
}

.product-tabs__pane--active {
  overflow: visible;
  height: auto;
  opacity: 1;
}

.product-tabs--layout--sidebar .product-tabs__list {
  height: 60px;
}

.product-tabs--layout--sidebar .product-tabs__item {
  padding: 14px 30px;
}

.product-tabs--layout--sidebar .product-tabs__content {
  padding: 48px 50px;
}

.product-tabs--stuck .product-tabs__list-body {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 5;
  -webkit-box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1), 0 1px rgba(0, 0, 0, 0.02);
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1), 0 1px rgba(0, 0, 0, 0.02);
  -webkit-animation-name: product-tabs-sticky;
  animation-name: product-tabs-sticky;
  -webkit-animation-duration: .3s;
  animation-duration: .3s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-transition: -webkit-transform .3s ease-in-out;
  transition: -webkit-transform .3s ease-in-out;
  transition: transform .3s ease-in-out;
  transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out;
}

.product-tabs--stuck .product-tabs__list-body:before {
  display: block;
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 54px;
  background: inherit;
}

.product-tabs--stuck .product-tabs__item {
  padding: 8px 20px;
  font-size: 16px;
}

.product-tabs--stuck.product-tabs--header-stuck .product-tabs__list-body {
  -webkit-animation-name: product-tabs-sticky-header;
  animation-name: product-tabs-sticky-header;
}

.product-tabs--stuck.product-tabs--header-stuck-hidden .product-tabs__list-body {
  -webkit-animation-name: product-tabs-sticky-header-hidden;
  animation-name: product-tabs-sticky-header-hidden;
}


@media (min-width: 992px) and (max-width: 1199px) {
  .product-tabs__content {
    padding: 60px 70px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .product-tabs {
    margin-top: 40px;
  }

  .product-tabs__list {
    height: 60px;
  }

  .product-tabs:not(.product-tabs--stuck) .product-tabs__item {
    padding: 14px 30px;
  }

  .product-tabs .product-tabs__content {
    padding: 40px 50px;
  }
}

@media (max-width: 767px) {

  .product-tabs__item {
    font-size: 11px;
  }

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

  .product-tabs__list,
  .product-tabs--layout--sidebar .product-tabs__list {
    height: 52px;
  }

  .product-tabs:not(.product-tabs--stuck) .product-tabs__item {
    padding: 10px;
  }

  .product-tabs .product-tabs__content {
    padding: 24px;
  }
}


/*--------------------------------------
             Product accordion 
---------------------------------------*/

.product__accordion {
  margin-top: 10px;
}

.product__accordion .accordion-item {
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, .125);
}

.product__accordion .accordion-button:focus {
  box-shadow: none;
}

.product-social-shared {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 16px;
}


.product-details-img .social-sharing {
  text-align: center;
  clear: both;
  padding-top: 20px;
}

.product-details-img .social-sharing .share-title {
  display: none;
}

.btn--share .fa {
  color: #222222;
  font-size: 14px;
}

.product__accordion .accordion-button:not(.collapsed) {
  color: var(--default-theme-dark-blue);
  background-color: transparent;
  box-shadow: none;
  font-weight: 600;
  font-size: 16px;
  color: var(--default-color-black2);
}

.social-sharing {
  display: flex;
  align-items: center;
  justify-content: center;
}

.shared-icons__social {
  display: flex;
  align-items: center;
  margin: 10px;
}

.shared-icons__social a {
  display: flex;
  align-items: center;
  margin: 10px;

}

.product-social-shared {
  display: flex;
  align-items: center;
  justify-content: center;

}

.email-a-friend-button {
  display: flex;
  align-items: center;
  text-decoration: underline;
  text-wrap: nowrap;
}

.shared-icons {
  display: flex;
  align-items: center;
}

.shared-icons .share-title {
  font-weight: 600;
}

.product-social-shared a i {
  margin-right: 3px;
}

.product-social-shared a img,
.product-social-shared svg {
  height: 16px;
  width: 16px;
  margin-right: 4px;
}

.share-title {
  text-decoration: underline;
}

.product__accordion .accordion-button {
  font-weight: 600;
  font-size: 16px;
  color: var(--default-color-black2);
  padding: 0;
}

.product__accordion .accordion-button svg {
  margin-right: 10px;
}

.accordion-button::after {}

.product__accordion .accordion-body {
  padding: 10px 5px !important;
  line-height: 1.5;
}

/*
// .products-list
*/

.products-list__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.products-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;

}

.products-list__item .product-card {
  width: 100%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

/* .products-list[data-layout^="grid-"] .product-card .product-card__image {
  height: 100%;
} */

.products-list[data-layout^="grid-"] .product-card .product-card__info {
  padding: 0;
}

.products-list[data-layout^="grid-"] .product-card .product-card__actions {
  padding: 0;
  display: flex;
  margin-top: 16px;
  align-items: center;
  justify-content: space-between;
}

.products-list[data-layout^="grid-"] .product-card .product-card__description {
  display: none;
}

.products-list[data-layout^="grid-"] .product-card .product-card__availability {
  display: none;
}

.products-list[data-layout^="grid-"] .product-card .product-card__features-list {
  display: none;
}

.products-list[data-layout^="grid-"][data-with-features="true"] .product-card .product-card__features-list {
  display: block;
}

.products-list[data-layout^="grid-"] #product__alternative--img {
  bottom: 0px;
}


.products-list[data-layout="grid-3-sidebar"] .products-list__item {
  width: calc(33.33333% - 0px);
  margin: 8px 10px;
  margin-bottom: 115px;
}


.products-list[data-layout="grid-4-full"] .products-list__item {
  width: calc(25% - 0px);
  margin: 0px 0px;
  box-shadow: inset -1px -1px #ddd, -1px -1px #ddd;
  padding: 10px !important;
}

.products-list[data-layout="grid-4-full"] .product-image__body {
  padding-bottom: 0;
  height: 650px;
}

.products-list[data-layout="grid-4-full"] .product-card .product-card__image {
  height: unset;
}

.products-list[data-layout="grid-3-sidebar"] .product-card .product-card__buttons .btn,
.products-list[data-layout="grid-4-full"] .product-card .product-card__buttons .btn {
  font-size: .875rem;
  height: calc(1.875rem + 2px);
  line-height: 1.25;
  padding: .375rem 1rem;
  font-weight: 500;
}

.products-list[data-layout="grid-3-sidebar"] .product-card .product-card__buttons .btn.btn-svg-icon,
.products-list[data-layout="grid-4-full"] .product-card .product-card__buttons .btn.btn-svg-icon {
  width: calc(1.875rem + 2px);
}

#product-details-form .product__prices .product-card__badge--sale {
  margin-left: 10px !important;
  height: 30px;
}

#product-details-form .product__prices {
  margin-bottom: 10px;
}

@media (hover: hover) {

  .products-list[data-layout="grid-3-sidebar"] .product-card--hidden-actions .product-card__buttons,
  .products-list[data-layout="grid-4-full"] .product-card--hidden-actions .product-card__buttons {
    display: none;
  }

  .products-list[data-layout="grid-3-sidebar"] .product-card--hidden-actions:hover,
  .products-list[data-layout="grid-4-full"] .product-card--hidden-actions:hover {
    position: relative;
    z-index: 3;
    /* margin-bottom: -56px; */
  }

  .products-list[data-layout="grid-3-sidebar"] .product-card--hidden-actions:hover .product-card__buttons,
  .products-list[data-layout="grid-4-full"] .product-card--hidden-actions:hover .product-card__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {

  .products-list[data-layout="grid-3-sidebar"] .product-card--hidden-actions .product-card__buttons,
  .products-list[data-layout="grid-4-full"] .product-card--hidden-actions .product-card__buttons {
    display: none;
  }

  .products-list[data-layout="grid-3-sidebar"] .product-card--hidden-actions:hover,
  .products-list[data-layout="grid-4-full"] .product-card--hidden-actions:hover {
    position: relative;
    z-index: 3;
    margin-bottom: -56px;
  }

  .products-list[data-layout="grid-3-sidebar"] .product-card--hidden-actions:hover .product-card__buttons,
  .products-list[data-layout="grid-4-full"] .product-card--hidden-actions:hover .product-card__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (max-width: 1199px) and (min-width: 420px) {

  .products-list[data-layout="grid-3-sidebar"][data-mobile-grid-columns="1"] .product-card .product-card__image,
  .products-list[data-layout="grid-4-full"][data-mobile-grid-columns="1"] .product-card .product-card__image {
    padding: 15px;
  }

  .products-list[data-layout="grid-3-sidebar"][data-mobile-grid-columns="1"] .product-card .product-card__badges-list,
  .products-list[data-layout="grid-4-full"][data-mobile-grid-columns="1"] .product-card .product-card__badges-list {
    top: 16px;
  }

  [dir=ltr] .products-list[data-layout="grid-3-sidebar"][data-mobile-grid-columns="1"] .product-card .product-card__badges-list,
  [dir=ltr] .products-list[data-layout="grid-4-full"][data-mobile-grid-columns="1"] .product-card .product-card__badges-list {
    left: 16px;
  }

  [dir=rtl] .products-list[data-layout="grid-3-sidebar"][data-mobile-grid-columns="1"] .product-card .product-card__badges-list,
  [dir=rtl] .products-list[data-layout="grid-4-full"][data-mobile-grid-columns="1"] .product-card .product-card__badges-list {
    right: 16px;
  }

  .products-list[data-layout="grid-3-sidebar"][data-mobile-grid-columns="1"] .product-card .product-card__info,
  .products-list[data-layout="grid-4-full"][data-mobile-grid-columns="1"] .product-card .product-card__info {
    padding: 0 15px 0;
  }

  .products-list[data-layout="grid-3-sidebar"][data-mobile-grid-columns="1"] .product-card .product-card__actions,
  .products-list[data-layout="grid-4-full"][data-mobile-grid-columns="1"] .product-card .product-card__actions {
    padding: 0 15px 15px;
  }

  .products-list[data-layout="grid-3-sidebar"][data-mobile-grid-columns="1"] .product-card .product-card__buttons .btn,
  .products-list[data-layout="grid-4-full"][data-mobile-grid-columns="1"] .product-card .product-card__buttons .btn {
    font-size: .8125rem;
    height: calc(1.5rem + 2px);
    line-height: 1.25;
    padding: .25rem .5625rem;
    font-weight: 500;
  }

  .products-list[data-layout="grid-3-sidebar"][data-mobile-grid-columns="1"] .product-card .product-card__buttons .btn.btn-svg-icon,
  .products-list[data-layout="grid-4-full"][data-mobile-grid-columns="1"] .product-card .product-card__buttons .btn.btn-svg-icon {
    width: calc(1.5rem + 2px);
  }
}

@media (max-width: 1199px) and (min-width: 420px) and (hover: hover) {

  .products-list[data-layout="grid-3-sidebar"][data-mobile-grid-columns="1"] .product-card--hidden-actions .product-card__buttons,
  .products-list[data-layout="grid-4-full"][data-mobile-grid-columns="1"] .product-card--hidden-actions .product-card__buttons {
    display: none;
  }

  .products-list[data-layout="grid-3-sidebar"][data-mobile-grid-columns="1"] .product-card--hidden-actions:hover,
  .products-list[data-layout="grid-4-full"][data-mobile-grid-columns="1"] .product-card--hidden-actions:hover {
    position: relative;
    z-index: 3;
    margin-bottom: -50px;
  }

  .products-list[data-layout="grid-3-sidebar"][data-mobile-grid-columns="1"] .product-card--hidden-actions:hover .product-card__buttons,
  .products-list[data-layout="grid-4-full"][data-mobile-grid-columns="1"] .product-card--hidden-actions:hover .product-card__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (max-width: 1199px) and (min-width: 420px) and (-ms-high-contrast: active),
(max-width: 1199px) and (min-width: 420px) and (-ms-high-contrast: none) {

  .products-list[data-layout="grid-3-sidebar"][data-mobile-grid-columns="1"] .product-card--hidden-actions .product-card__buttons,
  .products-list[data-layout="grid-4-full"][data-mobile-grid-columns="1"] .product-card--hidden-actions .product-card__buttons {
    display: none;
  }

  .products-list[data-layout="grid-3-sidebar"][data-mobile-grid-columns="1"] .product-card--hidden-actions:hover,
  .products-list[data-layout="grid-4-full"][data-mobile-grid-columns="1"] .product-card--hidden-actions:hover {
    position: relative;
    z-index: 3;
    margin-bottom: -50px;
  }

  .products-list[data-layout="grid-3-sidebar"][data-mobile-grid-columns="1"] .product-card--hidden-actions:hover .product-card__buttons,
  .products-list[data-layout="grid-4-full"][data-mobile-grid-columns="1"] .product-card--hidden-actions:hover .product-card__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (max-width: 1199px) and (min-width: 375px) {

  .products-list[data-layout="grid-3-sidebar"][data-mobile-grid-columns="2"] .product-card .product-card__image,
  .products-list[data-layout="grid-4-full"][data-mobile-grid-columns="2"] .product-card .product-card__image {
    padding: 0px;
  }

  .products-list[data-layout^="grid-"] .product-card .product-card__actions {
    margin-top: 0;
  }

  .products-list[data-layout="grid-3-sidebar"][data-mobile-grid-columns="2"] .product-card .product-card__badges-list,
  .products-list[data-layout="grid-4-full"][data-mobile-grid-columns="2"] .product-card .product-card__badges-list {
    top: 16px;
  }

  .products-list[data-layout^="grid-"] .product-card .product-card__info .product-card__name {
    padding: 0 !important;
  }

  [dir=ltr] .products-list[data-layout="grid-3-sidebar"][data-mobile-grid-columns="2"] .product-card .product-card__badges-list,
  [dir=ltr] .products-list[data-layout="grid-4-full"][data-mobile-grid-columns="2"] .product-card .product-card__badges-list {
    left: 16px;
  }

  [dir=rtl] .products-list[data-layout="grid-3-sidebar"][data-mobile-grid-columns="2"] .product-card .product-card__badges-list,
  [dir=rtl] .products-list[data-layout="grid-4-full"][data-mobile-grid-columns="2"] .product-card .product-card__badges-list {
    right: 16px;
  }

  .products-list[data-layout="grid-3-sidebar"][data-mobile-grid-columns="2"] .product-card .product-card__info,
  .products-list[data-layout="grid-4-full"][data-mobile-grid-columns="2"] .product-card .product-card__info {
    padding: 0 15px 0;
  }

  .products-list[data-layout="grid-3-sidebar"][data-mobile-grid-columns="2"] .product-card .product-card__actions {
    padding: 0 15px 15px;
  }

  .products-list[data-layout="grid-4-full"][data-mobile-grid-columns="2"] .product-card .product-card__actions {
    padding: 0 0 15px;
  }

  .products-list[data-layout="grid-3-sidebar"][data-mobile-grid-columns="2"] .product-card .product-card__buttons .btn,
  .products-list[data-layout="grid-4-full"][data-mobile-grid-columns="2"] .product-card .product-card__buttons .btn {
    font-size: .8125rem;
    height: calc(1.5rem + 2px);
    line-height: 1.25;
    padding: .25rem .5625rem;
    font-weight: 500;
  }

  .products-list[data-layout="grid-3-sidebar"][data-mobile-grid-columns="2"] .product-card .product-card__buttons .btn.btn-svg-icon,
  .products-list[data-layout="grid-4-full"][data-mobile-grid-columns="2"] .product-card .product-card__buttons .btn.btn-svg-icon {
    width: calc(1.5rem + 2px);
  }
}

@media (max-width: 1199px) and (min-width: 375px) and (hover: hover) {

  .products-list[data-layout="grid-3-sidebar"][data-mobile-grid-columns="2"] .product-card--hidden-actions .product-card__buttons,
  .products-list[data-layout="grid-4-full"][data-mobile-grid-columns="2"] .product-card--hidden-actions .product-card__buttons {
    display: none;
  }

  .products-list[data-layout="grid-3-sidebar"][data-mobile-grid-columns="2"] .product-card--hidden-actions:hover,
  .products-list[data-layout="grid-4-full"][data-mobile-grid-columns="2"] .product-card--hidden-actions:hover {
    position: relative;
    z-index: 3;
    margin-bottom: -50px;
  }

  .products-list[data-layout="grid-3-sidebar"][data-mobile-grid-columns="2"] .product-card--hidden-actions:hover .product-card__buttons,
  .products-list[data-layout="grid-4-full"][data-mobile-grid-columns="2"] .product-card--hidden-actions:hover .product-card__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (max-width: 1199px) and (min-width: 375px) and (-ms-high-contrast: active),
(max-width: 1199px) and (min-width: 375px) and (-ms-high-contrast: none) {

  .products-list[data-layout="grid-3-sidebar"][data-mobile-grid-columns="2"] .product-card--hidden-actions .product-card__buttons,
  .products-list[data-layout="grid-4-full"][data-mobile-grid-columns="2"] .product-card--hidden-actions .product-card__buttons {
    display: none;
  }

  .products-list[data-layout="grid-3-sidebar"][data-mobile-grid-columns="2"] .product-card--hidden-actions:hover,
  .products-list[data-layout="grid-4-full"][data-mobile-grid-columns="2"] .product-card--hidden-actions:hover {
    position: relative;
    z-index: 3;
    margin-bottom: -50px;
  }

  .products-list[data-layout="grid-3-sidebar"][data-mobile-grid-columns="2"] .product-card--hidden-actions:hover .product-card__buttons,
  .products-list[data-layout="grid-4-full"][data-mobile-grid-columns="2"] .product-card--hidden-actions:hover .product-card__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.products-list[data-layout="grid-5-full"] .products-list__body {
  margin: -8px -6px;
}

.products-list[data-layout="grid-5-full"] .products-list__item {
  width: calc(20% - 12px);
  margin: 8px 6px;
}

@media (max-width: 1199px) and (min-width: 992px) {
  .products-list[data-layout="grid-5-full"] .products-list__body {
    margin: -8px -6px;
  }

  .products-list[data-layout="grid-5-full"] .products-list__item {
    width: calc(25% - 12px);
    margin: 8px 6px;
  }
}

@media (min-width: 420px) {
  .products-list[data-layout="grid-5-full"][data-mobile-grid-columns="1"] .product-card .product-card__image {
    padding: 15px;
  }

  .products-list[data-layout="grid-5-full"][data-mobile-grid-columns="1"] .product-card .product-card__badges-list {
    top: 16px;
  }

  [dir=ltr] .products-list[data-layout="grid-5-full"][data-mobile-grid-columns="1"] .product-card .product-card__badges-list {
    left: 16px;
  }

  [dir=rtl] .products-list[data-layout="grid-5-full"][data-mobile-grid-columns="1"] .product-card .product-card__badges-list {
    right: 16px;
  }

  .products-list[data-layout="grid-5-full"][data-mobile-grid-columns="1"] .product-card .product-card__info {
    padding: 0 15px 0;
  }

  .products-list[data-layout="grid-5-full"][data-mobile-grid-columns="1"] .product-card .product-card__actions {
    padding: 0 15px 15px;
  }

  .products-list[data-layout="grid-5-full"][data-mobile-grid-columns="1"] .product-card .product-card__buttons .btn {
    font-size: .8125rem;
    height: calc(1.5rem + 2px);
    line-height: 1.25;
    padding: .25rem .5625rem;
    font-weight: 500;
  }

  .products-list[data-layout="grid-5-full"][data-mobile-grid-columns="1"] .product-card .product-card__buttons .btn.btn-svg-icon {
    width: calc(1.5rem + 2px);
  }
}

@media (min-width: 420px) and (hover: hover) {
  .products-list[data-layout="grid-5-full"][data-mobile-grid-columns="1"] .product-card--hidden-actions .product-card__buttons {
    display: none;
  }

  .products-list[data-layout="grid-5-full"][data-mobile-grid-columns="1"] .product-card--hidden-actions:hover {
    position: relative;
    z-index: 3;
    margin-bottom: -50px;
  }

  .products-list[data-layout="grid-5-full"][data-mobile-grid-columns="1"] .product-card--hidden-actions:hover .product-card__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (min-width: 420px) and (-ms-high-contrast: active),
(min-width: 420px) and (-ms-high-contrast: none) {
  .products-list[data-layout="grid-5-full"][data-mobile-grid-columns="1"] .product-card--hidden-actions .product-card__buttons {
    display: none;
  }

  .products-list[data-layout="grid-5-full"][data-mobile-grid-columns="1"] .product-card--hidden-actions:hover {
    position: relative;
    z-index: 3;
    margin-bottom: -50px;
  }

  .products-list[data-layout="grid-5-full"][data-mobile-grid-columns="1"] .product-card--hidden-actions:hover .product-card__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (min-width: 375px) {
  .products-list[data-layout="grid-5-full"][data-mobile-grid-columns="2"] .product-card .product-card__image {
    padding: 15px;
  }

  .products-list[data-layout="grid-5-full"][data-mobile-grid-columns="2"] .product-card .product-card__badges-list {
    top: 16px;
  }

  [dir=ltr] .products-list[data-layout="grid-5-full"][data-mobile-grid-columns="2"] .product-card .product-card__badges-list {
    left: 16px;
  }

  [dir=rtl] .products-list[data-layout="grid-5-full"][data-mobile-grid-columns="2"] .product-card .product-card__badges-list {
    right: 16px;
  }

  .products-list[data-layout="grid-5-full"][data-mobile-grid-columns="2"] .product-card .product-card__info {
    padding: 0 15px 0;
  }

  .products-list[data-layout="grid-5-full"][data-mobile-grid-columns="2"] .product-card .product-card__actions {
    padding: 0 15px 15px;
  }

  .products-list[data-layout="grid-5-full"][data-mobile-grid-columns="2"] .product-card .product-card__buttons .btn {
    font-size: .8125rem;
    height: calc(1.5rem + 2px);
    line-height: 1.25;
    padding: .25rem .5625rem;
    font-weight: 500;
  }

  .products-list[data-layout="grid-5-full"][data-mobile-grid-columns="2"] .product-card .product-card__buttons .btn.btn-svg-icon {
    width: calc(1.5rem + 2px);
  }
}

@media (min-width: 375px) and (hover: hover) {
  .products-list[data-layout="grid-5-full"][data-mobile-grid-columns="2"] .product-card--hidden-actions .product-card__buttons {
    display: none;
  }

  .products-list[data-layout="grid-5-full"][data-mobile-grid-columns="2"] .product-card--hidden-actions:hover {
    position: relative;
    z-index: 3;
    margin-bottom: -50px;
  }

  .products-list[data-layout="grid-5-full"][data-mobile-grid-columns="2"] .product-card--hidden-actions:hover .product-card__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (min-width: 375px) and (-ms-high-contrast: active),
(min-width: 375px) and (-ms-high-contrast: none) {
  .products-list[data-layout="grid-5-full"][data-mobile-grid-columns="2"] .product-card--hidden-actions .product-card__buttons {
    display: none;
  }

  .products-list[data-layout="grid-5-full"][data-mobile-grid-columns="2"] .product-card--hidden-actions:hover {
    position: relative;
    z-index: 3;
    margin-bottom: -50px;
  }

  .products-list[data-layout="grid-5-full"][data-mobile-grid-columns="2"] .product-card--hidden-actions:hover .product-card__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (max-width: 991px) and (min-width: 768px) {
  .products-list[data-layout^="grid-"] .products-list__body {
    margin: -8px -6px;
  }

  .products-list[data-layout^="grid-"] .products-list__item {
    width: calc(33.33333% - 12px);
    margin: 8px 6px;
  }
}

@media (max-width: 767px) and (min-width: 420px) {
  .products-list[data-layout^="grid-"][data-mobile-grid-columns="1"] .products-list__body {
    margin: -8px -6px;
  }

  .products-list[data-layout^="grid-"][data-mobile-grid-columns="1"] .products-list__item {
    width: calc(50% - 12px);
    margin: 8px 6px;
  }
}

@media (max-width: 419px) {
  .products-list[data-layout^="grid-"][data-mobile-grid-columns="1"] .products-list__body {
    margin: -8px -6px;
  }

  .products-list[data-layout^="grid-"][data-mobile-grid-columns="1"] .products-list__item {
    width: 100%;
    margin: 8px 6px;
  }
}

@media (max-width: 374px) {
  .products-list[data-layout^="grid-"][data-mobile-grid-columns="2"] .product-card .product-card__image {
    padding: 5px;
  }

  .products-list[data-layout^="grid-"][data-mobile-grid-columns="2"] .product-card .product-card__badges-list {
    top: 16px;
  }

  [dir=ltr] .products-list[data-layout^="grid-"][data-mobile-grid-columns="2"] .product-card .product-card__badges-list {
    left: 16px;
  }

  [dir=rtl] .products-list[data-layout^="grid-"][data-mobile-grid-columns="2"] .product-card .product-card__badges-list {
    right: 16px;
  }

  .products-list[data-layout^="grid-"][data-mobile-grid-columns="2"] .product-card .product-card__info {
    padding: 0 15px 0;
  }

  .products-list[data-layout^="grid-"][data-mobile-grid-columns="2"] .product-card .product-card__actions {
    padding: 0;
  }

  .products-list[data-layout^="grid-"][data-mobile-grid-columns="2"] .product-card .product-card__buttons {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: -9px;
    margin-top: 16px;
  }

  .products-list[data-layout^="grid-"][data-mobile-grid-columns="2"] .product-card .product-card__buttons>*+* {
    margin-top: 6px;
  }

  [dir=ltr] .products-list[data-layout^="grid-"][data-mobile-grid-columns="2"] .product-card .product-card__buttons>*+* {
    margin-left: 0;
    margin-right: 4px;
  }

  [dir=rtl] .products-list[data-layout^="grid-"][data-mobile-grid-columns="2"] .product-card .product-card__buttons>*+* {
    margin-right: 0;
    margin-left: 4px;
  }

  .products-list[data-layout^="grid-"][data-mobile-grid-columns="2"] .product-card .product-card__buttons .btn {
    font-size: .8125rem;
    height: calc(1.5rem + 2px);
    line-height: 1.25;
    padding: .25rem .5625rem;
    font-weight: 500;
  }

  .products-list[data-layout^="grid-"][data-mobile-grid-columns="2"] .product-card .product-card__buttons .btn.btn-svg-icon {
    width: calc(1.5rem + 2px);
  }

  .products-list[data-layout^="grid-"][data-mobile-grid-columns="2"] .product-card .product-card__addtocart {
    width: 100%;
  }
}

@media (max-width: 374px) and (hover: hover) {
  .products-list[data-layout^="grid-"][data-mobile-grid-columns="2"] .product-card--hidden-actions .product-card__buttons {
    display: none;
  }

  .products-list[data-layout^="grid-"][data-mobile-grid-columns="2"] .product-card--hidden-actions:hover {
    position: relative;
    z-index: 3;
    margin-bottom: -65px;
  }

  .products-list[data-layout^="grid-"][data-mobile-grid-columns="2"] .product-card--hidden-actions:hover .product-card__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (max-width: 374px) and (-ms-high-contrast: active),
(max-width: 374px) and (-ms-high-contrast: none) {
  .products-list[data-layout^="grid-"][data-mobile-grid-columns="2"] .product-card--hidden-actions .product-card__buttons {
    display: none;
  }

  .products-list[data-layout^="grid-"][data-mobile-grid-columns="2"] .product-card--hidden-actions:hover {
    position: relative;
    z-index: 3;
    margin-bottom: -65px;
  }

  .products-list[data-layout^="grid-"][data-mobile-grid-columns="2"] .product-card--hidden-actions:hover .product-card__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (max-width: 767px) and (min-width: 420px) {


  .products-list[data-layout^="grid-"][data-mobile-grid-columns="2"] .products-list__item {
    width: calc(50% - 10px);
    margin: 5px 5px;
  }

  .wishlist-page .products-list[data-layout^="grid-"][data-mobile-grid-columns="2"] .products-list__item {
    width: 45%;
  }
}

@media (max-width: 419px) and (min-width: 320px) {


  .products-list[data-layout^="grid-"][data-mobile-grid-columns="2"] .products-list__item {
    width: calc(50% - 0px);
    margin: 0px 0px;
    padding: 0;
  }

  .products-list[data-layout^="grid-"][data-mobile-grid-columns="2"] .product-card::before {
    border-radius: 0;
  }

  .products-list[data-layout^="grid-"][data-mobile-grid-columns="2"] .products-list__item:nth-child(2n - 1) .product-card {
    width: calc(100% + 1px);
    padding-right: 2px;
  }

  .products-list[data-layout^="grid-"][data-mobile-grid-columns="2"] .products-list__item:nth-child(n+3) .product-card {
    margin-top: -1px;
  }

  [dir=ltr] .products-list[data-layout^="grid-"][data-mobile-grid-columns="2"] .product-card__quickview {
    border-top-right-radius: 0;
  }

  [dir=rtl] .products-list[data-layout^="grid-"][data-mobile-grid-columns="2"] .product-card__quickview {
    border-top-left-radius: 0;
  }
}

@media (max-width: 319px) {
  .products-list[data-layout^="grid-"][data-mobile-grid-columns="2"] .products-list__body {
    margin: -8px -6px;
  }

  .products-list[data-layout^="grid-"][data-mobile-grid-columns="2"] .products-list__item {
    width: 100%;
    margin: 8px 6px;
  }
}

.products-list[data-layout="list"] .products-list__body {
  margin: -8px 0px;
}

.products-list[data-layout="list"] .products-list__item {
  width: 100%;

  padding: 28px 0;
  border-bottom: 1px solid #80808030;
}

.products-list[data-layout="list"] .products-list__item {
  display: block;
}

.products-list[data-layout="list"] .product-card {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  position: relative;
}

.products-list[data-layout="list"] .product-card .product-card--stock {
  width: 17%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: -5;
}

.products-list[data-layout="list"] .product-card .product-card__badge--stock {
  width: 80%;
  white-space: nowrap;
}

.products-list[data-layout="list"] .product-card .product-card__image {
  -ms-flex-negative: 0;
  flex-shrink: 0;

  width: 300px;
}

.products-list[data-layout="list"] .product-card .product-card__info {
  padding: 20px 0;
}

[dir=ltr] .products-list[data-layout="list"] .product-card .product-card__info {
  padding: 0 20px;
}

[dir=rtl] .products-list[data-layout="list"] .product-card .product-card__info {
  padding-right: 0;
  padding-left: 20px;
}

.products-list[data-layout="list"] .product-card .product-card__name {
  font-size: 16px;
  line-height: 20px;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
}

.products-list[data-layout="list"] .product-card .product-card__rating {
  margin-top: 4px;
}

.products-list[data-layout="list"] .product-card .product-card__description {
  color: #6c757d;
  font-size: 15px;
  line-height: 22px;
  margin-top: 12px;
}

.products-list[data-layout="list"] .product-card .product-card__actions {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 190px;
}

[dir=rtl] .products-list[data-layout="list"] .product-card .product-card__actions {
  border-right: 1px solid #ebebeb;
}

.products-list[data-layout="list"] .product-card .product-card__prices {
  margin-top: 16px;
  font-size: 18px;
}

.products-list[data-layout="list"] .product-card .product-card__old-price {
  font-size: 14px;
}

.products-list[data-layout="list"] .product-card .product-card__buttons {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}



.products-list[data-layout="list"] .product-card .product-card__addtocart--list {
  display: block;
}


.products-list[data-layout="list"] .product-card .product-card__addtocart.btn-svg-icon,
.products-list[data-layout="list"] .product-card .product-card__wishlist.btn-svg-icon,
.products-list[data-layout="list"] .product-card .product-card__compare.btn-svg-icon {
  width: calc(1.875rem + 2px);
}

.products-list[data-layout="list"] .product-card .product-card__availability {
  color: #999;
  font-size: 14px;
}

[dir=ltr] .products-list[data-layout="list"] .product-card .product-card__availability {
  padding-right: 10px;
}

[dir=rtl] .products-list[data-layout="list"] .product-card .product-card__availability {
  padding-left: 10px;
}

.products-list[data-layout="list"] .product-card .product-card__features-list {
  font-size: 14px;
  line-height: 16px;
  margin-bottom: 0;
}

.products-list[data-layout="list"] .product-card .product-card__features-list li {
  padding: 3px 0;
}

[dir=ltr] .products-list[data-layout="list"] .product-card .product-card__features-list li {
  padding-left: 12px;
  padding-right: 0;
}

[dir=rtl] .products-list[data-layout="list"] .product-card .product-card__features-list li {
  padding-right: 12px;
  padding-left: 0;
}

.products-list[data-layout="list"] .product-card .product-card__features-list li::before {
  top: 8px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .products-list[data-layout="list"] .product-card .product-card__image {
    width: 180px;
  }

  [dir=ltr] .products-list[data-layout="list"] .product-card .product-card__image {
    padding-left: 20px;
    padding-right: 20px;
  }

  [dir=rtl] .products-list[data-layout="list"] .product-card .product-card__image {
    padding-right: 20px;
    padding-left: 20px;
  }

  [dir=ltr] .products-list[data-layout="list"] .product-card .product-card__info {
    padding-left: 4px;
    padding-right: 20px;
  }

  [dir=rtl] .products-list[data-layout="list"] .product-card .product-card__info {
    padding-right: 4px;
    padding-left: 20px;
  }
}

@media (max-width: 767px) {
  .products-list[data-layout="list"] .product-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .product-card__badge--stock {


    width: 50%;
    padding: 10px 8px;
    font-size: 11px;

    margin-top: 15%;
  }

  .products-list[data-layout="list"] .product-card__badge--stock {


    width: 85%;
    padding: 10px 8px;
    font-size: 11px;

    margin-top: 15%;
  }

  .products-list[data-layout="list"] .product-card .product-card--stock {
    width: 85%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: -5;
  }

  .products-list[data-layout="list"] .product-card .product-card__info {
    border-top: 1px solid #ebebeb;
    padding: 10px 0 !important;
  }

  [dir=ltr] .products-list[data-layout="list"] .product-card .product-card__info {}

  [dir=rtl] .products-list[data-layout="list"] .product-card .product-card__info {}

  .products-list[data-layout="list"] .product-card .product-card__actions {
    width: auto;
    border-top: 1px solid #ebebeb;

  }

  [dir=ltr] .products-list[data-layout="list"] .product-card .product-card__actions {
    border-left: none;
  }

  [dir=rtl] .products-list[data-layout="list"] .product-card .product-card__actions {
    border-right: none;
  }

  .products-list[data-layout="list"] .product-card .product-card__buttons {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }

  .products-list[data-layout="list"] .product-card .product-card__buttons .btn {
    font-size: 1rem;
    height: calc(2.25rem + 2px);
    line-height: 1.5;
    padding: .375rem 1.25rem;
    font-weight: 500;
  }

  .products-list[data-layout="list"] .product-card .product-card__buttons .btn.btn-svg-icon {
    width: calc(2.25rem + 2px);
  }

  .products-list[data-layout="list"] .product-card .product-card__addtocart--list {
    width: auto;
  }

  [dir=ltr] .products-list[data-layout="list"] .product-card .product-card__addtocart--list {
    margin-right: auto;
  }

  [dir=rtl] .products-list[data-layout="list"] .product-card .product-card__addtocart--list {
    margin-left: auto;
  }
}

/*
// .products-view
*/

.products-view__options {
  padding-bottom: 20px;
}

.products-view__pagination {
  padding-top: 32px;
}

.products-view__load-more {
  padding-top: 32px;
  text-align: center;
  margin-bottom: 30px;
}

/*
// .profile-card
*/

.profile-card__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.profile-card__avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin-bottom: 16px;
}

.profile-card__avatar img {
  border-radius: 50%;
  max-width: 100%;
}

.profile-card__name {
  font-weight: 500;
  line-height: 20px;
}

.profile-card__email {
  font-size: 15px;
  margin-bottom: 24px;
}

/*----------------------------------------
                     .quickview
  -----------------------------------------*/
.quickview {
  padding: 0px;
  position: relative;
}

.modal-content {
  padding: 0;
}

.quickview__close {
  position: absolute;
  top: 0;
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  background: #fff;
  border-radius: 3px;
  border: none;
  fill: #bfbfbf;
  -webkit-transition: all .2s;
  transition: all .2s;
  z-index: 2;
}

[dir=ltr] .quickview__close {
  right: 0;
}

[dir=rtl] .quickview__close {
  left: 0;
}

.quickview__close:focus,
.quickview__close:hover {
  fill: #808080;
}

.quickview__close:focus {
  outline: none;
}

@media (min-width: 576px) and (max-width: 1199px) {
  .quickview {
    padding: 30px;
  }
}

@media (max-width: 575px) {
  .quickview {
    padding: 20px;
  }
}


.store {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 0;
  border-bottom: 1px solid #dedede;
  margin-bottom: 60px;
}

.store__box {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 15px;
  font-family: 'Manrope', sans-serif;
  width: 270px;
}

.store__box svg {
  width: 52px;
  height: 52px;
  margin-bottom: 15px;
}

.store__box h6 {
  white-space: nowrap;
  font-weight: lighter;
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
}

.store__box p {
  white-space: wrap;
  font-weight: lighter;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  text-align: center;
  letter-spacing: 1px;
}



/*
// .review
*/

.review {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.review__avatar {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

[dir=ltr] .review__avatar {
  margin-left: 16px;
  margin-right: 24px;
}

[dir=rtl] .review__avatar {
  margin-right: 16px;
  margin-left: 24px;
}

.review__avatar img {
  width: 70px;
  border-radius: 1000px;
}

.review__author {
  margin-top: -4px;
  font-size: 16px;
  font-weight: 500;
}

.review__author .date {
  font-weight: 400;
  font-size: 13px;
}

.review__rating {
  margin-bottom: 15px;
}

.review__text {
  font-size: 16px;
  margin: 7px 0;
}

.review__date {
  margin-top: 10px;
  color: #999;
  font-size: 14px;
}

.product-review-helpfulness .result {
  font-size: 12px;
  color: red;
}

.product-review-helpfulness .question {
  font-size: 13px;
  font-weight: 400;
}

.product-review-helpfulness .vote-options .vote {
  padding: 0;
  cursor: pointer;
  margin: 0 2px;
}

.product-review-helpfulness .vote-stats {
  font-size: 12px;
}

.review .rating__star {
  width: 15px;
  height: 15px;
}

@media (min-width: 576px) and (max-width: 767px) {
  [dir=ltr] .review__avatar {
    margin-right: 18px;
  }

  [dir=rtl] .review__avatar {
    margin-left: 18px;
  }

  .review__avatar img {
    width: 60px;
  }
}

@media (max-width: 575px) {
  .review__avatar {
    display: none;
  }
}

/*
// .reviews-list
*/

.reviews-list__content {
  list-style: none;
  padding: 0;
  margin: 0;
}

.reviews-list__item {
  border-bottom: 1px solid #ebebeb;
  padding-top: 28px;
  padding-bottom: 24px;
}

.reviews-list__item:first-child {
  padding-top: 0;
}

.reviews-list__pagination {
  margin-top: 36px;
}

@media (max-width: 767px) {
  .reviews-list__pagination {
    margin-top: 30px;
  }

}

/*
// .reviews-view
*/

.reviews-view__header {
  margin-bottom: 50px;
}

.reviews-view__form {
  margin-top: 40px;
  border-top: 1px solid #ebebeb;
  padding-top: 60px;
}

@media (max-width: 575px) {
  .reviews-view__header {
    margin-bottom: 32px;
  }

  .reviews-view__form {
    margin-top: 30px;
    padding-top: 50px;
  }
}

/*------------------------------------------------------------
                      .shop-layout
--------------------------------------------------------------*/
.category__container {
  max-width: 1900px;
}

.shop-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 100%;
}

.widget-filters__list {
  background-color: var(--text-white-color);
}

.filter--bg {
  background: #f9f9f9 !important;
}

.widget-filters--offcanvas--always .filter--bg {
  background: #fff !important;
}

.catalogsidebar__close-btn {
  text-align: right;
  font-weight: 500;
  font-size: 15px;
  padding: 10px 23px;
  align-items: center;
  justify-content: space-between;
  text-decoration: underline;
}

.catalogsidebar__close-btn svg {
  width: 15px;
  height: 15px;
  border-radius: 30px;
  transition: 500ms all;
  transform: scale(1);
}

.catalogsidebar__close-btn:hover svg {
  border: 1px solid var(--default-color-black);
  transition: 500ms all;
  transform: scale(1.2);
}

.block-sidebar--offcanvas--mobile .filter__container {
  width: 98%;
  min-width: 500px;
  height: 600px;
  max-height: 600px;

}

.widget-filters--offcanvas--always .filter__container {
  padding: 10px 15px 15px;
  overflow-y: unset;
}

#btnSearchkeyword {
  background-color: var(--text-black-color);
  color: var(--text-white-color);
}

.searchkeyword--box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  width: 300px;
  border-right: 1px solid #00000012;
}

.searchkeyword--box form {
  width: 260px;
}

.block-sidebar--offcanvas--mobile .filter-categories__list {
  display: flex;
  flex-wrap: wrap;
}

.block-sidebar--offcanvas--mobile .filter-categories__list li {
  width: 24%;
}

.block-sidebar--offcanvas--mobile .filter__body {
  position: absolute;
  left: 320px;
  top: 110px;
  opacity: 0;
}

.block-sidebar--offcanvas--mobile .filter--opened .filter__body {
  opacity: 1;
}

.widget-filters__item {
  width: 300px;
  border-right: 1px solid #00000012;
  background-color: #f9f9f9;
}

.block-sidebar--offcanvas--always .widget-filters__item {
  width: 100%;
}

.block-sidebar--offcanvas--always .filter__title svg {
  opacity: 1;
}

.filter__title svg {
  opacity: 0;
}

body.is-backdrop {
  background-color: var(--default-color-black);
  overflow: hidden;
}

.filter-list__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0 7px;
}

.widget-filters--offcanvas--mobile .filter-list__list label {
  width: 19%;
  margin: 0 13px 13px 0;
  display: flex;
  align-items: center;
}

.widget-filters--offcanvas--always #AttrsContainer .filter-list__list label {
  margin: 4px;
}

.widget-filters--offcanvas--always .filter-categories__list {
  padding-left: 25px;
}

@media (min-width: 992px) {
  .shop-layout__sidebar {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    position: fixed;
    top: 20px;
    width: 100%;
    min-height: 500px;
    max-width: 98%;
    left: 1%;
    z-index: 100;
    background-color: var(--text-white-color);
    display: none;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    overflow: hidden;
  }

  body.is-active {
    overflow-y: hidden;
    height: 100vh;
  }

  body.is-active>.body-bg {
    position: absolute;
    width: 100%;
    height: 200vh;
    background-color: #000000ad;
    display: block;
    left: 0;
    top: 0;
    content: '';
    overflow: hidden;
    z-index: 99;
  }

  .desktop--filters-button {
    background-color: var(--text-black-color);
    color: var(--text-white-color);


  }

  .desktop--filters-button span {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
  }

  #products-orderby {
    /* background: var(--text-black-color);
    color: var(--text-white-color); */
    height: 43px;
    text-align: center;
    width: 200px;
  }

  .desktop--filters-button svg {
    fill: var(--default-theme-white);
    margin-right: 10px;
  }

  .shop-layout__sidebar.active {
    display: block;
  }

  .shop-layout__content {
    width: 100%;
  }

  [dir=ltr] .shop-layout--sidebar--start .shop-layout__sidebar {
    margin-right: 30px;
  }

  [dir=rtl] .shop-layout--sidebar--start .shop-layout__sidebar {
    margin-left: 30px;
  }

  [dir=ltr] .shop-layout--sidebar--end .shop-layout__sidebar {
    margin-left: 30px;
  }

  [dir=rtl] .shop-layout--sidebar--end .shop-layout__sidebar {
    margin-right: 30px;
  }
}

@media (max-width: 991px) {
  .shop-layout {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .shop-layout__content,
  .shop-layout__sidebar {
    width: 100%;
  }

  .shop-layout__sidebar {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  [dir=ltr] .shop-layout--sidebar--start .shop-layout__sidebar,
  [dir=ltr] .shop-layout--sidebar--end .shop-layout__sidebar {
    margin-left: 0;
    margin-right: 0;
  }

  [dir=rtl] .shop-layout--sidebar--start .shop-layout__sidebar,
  [dir=rtl] .shop-layout--sidebar--end .shop-layout__sidebar {
    margin-right: 0;
    margin-left: 0;
  }
}


@media screen and (max-width:1415px) and (min-width:990px) {

  .filter--opened .filter__body {
    width: 100%;
    min-width: 75%;
  }
}

/*
// .spec
*/

.spec {
  font-size: 15px;
  line-height: 18px;
}

.spec__header {
  margin-bottom: 50px;
}

.spec__section+.spec__section {
  margin-top: 40px;
}

.spec__section-title {
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -.03em;
  line-height: 20px;
  margin: 0 0 12px;
}

.spec__row {
  padding: 8px 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #ebebeb;
}

.spec__row:first-of-type {
  border-top: 1px solid #ebebeb;
}

.spec__name {
  width: 230px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  color: #999;
}

[dir=ltr] .spec__name {
  padding-right: 30px;
}

[dir=rtl] .spec__name {
  padding-left: 30px;
}

.spec__disclaimer {
  margin-top: 40px;
  font-size: 14px;
  line-height: 22px;
  color: #999;
}

@media (min-width: 576px) and (max-width: 767px) {
  .spec__name {
    width: 170px;
  }
}

@media (max-width: 575px) {
  .spec__header {
    margin-bottom: 30px;
  }

  .spec__row {
    display: block;
    padding: 12px 0;
  }

  .spec__name {
    width: auto;
    margin-bottom: 6px;
  }
}

/*
// .view-options
*/

.view-options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 15px;
  justify-content: space-between;
}

.view-options__control label {
  font-size: 15px;
  color: #808080;
  font-weight: 400;
}

[dir=ltr] .view-options__legend {
  margin-left: 20px;
}

[dir=rtl] .view-options__legend {
  margin-right: 20px;
}

.view-options__divider {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

[dir=ltr] .view-options__filters-button {
  margin-right: 12px;
}

[dir=rtl] .view-options__filters-button {
  margin-left: 12px;
}

.view-options__control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

[dir=ltr] .view-options__control {
  margin-left: 24px;
}

[dir=rtl] .view-options__control {
  margin-right: 24px;
}

.view-options__control label {
  margin-bottom: 0;
}

[dir=ltr] .view-options__control label {
  margin-right: 8px;
}

[dir=rtl] .view-options__control label {
  margin-left: 8px;
}

.suggestions__item-image {
  position: relative;
}

.search-stock-badge-box {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.search-stock-badge {
  background-color: red;
  color: var(--default-theme-white);
  text-align: center;
  padding: 10px 15px;
}

@media (max-width: 991px) {
  .view-options {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  [dir=ltr] .view-options__legend {
    margin-left: auto;
  }

  [dir=rtl] .view-options__legend {
    margin-right: auto;
  }

  .view-options__divider {
    width: 100%;
    height: 12px;
  }

  [dir=ltr] .view-options__control {
    margin-left: auto;
  }

  [dir=rtl] .view-options__control {
    margin-right: auto;
  }

  [dir=ltr] .view-options__control+.view-options__control {
    margin-left: 24px;
  }

  [dir=rtl] .view-options__control+.view-options__control {
    margin-right: 24px;
  }
}

@media screen and (max-width:767px) {

  .view-options__legend,
  .view-options__control {
    display: none;
  }

  .product-card__name a {
    font-size: 13px;
  }

  .product-card__new-price,
  .product-card__prices {
    display: block;
    font-size: 13px;
    margin: 3px 0 0 0;
  }

  .product-card__rating {
    margin-bottom: 5px;
  }

  .color-squares li {
    height: 15px;
    width: 15px;
  }

  .product__options {
    margin: 5px 0;
  }

  #product__alternative--img {
    bottom: 13px;
    padding: 0 10px;
  }

  .product__option-label {
    display: none;
  }

  .input-radio-label__list span {
    font-size: 12px;
  }

  .default__btn {
    min-width: 170px;
  }

  .productdetails__box {
    width: 100%;
  }

  .color-squares {
    overflow-x: scroll;
    overflow-y: hidden;
  }

  .color-squares::-webkit-scrollbar {

    width: 5px !important;
  }

  .color-squares::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 6px;
  }

  .color-squares::-webkit-scrollbar-thumb:hover {
    background-color: #555;
  }
}

@media (max-width: 474px) {
  .view-options__legend {
    width: 100%;
    padding-top: 12px;
  }

  .view-options__divider {
    height: 8px;
  }



  [dir=ltr] .view-options__control {
    margin-left: 0;
    margin-right: 24px;
  }

  [dir=rtl] .view-options__control {
    margin-right: 0;
    margin-left: 24px;
  }

  [dir=ltr] .view-options__control+.view-options__control {
    margin-left: 0;
  }

  [dir=rtl] .view-options__control+.view-options__control {
    margin-right: 0;
  }
}

/* @media (min-width: 992px) {
  .view-options--offcanvas--mobile .view-options__filters-button {
    display: none;
  }
} */

/*
// .wishlist
*/

.wishlist__product-name {
  color: inherit;
}

.wishlist__product-rating {
  margin-top: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.wishlist__product-rating-legend {
  font-size: 13px;
  line-height: 1;
  color: #b3b3b3;
  padding-top: 1px;
}

[dir=ltr] .wishlist__product-rating-legend {
  margin-left: 9px;
}

[dir=rtl] .wishlist__product-rating-legend {
  margin-right: 9px;
}

@media (min-width: 768px) {
  .wishlist {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
  }

  .wishlist__column {
    padding: 12px 18px;
    border-top: 1px solid #ebebeb;
  }

  [dir=ltr] .wishlist__column:first-child {
    border-left: 1px solid #ebebeb;
  }

  [dir=rtl] .wishlist__column:first-child {
    border-right: 1px solid #ebebeb;
  }

  [dir=ltr] .wishlist__column:last-child {
    border-right: 1px solid #ebebeb;
  }

  [dir=rtl] .wishlist__column:last-child {
    border-left: 1px solid #ebebeb;
  }

  .wishlist__head {
    background: var(--default-theme-off-white);
    font-size: 15px;
  }

  .wishlist__head .wishlist__column {
    font-weight: 500;
  }

  [dir=ltr] .wishlist__head .wishlist__column:first-child {
    border-top-left-radius: 2.5px;
  }

  [dir=rtl] .wishlist__head .wishlist__column:first-child {
    border-top-right-radius: 2.5px;
  }

  [dir=ltr] .wishlist__head .wishlist__column:last-child {
    border-top-right-radius: 2.5px;
  }

  [dir=rtl] .wishlist__head .wishlist__column:last-child {
    border-top-left-radius: 2.5px;
  }

  .wishlist__body .wishlist__column {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .wishlist__body .wishlist__row:last-child .wishlist__column {
    border-bottom: 1px solid #ebebeb;
  }

  [dir=ltr] .wishlist__body .wishlist__row:last-child .wishlist__column:first-child {
    border-bottom-left-radius: 2.5px;
  }

  [dir=rtl] .wishlist__body .wishlist__row:last-child .wishlist__column:first-child {
    border-bottom-right-radius: 2.5px;
  }

  [dir=ltr] .wishlist__body .wishlist__row:last-child .wishlist__column:last-child {
    border-bottom-right-radius: 2.5px;
  }

  [dir=rtl] .wishlist__body .wishlist__row:last-child .wishlist__column:last-child {
    border-bottom-left-radius: 2.5px;
  }

  .wishlist__column--image {
    width: 1px;
    text-align: center;
  }

  [dir=ltr] .wishlist__column--image {
    padding-right: 4px;
  }

  [dir=rtl] .wishlist__column--image {
    padding-left: 4px;
  }

  .wishlist__column--image .product-image {
    width: 80px;
  }

  .wishlist__column--stock {
    white-space: nowrap;
    text-align: center;
    width: 1px;
  }

  .wishlist__column--price {
    width: 170px;
  }

  [dir=ltr] .wishlist__column--price {
    text-align: right;
    padding-left: 90px;
  }

  [dir=rtl] .wishlist__column--price {
    text-align: left;
    padding-right: 90px;
  }

  .wishlist__column--tocart {
    white-space: nowrap;
    width: 1px;
  }

  [dir=ltr] .wishlist__column--tocart {
    padding-left: 90px;
    padding-right: 0;
  }

  [dir=rtl] .wishlist__column--tocart {
    padding-right: 90px;
    padding-left: 0;
  }

  .wishlist__column--remove {
    width: 1px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .wishlist__column--price {
    width: 140px;
  }

  [dir=ltr] .wishlist__column--price,
  [dir=ltr] .wishlist__column--tocart {
    padding-left: 30px;
  }

  [dir=rtl] .wishlist__column--price,
  [dir=rtl] .wishlist__column--tocart {
    padding-right: 30px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .wishlist__column--price {
    width: 1px;
  }

  [dir=ltr] .wishlist__column--tocart,
  [dir=ltr] .wishlist__column--price,
  [dir=ltr] .wishlist__column--stock {
    padding-left: 0;
  }

  [dir=rtl] .wishlist__column--tocart,
  [dir=rtl] .wishlist__column--price,
  [dir=rtl] .wishlist__column--stock {
    padding-right: 0;
  }

  [dir=ltr] .wishlist__column--remove {
    padding-left: 8px;
    padding-right: 12px;
  }

  [dir=rtl] .wishlist__column--remove {
    padding-right: 8px;
    padding-left: 12px;
  }
}

@media (max-width: 767px) {
  .wishlist {
    display: block;
  }

  .wishlist__head {
    display: none;
  }

  .wishlist__body {
    display: block;
  }

  .wishlist__row {
    position: relative;
    width: 100%;
    display: block;
    border: 1px solid #ebebeb;
    border-radius: 2px;
    padding: 20px 20px 24px;
  }

  .wishlist__row+.wishlist__row {
    margin-top: 15px;
  }

  .wishlist__column {
    display: block;
    padding: 0;
  }

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

  .wishlist__column--image .product-image {
    width: 100%;
    max-width: 160px;
    margin: 0 auto;
  }

  .wishlist__column--product,
  .wishlist__column--stock,
  .wishlist__column--price,
  .wishlist__column--tocart {
    text-align: center;
  }

  .wishlist__column--stock {
    margin-top: 8px;
  }

  .wishlist__column--price {
    margin-top: 12px;
    font-size: 16px;
    font-weight: 700;
  }

  .wishlist__column--tocart {
    margin-top: 24px;
  }

  .wishlist__column--remove {
    position: absolute;
    top: 5px;
  }

  [dir=ltr] .wishlist__column--remove {
    right: 5px;
  }

  [dir=rtl] .wishlist__column--remove {
    left: 5px;
  }

  .wishlist__product-rating {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

/* ----------------------------------------
// Blog
// ---------------------------------------- */

/*
// .comment
*/

.comment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.comment__avatar {
  width: 70px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 25px;
}



.comment__avatar img {
  max-width: 100%;
  border-radius: 222px;
}

.comment__content {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.comment__header {
  margin-top: -4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.comment__author {
  font-size: 16px;
  font-weight: 600;
}

.comment__author a {
  color: inherit;
  -webkit-transition: color .2s;
  transition: color .2s;
}

.comment__author a:hover {
  color: #1a66ff;
}

.comment__reply .btn {
  height: 22px;
  padding: .125rem .375rem;
  display: block;
}

.comment__text {
  font-size: 13px;
  margin-top: 6px;
}

.comment__date {
  margin-top: 10px;
  color: #999;
  font-size: 14px;
}

@media (max-width: 767px) {
  [dir=ltr] .comment__avatar {
    margin-left: 0;
  }

  [dir=rtl] .comment__avatar {
    margin-right: 0;
  }

}

@media (max-width: 575px) and (max-width: 575px) {
  .comment__avatar {
    display: none;
  }
}

/*
// .comments-list
*/

.comments-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.comments-list__item+.comments-list__item {
  border-top: 1px solid #ebebeb;
  margin-top: 24px;
  padding-top: 28px;
}

.comments-list--level--0>.comments-list__item:last-child {
  padding-bottom: 28px;
  border-bottom: 1px solid #ebebeb;
}

.comments-list--level--1 {
  border-top: 1px solid #ebebeb;
  margin-top: 24px;
  padding-top: 28px;
}

[dir=ltr] .comments-list--level--1>.comments-list__item {
  margin-left: 46px;
}

[dir=rtl] .comments-list--level--1>.comments-list__item {
  margin-right: 46px;
}

@media (max-width: 767px) {
  .comments-list__item+.comments-list__item {
    margin-top: 20px;
    padding-top: 24px;
  }

  .comments-list--level--1 {
    margin-top: 20px;
    padding-top: 24px;
  }

}

/*
// .post
*/

.post__featured {
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  margin-bottom: 40px;
}

.post__featured img {
  -webkit-transition: opacity .2s;
  transition: opacity .2s;
  max-width: 100%;
}

.post__featured:hover img {
  opacity: .8;
}

.post__footer {
  margin-top: 60px;
}

.post__tags-share-links {
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

[dir=ltr] .post__tags {
  margin-right: 30px;
}

[dir=rtl] .post__tags {
  margin-left: 30px;
}

.post__share-links {
  padding-top: 2px;
}

.post__section {
  margin-top: 70px;
}

.post__section-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 28px;
  font-size: 22px;
}

.post__section-title::after {
  margin-top: 1px;
  content: '';
  display: block;
  height: 2px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  background: #ebebeb;
}

[dir=ltr] .post__section-title::after {
  margin-left: 16px;
}

[dir=rtl] .post__section-title::after {
  margin-right: 16px;
}

@media (max-width: 1199px) {
  .post__section {
    margin-top: 50px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .post__featured {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {

  .post__featured {
    margin-bottom: 24px;
  }

  .post__footer {
    margin-top: 40px;
  }

  .post__tags-share-links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  [dir=ltr] .post__tags {
    margin-right: 0;
  }

  [dir=rtl] .post__tags {
    margin-left: 0;
  }

  .post__tags .tags__list {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .post__share-links {
    padding: 20px 0 0;
  }
}

@media (min-width: 992px) {
  .post--layout--full .post__featured {
    margin-bottom: 50px;
  }
}

@media (min-width: 1200px) {
  .post--layout--full .post__featured {
    width: calc(100% + 380px);
  }

  [dir=ltr] .post--layout--full .post__featured {
    left: -190px;
  }

  [dir=rtl] .post--layout--full .post__featured {
    right: -190px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .post--layout--full .post__featured {
    width: calc(100% + 240px);
  }

  [dir=ltr] .post--layout--full .post__featured {
    left: -120px;
  }

  [dir=rtl] .post--layout--full .post__featured {
    right: -120px;
  }
}

/*
// .post-author
*/

.post-author {
  border: 2px solid #f0f0f0;
  border-radius: 2px;
  padding: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.post-author__avatar {
  width: 70px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 2px;
}

[dir=ltr] .post-author__avatar {
  margin-right: 18px;
}

[dir=rtl] .post-author__avatar {
  margin-left: 18px;
}

.post-author__avatar img {
  max-width: 100%;
}

.post-author__name {
  margin-top: 1px;
  font-size: 15px;
  font-weight: 500;
}

.post-author__name a {
  color: inherit;
}

.post-author__about {
  margin-top: 4px;
  font-size: 14px;
}

.post__related-posts {
  margin-top: 50px;
}

@media (max-width: 575px) {
  .post-author {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
  }

  .post-author__avatar {
    width: 90px;
  }

  [dir=ltr] .post-author__avatar {
    margin-right: 0;
  }

  [dir=rtl] .post-author__avatar {
    margin-left: 0;
  }

  .post-author__info {
    margin-top: 16px;
  }

  .post-author__about {
    margin-top: 8px;
  }
}

/*
// .post-header
*/

.post-header__categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.post-header__categories a {
  padding: 5px 7px 4px;
  display: block;
  font-size: 11px;
  line-height: 1;
  font-weight: 500;
  text-transform: uppercase;
  color: #808080;
  background: #ebebeb;
  border-radius: 1.5px;
}

.post-header__meta {
  font-size: 14px;
  letter-spacing: .02em;
  color: #b2b2b2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.post-header__meta a {
  color: inherit;
  -webkit-transition: color .2s;
  transition: color .2s;
}

.post-header__meta a:hover {
  color: #1a66ff;
}

.post-header__meta-item {
  position: relative;
}

[dir=ltr] .post-header__meta-item {
  margin-right: 20px;
}

[dir=rtl] .post-header__meta-item {
  margin-left: 20px;
}

.post-header__meta-item::after {
  position: absolute;
  display: block;
  content: '';
  background: currentColor;
  width: 4px;
  height: 4px;
  border-radius: 2px;
  top: 8px;
}

[dir=ltr] .post-header__meta-item::after {
  right: -12px;
}

[dir=rtl] .post-header__meta-item::after {
  left: -12px;
}

[dir=ltr] .post-header__meta-item:last-child {
  margin-right: 0;
}

[dir=rtl] .post-header__meta-item:last-child {
  margin-left: 0;
}

.post-header__meta-item:last-child::after {
  display: none;
}

.post-header--layout--classic .post-header__categories {
  margin-bottom: 12px;
}

.post-header--layout--classic .post-header__title {
  line-height: 38px;
  margin-bottom: 8px;
}

.post-header--layout--classic .post-header__meta {
  margin-bottom: 30px;
}

@media (max-width: 1199px) {
  .post-header--layout--classic .post-header__title {
    margin-bottom: 6px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .post-header--layout--classic .post-header__meta {
    margin-bottom: 24px;
  }
}

@media (max-width: 767px) {
  .post-header--layout--classic .post-header__meta {
    margin-bottom: 20px;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .post-header--layout--classic .post-header__title {
    font-size: 30px;
    line-height: 32px;
  }
}

@media (max-width: 479px) {
  .post-header--layout--classic .post-header__title {
    font-size: 28px;
    line-height: 30px;
  }
}

.post-header--layout--full {
  width: 640px;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: 20px 0 50px;
}

.post-header--layout--full .post-header__categories {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 24px;
}

.post-header--layout--full .post-header__title {
  line-height: 42px;
}

.post-header--layout--full .post-header__meta {
  margin-top: 24px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (max-width: 767px) {
  .post-header--layout--full {
    padding: 10px 0 24px;
  }

  .post-header--layout--full .post-header__categories {
    margin-bottom: 16px;
  }

  .post-header--layout--full .post-header__title {
    font-size: 30px;
    line-height: 32px;
  }

  .post-header--layout--full .post-header__meta {
    margin-top: 12px;
  }
}

@media (max-width: 575px) {
  .post-header--layout--full {
    padding-top: 0;
  }

  [dir=ltr] .post-header--layout--full {
    text-align: left;
  }

  [dir=rtl] .post-header--layout--full {
    text-align: right;
  }

  .post-header--layout--full .post-header__categories {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .post-header--layout--full .post-header__meta {
    margin-top: 8px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

/*
// .posts-list
*/

.posts-list__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -32px -15px;
}

.posts-list__item {
  margin: 32px 15px;
}

.posts-list--layout--classic .posts-list__item {
  width: 100%;
}

@media (max-width: 767px) {
  .posts-list--layout--classic .posts-list__body {
    margin: 0;
  }

  .posts-list--layout--classic .posts-list__item {
    margin: 0;
  }

  .posts-list--layout--classic .posts-list__item+.posts-list__item {
    margin-top: 36px;
  }

}

@media (max-width: 479px) {
  .posts-list--layout--classic .posts-list__item+.posts-list__item {
    margin-top: 30px;
  }
}

.posts-list--layout--list .posts-list__body {
  margin: -20px 0;
}

.posts-list--layout--list .posts-list__item {
  width: 100%;
  margin: 20px 0;
}

.posts-list--layout--grid2 .posts-list__item {
  width: calc(50% - 30px);
}

@media (max-width: 767px) {
  .posts-list--layout--grid2 .posts-list__body {
    margin: 0;
  }

  .posts-list--layout--grid2 .posts-list__item {
    margin: 0;
    width: 100%;
  }

  .posts-list--layout--grid2 .posts-list__item+.posts-list__item {
    margin-top: 36px;
  }
}

/*
// .posts-view
*/

.posts-view__pagination {
  padding-top: 48px;
}

@media (max-width: 991px) {
  .posts-view__pagination {
    padding-top: 32px;
    padding-bottom: 10px;
  }
}

/*
// .related-posts
*/

.related-posts__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -15px;
}

.related-posts__item {
  width: calc(50% - 30px);
  margin: 15px;
}

@media (max-width: 479px) {
  .related-posts__item {
    width: calc(100% - 30px);
  }
}

/* ----------------------------------------
// Blocks
// ---------------------------------------- */

/*
// .block
*/

.block {
  margin-bottom: 50px;
}

.block--highlighted {
  padding: 50px 0 60px;
  background: #f9f9f9;
}

@media (max-width: 991px) {
  .block {
    margin-bottom: 30px;
  }
}

/*
// .block-banner
*/

.block-banner__body {
  position: relative;
  display: block;
  height: 170px;
  text-align: center;
  color: inherit;
}

.block-banner__body:hover {
  color: inherit;
}

.block-banner__image {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}

.block-banner__image--mobile {
  display: none;
}

.block-banner__title {
  padding-top: 28px;
  font-size: 30px;
  line-height: 1;
  font-weight: 700;
}

.block-banner__text {
  padding-top: 8px;
}

.block-banner__button {
  padding-top: 20px;
}

.block-banner__mobile-br {
  display: none;
}

@media (max-width: 767px) {
  .block-banner__body {
    height: 390px;
  }

  .block-banner__image--desktop {
    display: none;
  }

  .block-banner__image--mobile {
    display: block;
  }

  .block-banner__title,
  .block-banner__text,
  .block-banner__button {
    width: 220px;
    margin-left: auto;
    margin-right: auto;
  }

  .block-banner__title {
    padding-top: 48px;
    line-height: 1.1;
  }

  .block-banner__text {
    padding-top: 12px;
  }

  .block-banner__button {
    padding-top: 28px;
  }

  .block-banner__mobile-br {
    display: block;
  }
}

/*
// .block-brands
*/


.block-brands__slider {
  border: 2px solid #f0f0f0;
  border-radius: 2px;
}

.productBox-carousel {
  margin: 10px 0;
}

.productBox-carousel__title {
  font-size: 18px;
  font-weight: 500;
}

.productBox-carousel .product-card__badge--sale {
  display: none;
}

.productBox-carousel .block-products-carousel__cell .product-card__image {
  height: unset;
}

.productBox-carousel .block-products-carousel__cell .product-card {
  margin: 0;
}

.block-brands__item {
  padding: 32px 24px;
}

@media (min-width: 768px) and (max-width: 991px) {
  .block-brands__item {
    padding: 28px 24px;
  }
}

@media (max-width: 767px) {
  .block-brands__item {
    padding: 20px 24px;
  }
}

/*
// .block-categories
*/

.block-categories__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -6px;
}

.block-categories__item {
  margin: 6px;
  width: calc(33.3333% - 12px);
}

@media (min-width: 480px) and (max-width: 767px) {
  .block-categories--layout--classic .block-categories__item {
    width: calc(50% - 12px);
  }
}

@media (max-width: 479px) {
  .block-categories--layout--classic .block-categories__item {
    width: calc(100% - 12px);
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .block-categories--layout--compact .block-categories__item {
    width: calc(50% - 12px);
  }
}

@media (max-width: 767px) {
  .block-categories--layout--compact .block-categories__item {
    width: calc(100% - 12px);
  }
}

/*
// .block-features
*/

.block-empty__body {
  text-align: center;
  padding: 18px 0 60px;
}

.block-empty__message {
  font-size: 17px;
}

.block-empty__actions {
  margin-top: 24px;
}

/*
// .block-features
*/

.block-features__list {
  border: 2px solid #f0f0f0;
  border-radius: 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.block-features__item {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding: 16px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.block-features__divider {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.block-features__icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  fill: #ffd333;
}

[dir=ltr] .block-features__icon {
  margin-right: 20px;
}

[dir=rtl] .block-features__icon {
  margin-left: 20px;
}

.block-features__icon svg {
  display: block;
}

.block-features__content {
  padding-top: 2px;
}

.block-features__title {
  font-size: 17px;
  line-height: 24px;
  font-weight: 700;
}

.block-features__subtitle {
  font-size: 14px;
}

.block-features--layout--boxed {
  margin-top: -36px;
}

.block-features--layout--boxed .block-features__list {
  border: none;
}

.block-features--layout--boxed .block-features__item {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: var(--default-theme-off-white);
  border-radius: 3px;
  text-align: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 30px 28px 28px;
}

.block-features--layout--boxed .block-features__divider {
  width: 14px;
}

.block-features--layout--boxed .block-features__icon {
  margin-bottom: 12px;
}

[dir=ltr] .block-features--layout--boxed .block-features__icon {
  margin-right: 0;
}

[dir=rtl] .block-features--layout--boxed .block-features__icon {
  margin-left: 0;
}

@media (min-width: 480px) and (max-width: 991px) {
  .block-features--layout--boxed .block-features__list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .block-features--layout--boxed .block-features__item {
    width: 50%;
  }

  .block-features--layout--boxed .block-features__divider:nth-child(4n) {
    width: 100%;
    height: 14px;
  }
}

@media (max-width: 479px) {
  .block-features--layout--boxed .block-features__list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .block-features--layout--boxed .block-features__item {
    width: 100%;
  }

  .block-features--layout--boxed .block-features__divider {
    width: 100%;
    height: 14px;
  }
}

.block-features--layout--classic {
  margin-top: -20px;
}

.block-features--layout--classic .block-features__divider {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 2px;
  background: #f0f0f0;
}

@media (max-width: 1199px) and (min-width: 992px),
(max-width: 767px) and (min-width: 576px) {
  .block-features--layout--classic .block-features__item {
    padding: 12px;
  }

  [dir=ltr] .block-features--layout--classic .block-features__icon {
    margin-right: 16px;
  }

  [dir=rtl] .block-features--layout--classic .block-features__icon {
    margin-left: 16px;
  }

  .block-features--layout--classic .block-features__content {
    padding-top: 0;
  }
}

@media (max-width: 991px) and (min-width: 420px) {
  .block-features--layout--classic .block-features__list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .block-features--layout--classic .block-features__item {
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    width: calc(50% - 1px);
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }

  .block-features--layout--classic .block-features__divider:nth-child(4n) {
    width: 100%;
    height: 2px;
  }
}

@media (max-width: 575px) and (min-width: 420px) {
  .block-features--layout--classic .block-features__item {
    text-align: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .block-features--layout--classic .block-features__icon {
    margin-bottom: 20px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  [dir=ltr] .block-features--layout--classic .block-features__icon {
    margin-right: 0;
  }

  [dir=rtl] .block-features--layout--classic .block-features__icon {
    margin-left: 0;
  }
}

@media (max-width: 419px) {
  .block-features--layout--classic .block-features__list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .block-features--layout--classic .block-features__item {
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    width: 100%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }

  [dir=ltr] .block-features--layout--classic .block-features__icon {
    margin-right: 24px;
  }

  [dir=rtl] .block-features--layout--classic .block-features__icon {
    margin-left: 24px;
  }

  .block-features--layout--classic .block-features__divider {
    width: 100%;
    height: 2px;
  }
}

/*
// .block-finder
*/

.block-finder {
  margin-bottom: 50px;
}

.block-finder--layout--full {
  margin-top: 20px;
}

.block-finder__body {
  padding: 0 52px 52px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  height: 400px;
  background: var(--default--theme-grey-bg) no-repeat bottom center;
  color: #3d464d;
}

.block-finder__header {
  padding: 46px 0 36px;
}

.block-finder__title {
  font-size: 32px;
  line-height: 44px;
  font-weight: 700;
}

.block-finder__subtitle {
  margin-top: 2px;
  font-size: 17px;
  line-height: 1.25;
  color: #6c757d;
}

.block-finder__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-item-align: center;
  align-self: center;
}

.block-finder__button {
  margin-top: 40px;
  height: 43px;
  padding-left: 44px;
  padding-right: 44px;
  font-size: 17px;
}

.block-finder__select,
.block-finder__select+.select2-container--default {
  width: 100%;
}

.block-finder__select,
.block-finder__select+.select2-container--default .select2-selection--single {
  height: 42px;
  border: none;
  border-radius: 2px;
  -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.09), 0 0 0 1px rgba(0, 0, 0, 0.03);
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.09), 0 0 0 1px rgba(0, 0, 0, 0.03);
  cursor: pointer;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 5 10'%3E%3Cpath fill='rgba(0, 0, 0, 0.5)' d='M4.503,4 L0.497,4 C0.094,4 -0.142,3.492 0.089,3.122 L2.095,0.233 C2.293,-0.084 2.712,-0.084 2.911,0.233 L4.911,3.122 C5.142,3.492 4.906,4 4.503,4 ZM0.497,6 L4.503,6 C4.906,6 5.142,6.504 4.911,6.871 L2.905,9.737 C2.707,10.052 2.288,10.052 2.089,9.737 L0.089,6.871 C-0.142,6.504 0.094,6 0.497,6 Z'/%3E%3C/svg%3E%0A") no-repeat;
  background-size: 5px 10px;
}

[dir=ltr] .block-finder__select,
[dir=ltr] .block-finder__select+.select2-container--default .select2-selection--single {
  background-position: right 12px center;
}

[dir=rtl] .block-finder__select,
[dir=rtl] .block-finder__select+.select2-container--default .select2-selection--single {
  background-position: left 12px center;
}

.block-finder__select:focus,
.block-finder__select+.select2-container--default .select2-selection--single:focus {
  outline: none;
}

.block-finder__select,
.block-finder__select+.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #3d464d;
}

[dir=ltr] .block-finder__select,
[dir=ltr] .block-finder__select+.select2-container--default .select2-selection--single .select2-selection__rendered {
  padding-left: 13px;
  padding-right: 31px;
  text-align: left;
}

[dir=rtl] .block-finder__select,
[dir=rtl] .block-finder__select+.select2-container--default .select2-selection--single .select2-selection__rendered {
  padding-right: 13px;
  padding-left: 31px;
  text-align: right;
}

.block-finder__select:disabled,
.block-finder__select+.select2-container--disabled .select2-selection--single {
  background-color: #fafafa;
  -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
  opacity: 0.6;
  cursor: default;
}

.block-finder__select:disabled,
.block-finder__select+.select2-container--disabled .select2-selection--single .select2-selection__rendered {
  color: #6c757d;
}

.block-finder__select {
  -webkit-transition: background-color .15s, color .15s, opacity .15s, -webkit-box-shadow .15s;
  transition: background-color .15s, color .15s, opacity .15s, -webkit-box-shadow .15s;
  transition: background-color .15s, box-shadow .15s, color .15s, opacity .15s;
  transition: background-color .15s, box-shadow .15s, color .15s, opacity .15s, -webkit-box-shadow .15s;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.block-finder__select::-ms-expand {
  display: none;
}

.block-finder__select+.select2-container--default .select2-selection--single {
  -webkit-transition: background-color .15s, opacity .15s, -webkit-box-shadow .15s;
  transition: background-color .15s, opacity .15s, -webkit-box-shadow .15s;
  transition: background-color .15s, box-shadow .15s, opacity .15s;
  transition: background-color .15s, box-shadow .15s, opacity .15s, -webkit-box-shadow .15s;
}

.block-finder__select+.select2-container--default .select2-selection--single .select2-selection__rendered {
  -webkit-transition: color .15s;
  transition: color .15s;
}

.block-finder__select+.select2-container--default .select2-selection--single {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.block-finder__select+.select2-container--default .select2-selection__arrow {
  display: none;
}

.block-finder--layout--with-departments .block-finder__body {
  margin-top: 15px;
}

@media (min-width: 992px) {
  .block-finder--layout--with-departments .block-finder__body {
    margin-top: 15px;
    height: 395px;
  }

  [dir=ltr] .block-finder--layout--with-departments .block-finder__body {
    margin-left: -15px;
  }

  [dir=rtl] .block-finder--layout--with-departments .block-finder__body {
    margin-right: -15px;
  }

  .block-finder--layout--with-departments .block-finder__select,
  .block-finder--layout--with-departments .block-finder__select+.select2-container--default .select2-selection--single {
    height: 40px;
  }
}

@media (min-width: 1200px) {
  .block-finder--layout--with-departments .block-finder__form {
    margin: -6px;
    width: 728px;
  }

  .block-finder--layout--with-departments .block-finder__form-item {
    width: calc(100% / 4 - 12px);
    margin: 6px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .block-finder--layout--with-departments .block-finder__form {
    margin: -6px;
    width: 424px;
  }

  .block-finder--layout--with-departments .block-finder__form-item {
    width: calc(100% / 2 - 12px);
    margin: 6px;
  }

  .block-finder--layout--with-departments .block-finder__header {
    padding-bottom: 32px;
  }

  .block-finder--layout--with-departments .block-finder__button {
    margin-top: 36px;
  }
}

@media (min-width: 992px) {
  .block-finder--layout--full .block-finder__form {
    margin: -7px;
    width: 816px;
  }

  .block-finder--layout--full .block-finder__form-item {
    width: calc(100% / 4 - 14px);
    margin: 7px;
  }
}

@media (max-width: 991px) {
  .block-finder__header {
    padding-bottom: 28px;
  }

  .block-finder__button {
    margin-top: 32px;
  }

  .block-finder__form {
    margin: -7px;
    width: 428px;
  }

  .block-finder__form-item {
    width: calc(100% / 2 - 14px);
    margin: 7px;
  }
}

@media (max-width: 767px) {
  .block-finder__header {
    padding-top: 40px;
  }

  .block-finder__title {
    font-size: 28px;
    line-height: 30px;
  }

  .block-finder__subtitle {
    margin-top: 8px;
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .block-finder__body {
    height: auto;
  }

  .block-finder__form {
    margin: -7px;
    width: 234px;
  }

  .block-finder__form-item {
    width: calc(100% / 1 - 14px);
    margin: 7px;
  }

  .block-finder__select,
  .block-finder__select+.select2-container--default .select2-selection--single {
    height: 40px;
  }
}

/*
// .block-map
*/

.block-map {
  margin-bottom: 10px;
}

.block-map__body {
  height: 540px;
  position: relative;
}

.block-map__body::before {
  position: absolute;
  content: '';
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 1;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.15)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0));
  pointer-events: none;
}

.block-map__body::after {
  position: absolute;
  content: '';
  display: block;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 1;
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.05)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0));
  pointer-events: none;
}

.block-map__body iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 1199px) {
  .block-map__body {
    height: 500px;
  }
}

@media (max-width: 991px) {
  .block-map__body {
    height: 440px;
  }
}

@media (max-width: 767px) {
  .block-map__body {
    height: 380px;
  }
}

@media (max-width: 575px) {
  .block-map__body {
    height: 300px;
  }
}

/*
// .block-posts
*/

.block-posts {
  position: relative;
  z-index: 1;
}

@media (min-width: 576px) {
  .block-posts[data-layout="list"] .post-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .block-posts[data-layout="list"] .post-card .post-card__image {
    width: 240px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }

  [dir=ltr] .block-posts[data-layout="list"] .post-card .post-card__image {
    margin-right: 22px;
  }

  [dir=rtl] .block-posts[data-layout="list"] .post-card .post-card__image {
    margin-left: 22px;
  }

  .block-posts[data-layout="list"] .post-card .post-card__name {
    margin-top: 10px;
    font-size: 16px;
    line-height: 20px;
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    height: 40px;
    overflow: hidden;
  }

  .block-posts[data-layout="list"] .post-card .post-card__date {
    margin-top: 6px;
  }

  .block-posts[data-layout="list"] .post-card .post-card__category {
    display: none;
  }

  .block-posts[data-layout="list"] .post-card .post-card__content {
    margin-top: 10px;
    font-size: 15px;
    line-height: 22px;
    height: 66px;
    overflow: hidden;
  }

  .block-posts[data-layout="list"] .post-card .post-card__read-more {
    display: none;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .block-posts[data-layout="list"] .post-card .post-card__image {
    width: 210px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }

  [dir=ltr] .block-posts[data-layout="list"] .post-card .post-card__image {
    margin-right: 18px;
  }

  [dir=rtl] .block-posts[data-layout="list"] .post-card .post-card__image {
    margin-left: 18px;
  }

  .block-posts[data-layout="list"] .post-card .post-card__name {
    margin-top: 5px;
    font-size: 15px;
    line-height: 19px;
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .block-posts[data-layout="list"] .post-card .post-card__date {
    margin-top: 4px;
  }

  .block-posts[data-layout="list"] .post-card .post-card__category {
    display: none;
  }

  .block-posts[data-layout="list"] .post-card .post-card__content {
    margin-top: 10px;
    font-size: 15px;
    line-height: 20px;
    height: 60px;
    overflow: hidden;
  }

  .block-posts[data-layout="list"] .post-card .post-card__read-more {
    display: none;
  }
}

@media (max-width: 575px) {
  .block-posts[data-layout="list"] .post-card .post-card__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .block-posts[data-layout="list"] .post-card .post-card__image {
    margin-bottom: 14px;
  }

  .block-posts[data-layout="list"] .post-card .post-card__category {
    display: none;
  }

  .block-posts[data-layout="list"] .post-card .post-card__date {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .block-posts[data-layout="list"] .post-card .post-card__name {
    width: 100%;
    font-size: 18px;
    margin-top: 4px;
    line-height: 22px;
  }

  .block-posts[data-layout="list"] .post-card .post-card__content {
    width: 100%;
    margin-top: 12px;
  }

  .block-posts[data-layout="list"] .post-card .post-card__read-more {
    width: 100%;
    display: none;
  }
}

.block-posts[data-layout^="grid-"] .post-card .post-card__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.block-posts[data-layout^="grid-"] .post-card .post-card__image {
  margin-bottom: 14px;
}

.block-posts[data-layout^="grid-"] .post-card .post-card__category {
  display: none;
}

.block-posts[data-layout^="grid-"] .post-card .post-card__date {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
}

.block-posts[data-layout^="grid-"] .post-card .post-card__name {
  width: 100%;
  font-size: 18px;
  margin-top: 4px;
  line-height: 22px;
}

.block-posts[data-layout^="grid-"] .post-card .post-card__content {
  width: 100%;
  margin-top: 12px;
}

.block-posts[data-layout^="grid-"] .post-card .post-card__read-more {
  width: 100%;
  display: none;
}

@media (min-width: 460px) and (max-width: 767px) {
  .block-posts[data-layout="grid-3"][data-mobile-columns="2"] .post-card .post-card__image {
    margin-bottom: 10px;
  }

  .block-posts[data-layout="grid-3"][data-mobile-columns="2"] .post-card .post-card__date {
    font-size: 14px;
    margin: -1px 0;
  }

  .block-posts[data-layout="grid-3"][data-mobile-columns="2"] .post-card .post-card__name {
    font-size: 15px;
    margin-top: 4px;
    line-height: 20px;
  }

  .block-posts[data-layout="grid-3"][data-mobile-columns="2"] .post-card .post-card__content {
    margin-top: 6px;
    font-size: 14px;
    line-height: 20px;
  }
}

@media (max-width: 459px) {
  .block-posts[data-layout="grid-3"][data-mobile-columns="2"] .post-card .post-card__image {
    margin-bottom: 7px;
  }

  .block-posts[data-layout="grid-3"][data-mobile-columns="2"] .post-card .post-card__date {
    font-size: 13px;
  }

  .block-posts[data-layout="grid-3"][data-mobile-columns="2"] .post-card .post-card__name {
    margin-top: 4px;
    font-size: 14px;
    line-height: 18px;
  }

  .block-posts[data-layout="grid-3"][data-mobile-columns="2"] .post-card .post-card__content {
    margin-top: 4px;
    font-size: 14px;
    line-height: 18px;
  }
}

@media (min-width: 460px) {
  .block-posts[data-layout="grid-4"] .post-card .post-card__image {
    margin-bottom: 10px;
  }

  .block-posts[data-layout="grid-4"] .post-card .post-card__date {
    font-size: 14px;
    margin: -1px 0;
  }

  .block-posts[data-layout="grid-4"] .post-card .post-card__name {
    font-size: 15px;
    margin-top: 4px;
    line-height: 20px;
  }

  .block-posts[data-layout="grid-4"] .post-card .post-card__content {
    margin-top: 6px;
    font-size: 14px;
    line-height: 20px;
  }
}

@media (max-width: 459px) {
  .block-posts[data-layout="grid-4"][data-mobile-columns="2"] .post-card .post-card__image {
    margin-bottom: 7px;
  }

  .block-posts[data-layout="grid-4"][data-mobile-columns="2"] .post-card .post-card__date {
    font-size: 13px;
  }

  .block-posts[data-layout="grid-4"][data-mobile-columns="2"] .post-card .post-card__name {
    margin-top: 4px;
    font-size: 14px;
    line-height: 18px;
  }

  .block-posts[data-layout="grid-4"][data-mobile-columns="2"] .post-card .post-card__content {
    margin-top: 4px;
    font-size: 14px;
    line-height: 18px;
  }
}

/*
// .block-product-columns
*/

.block-product-columns__item {
  position: relative;
}

.block-product-columns__item+.block-product-columns__item {
  margin-top: -1px;
}

.block-product-columns__item:hover {
  z-index: 2;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .block-product-columns .product-card .product-card__image {
    width: 110px;
  }

  .block-product-columns .product-card .product-card__rating {
    display: none;
  }

  [dir=ltr] .block-product-columns .product-card .product-card__actions {
    left: 110px;
  }

  [dir=rtl] .block-product-columns .product-card .product-card__actions {
    right: 110px;
  }
}

/*
// .block-products
*/

.block-products__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.block-products__featured {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 36%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.block-products__featured-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.block-products__featured-item .product-card {
  width: 100%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.block-products__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -6px;
}

.block-products__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc(33.3333% - 12px);
  margin: 6px;
}

.block-products__list-item .product-card {
  width: 100%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.block-products__list-item .product-card .product-card__image {
  padding: 18px 18px 20px;
}

.block-products__list-item .product-card .product-card__info {
  padding: 0 24px 0;
}

.block-products__list-item .product-card .product-card__actions {
  padding: 0 24px 24px;
}

.block-products__list-item .product-card .product-card__description {
  display: none;
}

.block-products__list-item .product-card .product-card__availability {
  display: none;
}

.block-products__list-item .product-card .product-card__features-list {
  display: none;
}

@media (min-width: 992px) {
  .block-products__featured-item .product-card .product-card__image {
    padding: 18px 18px 20px;
  }

  .block-products__featured-item .product-card .product-card__info {
    padding: 0 24px 0;
  }

  .block-products__featured-item .product-card .product-card__actions {
    padding: 0 24px 24px;
  }

  .block-products__featured-item .product-card .product-card__description {
    display: none;
  }

  .block-products__featured-item .product-card .product-card__availability {
    display: none;
  }

  .block-products__featured-item .product-card .product-card__features-list {
    display: none;
  }

  .block-products__featured-item .product-card .product-card__image {
    padding: 25px;
  }

  .block-products__featured-item .product-card .product-card__info {
    padding: 0 30px 0;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }

  .block-products__featured-item .product-card .product-card__name {
    font-size: 17px;
    line-height: 23px;
  }

  .block-products__featured-item .product-card .product-card__actions {
    padding: 0 30px 30px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .block-products__featured-item .product-card .product-card__rating {
    margin-top: 7px;
  }

  .block-products__featured-item .product-card .product-card__prices {
    margin-bottom: auto;
    font-size: 20px;
  }

  [dir=ltr] .block-products__featured+.block-products__list {
    margin-left: 6px;
  }

  [dir=rtl] .block-products__featured+.block-products__list {
    margin-right: 6px;
  }

  [dir=ltr] .block-products__list+.block-products__featured {
    margin-left: 12px;
  }

  [dir=rtl] .block-products__list+.block-products__featured {
    margin-right: 12px;
  }
}

@media (min-width: 576px) and (max-width: 991px) {
  .block-products__featured-item {
    display: block;
  }

  .block-products__featured-item .product-card {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .block-products__featured-item .product-card .product-card__image {
    width: 120px;
    padding: 16px;
  }

  .block-products__featured-item .product-card .product-card__badges-list {
    top: 10px;
  }

  [dir=ltr] .block-products__featured-item .product-card .product-card__badges-list {
    left: 10px;
  }

  [dir=rtl] .block-products__featured-item .product-card .product-card__badges-list {
    right: 10px;
  }

  .block-products__featured-item .product-card .product-card__badge {
    padding: 3px 5px 2px;
  }

  .block-products__featured-item .product-card .product-card__info {
    padding-top: 14px;
    padding-bottom: 42px;
    width: 100%;
  }

  [dir=ltr] .block-products__featured-item .product-card .product-card__info {
    padding-left: 0;
    padding-right: 30px;
  }

  [dir=rtl] .block-products__featured-item .product-card .product-card__info {
    padding-right: 0;
    padding-left: 30px;
  }

  .block-products__featured-item .product-card .product-card__name {
    overflow: hidden;
    max-height: 38px;
  }

  .block-products__featured-item .product-card .product-card__rating {
    white-space: nowrap;
  }

  .block-products__featured-item .product-card .product-card__description {
    display: none;
  }

  .block-products__featured-item .product-card .product-card__availability {
    display: none;
  }

  .block-products__featured-item .product-card .product-card__buttons {
    display: none;
  }

  .block-products__featured-item .product-card .product-card__actions {
    position: absolute;
    bottom: 18px;
  }

  [dir=ltr] .block-products__featured-item .product-card .product-card__actions {
    left: 120px;
  }

  [dir=rtl] .block-products__featured-item .product-card .product-card__actions {
    right: 120px;
  }

  .block-products__featured-item .product-card .product-card__features-list {
    display: none;
  }

  .block-products__featured-item .product-card .product-card__image {
    width: 216px;
  }

  [dir=ltr] .block-products__featured-item .product-card .product-card__image {
    padding-left: 24px;
    padding-right: 24px;
    margin-right: 16px;
  }

  [dir=rtl] .block-products__featured-item .product-card .product-card__image {
    padding-right: 24px;
    padding-left: 24px;
    margin-left: 16px;
  }

  .block-products__featured-item .product-card .product-card__info {
    padding-top: 20px;
    padding-bottom: 120px;
  }

  .block-products__featured-item .product-card .product-card__name {
    font-size: 17px;
    margin-bottom: 2px;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }

  .block-products__featured-item .product-card .product-card__actions {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    bottom: 26px;
  }

  [dir=ltr] .block-products__featured-item .product-card .product-card__actions {
    left: 232px;
  }

  [dir=rtl] .block-products__featured-item .product-card .product-card__actions {
    right: 232px;
  }

  .block-products__featured-item .product-card .product-card__prices {
    margin-top: 0;
    font-size: 20px;
  }

  [dir=ltr] .block-products__featured-item .product-card .product-card__prices {
    margin-right: 24px;
  }

  [dir=rtl] .block-products__featured-item .product-card .product-card__prices {
    margin-left: 24px;
  }

  .block-products__featured-item .product-card .product-card__buttons {
    display: block;
  }
}

@media (max-width: 991px) {
  .block-products__body {
    display: block;
  }

  .block-products__featured {
    width: 100%;
  }

  .block-products__featured+.block-products__list {
    margin-top: 6px;
  }

  .block-products__list+.block-products__featured {
    margin-top: 12px;
  }
}

@media (max-width: 767px) {
  .block-products__list-item {
    width: calc(50% - 12px);
  }
}

@media (max-width: 575px) {
  .block-products__featured-item .product-card .product-card__image {
    padding: 18px 18px 20px;
  }

  .block-products__featured-item .product-card .product-card__info {
    padding: 0 24px 0;
  }

  .block-products__featured-item .product-card .product-card__actions {
    padding: 0 24px 24px;
  }

  .block-products__featured-item .product-card .product-card__description {
    display: none;
  }

  .block-products__featured-item .product-card .product-card__availability {
    display: none;
  }

  .block-products__featured-item .product-card .product-card__features-list {
    display: none;
  }

  .block-products__featured-item .product-card .product-card__buttons .btn {
    font-size: .875rem;
    height: calc(1.875rem + 2px);
    line-height: 1.25;
    padding: .375rem 1rem;
    font-weight: 500;
  }

  .block-products__featured-item .product-card .product-card__buttons .btn.btn-svg-icon {
    width: calc(1.875rem + 2px);
  }
}

@media (max-width: 575px) and (hover: hover) {
  .block-products__featured-item .product-card--hidden-actions .product-card__buttons {
    display: none;
  }

  .block-products__featured-item .product-card--hidden-actions:hover {
    position: relative;
    z-index: 3;
    margin-bottom: -56px;
  }

  .block-products__featured-item .product-card--hidden-actions:hover .product-card__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (max-width: 575px) and (-ms-high-contrast: active),
(max-width: 575px) and (-ms-high-contrast: none) {
  .block-products__featured-item .product-card--hidden-actions .product-card__buttons {
    display: none;
  }

  .block-products__featured-item .product-card--hidden-actions:hover {
    position: relative;
    z-index: 3;
    margin-bottom: -56px;
  }

  .block-products__featured-item .product-card--hidden-actions:hover .product-card__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (min-width: 480px) {
  .block-products:not([data-mobile-grid-columns="2"]) .block-products__list-item .product-card .product-card__image {
    padding: 15px;
  }

  .block-products:not([data-mobile-grid-columns="2"]) .block-products__list-item .product-card .product-card__badges-list {
    top: 16px;
  }

  [dir=ltr] .block-products:not([data-mobile-grid-columns="2"]) .block-products__list-item .product-card .product-card__badges-list {
    left: 16px;
  }

  [dir=rtl] .block-products:not([data-mobile-grid-columns="2"]) .block-products__list-item .product-card .product-card__badges-list {
    right: 16px;
  }

  .block-products:not([data-mobile-grid-columns="2"]) .block-products__list-item .product-card .product-card__info {
    padding: 0 15px 0;
  }

  .block-products:not([data-mobile-grid-columns="2"]) .block-products__list-item .product-card .product-card__actions {
    padding: 0 15px 15px;
  }

  .block-products:not([data-mobile-grid-columns="2"]) .block-products__list-item .product-card .product-card__buttons .btn {
    font-size: .8125rem;
    height: calc(1.5rem + 2px);
    line-height: 1.25;
    padding: .25rem .5625rem;
    font-weight: 500;
  }

  .block-products:not([data-mobile-grid-columns="2"]) .block-products__list-item .product-card .product-card__buttons .btn.btn-svg-icon {
    width: calc(1.5rem + 2px);
  }
}

@media (min-width: 480px) and (hover: hover) {
  .block-products:not([data-mobile-grid-columns="2"]) .block-products__list-item .product-card--hidden-actions .product-card__buttons {
    display: none;
  }

  .block-products:not([data-mobile-grid-columns="2"]) .block-products__list-item .product-card--hidden-actions:hover {
    position: relative;
    z-index: 3;
    margin-bottom: -50px;
  }

  .block-products:not([data-mobile-grid-columns="2"]) .block-products__list-item .product-card--hidden-actions:hover .product-card__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (min-width: 480px) and (-ms-high-contrast: active),
(min-width: 480px) and (-ms-high-contrast: none) {
  .block-products:not([data-mobile-grid-columns="2"]) .block-products__list-item .product-card--hidden-actions .product-card__buttons {
    display: none;
  }

  .block-products:not([data-mobile-grid-columns="2"]) .block-products__list-item .product-card--hidden-actions:hover {
    position: relative;
    z-index: 3;
    margin-bottom: -50px;
  }

  .block-products:not([data-mobile-grid-columns="2"]) .block-products__list-item .product-card--hidden-actions:hover .product-card__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (max-width: 479px) {
  .block-products:not([data-mobile-grid-columns="2"]) .block-products__list-item .product-card .product-card__buttons .btn {
    font-size: .875rem;
    height: calc(1.875rem + 2px);
    line-height: 1.25;
    padding: .375rem 1rem;
    font-weight: 500;
  }

  .block-products:not([data-mobile-grid-columns="2"]) .block-products__list-item .product-card .product-card__buttons .btn.btn-svg-icon {
    width: calc(1.875rem + 2px);
  }
}

@media (max-width: 479px) and (hover: hover) {
  .block-products:not([data-mobile-grid-columns="2"]) .block-products__list-item .product-card--hidden-actions .product-card__buttons {
    display: none;
  }

  .block-products:not([data-mobile-grid-columns="2"]) .block-products__list-item .product-card--hidden-actions:hover {
    position: relative;
    z-index: 3;
    margin-bottom: -56px;
  }

  .block-products:not([data-mobile-grid-columns="2"]) .block-products__list-item .product-card--hidden-actions:hover .product-card__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (max-width: 479px) and (-ms-high-contrast: active),
(max-width: 479px) and (-ms-high-contrast: none) {
  .block-products:not([data-mobile-grid-columns="2"]) .block-products__list-item .product-card--hidden-actions .product-card__buttons {
    display: none;
  }

  .block-products:not([data-mobile-grid-columns="2"]) .block-products__list-item .product-card--hidden-actions:hover {
    position: relative;
    z-index: 3;
    margin-bottom: -56px;
  }

  .block-products:not([data-mobile-grid-columns="2"]) .block-products__list-item .product-card--hidden-actions:hover .product-card__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (max-width: 479px) {
  .block-products:not([data-mobile-grid-columns="2"]) .block-products__list-item {
    width: calc(100% - 12px);
  }
}

@media (min-width: 375px) {
  .block-products[data-mobile-grid-columns="2"] .block-products__list-item .product-card .product-card__image {
    padding: 15px;
  }

  .block-products[data-mobile-grid-columns="2"] .block-products__list-item .product-card .product-card__badges-list {
    top: 16px;
  }

  [dir=ltr] .block-products[data-mobile-grid-columns="2"] .block-products__list-item .product-card .product-card__badges-list {
    left: 16px;
  }

  [dir=rtl] .block-products[data-mobile-grid-columns="2"] .block-products__list-item .product-card .product-card__badges-list {
    right: 16px;
  }

  .block-products[data-mobile-grid-columns="2"] .block-products__list-item .product-card .product-card__info {
    padding: 0 15px 0;
  }

  .block-products[data-mobile-grid-columns="2"] .block-products__list-item .product-card .product-card__actions {
    padding: 0 15px 15px;
  }

  .block-products[data-mobile-grid-columns="2"] .block-products__list-item .product-card .product-card__buttons .btn {
    font-size: .8125rem;
    height: calc(1.5rem + 2px);
    line-height: 1.25;
    padding: .25rem .5625rem;
    font-weight: 500;
  }

  .block-products[data-mobile-grid-columns="2"] .block-products__list-item .product-card .product-card__buttons .btn.btn-svg-icon {
    width: calc(1.5rem + 2px);
  }
}

@media (min-width: 375px) and (hover: hover) {
  .block-products[data-mobile-grid-columns="2"] .block-products__list-item .product-card--hidden-actions .product-card__buttons {
    display: none;
  }

  .block-products[data-mobile-grid-columns="2"] .block-products__list-item .product-card--hidden-actions:hover {
    position: relative;
    z-index: 3;
    margin-bottom: -50px;
  }

  .block-products[data-mobile-grid-columns="2"] .block-products__list-item .product-card--hidden-actions:hover .product-card__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (min-width: 375px) and (-ms-high-contrast: active),
(min-width: 375px) and (-ms-high-contrast: none) {
  .block-products[data-mobile-grid-columns="2"] .block-products__list-item .product-card--hidden-actions .product-card__buttons {
    display: none;
  }

  .block-products[data-mobile-grid-columns="2"] .block-products__list-item .product-card--hidden-actions:hover {
    position: relative;
    z-index: 3;
    margin-bottom: -50px;
  }

  .block-products[data-mobile-grid-columns="2"] .block-products__list-item .product-card--hidden-actions:hover .product-card__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (max-width: 374px) {
  .block-products[data-mobile-grid-columns="2"] .block-products__list-item .product-card .product-card__image {
    padding: 15px;
  }

  .block-products[data-mobile-grid-columns="2"] .block-products__list-item .product-card .product-card__badges-list {
    top: 16px;
  }

  [dir=ltr] .block-products[data-mobile-grid-columns="2"] .block-products__list-item .product-card .product-card__badges-list {
    left: 16px;
  }

  [dir=rtl] .block-products[data-mobile-grid-columns="2"] .block-products__list-item .product-card .product-card__badges-list {
    right: 16px;
  }

  .block-products[data-mobile-grid-columns="2"] .block-products__list-item .product-card .product-card__info {
    padding: 0 15px 0;
  }

  .block-products[data-mobile-grid-columns="2"] .block-products__list-item .product-card .product-card__actions {
    padding: 0 15px 15px;
  }

  .block-products[data-mobile-grid-columns="2"] .block-products__list-item .product-card .product-card__buttons {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: -9px;
    margin-top: 16px;
  }

  .block-products[data-mobile-grid-columns="2"] .block-products__list-item .product-card .product-card__buttons>*+* {
    margin-top: 6px;
  }

  [dir=ltr] .block-products[data-mobile-grid-columns="2"] .block-products__list-item .product-card .product-card__buttons>*+* {
    margin-left: 0;
    margin-right: 4px;
  }

  [dir=rtl] .block-products[data-mobile-grid-columns="2"] .block-products__list-item .product-card .product-card__buttons>*+* {
    margin-right: 0;
    margin-left: 4px;
  }

  .block-products[data-mobile-grid-columns="2"] .block-products__list-item .product-card .product-card__buttons .btn {
    font-size: .8125rem;
    height: calc(1.5rem + 2px);
    line-height: 1.25;
    padding: .25rem .5625rem;
    font-weight: 500;
  }

  .block-products[data-mobile-grid-columns="2"] .block-products__list-item .product-card .product-card__buttons .btn.btn-svg-icon {
    width: calc(1.5rem + 2px);
  }

  .block-products[data-mobile-grid-columns="2"] .block-products__list-item .product-card .product-card__addtocart {
    width: 100%;
  }
}

@media (max-width: 374px) and (hover: hover) {
  .block-products[data-mobile-grid-columns="2"] .block-products__list-item .product-card--hidden-actions .product-card__buttons {
    display: none;
  }

  .block-products[data-mobile-grid-columns="2"] .block-products__list-item .product-card--hidden-actions:hover {
    position: relative;
    z-index: 3;
    margin-bottom: -65px;
  }

  .block-products[data-mobile-grid-columns="2"] .block-products__list-item .product-card--hidden-actions:hover .product-card__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (max-width: 374px) and (-ms-high-contrast: active),
(max-width: 374px) and (-ms-high-contrast: none) {
  .block-products[data-mobile-grid-columns="2"] .block-products__list-item .product-card--hidden-actions .product-card__buttons {
    display: none;
  }

  .block-products[data-mobile-grid-columns="2"] .block-products__list-item .product-card--hidden-actions:hover {
    position: relative;
    z-index: 3;
    margin-bottom: -65px;
  }

  .block-products[data-mobile-grid-columns="2"] .block-products__list-item .product-card--hidden-actions:hover .product-card__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (max-width: 419px) {

  .block-products[data-mobile-grid-columns="2"] .block-products__featured+.block-products__list,
  .block-products[data-mobile-grid-columns="2"] .block-products__list+.block-products__featured {
    margin-top: -1px;
  }

  .block-products[data-mobile-grid-columns="2"] .block-products__list {
    margin: 0;
  }

  .block-products[data-mobile-grid-columns="2"] .block-products__list-item {
    margin: 0;
    width: 50%;
  }

  .block-products[data-mobile-grid-columns="2"] .block-products__list-item:nth-child(n+3) {
    margin-top: -1px;
  }

  .block-products[data-mobile-grid-columns="2"] .block-products__list-item:nth-child(2n) .product-card::before {
    width: calc(100% + 1px);
  }

  [dir=ltr] .block-products[data-mobile-grid-columns="2"] .block-products__list-item:nth-child(2n) .product-card::before {
    left: -1px;
  }

  [dir=rtl] .block-products[data-mobile-grid-columns="2"] .block-products__list-item:nth-child(2n) .product-card::before {
    right: -1px;
  }

  .block-products[data-mobile-grid-columns="2"] .block-products__body {
    margin: 0 -15px;
  }

  .block-products[data-mobile-grid-columns="2"] .product-card::before {
    border-radius: 0;
  }

  [dir=ltr] .block-products[data-mobile-grid-columns="2"] .product-card__quickview {
    border-top-right-radius: 0;
  }

  [dir=rtl] .block-products[data-mobile-grid-columns="2"] .product-card__quickview {
    border-top-left-radius: 0;
  }
}

/*---------------------------------------
       CAROUSEL  block-products-carousel
  -----------------------------------------*/

/* .block-products-carousel {
  pointer-events: none;
} */

.product-info-detail {
  font-weight: 600;
}

.block-products-carousel .owl-stage {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  pointer-events: auto;
}

.block-products-carousel .owl-stage-outer {
  margin-bottom: -100px;
}

.block-products-carousel .owl-item {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.product-card::before {
  display: none;
}

.block-products-carousel .block-header {
  pointer-events: auto;
}

.block-products-carousel__slider {
  position: relative;
  z-index: 2;
}

.block-products-carousel__preloader {
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  right: 0;
  bottom: 56px;
  background: rgba(255, 255, 255, 0.9);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0s 0.3s;
  transition: opacity 0.3s, visibility 0s 0.3s;
}

.block-products-carousel__preloader:after {
  display: block;
  content: "";
  position: absolute;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-top-color: rgba(0, 0, 0, 0.5);
  -webkit-transition: border-color 0.1s;
  transition: border-color 0.1s;
  -webkit-animation-name: preloader-animation;
  animation-name: preloader-animation;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  left: calc(50% - 50px);
  top: calc(50% - 50px);
  width: 100px;
  height: 100px;
  border-radius: 50px;
}

.block-products-carousel--loading .block-products-carousel__preloader {
  -webkit-transition-delay: 0s, 0s;
  transition-delay: 0s, 0s;
  opacity: 1;
  visibility: visible;
}

.block-products-carousel__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
}

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
  .block-products-carousel__column {
    display: block;
  }
}

.block-products-carousel__cell {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.block-products-carousel__cell .product-card__image {
  padding: 0;
  margin-bottom: 15px;
}

.block-products-carousel__cell .product-card__image {
  border-radius: var(--border-radius-5);
}

.block-products-carousel__cell+.block-products-carousel__cell {
  margin-top: 14px;
}

.block-products-carousel__cell .product-card {
  width: 100%;
}

.block-products-carousel[data-layout^="grid-"] .product-card .product-card__image {}

.block-products-carousel[data-layout^="grid-"] .product-card .product-card__info {}

.block-products-carousel[data-layout^="grid-"] .product-card .product-card__actions {
  padding: 0;
  display: flex;
  margin-top: 16px;
}

.block-products-carousel[data-layout^="grid-"] .product-card .product-card__description {
  display: none;
}

.block-products-carousel[data-layout^="grid-"] .product-card .product-card__availability {
  display: none;
}

.block-products-carousel[data-layout^="grid-"] .product-card .product-card__features-list {
  display: none;
}

.product-image {
  position: relative;
}

.product__car--buttons {
  position: absolute;
  bottom: 5%;
  left: 0;
  right: 3%;
  display: flex;
  z-index: 9;
  align-items: center;
  justify-content: flex-end;
  transition: 500ms all;



}

.product__car--buttons .form-group .product__option-label {
  display: none;
}

.product__car--buttons button {
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  width: 45px;
  height: 45px;
  border-radius: 100%;
  border: 1px solid #d8d8d8;
  display: flex;
  align-items: center;
  background-color: #d8d8d8;
  justify-content: center;
  background-color: var(--default-theme-off-white);
  transition: 500ms all;
  border: 0;
}

.product__size {
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  border: 1px solid #d8d8d8;
  position: absolute;
  width: 0;
  margin: auto;
  height: 45px;
  transition: 500ms all;
  background-color: var(--default-theme-off-white);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  opacity: 0;
  overflow: hidden;
}

.product__size .product__options {
  margin: 0;
  width: 100%;
  height: 40px;
  display: flex;
  justify-content: space-around;
  transition: 500ms all;
  display: none;
}

.product__size .product__options .product__option {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product__car--buttons:hover .product__options {
  display: flex;
  transition: 500ms all;
  opacity: 1;
}

.category-page .product__size .product__options .input-radio-label__list .outofstock {
  display: none;
}

.product__car--buttons:hover .product__size {
  width: 98%;
  transition: 500ms all;
  opacity: 1;
}

.product__car--buttons button:hover {
  border: 1px solid var(--text-black-color);
  transition: 500ms all;
}

.product__car--buttons button:hover i::before {

  transition: 500ms all;
}

.product__car--buttons button i {
  font-size: 22px;
  transition: 500ms all;
  font-weight: 500;
  color: var(--text-black-color);
}

.product-card__image {
  position: relative;
}

.product__car--buttons button i::before {
  color: var(--text-black-color);
}

.active-wishlist i {
  color: pink;
}

/* .product-card__addtocart {
  transform: translateY(150%);
  transition: 500ms all;
} */

.product-card__addtocart:hover i {
  color: var(--text-black-color);
}

.product-card__wishlist {
  /* transform: translateY(150%); */
  transition: 900ms all;
  top: 5%;
  position: absolute;
  right: 5%;
  z-index: 9;
  opacity: 0;
}

.product-card__wishlist svg {
  fill: var(--default-theme-white);
  width: 30px;
  height: 30px;
  filter: drop-shadow(0 0 0.35rem rgba(149, 157, 165, 0.8));
}

.added-wishlist svg {
  fill: red !important;
}

.product-card:hover .product-card__wishlist {
  opacity: 1;
}

.product-card__quickview {
  transform: translateY(150%);
  transition: 1300ms all;
}


.product-card--hidden-actions:hover .product-card__addtocart {
  transform: translateY(0%);
  transition: 300ms all;
}

.product-card--hidden-actions:hover .product-card__wishlist {
  transform: translateY(0%);
  transition: 700ms all;
}

.product-card--hidden-actions:hover .product-card__quickview {
  transform: translateY(0%);
  transition: 1100ms all;
}

.block-slideshow--layout--full .block-slideshow__body,
.block-slideshow--layout--full .block-slideshow__slide {
  height: 100%;
}


.stock--button {
  text-align: left;
  font-size: 15px !important;
  width: 300px;
  border-right: 1px solid #00000012;
  border-bottom: 1px solid #00000012;
  background-color: var(--default-theme-white);
  padding: 20px 15px 20px;
  position: relative;
}

@media (max-width: 374px) {
  .block-products-carousel[data-layout^="grid-"][data-mobile-grid-columns="2"] .product-card .product-card__image {
    padding: 15px;
  }

  .block-products-carousel[data-layout^="grid-"][data-mobile-grid-columns="2"] .product-card .product-card__badges-list {
    top: 16px;
  }

  [dir="ltr"] .block-products-carousel[data-layout^="grid-"][data-mobile-grid-columns="2"] .product-card .product-card__badges-list {
    left: 16px;
  }

  [dir="rtl"] .block-products-carousel[data-layout^="grid-"][data-mobile-grid-columns="2"] .product-card .product-card__badges-list {
    right: 16px;
  }

  .block-products-carousel[data-layout^="grid-"][data-mobile-grid-columns="2"] .product-card .product-card__info {
    padding: 0 15px 0;
  }

  .block-products-carousel[data-layout^="grid-"][data-mobile-grid-columns="2"] .product-card .product-card__buttons {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: -9px;
    margin-top: 16px;
  }

  .block-products-carousel[data-layout^="grid-"][data-mobile-grid-columns="2"] .product-card .product-card__buttons>*+* {
    margin-top: 6px;
  }

  [dir="ltr"] .block-products-carousel[data-layout^="grid-"][data-mobile-grid-columns="2"] .product-card .product-card__buttons>*+* {
    margin-left: 0;
    margin-right: 4px;
  }

  [dir="rtl"] .block-products-carousel[data-layout^="grid-"][data-mobile-grid-columns="2"] .product-card .product-card__buttons>*+* {
    margin-right: 0;
    margin-left: 4px;
  }

  .block-products-carousel[data-layout^="grid-"][data-mobile-grid-columns="2"] .product-card .product-card__buttons .btn {
    font-size: 0.8125rem;
    height: calc(1.5rem + 2px);
    line-height: 1.25;
    padding: 0.25rem 0.5625rem;
    font-weight: 500;
  }

  .block-products-carousel[data-layout^="grid-"][data-mobile-grid-columns="2"] .product-card .product-card__buttons .btn.btn-svg-icon {
    width: calc(1.5rem + 2px);
  }

  .block-products-carousel[data-layout^="grid-"][data-mobile-grid-columns="2"] .product-card .product-card__addtocart {
    width: 100%;
  }
}

@media (max-width: 374px) and (hover: hover) {
  .block-products-carousel[data-layout^="grid-"][data-mobile-grid-columns="2"] .product-card--hidden-actions .product-card__buttons {
    display: none;
  }

  .block-products-carousel[data-layout^="grid-"][data-mobile-grid-columns="2"] .product-card--hidden-actions:hover {
    position: relative;
    z-index: 3;
    margin-bottom: -65px;
  }

  .block-products-carousel[data-layout^="grid-"][data-mobile-grid-columns="2"] .product-card--hidden-actions:hover .product-card__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (max-width: 374px) and (-ms-high-contrast: active),
(max-width: 374px) and (-ms-high-contrast: none) {
  .block-products-carousel[data-layout^="grid-"][data-mobile-grid-columns="2"] .product-card--hidden-actions .product-card__buttons {
    display: none;
  }

  .block-products-carousel[data-layout^="grid-"][data-mobile-grid-columns="2"] .product-card--hidden-actions:hover {
    position: relative;
    z-index: 3;
    margin-bottom: -65px;
  }

  .block-products-carousel[data-layout^="grid-"][data-mobile-grid-columns="2"] .product-card--hidden-actions:hover .product-card__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (max-width: 419px) {
  .block-products-carousel[data-layout^="grid-"][data-mobile-grid-columns="2"] .block-products-carousel__slider {
    margin: 0 -16px;
  }

  .block-products-carousel[data-layout^="grid-"][data-mobile-grid-columns="2"] .block-products-carousel__cell+.block-products-carousel__cell {
    margin-top: -1px;
  }

  .block-products-carousel[data-layout^="grid-"][data-mobile-grid-columns="2"] .product-card::before {
    border-radius: 0;
  }

  [dir="ltr"] .block-products-carousel[data-layout^="grid-"][data-mobile-grid-columns="2"] .product-card__quickview {
    border-top-right-radius: 0;
  }

  [dir="rtl"] .block-products-carousel[data-layout^="grid-"][data-mobile-grid-columns="2"] .product-card__quickview {
    border-top-left-radius: 0;
  }

  .block-products-carousel[data-layout^="grid-"][data-mobile-grid-columns="2"] .active+.active .product-card::before {
    width: calc(100% + 1px);
  }

  [dir="ltr"] .block-products-carousel[data-layout^="grid-"][data-mobile-grid-columns="2"] .active+.active .product-card::before {
    left: -1px;
  }

  [dir="rtl"] .block-products-carousel[data-layout^="grid-"][data-mobile-grid-columns="2"] .active+.active .product-card::before {
    right: -1px;
  }

  .block-products-carousel[data-layout^="grid-"][data-mobile-grid-columns="2"] .owl-item:hover {
    z-index: 1;
  }
}

.block-products-carousel[data-layout="grid-4"] .product-card .product-card__buttons .btn {
  font-size: 0.875rem;
  height: calc(1.875rem + 2px);
  line-height: 1.25;
  padding: 0.375rem 1rem;
  font-weight: 500;
}

.block-products-carousel[data-layout="grid-4"] .product-card .product-card__buttons .btn.btn-svg-icon {
  width: calc(1.875rem + 2px);
}

@media (hover: hover) {
  .block-products-carousel[data-layout="grid-4"] .product-card--hidden-actions .product-card__buttons {
    display: block;
  }


  .block-products-carousel[data-layout="grid-4"] .product-card--hidden-actions:hover .product-card__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
  .block-products-carousel[data-layout="grid-4"] .product-card--hidden-actions .product-card__buttons {
    display: none;
  }

  .block-products-carousel[data-layout="grid-4"] .product-card--hidden-actions:hover {
    position: relative;
    z-index: 3;
    margin-bottom: -56px;
  }

  .block-products-carousel[data-layout="grid-4"] .product-card--hidden-actions:hover .product-card__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .block-products-carousel[data-layout="grid-4"] .product-card .product-card__image {
    padding: 15px;
  }

  .block-products-carousel[data-layout="grid-4"] .product-card .product-card__badges-list {
    top: 16px;
  }

  [dir="ltr"] .block-products-carousel[data-layout="grid-4"] .product-card .product-card__badges-list {
    left: 16px;
  }

  [dir="rtl"] .block-products-carousel[data-layout="grid-4"] .product-card .product-card__badges-list {
    right: 16px;
  }

  .block-products-carousel[data-layout="grid-4"] .product-card .product-card__info {
    padding: 0 15px 0;
  }

  .block-products-carousel[data-layout="grid-4"] .product-card .product-card__buttons .btn {
    font-size: 0.8125rem;
    height: calc(1.5rem + 2px);
    line-height: 1.25;
    padding: 0.25rem 0.5625rem;
    font-weight: 500;
  }

  .block-products-carousel[data-layout="grid-4"] .product-card .product-card__buttons .btn.btn-svg-icon {
    width: calc(1.5rem + 2px);
  }
}

@media (min-width: 768px) and (max-width: 1199px) and (hover: hover) {
  .block-products-carousel[data-layout="grid-4"] .product-card--hidden-actions .product-card__buttons {
    display: none;
  }

  .block-products-carousel[data-layout="grid-4"] .product-card--hidden-actions:hover {
    position: relative;
    z-index: 3;
    margin-bottom: -50px;
  }

  .block-products-carousel[data-layout="grid-4"] .product-card--hidden-actions:hover .product-card__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (min-width: 768px) and (max-width: 1199px) and (-ms-high-contrast: active),
(min-width: 768px) and (max-width: 1199px) and (-ms-high-contrast: none) {
  .block-products-carousel[data-layout="grid-4"] .product-card--hidden-actions .product-card__buttons {
    display: none;
  }

  .block-products-carousel[data-layout="grid-4"] .product-card--hidden-actions:hover {
    position: relative;
    z-index: 3;
    margin-bottom: -50px;
  }

  .block-products-carousel[data-layout="grid-4"] .product-card--hidden-actions:hover .product-card__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (max-width: 991px) {
  .block-products-carousel[data-layout^="grid-"] .product-card .product-card__actions {
    display: block;
  }

  .product-card__info .product-card__old-price {
    display: block;
  }

  .block-products-carousel__cell .product-card__image {
    margin-bottom: 0px;
  }

  .slider-wrapper .block-header.block-header-tab {
    display: block;
  }

  .slider-wrapper .block-header .block-header__arrows-list {
    display: none;
  }
}

@media (max-width: 575px) and (min-width: 375px) {
  .block-products-carousel[data-layout="grid-4"][data-mobile-grid-columns="2"] .product-card .product-card__image {
    padding: 15px 0;
  }

  .block-products-carousel[data-layout="grid-4"][data-mobile-grid-columns="2"] .product-card .product-card__badges-list {
    top: 16px;
  }

  [dir="ltr"] .block-products-carousel[data-layout="grid-4"][data-mobile-grid-columns="2"] .product-card .product-card__badges-list {
    left: 16px;
  }

  [dir="rtl"] .block-products-carousel[data-layout="grid-4"][data-mobile-grid-columns="2"] .product-card .product-card__badges-list {
    right: 16px;
  }

  .block-products-carousel[data-layout="grid-4"][data-mobile-grid-columns="2"] .product-card .product-card__info {
    padding: 0 15px 0;
  }

  .block-products-carousel[data-layout="grid-4"][data-mobile-grid-columns="2"] .product-card .product-card__buttons .btn {
    font-size: 0.8125rem;
    height: calc(1.5rem + 2px);
    line-height: 1.25;
    padding: 0.25rem 0.5625rem;
    font-weight: 500;
  }

  .block-products-carousel[data-layout="grid-4"][data-mobile-grid-columns="2"] .product-card .product-card__buttons .btn.btn-svg-icon {
    width: calc(1.5rem + 2px);
  }
}

@media (max-width: 575px) and (min-width: 375px) and (hover: hover) {
  .block-products-carousel[data-layout="grid-4"][data-mobile-grid-columns="2"] .product-card--hidden-actions .product-card__buttons {
    display: none;
  }

  .block-products-carousel[data-layout="grid-4"][data-mobile-grid-columns="2"] .product-card--hidden-actions:hover {
    position: relative;
    z-index: 3;
    margin-bottom: -50px;
  }

  .block-products-carousel[data-layout="grid-4"][data-mobile-grid-columns="2"] .product-card--hidden-actions:hover .product-card__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (max-width: 575px) and (min-width: 375px) and (-ms-high-contrast: active),
(max-width: 575px) and (min-width: 375px) and (-ms-high-contrast: none) {
  .block-products-carousel[data-layout="grid-4"][data-mobile-grid-columns="2"] .product-card--hidden-actions .product-card__buttons {
    display: none;
  }

  .block-products-carousel[data-layout="grid-4"][data-mobile-grid-columns="2"] .product-card--hidden-actions:hover {
    position: relative;
    z-index: 3;
    margin-bottom: -50px;
  }

  .block-products-carousel[data-layout="grid-4"][data-mobile-grid-columns="2"] .product-card--hidden-actions:hover .product-card__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (max-width: 575px) {
  .block-products-carousel[data-layout="grid-4"]:not([data-mobile-grid-columns="2"]) .product-card .product-card__image {
    padding: 15px 0;
  }

  .block-products-carousel[data-layout="grid-4"]:not([data-mobile-grid-columns="2"]) .product-card .product-card__badges-list {
    top: 16px;
  }

  [dir="ltr"] .block-products-carousel[data-layout="grid-4"]:not([data-mobile-grid-columns="2"]) .product-card .product-card__badges-list {
    left: 16px;
  }

  [dir="rtl"] .block-products-carousel[data-layout="grid-4"]:not([data-mobile-grid-columns="2"]) .product-card .product-card__badges-list {
    right: 16px;
  }

  .block-products-carousel[data-layout="grid-4"]:not([data-mobile-grid-columns="2"]) .product-card .product-card__info {
    padding: 0 15px 0;
  }

  .block-products-carousel[data-layout="grid-4"]:not([data-mobile-grid-columns="2"]) .product-card .product-card__actions {
    padding: 0;
  }

  .block-products-carousel[data-layout="grid-4"]:not([data-mobile-grid-columns="2"]) .product-card .product-card__buttons .btn {
    font-size: 0.8125rem;
    height: calc(1.5rem + 2px);
    line-height: 1.25;
    padding: 0.25rem 0.5625rem;
    font-weight: 500;
  }

  .block-products-carousel[data-layout="grid-4"]:not([data-mobile-grid-columns="2"]) .product-card .product-card__buttons .btn.btn-svg-icon {
    width: calc(1.5rem + 2px);
  }
}

@media (max-width: 575px) and (hover: hover) {
  .block-products-carousel[data-layout="grid-4"]:not([data-mobile-grid-columns="2"]) .product-card--hidden-actions .product-card__buttons {
    display: none;
  }

  .block-products-carousel[data-layout="grid-4"]:not([data-mobile-grid-columns="2"]) .product-card--hidden-actions:hover {
    position: relative;
    z-index: 3;
    margin-bottom: -50px;
  }

  .block-products-carousel[data-layout="grid-4"]:not([data-mobile-grid-columns="2"]) .product-card--hidden-actions:hover .product-card__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (max-width: 575px) and (-ms-high-contrast: active),
(max-width: 575px) and (-ms-high-contrast: none) {
  .block-products-carousel[data-layout="grid-4"]:not([data-mobile-grid-columns="2"]) .product-card--hidden-actions .product-card__buttons {
    display: none;
  }

  .block-products-carousel[data-layout="grid-4"]:not([data-mobile-grid-columns="2"]) .product-card--hidden-actions:hover {
    position: relative;
    z-index: 3;
    margin-bottom: -50px;
  }

  .block-products-carousel[data-layout="grid-4"]:not([data-mobile-grid-columns="2"]) .product-card--hidden-actions:hover .product-card__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (min-width: 375px) {

  .block-products-carousel[data-layout="grid-4-sm"][data-mobile-grid-columns="2"] .product-card .product-card__badges-list,
  .block-products-carousel[data-layout="grid-5"][data-mobile-grid-columns="2"] .product-card .product-card__badges-list {
    top: 16px;
  }

  [dir="ltr"] .block-products-carousel[data-layout="grid-4-sm"][data-mobile-grid-columns="2"] .product-card .product-card__badges-list,
  [dir="ltr"] .block-products-carousel[data-layout="grid-5"][data-mobile-grid-columns="2"] .product-card .product-card__badges-list {
    left: 16px;
  }

  [dir="rtl"] .block-products-carousel[data-layout="grid-4-sm"][data-mobile-grid-columns="2"] .product-card .product-card__badges-list,
  [dir="rtl"] .block-products-carousel[data-layout="grid-5"][data-mobile-grid-columns="2"] .product-card .product-card__badges-list {
    right: 16px;
  }

  .block-products-carousel[data-layout="grid-4-sm"][data-mobile-grid-columns="2"] .product-card .product-card__info,
  .block-products-carousel[data-layout="grid-5"][data-mobile-grid-columns="2"] .product-card .product-card__info {
    padding: 0 15px 0;
  }

  .block-products-carousel[data-layout="grid-4-sm"][data-mobile-grid-columns="2"] .product-card .product-card__actions,
  .block-products-carousel[data-layout="grid-5"][data-mobile-grid-columns="2"] .product-card .product-card__actions {
    padding: 0 15px 15px;
  }

  .block-products-carousel[data-layout="grid-4-sm"][data-mobile-grid-columns="2"] .product-card .product-card__buttons .btn,
  .block-products-carousel[data-layout="grid-5"][data-mobile-grid-columns="2"] .product-card .product-card__buttons .btn {
    font-size: 0.8125rem;
    height: calc(1.5rem + 2px);
    line-height: 1.25;
    padding: 0.25rem 0.5625rem;
    font-weight: 500;
  }

  .block-products-carousel[data-layout="grid-4-sm"][data-mobile-grid-columns="2"] .product-card .product-card__buttons .btn.btn-svg-icon,
  .block-products-carousel[data-layout="grid-5"][data-mobile-grid-columns="2"] .product-card .product-card__buttons .btn.btn-svg-icon {
    width: calc(1.5rem + 2px);
  }
}

@media (min-width: 375px) and (hover: hover) {

  .block-products-carousel[data-layout="grid-4-sm"][data-mobile-grid-columns="2"] .product-card--hidden-actions .product-card__buttons,
  .block-products-carousel[data-layout="grid-5"][data-mobile-grid-columns="2"] .product-card--hidden-actions .product-card__buttons {
    display: none;
  }

  .block-products-carousel[data-layout="grid-4-sm"][data-mobile-grid-columns="2"] .product-card--hidden-actions:hover,
  .block-products-carousel[data-layout="grid-5"][data-mobile-grid-columns="2"] .product-card--hidden-actions:hover {
    position: relative;
    z-index: 3;
    margin-bottom: -50px;
  }

  .block-products-carousel[data-layout="grid-4-sm"][data-mobile-grid-columns="2"] .product-card--hidden-actions:hover .product-card__buttons,
  .block-products-carousel[data-layout="grid-5"][data-mobile-grid-columns="2"] .product-card--hidden-actions:hover .product-card__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (min-width: 375px) and (-ms-high-contrast: active),
(min-width: 375px) and (-ms-high-contrast: none) {

  .block-products-carousel[data-layout="grid-4-sm"][data-mobile-grid-columns="2"] .product-card--hidden-actions .product-card__buttons,
  .block-products-carousel[data-layout="grid-5"][data-mobile-grid-columns="2"] .product-card--hidden-actions .product-card__buttons {
    display: none;
  }

  .block-products-carousel[data-layout="grid-4-sm"][data-mobile-grid-columns="2"] .product-card--hidden-actions:hover,
  .block-products-carousel[data-layout="grid-5"][data-mobile-grid-columns="2"] .product-card--hidden-actions:hover {
    position: relative;
    z-index: 3;
    margin-bottom: -50px;
  }

  .block-products-carousel[data-layout="grid-4-sm"][data-mobile-grid-columns="2"] .product-card--hidden-actions:hover .product-card__buttons,
  .block-products-carousel[data-layout="grid-5"][data-mobile-grid-columns="2"] .product-card--hidden-actions:hover .product-card__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.block-products-carousel[data-layout="grid-4-sm"]:not([data-mobile-grid-columns="2"]) .product-card .product-card__image,
.block-products-carousel[data-layout="grid-5"]:not([data-mobile-grid-columns="2"]) .product-card .product-card__image {
  padding: 15px;
}

.block-products-carousel[data-layout="grid-4-sm"]:not([data-mobile-grid-columns="2"]) .product-card .product-card__badges-list,
.block-products-carousel[data-layout="grid-5"]:not([data-mobile-grid-columns="2"]) .product-card .product-card__badges-list {
  top: 16px;
}

[dir="ltr"] .block-products-carousel[data-layout="grid-4-sm"]:not([data-mobile-grid-columns="2"]) .product-card .product-card__badges-list,
[dir="ltr"] .block-products-carousel[data-layout="grid-5"]:not([data-mobile-grid-columns="2"]) .product-card .product-card__badges-list {
  left: 16px;
}

[dir="rtl"] .block-products-carousel[data-layout="grid-4-sm"]:not([data-mobile-grid-columns="2"]) .product-card .product-card__badges-list,
[dir="rtl"] .block-products-carousel[data-layout="grid-5"]:not([data-mobile-grid-columns="2"]) .product-card .product-card__badges-list {
  right: 16px;
}

.block-products-carousel[data-layout="grid-4-sm"]:not([data-mobile-grid-columns="2"]) .product-card .product-card__info,
.block-products-carousel[data-layout="grid-5"]:not([data-mobile-grid-columns="2"]) .product-card .product-card__info {
  padding: 0 15px 0;
}

.block-products-carousel[data-layout="grid-4-sm"]:not([data-mobile-grid-columns="2"]) .product-card .product-card__actions,
.block-products-carousel[data-layout="grid-5"]:not([data-mobile-grid-columns="2"]) .product-card .product-card__actions {
  padding: 0 15px 15px;
}

.block-products-carousel[data-layout="grid-4-sm"]:not([data-mobile-grid-columns="2"]) .product-card .product-card__buttons .btn,
.block-products-carousel[data-layout="grid-5"]:not([data-mobile-grid-columns="2"]) .product-card .product-card__buttons .btn {
  font-size: 0.8125rem;
  height: calc(1.5rem + 2px);
  line-height: 1.25;
  padding: 0.25rem 0.5625rem;
  font-weight: 500;
}

.block-products-carousel[data-layout="grid-4-sm"]:not([data-mobile-grid-columns="2"]) .product-card .product-card__buttons .btn.btn-svg-icon,
.block-products-carousel[data-layout="grid-5"]:not([data-mobile-grid-columns="2"]) .product-card .product-card__buttons .btn.btn-svg-icon {
  width: calc(1.5rem + 2px);
}

@media (hover: hover) {

  .block-products-carousel[data-layout="grid-4-sm"]:not([data-mobile-grid-columns="2"]) .product-card--hidden-actions .product-card__buttons,
  .block-products-carousel[data-layout="grid-5"]:not([data-mobile-grid-columns="2"]) .product-card--hidden-actions .product-card__buttons {
    display: none;
  }

  .block-products-carousel[data-layout="grid-4-sm"]:not([data-mobile-grid-columns="2"]) .product-card--hidden-actions:hover,
  .block-products-carousel[data-layout="grid-5"]:not([data-mobile-grid-columns="2"]) .product-card--hidden-actions:hover {
    position: relative;
    z-index: 3;
    margin-bottom: -50px;
  }

  .block-products-carousel[data-layout="grid-4-sm"]:not([data-mobile-grid-columns="2"]) .product-card--hidden-actions:hover .product-card__buttons,
  .block-products-carousel[data-layout="grid-5"]:not([data-mobile-grid-columns="2"]) .product-card--hidden-actions:hover .product-card__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {

  .block-products-carousel[data-layout="grid-4-sm"]:not([data-mobile-grid-columns="2"]) .product-card--hidden-actions .product-card__buttons,
  .block-products-carousel[data-layout="grid-5"]:not([data-mobile-grid-columns="2"]) .product-card--hidden-actions .product-card__buttons {
    display: none;
  }

  .block-products-carousel[data-layout="grid-4-sm"]:not([data-mobile-grid-columns="2"]) .product-card--hidden-actions:hover,
  .block-products-carousel[data-layout="grid-5"]:not([data-mobile-grid-columns="2"]) .product-card--hidden-actions:hover {
    position: relative;
    z-index: 3;
    margin-bottom: -50px;
  }

  .block-products-carousel[data-layout="grid-4-sm"]:not([data-mobile-grid-columns="2"]) .product-card--hidden-actions:hover .product-card__buttons,
  .block-products-carousel[data-layout="grid-5"]:not([data-mobile-grid-columns="2"]) .product-card--hidden-actions:hover .product-card__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.block-products-carousel[data-layout="horizontal"] .product-card {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.block-products-carousel[data-layout="horizontal"] .product-card .product-card__image {
  width: 120px;
  padding: 16px;
}

.block-products-carousel[data-layout="horizontal"] .product-card .product-card__badges-list {
  top: 10px;
}

[dir="ltr"] .block-products-carousel[data-layout="horizontal"] .product-card .product-card__badges-list {
  left: 10px;
}

[dir="rtl"] .block-products-carousel[data-layout="horizontal"] .product-card .product-card__badges-list {
  right: 10px;
}

.block-products-carousel[data-layout="horizontal"] .product-card .product-card__badge {
  padding: 3px 5px 2px;
}

.block-products-carousel[data-layout="horizontal"] .product-card .product-card__info {
  padding-top: 14px;
  padding-bottom: 42px;
  width: 100%;
}

[dir="ltr"] .block-products-carousel[data-layout="horizontal"] .product-card .product-card__info {
  padding-left: 0;
  padding-right: 30px;
}

[dir="rtl"] .block-products-carousel[data-layout="horizontal"] .product-card .product-card__info {
  padding-right: 0;
  padding-left: 30px;
}

.block-products-carousel[data-layout="horizontal"] .product-card .product-card__name {
  overflow: hidden;
  max-height: 38px;
}

.block-products-carousel[data-layout="horizontal"] .product-card .product-card__rating {
  white-space: nowrap;
}

.block-products-carousel[data-layout="horizontal"] .product-card .product-card__description {
  display: none;
}

.block-products-carousel[data-layout="horizontal"] .product-card .product-card__availability {
  display: none;
}

.block-products-carousel[data-layout="horizontal"] .product-card .product-card__buttons {
  display: none;
}

.block-products-carousel[data-layout="horizontal"] .product-card .product-card__actions {
  position: absolute;
  bottom: 18px;
}

[dir="ltr"] .block-products-carousel[data-layout="horizontal"] .product-card .product-card__actions {
  left: 120px;
}

[dir="rtl"] .block-products-carousel[data-layout="horizontal"] .product-card .product-card__actions {
  right: 120px;
}

.block-products-carousel[data-layout="horizontal"] .product-card .product-card__features-list {
  display: none;
}

/*
// .block-sidebar
*/

.block-sidebar__item+.block-sidebar__item {
  margin-top: 30px;
}

[dir=ltr] .block-sidebar--position--start {
  padding-right: 20px;
}

[dir=rtl] .block-sidebar--position--start {
  padding-left: 20px;
}

@media (max-width: 1199px) {
  [dir=ltr] .block-sidebar--position--start {
    padding-right: 6px;
  }

  [dir=rtl] .block-sidebar--position--start {
    padding-left: 6px;
  }
}

@media (max-width: 991px) {
  [dir=ltr] .block-sidebar--position--start {
    padding-right: 0;
  }

  [dir=rtl] .block-sidebar--position--start {
    padding-left: 0;
  }
}

[dir=ltr] .block-sidebar--position--end {
  padding-left: 20px;
}

[dir=rtl] .block-sidebar--position--end {
  padding-right: 20px;
}

@media (max-width: 1199px) {
  [dir=ltr] .block-sidebar--position--end {
    padding-left: 6px;
  }

  [dir=rtl] .block-sidebar--position--end {
    padding-right: 6px;
  }
}

@media (max-width: 991px) {
  [dir=ltr] .block-sidebar--position--end {
    padding-left: 0;
  }

  [dir=rtl] .block-sidebar--position--end {
    padding-right: 0;
  }
}

.block-sidebar__header {
  height: 55px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid #ebebeb;
  display: none;
}

.block-sidebar__title {
  padding: 0 20px;
  font-weight: 700;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.block-sidebar__close {
  border: none;
  background: transparent;
  height: 54px;
  width: 55px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  fill: #999;
  -webkit-transition: fill .2s;
  transition: fill .2s;
}

[dir=ltr] .block-sidebar__close {
  border-left: 1px solid #ebebeb;
}

[dir=rtl] .block-sidebar__close {
  border-right: 1px solid #ebebeb;
}

.block-sidebar__close:focus {
  outline: none;
}

.block-sidebar__close:focus,
.block-sidebar__close:hover {
  fill: #3d464d;
}

.block-sidebar--offcanvas--always {
  visibility: hidden;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  -webkit-transition: visibility 0s 0.3s;
  transition: visibility 0s 0.3s;
}

[dir=ltr] .block-sidebar--offcanvas--always {
  left: 0;
}

[dir=rtl] .block-sidebar--offcanvas--always {
  right: 0;
}

.block-sidebar--offcanvas--always .block-sidebar__backdrop {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: #3d464d;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

[dir=ltr] .block-sidebar--offcanvas--always .block-sidebar__backdrop {
  left: 0;
}

[dir=rtl] .block-sidebar--offcanvas--always .block-sidebar__backdrop {
  right: 0;
}

.block-sidebar--offcanvas--always .block-sidebar__body {
  position: absolute;
  top: 0;
  width: 290px;
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: #fff;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow-x: hidden;
}

[dir=ltr] .block-sidebar--offcanvas--always .block-sidebar__body {
  left: 0;
  -webkit-transform: translateX(-100%) translateX(-30px);
  transform: translateX(-100%) translateX(-30px);
}

[dir=rtl] .block-sidebar--offcanvas--always .block-sidebar__body {
  right: 0;
  -webkit-transform: translateX(100%) translateX(30px);
  transform: translateX(100%) translateX(30px);
}

.block-sidebar--offcanvas--always .block-sidebar__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.block-sidebar--offcanvas--always.block-sidebar--open {
  visibility: visible;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.block-sidebar--offcanvas--always.block-sidebar--open .block-sidebar__backdrop {
  opacity: .9;
}

.block-sidebar--offcanvas--always.block-sidebar--open .block-sidebar__body {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

@media (min-width: 992px) {
  .view-options--offcanvas--mobile .view-options__filters-button {
    display: none;
  }
}

@media (max-width: 991px) {
  .block-sidebar--offcanvas--mobile {
    visibility: hidden;
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    -webkit-transition: visibility 0s 0.3s;
    transition: visibility 0s 0.3s;
  }

  [dir=ltr] .block-sidebar--offcanvas--mobile {
    left: 0;
  }

  [dir=rtl] .block-sidebar--offcanvas--mobile {
    right: 0;
  }

  .block-sidebar--offcanvas--mobile .block-sidebar__backdrop {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: #3d464d;
    opacity: 0;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }

  [dir=ltr] .block-sidebar--offcanvas--mobile .block-sidebar__backdrop {
    left: 0;
  }

  [dir=rtl] .block-sidebar--offcanvas--mobile .block-sidebar__backdrop {
    right: 0;
  }

  .block-sidebar--offcanvas--mobile .block-sidebar__body {
    position: absolute;
    top: 0;
    width: 300px;
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: #fff;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  [dir=ltr] .block-sidebar--offcanvas--mobile .block-sidebar__body {
    left: 0;
    -webkit-transform: translateX(-100%) translateX(-30px);
    transform: translateX(-100%) translateX(-30px);
  }

  [dir=rtl] .block-sidebar--offcanvas--mobile .block-sidebar__body {
    right: 0;
    -webkit-transform: translateX(100%) translateX(30px);
    transform: translateX(100%) translateX(30px);
  }

  .block-sidebar--offcanvas--mobile .block-sidebar__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .block-sidebar--offcanvas--mobile.block-sidebar--open {
    visibility: visible;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
  }

  .block-sidebar--offcanvas--mobile.block-sidebar--open .block-sidebar__backdrop {
    opacity: .9;
  }

  .block-sidebar--offcanvas--mobile.block-sidebar--open .block-sidebar__body {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

/* ------------------------------------------
                         SLIDER  
  ----------------------------------------------*/
.slider-wrapper .block-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.block-header-details {
  margin-bottom: 0;
  border-left: 1px solid rgba(0, 0, 0, 0.15);
  padding: 5px 0 5px 25px;
  margin-left: 25px;
  font-size: 18px;
  font-weight: 400;
  color: #888;
}

.block-header__arrow svg {
  color: var(--default-theme-dark-blue);
  fill: var(--default-theme-dark-blue);
}

.block-slideshow {
  margin: 0;
  position: relative;
}

.block-slideshow .owl-carousel .owl-dots {
  bottom: 16px;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 2px;
  border-radius: 9px;
}

[dir="ltr"] .block-slideshow .owl-carousel .owl-dots {
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

[dir="rtl"] .block-slideshow .owl-carousel .owl-dots {
  right: 50%;
  -webkit-transform: translateX(50%);
  transform: translateX(50%);
}

.block-slideshow .owl-carousel .owl-dot {
  width: 10px;
  height: 3px;
  border-radius: 5px;
  background: #e0e0e0;
}

.block-slideshow .owl-carousel .owl-dot:focus {
  outline: none;
}

.block-slideshow .owl-carousel .owl-dot:hover {
  background: #d1d1d1;
}

.block-slideshow .owl-carousel .owl-dot.active {
  background: var(--default-theme-dark-blue);
  width: 20px;
}

.block-slideshow .owl-carousel .owl-nav {
  position: absolute;
  top: 46%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0;
  transition: 500ms all;
}

.block-slideshow:hover .owl-carousel .owl-nav {
  opacity: 1;
  transition: 500ms all;
}

.block-slideshow .owl-carousel .owl-nav button {
  background-color: transparent;
  width: 80px;
  height: 80px;
  color: var(--default-theme-white);
  border-radius: 100%;
  font-size: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.block-slideshow .owl-carousel .owl-nav button span {
  opacity: 0;
}

.block-slideshow .owl-carousel .owl-nav button.owl-prev::before {
  opacity: 0.8;
  content: " ";
  background-image: url(../content/images/right-arrow.png);
  background-repeat: no-repeat;
  transform: rotate(180deg);
  font-family: "annimex-icons";
  color: var(--text-white-color);
  font-size: 80px;
  width: 100%;
  height: 100%;
}

.block-slideshow .owl-carousel .owl-nav button.owl-next::before {
  content: " ";
  background-image: url("../content/images/right-arrow.png");
  background-repeat: no-repeat;
  font-family: "annimex-icons";
  color: var(--text-white-color);
  font-size: 80px;
  opacity: 0.8;
  width: 100%;
  height: 100%;
}

[dir="ltr"] .block-slideshow .owl-carousel .owl-dot+.owl-dot {
  margin-left: 6px;
}

[dir="rtl"] .block-slideshow .owl-carousel .owl-dot+.owl-dot {
  margin-right: 6px;
}

.block-slideshow__slide {
  position: relative;
  display: block;
  color: inherit;
}

.block-slideshow__slide:hover {
  color: inherit;
}

.block-slideshow__slide-image {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
}

.block-slideshow__slide-image--mobile {
  display: none;
}

.block-slideshow__slide-content {
  position: absolute;
  bottom: 46px;
}

[dir="ltr"] .block-slideshow__slide-content {
  left: 46px;
}

[dir="rtl"] .block-slideshow__slide-content {
  right: 46px;
}

#Slider_Content .owl-carousel .owl-nav.disabled {
  display: flex !important;
  opacity: 0;
  transition: 500ms all;
}

#Slider_Content:hover .owl-carousel .owl-nav.disabled {
  opacity: 1;
  transition: 500ms all;
}

#Slider_Content .owl-carousel.owl-drag .owl-item.active .block-slideshow__slide-title {

  animation: fadeInUp;
  animation-duration: 1s;/
}

#Slider_Content .owl-carousel.owl-drag .owl-item.active .block-slideshow__slide-details {

  animation: fadeInUp;
  animation-duration: 2s;/
}

#Slider_Content .owl-carousel.owl-drag .owl-item.active .block-slideshow__slide-button {
  animation: fadeInUp;
  animation-duration: 3s;/
}

.block-slideshow__slide-title {
  font-size: 30px;
  line-height: 34px;

  margin-bottom: 12px;
  opacity: 0;

}

.block-slideshow__slide-details {
  font-size: 40px;
  font-weight: 400;
  line-height: 1.625;
  font-weight: 700;
}

.block-slideshow__slide-button {
  margin-top: 40px;
  opacity: 0;

  background-color: var(--default-theme-dark-blue);
  color: var(--text-white-color);
  width: 200px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}

.block-slideshow .active .block-slideshow__slide-title,
.block-slideshow .active .block-slideshow__slide-text,
.block-slideshow .active .block-slideshow__slide-button {
  opacity: 1;
  -webkit-transform: none;
  transform: none;
}

.block-slideshow__slide-image--desktop {
  background-size: cover;
  position: relative;
}

.block-header-tab {
  display: flex;
  flex-direction: column;
}

.block-header-tab .block-header__groups-list {
  margin: 20px 0;
}

@media (min-width: 768px) {


  .block-slideshow--layout--full .block-slideshow__slide-content {
    bottom: 30%;
  }

  [dir="ltr"] .block-slideshow--layout--full .block-slideshow__slide-content {
    left: 15%;
  }

  [dir="rtl"] .block-slideshow--layout--full .block-slideshow__slide-content {
    right: 15%;
  }

  .block-slideshow--layout--full .block-slideshow__slide-title {
    margin-bottom: 16px;
    line-height: 36px;
  }

  .block-slideshow--layout--full .block-slideshow__slide-button {
    margin-top: 48px;
  }


}

@media (min-width: 992px) and (max-width: 1199px) {
  .block-slideshow--layout--full .block-slideshow__slide-image--desktop {
    background-position: -70px top;
  }

  [dir="ltr"] .block-slideshow--layout--full .block-slideshow__slide-content {
    left: 56px;
  }

  [dir="rtl"] .block-slideshow--layout--full .block-slideshow__slide-content {
    right: 56px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .block-slideshow--layout--full .block-slideshow__slide-image--desktop {
    background-position: -190px top;
  }

  .block-slideshow--layout--full .block-slideshow__slide-content {
    bottom: 56px;
  }

  [dir="ltr"] .block-slideshow--layout--full .block-slideshow__slide-content {
    left: 48px;
  }

  [dir="rtl"] .block-slideshow--layout--full .block-slideshow__slide-content {
    right: 48px;
  }

  .block-slideshow--layout--full .block-slideshow__slide-title {
    margin-bottom: 8px;
  }

  .block-slideshow--layout--full .block-slideshow__slide-button {
    margin-top: 40px;
  }
}

.block-slideshow--layout--with-departments .block-slideshow__body {
  margin-top: 15px;
  height: 395px;
}

.block-slideshow--layout--with-departments .block-slideshow__slide {
  height: 395px;
}

@media (min-width: 992px) {
  [dir="ltr"] .block-slideshow--layout--with-departments .block-slideshow__body {
    margin-left: -15px;
  }

  [dir="rtl"] .block-slideshow--layout--with-departments .block-slideshow__body {
    margin-right: -15px;
  }
}

@media (max-width: 991px) {
  .block-slideshow--layout--with-departments .block-slideshow__slide-button .btn {
    font-size: 0.875rem;
    height: calc(1.875rem + 2px);
    line-height: 1.25;
    padding: 0.375rem 1rem;
    font-weight: 500;
  }

  .block-slideshow--layout--with-departments .block-slideshow__slide-button .btn.btn-svg-icon {
    width: calc(1.875rem + 2px);
  }
}

@media (max-width: 767px) {

  .block-slideshow__body,
  .block-slideshow__slide {
    height: 395px;
  }

  .block-slideshow__slide-image--mobile {
    background-position: top center;
    display: block;
    height: 100%;
  }

  .block-slideshow__slide-content {
    top: 30px;
    text-align: center;
  }

  [dir="ltr"] .block-slideshow__slide-content {
    left: 5%;
    right: 5%;
  }

  [dir="rtl"] .block-slideshow__slide-content {
    right: 5%;
    left: 5%;
  }

  .block-slideshow__slide-title {
    font-size: 26px;
    line-height: 32px;
  }

  .block-slideshow__slide-text {
    display: none;
  }

  .block-slideshow__slide-button {
    margin-top: 24px;
  }

  .block-slideshow__slide-button .btn {
    font-size: 0.875rem;
    height: calc(1.875rem + 2px);
    line-height: 1.25;
    padding: 0.375rem 1rem;
    font-weight: 500;
  }

  .block-slideshow__slide-button .btn.btn-svg-icon {
    width: calc(1.875rem + 2px);
  }

  .tab__section .block-products-carousel .owl-stage {
    margin-bottom: 0;
  }

  .product__car--buttons {
    display: none;
  }
}


/* ----------------------------------------
// Widgets
// ---------------------------------------- */

/*
// .widget
*/

.widget__title {
  margin-bottom: 20px;
  font-size: 20px;
}

/*
// .widget-aboutus
*/

.widget-aboutus {
  border: 2px solid #f0f0f0;
  border-radius: 2px;
  padding: 28px;
}

.widget-aboutus__socials {
  display: block;
  margin-top: 20px;
}

/*
// .widget-categories
*/

.widget-categories {
  border: 2px solid #f0f0f0;
  border-radius: 2px;
  padding: 28px;
}

.widget-categories__list {
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: 18px;
  font-size: 16px;
}

.widget-categories__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.widget-categories__row a {
  position: relative;
  display: block;
  color: inherit;
  padding-top: 7px;
  padding-bottom: 7px;
  fill: #ccc;
  -webkit-transition: .15s color;
  transition: .15s color;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

[dir=ltr] .widget-categories__row a {
  padding-left: 16px;
  padding-right: 10px;
}

[dir=rtl] .widget-categories__row a {
  padding-right: 16px;
  padding-left: 10px;
}

.widget-categories__row a:hover {
  color: #1a66ff;
}

.widget-categories__arrow {
  position: absolute;
  top: calc(50% - 5px);
}

[dir=ltr] .widget-categories__arrow {
  left: 0;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

[dir=rtl] .widget-categories__arrow {
  right: 0;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.widget-categories__expander {
  margin-top: 1px;
  width: 28px;
  height: 28px;
  position: relative;
  border: none;
  border-radius: 1.5px;
  cursor: pointer;
  padding: 0;
  background: transparent;
  color: #ccc;
  -webkit-transition: all .2s;
  transition: all .2s;
}

[dir=ltr] .widget-categories__expander {
  margin-right: -10px;
}

[dir=rtl] .widget-categories__expander {
  margin-left: -10px;
}

.widget-categories__expander:focus,
.widget-categories__expander:hover {
  background: #f2f2f2;
  color: #a6a6a6;
}

.widget-categories__expander:focus {
  outline: none;
}

.widget-categories__expander::before,
.widget-categories__expander::after {
  display: block;
  position: absolute;
  content: '';
  background: currentColor;
}

.widget-categories__expander::before {
  width: 8px;
  height: 2px;
  top: calc(50% - 1px);
}

[dir=ltr] .widget-categories__expander::before {
  left: calc(50% - 4px);
}

[dir=rtl] .widget-categories__expander::before {
  right: calc(50% - 4px);
}

.widget-categories__expander::after {
  width: 2px;
  height: 8px;
  top: calc(50% - 4px);
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}

[dir=ltr] .widget-categories__expander::after {
  left: calc(50% - 1px);
}

[dir=rtl] .widget-categories__expander::after {
  right: calc(50% - 1px);
}

.widget-categories__subs {
  overflow: hidden;
  height: 0;
  opacity: 0;
  visibility: hidden;
  font-size: 15px;
  line-height: 26px;
  -webkit-transition: height 0.2s, opacity 0.2s, visibility 0s 0.2s;
  transition: height 0.2s, opacity 0.2s, visibility 0s 0.2s;
}

.widget-categories__subs ul {
  list-style: none;
  padding: 6px 0 8px 0;
  margin: 0;
}

.widget-categories__subs li {
  position: relative;
}

[dir=ltr] .widget-categories__subs li {
  padding-left: 32px;
}

[dir=rtl] .widget-categories__subs li {
  padding-right: 32px;
}

.widget-categories__subs li::before {
  content: '';
  display: block;
  position: absolute;
  top: 10px;
  width: 6px;
  height: 6px;
  border: 1px solid #ccc;
  border-radius: 3px;
}

[dir=ltr] .widget-categories__subs li::before {
  left: 16px;
}

[dir=rtl] .widget-categories__subs li::before {
  right: 16px;
}

.widget-categories__subs a {
  color: inherit;
  -webkit-transition: .15s color;
  transition: .15s color;
}

.widget-categories__subs a:hover {
  color: #1a66ff;
}

.widget-categories__item--open .widget-categories__expander::after {
  -webkit-transform: rotateZ(90deg);
  transform: rotateZ(90deg);
}

.widget-categories__item--open .widget-categories__subs {
  height: auto;
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: 0s, 0s, 0s;
  transition-delay: 0s, 0s, 0s;
}

.widget-categories--location--shop {
  padding: 20px;
}

/*
// .widget-comments
*/

.widget-comments {
  border: 2px solid #f0f0f0;
  border-radius: 2px;
  padding: 28px;
}

.widget-comments a {
  color: inherit;
  -webkit-transition: color .2s;
  transition: color .2s;
}

.widget-comments a:hover {
  color: #1a66ff;
}

.widget-comments__list {
  list-style: none;
  margin: 0;
  padding: 8px 0 4px;
}

.widget-comments__item+.widget-comments__item {
  margin-top: 26px;
}

.widget-comments__author {
  font-size: 15px;
  line-height: 18px;
}

.widget-comments__author a {
  border-bottom: 2px solid #ebebeb;
  -webkit-transition: border .2s;
  transition: border .2s;
}

.widget-comments__author a:hover {
  border-color: rgba(26, 102, 255, 0.8);
}

.widget-comments__content {
  margin-top: 12px;
  font-size: 15px;
  line-height: 20px;
}

.widget-comments__meta {
  margin-top: 4px;
  font-size: 13px;
  color: #999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
}

.widget-comments__date {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.widget-comments__name {
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
}

[dir=ltr] .widget-comments__name {
  padding-left: 20px;
}

[dir=rtl] .widget-comments__name {
  padding-right: 20px;
}

.widget-comments__name::before {
  position: absolute;
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  background: currentColor;
  border-radius: 2px;
  top: 8px;
}

[dir=ltr] .widget-comments__name::before {
  left: 8px;
}

[dir=rtl] .widget-comments__name::before {
  right: 8px;
}

/*
// .widget-filters
*/

/* .widget-filters {
  padding: 30px 30px 10px 0;
} */

.widget-filters__item {
  /* padding: 15px 20px;
  border-bottom: 2px solid #f0f0f0;
  background-color: var(--default-theme-white); */
}


.widget-filters__item:first-child {}

.widget-filters__actions {

  display: flex;
  justify-content: center;
  padding: 0;
  width: 300px;
}

#filter-Clears {
  margin: 0 20px;
  text-align: left;
}

[dir=ltr] .widget-filters__actions>.btn+.btn {
  margin-left: 8px;
}

[dir=rtl] .widget-filters__actions>.btn+.btn {
  margin-right: 8px;
}

.block-sidebar {
  margin-bottom: 0 !important;
}

.widget-filters--offcanvas--always {
  border: none;
  padding-top: 0;
}

.widget-filters--offcanvas--always .widget-filters__title {
  display: none;
}

.widget-filters--offcanvas--always .widget-filters__item:first-child {
  border-top: none;
}

.widget-filters--offcanvas--always .widget-filters__item {
  border-width: 1px;
}

@media (max-width: 991px) {
  .widget-filters--offcanvas--mobile {
    border: none;
    padding-top: 0;
  }

  .widget-filters--offcanvas--mobile .widget-filters__title {
    display: none;
  }

  .widget-filters--offcanvas--mobile .widget-filters__item:first-child {
    border-top: none;
  }

  .widget-filters--offcanvas--mobile .widget-filters__item {
    border-width: 1px;
    margin: 0 0 -15px;
  }
}

/*
// .widget-newsletter
*/

.widget-newsletter {
  background: var(--default--theme-grey-bg);
  border-radius: 2px;
  padding: 32px 30px 36px;
  text-align: center;
  font-size: 15px;
  line-height: 24px;
}

.widget-newsletter__title {
  font-size: 24px;
  padding-top: 6px;
  margin-bottom: 24px;
}

.widget-newsletter__text {
  margin-bottom: 22px;
}

.widget-newsletter__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

/*
// .widget-posts
*/

.widget-posts {
  border: 2px solid #f0f0f0;
  border-radius: 2px;
  padding: 28px;
}

.widget-posts__list {
  padding-top: 10px;
}

.widget-posts__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.widget-posts__item+.widget-posts__item {
  margin-top: 22px;
}

.widget-posts__image {
  width: 90px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-radius: 1.5px;
  overflow: hidden;
  -ms-flex-item-align: self-start;
  align-self: self-start;
  position: relative;
}

[dir=ltr] .widget-posts__image {
  margin-right: 16px;
}

[dir=rtl] .widget-posts__image {
  margin-left: 16px;
}

.widget-posts__image ::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  opacity: 0;
  -webkit-transition: opacity .6s;
  transition: opacity .6s;
  z-index: 1;
}

.widget-posts__image img {
  max-width: 100%;
  display: block;
}

.widget-posts__image:hover ::before {
  opacity: 1;
}

.widget-posts__info {
  margin-top: -2px;
}

.widget-posts__name {
  font-size: 15px;
  line-height: 18px;
}

.widget-posts__name a {
  color: inherit;
  -webkit-transition: color .2s;
  transition: color .2s;
}

.widget-posts__name a:hover {
  color: #1a66ff;
}

.widget-posts__date {
  margin-top: 2px;
  font-size: 13px;
  color: #999;
}

/*
// .widget-products
*/

.widget-products {
  border: 2px solid #f0f0f0;
  border-radius: 2px;
  padding: 20px;
}

.widget-products__list {
  padding-top: 8px;
}

.widget-products__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.widget-products__item+.widget-products__item {
  margin-top: 18px;
}

.widget-products__image {
  width: 50px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

[dir=ltr] .widget-products__image {
  margin-right: 12px;
}

[dir=rtl] .widget-products__image {
  margin-left: 12px;
}

.widget-products__image img {
  max-width: 100%;
}

.widget-products__name {
  margin-top: -2px;
  font-size: 14px;
  line-height: 17px;
}

.widget-products__name a {
  color: inherit;
  -webkit-transition: .15s;
  transition: .15s;
}

.widget-products__name a:hover {
  color: #1a66ff;
}

.widget-products__prices {
  padding-top: 2px;
  font-size: 14px;
  font-weight: 700;
  color: #3d464d;
}

.widget-products__new-price {
  color: #ff2626;
}

.widget-products__old-price {
  color: #b3b3b3;
  font-weight: 400;
  font-size: 12px;
  text-decoration: line-through;
}

/*
// .widget-search
*/

.widget-search {
  height: 48px;
}

.widget-search__body {
  position: relative;
  height: 100%;
}

.widget-search__input {
  -webkit-box-shadow: 0 0 0 2px #ededed inset;
  box-shadow: 0 0 0 2px #ededed inset;
  -webkit-transition: -webkit-box-shadow .2s;
  transition: -webkit-box-shadow .2s;
  transition: box-shadow .2s;
  transition: box-shadow .2s, -webkit-box-shadow .2s;
  border-radius: 2px;
  height: 100%;
  width: 100%;
  background: transparent;
  border: none;
  padding-top: 10px;
  padding-bottom: 10px;
  color: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

[dir=ltr] .widget-search__input {
  padding-left: 18px;
  padding-right: 48px;
}

[dir=rtl] .widget-search__input {
  padding-right: 18px;
  padding-left: 48px;
}

.widget-search__input:hover {
  -webkit-box-shadow: 0 0 0 2px #d9d9d9 inset;
  box-shadow: 0 0 0 2px #d9d9d9 inset;
}

.widget-search__input:focus {
  outline: none;
  -webkit-box-shadow: 0 0 0 2px #ffd333 inset;
  box-shadow: 0 0 0 2px #ffd333 inset;
}

.widget-search__input::-webkit-input-placeholder {
  color: #999;
}

.widget-search__input::-moz-placeholder {
  color: #999;
}

.widget-search__input:-ms-input-placeholder {
  color: #999;
}

.widget-search__input::-ms-input-placeholder {
  color: #999;
}

.widget-search__input::placeholder {
  color: #999;
}

.widget-search__button {
  height: 48px;
  width: 48px;
  cursor: pointer;
  position: absolute;
  top: 0;
  background: transparent;
  border: none;
  padding: 0;
  fill: #ccc;
  -webkit-transition: fill .2s;
  transition: fill .2s;
}

[dir=ltr] .widget-search__button {
  right: 0;
}

[dir=rtl] .widget-search__button {
  left: 0;
}

.widget-search__button svg {
  position: absolute;
  left: calc(50% - 10px);
  top: calc(50% - 10px);
}

.widget-search__button:focus {
  outline: none;
}

.widget-search__button:focus,
.widget-search__button:hover {
  fill: #ffd333;
}

/*
// .widget-tags
*/

.widget-tags {
  border: 2px solid #f0f0f0;
  border-radius: 2px;
  padding: 28px;
}

/* wishList */

table.shopping-cart {
  background: var(--default-theme-white) none repeat scroll 0 0;
  border-radius: 0;
  margin-bottom: 0;
  text-align: center;
  border: 1px solid #ebebeb;
  width: 100%;
}

table.shopping-cart a {
  color: inherit;
}

table.shopping-cart thead {
  background-color: #f6f6f6;
}

table.shopping-cart td {
  border-bottom: 1px solid #ebebeb;
  border-right: 1px solid #ebebeb;
  font-size: 12px;
  border-top: medium none;
  font-size: 13px;
  padding: 20px 10px;
  vertical-align: middle;
}

table.shopping-cart th {
  border-top: medium none;
  font-size: 15px;
  font-weight: 500;
  padding: 20px 10px;
  text-align: center;
  text-transform: capitalize;
  vertical-align: middle;
  white-space: nowrap;
  border-right: 1px solid #ebebeb;
}

td.quantity input {
  border: 1px solid #ebebeb;
  display: block;
  width: 50px;
  height: 50px;
}

table.shopping-cart a.wishList-add-to-card {
  background: #333333 none repeat scroll 0 0;
  border-radius: 5px;
  color: var(--text-white-color);
  display: inline-block;
  font-size: 14px;
  height: 41px;
  line-height: 40px;
  padding: 0 20px;
  text-transform: capitalize;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

table.shopping-cart a.wishList-add-to-card:hover {
  background: #EB3E32;
}

table.shopping-cart a.wishList-remove {
  background: #EB3E32;
  border-radius: 5px;
  color: var(--text-white-color);
  display: inline-block;
  font-size: 14px;
  height: 41px;
  line-height: 40px;
  padding: 0 20px;
  text-transform: capitalize;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

/* assestment product */

.box-product-img {
  height: 303px;
}

img.card-img-top {
  width: auto;
}

.box-product-img {
  display: flex;
  justify-content: center;
}

.product--layout--quickview h5.card-title {
  font-size: 14px;
}

.product.product--layout--quickview .card-body {
  font-size: 13px;
}

.product--layout--quickview label.h5.m-0 {
  font-size: 13px;
}


.product--layout--quickview h2.generalTitle.text-center {
  font-size: 16px;
  background: #fafafa;
  padding: 10px 0px;
  margin: 0px 15px 15px 15px;
}

.position-fixed {
  z-index: 9999;
}

/* Layout Switcher  */
.products-list[data-with-features="true"] .products-list__item {
  width: calc(50% - 12px);
  margin: 8px 6px;
}



.dropcart__products-list .dropcart__product {

  padding-bottom: 10px;
  margin: 20px 0px;
}

.dropcart__products-list .dropcart__product .dropcart__product-name {
  font-size: 13px;
}

/* discount row*/
.discount-txt {
  margin-bottom: 15px;
  text-indent: 5px;
  width: 100%;
  padding: 5px 7px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--default-theme-off-white2);
}

.discount-txt .remove-discount-button {
  border: none;
  background: var(--default-theme-dark-blue);
  color: var(--text-white-color);
  border-radius: 0;
  font-size: var(--font-sm);
  padding: 7px 10px;
}

input#discountcouponcode {
  border: none;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
}

button#applydiscountcouponcode {
  border: none;
  background: var(--default-theme-dark-blue);
  color: var(--text-white-color);
  border-radius: 0;
  height: 100%;
}

.checkout-buttons.text-center.float-sm-right button {
  width: 100%;
}

.checkout-buttons.text-center.float-sm-right {
  width: 100%;
}

.cart-table__column--remove {
  width: 40px;
}

#ordersummarypagecart .product-image {
  padding-right: 5px;
  height: 80px;
  display: flex;
  align-items: center;
}

.wishlist-table .cart__table thead {
  background-color: var(--default-theme-dark-blue);
  color: var(--text-white-color);
  padding: 10px;
}

.wishlist-table .cart__table thead tr th {
  padding: 5px 10px;
}

td.cart-table__column.cart-table__column--product {
  font-size: 13px;
  max-width: 134px;

}

.cart__product__img--item .product-image {
  min-width: 60px;
}

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

.cart__product__img--item {
  display: flex;
  align-items: center;
}

tr.cart-table__row {
  font-size: 15px;

}

.deleteshoppingcartitem {
  /* margin-left: 11px; */
  background: var(--default-theme-dark-blue);
  color: var(--text-white-color);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  padding: 0;
}

.deleteshoppingcartitem i {
  font-size: 12px;

  color: var(--text-white-color);
}

td.onhold-cart.text-left {
  max-width: 30px;
}

.common-buttons {
  text-align: right;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

button.btn.removeAll-cart-button {
  font-weight: 500;
  font-size: 16px;
}

button.btn.continue-shopping-button {
  font-weight: 500;
  font-size: 16px;
}

.clear-btn {
  border-top: 1px solid #dadada;
}

.shoppingCart-mobil-txt {
  display: none;
}

/* order summary*/
.checkout-product-view>li>div {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}

a.order-summary-product-img {
  padding-right: 6px;
  width: 80px;
}

a.order-summary-product-img img {
  max-width: 100%;
}

.order-summary-li--details .product {
  padding: 0;
}

.order-summary-li--details {
  width: 48%;
}

span.product a {
  color: #3d3d3d;
}

li.order-summary-li {
  list-style: none;
  padding-bottom: 20px;
  padding-top: 20px;
  border-bottom: 1px solid #ccc;
  display: flex;
  justify-content: space-evenly;
  width: 100%;
}

li.order-summary-li div {
  display: flex;
  flex-direction: column;
}

#ordersummarypagecart {

  border-radius: 5px;
  margin-top: 0 !important;

}



.order-summary-li .product {
  font-size: 14px;
}

h4.d-flex.justify-content-between.align-items-center.mb-3 {
  border-bottom: 1px solid #cccccc;
  padding-bottom: 16px;
}

.order-summary-li .product a {
  color: #252531;
  line-height: 22px;
  font-size: 12px;
}

.cart-total-right .value-summary {
  display: block;
  width: 100%;
  text-align: right;
}

span.product-quantity {
  display: block;
  font-size: 12px;
}

p.mb-0.prod-total {
  font-size: 15px;
  font-weight: bold;
}



.card-body.new-address-btn .btn {
  height: auto;
}



form.Address input[type="text"],
form.Address input[type="email"],
form.Address input[type="tel"],
form.Address input[type="password"],
form.Address input[type="date"] {
  height: 50px;
  border-radius: 4px;
}

.select2-selection__rendered {
  height: 50px;
}

form.Address textarea {
  border-radius: 5px;
}

.card-body.new-address-btn {
  text-align: center;
}

.edit-address .form-group {
  font-size: 13px;
}

div#confirm-order-buttons-container input {
  width: 100% !important;

}

.selectedProduct .image-container--product img {
  border: 1px solid var(--default-color-black) !important;

}

.order-right-cart {
  background-color: var(--default--theme-grey-bg);
  border-radius: 0 !important;
  padding: 0 10px;
}

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

.ordersummarypagecart img.product-image__img {
  max-height: 70px;
}

div#ordersummarypagecart .product-image img {
  max-height: 65px;
}

img.pswp__img {
  object-fit: contain;
}

/* checkout */
.formCheck-container .input-check__body {
  width: auto;
  height: auto;
}

.input-check__input:checked~label {
  border: 2px solid #ffd333 !important;
}


.productdetail__size {

  margin-bottom: 30px;
}


.formCheck-container label.form-check-label {
  font-size: 13px;
  padding: 13px;
}

.formCheck-container {
  position: relative;
}

.formCheck-container a.form_edit {
  position: absolute;
  bottom: 1px;
  right: 0;
  padding: 5px;
}

.formCheck-container span.input-check__box {
  position: absolute;
  right: 1px;
  width: 20px;
  background: var(--default-theme-off-white2);
  height: 20px;
  top: 1px;
  box-shadow: none;
  border-bottom-left-radius: 5px;
}

.formCheck-container svg.input-check__icon {
  right: 3px;
  position: absolute;
  left: auto;
  top: 4px;
  transform: scale(1);
}

.formCheck-container label.form-radio-label {
  border: 2px solid #dadada;
  border-radius: 5px;
  min-height: 120px;
}

label.form-radio-label {
  padding: 20px;
  font-size: 14px;
}


.input-check__icon {
  fill: #fff;
}

.col.mb-1.fromCheckWrp.newAdressBtn button {
  display: block;
  height: 210px;
  padding: 0px;
  background: var(--default-theme-off-white2);
  width: 100%;
  min-height: 124px;
}

.col.mb-1.fromCheckWrp.newAdressBtn button i {
  background: #fff;
  border-radius: 50%;
  font-size: 39px;
  width: 71px;
  height: 69px;
  line-height: 68px;
  color: var(--default-theme-off-white2);
}

.col.mb-1.fromCheckWrp {
  min-height: 140px;
}

div#shipping-addresses-form {
  border-radius: 5px;
}

.shipping-addresses-form .card.border {
  border-radius: 5px;
}

#addressInfo .card-header {
  padding: 0 0 30px 0;
}

h5.text-muted {
  font-weight: normal;
}

div#shipping-addresses-form .card-body {
  padding: 0px;
}

h5.text-muted {
  color: #252531;
}

.text-muted {
  color: unset !important;
}

.card.border {
  border-radius: 5px;
}

#checkout-billing-load .card-header {
  padding: 20px;
  padding-left: 2rem;
}

h3.text-muted {
  color: #252531 !important;
  font-weight: normal;
  font-size: 20px;
}

div#checkout-billing-load .card-body {
  padding-top: 0px;
}

.ship-to-same-address {
  position: absolute;
  right: 10px;
  top: -62px;
  font-size: 13px;
  line-height: 22px;
}

.ship-to-same-address label {
  font-size: 15px !important;
}

.order-summary-page-title {
  padding: 15px 0;
  border-bottom: 1px solid #ccc;
}

span.order-txt {
  color: #252531;
}

#ordersummarypagecart a.product-name {
  font-weight: 700;
}

.totals-price-wrp {
  width: 100%;
}

.table.table-hover tr td {
  border: 1px solid #cccccc;
  padding: 5px;
  vertical-align: middle;
  text-align: center;
}

.order-subtotal .table.table-hover tr td {
  border: 0;
  padding: 5px;
  vertical-align: middle;
  text-align: left;
}


.table-total-price-wrp {
  background: #ccc;

}

span.shipping-txt {
  font-weight: 700;
}

.table-total-price-wrp table {
  margin: 0px;
}



.table-total-price-wrp table td {
  border: none;
}

.totals-price-wrp td.col-6.cart-total-left {
  font-size: 15px;
  border: 0;
  text-align: left;
}

.totals-price-wrp td.col-6.cart-total-right {
  font-size: 15px;
  border: 0;
  text-align: right;
}


.cart-total-right {
  font-size: 19px;
  font-weight: 700;
}

.table-total-price-wrp .cart-total-left {
  font-size: 19px !important;
  font-weight: 700;
}

/* checkout end */

/* thumnail */


/* ul.list-options.color-swatch li {
  list-style: none;
  display: inline-block;
  width: 34px;
  height: 34px;
  margin: 3px;
}

ul.list-options.color-swatch li img {
  width: 100%;
}

ul.list-options.color-swatch li a {
  display: block;
}

.color-swatch li>* {
  display: block;
  overflow: hidden;
  width: 100%;
  height: 100%;
  margin: 1px;
  cursor: pointer;
  text-decoration: none;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px transparent;
}

.color-swatch li:hover>*,
.color-swatch li.active>* {
  border: 2px solid #ffd333;
}

.color-swatch {
  position: absolute;
  z-index: 2;
  bottom: 5px;
  left: -30px;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column-reverse;
 
  transition: transform .2s, opacity .3s .1s;
  transform: translate3d(-110%, 0, 0);
  pointer-events: none;
  opacity: 0;
  -ms-flex-direction: column-reverse;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}



.product-card:hover .color-swatch {
  transform: translate3d(0, 0, 0);
  pointer-events: all;
  opacity: 1;
} */


#shipping-addresses-form label.form-radio-label {
  width: 100%;
  padding: 20px 10px;
  font-size: 13px;
}

.address--box--content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80%;
  flex-direction: column;
}

.address--box--content a {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  font-weight: 600;
  padding-right: 10px;
  position: relative;
  z-index: 1;
}

#shipping-addresses-form span.form-check-input.input-check {
  width: auto;
  background-color: transparent;
}

.new-address-btn {
  height: 200px;
}

#shipping-addresses-form .col.mb-1.fromCheckWrp {
  margin-bottom: 30px !important;
}

ul.method-list li {
  list-style: none;
}

#shipping-method-form ul.method-list {
  margin: 0px;
  padding: 0px;

}

.address--box--content .address p {
  margin-bottom: 5px;
}

#paymentTabs li {
  text-align: center;
  margin-right: 5px;
}

ul#paymentTabs {
  justify-content: flex-start;
  border: none;
  margin-top: 20px
}

div#CreditCardInfoModel,
div#bankTransferPayment {
  width: 100%;
  border: solid 1px #e2e2e2;
  margin-bottom: 20px;
  padding-bottom: 30px;
}

.banktransfer__box {
  border: 1px solid #e2e2e2;
}


.banktransfer__box .input-check__input+.input-check__box+.input-check__icon {
  display: block;
  position: absolute;
  top: 21px;
  right: 5px;
  left: unset;
}

.banktransfer__box--title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: solid 1px #e2e2e2;
  position: relative;
  padding: 5px;
}

.banktransfer__box--title span img {
  height: 45px;
}

.banktransfer__box--content label {
  display: flex;
  flex-direction: column;
}

#paymentTabs li:last-child {
  margin: 0px;
}

#paymentTabs li a {
  border: solid 1px #e2e2e2;
  color: #949494;
  font-weight: normal;
}

#paymentTabs li a.active {
  background: var(--default-theme-dark-blue);
  color: #fff !important;
}

.jp-card-front {
  background: #999999 !important;
}


.formCheck-container {
  width: 100%;
}

#bankTransferPayment span.form-check-input.input-check {
  width: 100%;
}

#bankTransferPayment label.form-radio-label {
  width: 100%;
}

/* #bankTransferPayment label.form-radio-label img{
    max-height: 40px;
} */

.col-10.offset-md-1.text-right.d-md-flex.input-group>select {
  margin: 10px;
}

#checkout-billing-load span.input-check__body {
  width: 100%;
}

#checkout-billing-load span.form-check-input.input-check {
  width: 100%;
}

#checkout-billing-load label.form-radio-label {
  width: 100%;
}



#checkout-billing-load .col.mb-1.fromCheckWrp {
  margin-bottom: 30px !important;
}

th.radio-btn-row {
  display: flex;
}

th.radio-btn-row span {
  margin-right: 20px;
}

.radio-btn-row span.input-check__box {
  border-radius: 50%;
  width: 20px;
  height: 20px;
}

table.table.installment-table th,
table.table.installment-table td {
  font-weight: normal;
  border-bottom: 1px solid #dedede;
  border-top: none;
}

table.table.installment-table tr:last-child td,
table.table.installment-table tr:last-child th {
  border: none;
}

.installment-table .input-check__input:checked~.input-check__icon {
  fill: #fff !important;
  left: 2px;
  top: 5px;
}

table.table.installment-table .input-check__body {
  width: 20px;
  height: 20px;
}

tr.installment-title {
  border-bottom: 1px solid #dedede;
}

tr.installment-title th {
  font-size: 13px;
}

tr.installment-title th:first-child {
  font-size: 16px;
}

span.plus-point {
  background: #ffd333;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  font-size: 12px;
  text-align: center;
  font-weight: 500;
  line-height: 24px;
}

@media (max-width: 767px) {
  .color-swatch {
    display: none;
  }

  .ship-to-same-address {
    top: -51px;
  }

  .col.mb-1.fromCheckWrp {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .form-check {
    width: 100%;
  }

  span.form-check-input.input-check {
    width: auto;
  }



  .new-address-btn .fa-6x {
    font-size: inherit !important
  }



  td.cart-table__column.cart-table__column--product {
    max-width: 100%;
  }

  #ordersummarypagecart .product-image {
    height: auto;
  }
}


/*
Pure CSS Float Labels v2.0
with Bootstrap5 and Select2 support
by Adam Culpepper | @adamculpepper
https://floatlabels.com
https://github.com/adamculpepper/pure-css-float-labels
*/

:root {
  /* Non-bootstrap styles */
  --floatlabels-input-default-height: 38px;
  --floatlabels-input-default-padding: 1.2rem;
  /* Bootstrap 5 styles */
  --floatlabels-input-bootstrap5-sm-height: 31px;
  --floatlabels-input-bootstrap5-lg-height: 48px;
  --floatlabels-input-bootstrap5-sm-padding: 0.50rem;
  --floatlabels-input-bootstrap5-lg-padding: 1.00rem;
}

.float-label {
  position: relative;
}

.float-label>label {
  opacity: 0.75;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  font-size: inherit;
  cursor: text;
  pointer-events: none;
  transition: all 100ms linear;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently supported by Chrome, Opera and Firefox */
}

.float-label>select,
.float-label>input:focus,
.float-label>textarea:focus,
.float-label>input:not(:placeholder-shown),
.float-label>textarea:not(:placeholder-shown) {
  padding-bottom: 0;
}

.float-label>input:focus~label,
.float-label>textarea:focus~label,
.float-label>input:not(:placeholder-shown)~label,
.float-label>textarea:not(:placeholder-shown)~label,
.float-label>select~label {
  opacity: 0.50;
  font-size: 75%;
  margin-top: -0.50rem;
}

.float-label input,
.float-label select:not([multiple]),
.float-label label {
  height: var(--floatlabels-input-default-height);
  line-height: var(--floatlabels-input-default-height);
}

.float-label input,
.float-label select,
.float-label textarea,
.float-label label {
  padding-left: var(--floatlabels-input-default-padding);
  padding-right: var(--floatlabels-input-default-padding);
}


/* Non-Bootstrap 5 */
.float-label input:not(.form-control),
.float-label select:not(.form-control):not(.form-select),
.float-label textarea:not(.form-control) {
  padding-top: 0.75rem;
}

.float-label :not(.form-control):not(.form-select)+label {
  padding-top: 0;
}


/* Bootstrap 5 */
.float-label input.form-control {
  padding-top: 0.80rem;
}

.float-label select.form-control,
.float-label select.form-select {
  padding-top: 0.30rem;
}

.float-label input.form-control,
.float-label select.form-control,
.float-label select.form-select,
.float-label .form-control+label,
.float-label .form-select+label {
  /*height:var(--floatlabels-input-bootstrap5-height);
	line-height:var(--floatlabels-input-bootstrap5-height);*/
  padding-left: var(--floatlabels-input-default-padding);
  padding-right: var(--floatlabels-input-default-padding);
}

.float-label input.form-control-sm,
.float-label select.form-control-sm,
.float-label select.form-select-sm,
.float-label .form-control-sm+label,
.float-label .form-select-sm+label {
  height: var(--floatlabels-input-bootstrap5-sm-height);
  line-height: var(--floatlabels-input-bootstrap5-sm-height);
  padding-left: var(--floatlabels-input-bootstrap5-sm-padding);
  padding-right: var(--floatlabels-input-bootstrap5-sm-padding);
}

.float-label input.form-control-lg,
.float-label select.form-control-lg,
.float-label select.form-select-lg,
.float-label .form-control-lg+label,
.float-label .form-select-lg+label {
  height: var(--floatlabels-input-bootstrap5-lg-height);
  line-height: var(--floatlabels-input-bootstrap5-lg-height);
  padding-left: var(--floatlabels-input-bootstrap5-lg-padding);
  padding-right: var(--floatlabels-input-bootstrap5-lg-padding);
}

.float-label .form-control:focus+label,
.float-label .form-control:not(:placeholder-shown)+label,
.float-label .form-select:focus+label,
.float-label .form-select:not(:placeholder-shown)+label {
  line-height: 100%;
  margin-top: 0.25rem;
}


/* Bootstrap 5 fixes */
.float-label.input-group label,
.float-label .input-group label,
.input-group .float-label label {
  z-index: 3;
}

.float-label.input-group .btn,
.float-label .input-group .btn,
.input-group .float-label .btn {
  padding-top: 0;
  padding-bottom: 0;
}

.float-label input,
.float-label select,
.float-label textarea {
  /*padding-top:5%; padding-bottom:0;*/
}

/* remove this padding on the input. maybe replace with transform? */
.float-label .form-control[readonly]+label,
/* .float-label .form-control:placeholder-shown:not(:focus) + label {opacity:0.50; font-size:inherit;} */
/* .float-label .form-control + label,
.float-label input.form-control + label {top:1px;} */
/* .float-label input.form-control:placeholder-shown:not(:focus) + label {top:50%; transform:translateY(-50%);} */
.float-label input.form-control:-webkit-autofill+label {}

/* just the mere presence of this empty style fixes issue #6. strange. */
.float-label input.form-control:-moz-autofill+label {}

/* untested: firefox fix; */

/* [required] attribute based required field indicators */
.float-label .form-control[required]+label:after,
.float-label>select.form-select[required]+.select2-container+label:after,
.float-label>select.form-control[required]+.select2-container+label:after {
  content: '*';
  font-size: 0.75rem;
  margin-left: 5px;
  transition: all 300ms;
}

/* [disabled] and [readonly] styles */
.float-label .form-control[readonly],
.float-label .form-control[disabled],
.float-label .form-control[disabled]+label {
  opacity: 0.5;
  cursor: not-allowed;
}

/* [readonly]'s :placeholder-shown state sucks so... here's a fix */
.float-label .form-control[readonly]+label {
  color: inherit;
  font-size: 0.75rem;
}

.float-label .form-control[readonly]:placeholder-shown:not(:focus)+label:after {
  color: inherit;
}

/* Textarea + select (multiple) elements */
.float-label textarea.form-control,
.float-label select.form-select[multiple],
.float-label select.form-control[multiple] {
  padding-top: 20px;
}

.float-label textarea.form-control+label,
.float-label select.form-control[multiple]+label {
  backdrop-filter: blur(5px);
  width: calc(100% - 20px);
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
}

.float-label textarea.form-control+label:before,
.float-label select.form-control[multiple]+label:before {
  content: '';
  display: block;
  width: 100%;
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 1px;
  z-index: -1;
}

.float-label textarea.form-control+label,
.float-label select.form-control[multiple]+label {
  backdrop-filter: blur(0);
}

.float-label textarea.form-control:placeholder-shown:not(:focus)+label:before,
.float-label select.form-control[multiple]:placeholder-shown:not(:focus)+label:before {
  background-color: transparent;
}

/* Select elements */
.float-label select.form-select,
.float-label select.form-control {
  padding-left: 0.50rem;
}

.float-label select.form-select option[selected][disabled],
.float-label select.form-control option[selected][disabled] {
  display: none;
}

/* Hide placeholders since we're taking care of those with label elements */
.float-label ::-webkit-input-placeholder {
  color: transparent !important;
}

.float-label :-moz-placeholder {
  color: transparent !important;
}

/* Firefox 18- */
.float-label ::-moz-placeholder {
  color: transparent !important;
}

/* Firefox 19+ */
.float-label :-ms-input-placeholder {
  color: transparent !important;
}

.float-label ::placeholder {
  color: transparent !important;
}

/* Missing placeholder error messages */
.float-label input.form-control[placeholder=''],
.float-label input.form-control:not([placeholder]),
.float-label textarea.form-control[placeholder=''],
.float-label textarea.form-control:not([placeholder]) {
  border: 1px solid red;
}

.float-label input.form-control[placeholder='']+label:after,
.float-label input.form-control:not([placeholder])+label:after,
.float-label textarea.form-control[placeholder='']+label:after,
.float-label textarea.form-control:not([placeholder])+label:after {
  margin-left: 10px;
  color: red;
}

.float-label input.form-control[placeholder='']+label:after,
.float-label input.form-control:not([placeholder])+label:after,
.float-label textarea.form-control[placeholder='']+label:after,
.float-label textarea.form-control:not([placeholder])+label:after {
  content: 'placeholder missing!';
}

/* ------------------------------ */

/* Select2 Support */

/* Normalize Select2 for Bootstrap 4 */
.float-label>select+.select2-container {
  position: relative;
}

.float-label>select+.select2-container .select2-selection {
  height: auto;
  border: 0;
}

.float-label>select+.select2-container .select2-selection .select2-selection__rendered {
  line-height: calc(1.5em + .75rem + 2px);
  padding: .875rem .75rem;
  border: 1px solid rgba(0, 0, 0, 0.20);
  border-radius: 4px;
}

.float-label>select[disabled]+.select2-container,
.float-label>select[disabled]+.select2-container+label {
  opacity: 0.5;
}

.float-label>select[disabled]+.select2-container .select2-selection {
  cursor: not-allowed;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100%;
  top: 0;
}

.address p {
  line-height: 17px
}

.address__detail {
  margin: 5px 0 5px 0;
  max-height: 70px;
  overflow: hidden
}

.address__name {
  color: var(--default-color-black);
  width: 100%;
  font-weight: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap
}

.address__name b {
  font-weight: normal;
}

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


/* Custom */

.card {
  border-color: #dedede !important;
  border-radius: 5px;
  border-width: 1px;
}



a {
  text-decoration: none;
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  max-width: 1140px;
}

body,
.primary-color {
  color: #252531;
}

.float-label>label {
  font-size: 16px;
  font-weight: normal;
  top: 50%;
  transform: translateY(-50%);
  margin-right: 15px;
  margin-left: 15px;
  z-index: 99999;
  padding-left: 13px !important;
}

.float-label>input:focus~label,
.float-label>textarea:focus~label,
.float-label>input:not(:placeholder-shown)~label,
.float-label>textarea:not(:placeholder-shown)~label,
.float-label>select~label {
  transform: translateY(-54%);
}

.float-label textarea.form-control+label,
.float-label select.form-control[multiple]+label {
  margin-top: -4px !important;
}

.float-label textarea.form-control+label:before,
.float-label select.form-control[multiple]+label:before {
  background-color: transparent;
}

div#shipping-addresses-form .card-header {
  padding-left: 20px;
  padding-right: 20px;
}

.card-title {
  font-size: 20px;
  font-weight: normal;
}


.card-text {
  font-size: 16px;
}

.form-check-label {
  font-size: 18px;
}


.btn.btn-block {
  display: block;
}

.btn-primary.btn-lg {
  font-size: 16px;
  padding: 0 32px;
  line-height: 50px;
  height: 50px;
  display: block;
  width: 100%;
}

.btn-secondary.btn-lg {
  font-size: 16px;
  padding: 0 32px;
  line-height: 50px;
  height: 50px;
  display: block;
  width: 100%;
}

.form-control-lg {
  height: calc(1.5em + 1rem + 4px)
}

.btn-sm {
  height: 35px;
}

form:not(.footer-newsletter__form) .form-floating .form-control {
  height: 50px;
  padding: 15px 15px 6px 15px;
  font-size: 15px;
}

#Company {
  height: 50px;
}

.info__Card {
  background-color: var(--default--theme-grey-bg);
}

#ordersummarypagecart .badge {
  color: #252531;
}

.info__date div {

  display: flex;
  justify-content: space-around;
}

.info__date div .custom-select {
  width: 100%;
  height: 50px;
  margin: 7px 10px 0 0;
  border: 1px solid #ced4da;
  padding-left: 10px;
}


.terms-of-service {
  margin-top: 15px;
  color: #878787;
  border: 1px solid #dedede;
  border-radius: 4px;
  padding: 8.5px 20px;
  font-size: 12px;
}

.terms-of-service .custom-control {
  display: flex;
  align-items: center;
  margin: 0;
}

.terms-of-service .custom-control a {
  font-weight: bold;
  color: #878787;
}

.terms-of-service input {
  border: 1px solid #cccccc;
}

.terms-of-service .custom-control-description {
  padding-left: 10px;
}

#paymentStep .card {
  padding: 30px 20px 25px;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid #dedede;
  min-height: 170px;
}

#paymentStep .col-md-6 {
  position: relative;
  cursor: pointer;
}

#paymentStep .col-md-6 .card::after {
  content: '';
  background-color: #dfdfdf;
  width: 100%;
  height: 17px;
  position: absolute;
  top: 0;
  left: 0;
}

#paymentStep .card {
  background-color: #fbfbfb;
}

#paymentStep .col-md-6:first-child .card {
  border-radius: 5px 0 0 5px !important;
}

#paymentStep .col-md-6:last-child .card {
  border-radius: 0 5px 5px 0 !important;
}

#paymentStep .card-header {
  padding: 0;
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: bold;
}

#paymentStep .card-title {
  font-size: 14px;
  margin-bottom: 0;
}

#paymentStep .col-md-6 .card.active {
  background-color: transparent;
}

#paymentStep .col-md-6 .card.active::after {
  background-color: #ffd332;
}

span.select2-container.select2-container--default.select2-container--open {
  z-index: 99999;
}

.float-label>select+.select2-container .select2-selection .select2-selection__rendered {
  padding-left: 15px;
  font-size: 15px;
}

button.bootbox-close-button.close {
  border: none;
  background-color: transparent;
}

.modal-header {
  font-size: 20px;
  border: none;
  padding: 0;
}

.modal-body {
  padding: 0;
}

.modal-content {
  padding: 10px;
}

.modal-footer {
  padding: 0;
  border: none;
  margin-top: 36px;
}

.modal-footer .btn-primary {
  font-size: 16px;
  display: block;
  width: 100%;
  height: 50px;

}

.form-group .form-text {
  font-size: 18px;
  color: #252531;
  margin-bottom: 10px;
}

.custom-control-input {
  position: relative;
  top: 0;
}

.form-check-input {
  border: none;
}

.form-radio-label .image-parent {
  margin-bottom: 20px;
}


#bankTransferPayment .fromCheckWrp {
  width: 42%;
  min-height: 160px;
}

#PaymentOnCreditCard .container {
  padding: 0 12px;
}


#RegisterForm .card-title {
  font-size: 28px;
}

#RegisterForm .form-check-label {
  font-size: 15px;
}

.cart-table__head {
  line-height: 37px;
}

.form-control.input-number__input.qty-input {
  line-height: 27px;
}


[dir=ltr] .cart__totals tr> :first-child {
  padding-top: 0;
  padding-bottom: 0;
  margin: 15px 0;
}

[dir=ltr] .cart__totals tr> :last-child {
  padding-top: 0;
  padding-bottom: 0;
  margin: 15px 0;
  font-weight: normal;
}

[dir=ltr] .cart__totals tr> :last-child .value-summary strong {
  font-weight: normal;
}

.value-summary {
  font-weight: 600;
  font-size: 16px;
}

.cart-right.col-sm-12.col-md-12.col-lg-3 {
  padding: 0px 20px 20px;
}

button.btn.continue-shopping-button {

  padding-left: 0;
  text-decoration: underline;
}

.btn-sm.btn-svg-icon {
  width: 20px;
  height: 20px;
}

.btn-sm.btn-svg-icon i {
  font-size: 10px;
  position: relative;
  top: -1px;
  right: -0.5px;
}

.order-completed-page {
  padding: 35px 0 120px;
}

.order-succesful--image img {
  margin: 0 auto;
  display: block;
}

.order-unsuccesful--image img {
  max-width: 40px;
}

.order-completed-page .generalTitle {
  font-size: 21px;
  color: #252531;
  font-weight: normal;
  margin: 25px 0 15px;
}

.order-info__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid #eeeeee;
  margin-top: 20px;
}

.order-info__btns a {
  color: var(--text-white-color);
  max-width: 200px;
  margin: 30px 10px;
}

.order-completed-page .succes-message {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #252531;
  text-transform: uppercase;
}

.order-completed-page .order-number {
  font-size: 18px;
  font-weight: normal;
  color: #252531;
}

.order-completed-page .order-info {
  font-size: 16px;
  font-weight: normal;
  color: #252531;
  margin-top: 30px;

}

.order-completed-page .order-detail-page {
  font-weight: 600;
  color: #252531;
}

#shipping-method-form .form-radio {
  margin-bottom: 15px;
}

.form-radio .form-radio-label {
  padding: 0;
  margin-left: 20px;
  margin-bottom: 0;
  font-size: 12px;
}

.cargo-logo {
  display: inline-block;
  margin-left: 15px;
  width: 75px;
}

.cargo-logo img {
  height: 32px;
  width: 100%;
  object-fit: contain;
}

.input-radio__body {
  top: 4px;
}

#addressInfo h5 {
  font-size: 18px;
  color: #252531;
}

#addressInfo h5 span {
  font-size: 12px;
  color: #252531;
  display: block;
  margin-top: 10px;
}

.checkout-data .card {
  border-radius: 0;
  height: 100%;
}


.card {
  border: 0 !important;
}

.c_card-title h5 {
  display: flex;
  align-items: center;
}

.checkout__number {
  display: flex !important;
  width: 40px;
  height: 40px;
  background-color: var(--default-theme-dark-blue);
  color: var(--text-white-color) !important;
  border-radius: var(--border-radius-30);
  align-items: center;
  justify-content: center;
  margin: 0 10px 0 0 !important;
  font-size: 16px !important;
}

.address--box {
  height: 210px;
  margin-bottom: 24px;
  position: relative;
  border: solid 1px #e2e2e2;
}

.address__container {}

.formCheck-container {
  height: 100%;
}

.delivery-time .card {
  border-radius: 0 5px 5px 0;
  height: 100%;
}

.address__open {
  width: 80%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.address--box--title {
  display: flex;
  justify-content: space-between;
  border-bottom: solid 1px #e2e2e2;
  padding: 5px 5px 5px 10px;
}

.address--box--title>span.address-title {
  width: 100%;
  /* veya istediğiniz genişlik */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


.form-check .form-check-label {
  font-size: 12px;
}

.form-check .form-check-label .input-check__icon {
  fill: var(--default-theme-white);
}


.account-page,
.return-request-page,
.order-details-page {
  background-color: var(--default--theme-grey-bg);
  padding: 25px;
  margin-top: 55px;
  margin-left: 100px;
}

.shipment-details-page {
  background-color: var(--default--theme-grey-bg);
  padding: 25px;
  margin-top: 55px;
}

.shipment-details-page .card {
  background-color: transparent;
}

.shipping-address li h5,
.shipping-address li span,
.shipping-details li a,
.shipping-details li span {
  font-weight: 600;
}

.shipping-address li,
.shipping-details li {
  padding-bottom: 12px;
  margin: 0;
}

.shipment-details-page .section.products .table th {
  height: 50px;
  font-weight: 700;
  background: #e1e1e1;
  padding: 0 10px;
  line-height: 50px;
  text-align: center;
  border: 1px solid #cccccc;
}

.shipment-details-page>.generalTitle {
  font-weight: 600;
}

.account-page .generalTitle,
.return-request-page .generalTitle,
.order-details-page>.generalTitle,
.order-cancel-page>.generalTitle {
  color: var(--default-theme-dark-blue);
  font-size: 17px;
  padding: 0 25px;
  border-bottom: 1px solid #cccccc;
  font-weight: normal;
  line-height: 50px;
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 30px;
}

.order-details-page>.generalTitle {
  margin-bottom: 30px;
}

.address-list-page .card-body {
  padding-top: 8px;
}

.address-list-page .card-header {
  margin-bottom: 0;
  color: var(--default-color-black);
  font-size: 18px;
  padding: 15px 20px 2px 20px;
  text-decoration: underline;
  font-weight: 600;
}

.address-list-page .address-item .info {
  list-style: none;
  padding: 0;
  font-size: 14px;
  color: var(--default-color-black);
}

.address-list-page .card-footer {
  padding: 12px 20px 20px 20px;
}

.address-list-page .card-footer .fa-trash {
  margin-right: 7px;
}

.address-item li {
  line-height: 19px;
}

.order-list-page .order-info {
  font-size: 13px;
  color: #9d9d9d;
}

.order-list-page .order-info strong {
  color: var(--default-color-black);
}

.order-list-page .order-status {
  font-size: 13px;
  color: var(--default-color-black);
  display: flex;
  align-items: center;
}

.order-list-page .order-status img {
  float: left;
  margin-right: 8px;
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.order-list-page .order-price {
  font-size: 13px;
  color: var(--default-color-black);
  text-align: center;
  font-weight: bold;
}

.btn-outline-primary.btn-sm {
  border-color: #ffba00;
  color: var(--default-color-black);
  font-size: 12px;
  border-radius: 5px;
}

.btn-outline-primary.btn-sm:hover {
  background-color: #ffba00;
  color: var(--default-theme-white);
}

.btn-outline-secondary.btn-sm {
  color: var(--default-color-black);
  font-size: 12px;
  border-radius: 5px;
}

.btn-outline-secondary.btn-sm:hover {
  color: var(--default-theme-white);
}

.order-overview {
  margin-bottom: 30px;
}

.order-overview [class*="order-"] {
  font-size: 13px;
  margin-bottom: 5px;
  color: #9d9d9d;
}

.order-overview [class*="order-"] strong {
  color: var(--default-color-black);
}

.order-overview .order-status img {
  width: 22px;
  margin-right: 8px;
}

.order-details-area div .card {
  height: 100%;
}

.order-details-area div .card ul {
  padding: 0;
  list-style: none;
}

.wishlist-page .generalTitle {
  font-size: 25px;
  padding: 15px 0;
}

.wishlist-page .products-list[data-layout="grid-4-sidebar"] .products-list__item {

  width: calc(25% - 0px);
  box-shadow: inset -1px -1px #ddd, -1px -1px #ddd
}

.wishlist-page .products-list[data-layout^="grid-"] .product-card .product-card__actions {
  flex-direction: column;
}

.wishlist-page .products-list[data-layout="grid-4-sidebar"] .product-image__body,
.wishlist-page .products-list[data-layout^="grid-"] .product-card .product-card__image {
  height: unset;
  padding: 0;
}

.products-list[data-layout^="grid-"] .product-card .product-card__image .wishlist-page .products-list[data-layout^="grid-"] .product-card .product-card__actions {
  flex-direction: column;
}

.wishlist-page .products-list__body {
  display: flex;
  margin: 0 !important;
}

.wishlist-page .product-card__buttons {

  margin-top: 14px;
}

.share-label,
.share-info a {
  color: blue;
}

.wishlist-page .default__btn--line {
  padding: 7px 15px;
}

#searchkeyword {
  height: 40px;
  margin-left: 0;
}

.wishlist-page .product-card__delete {
  padding: 15px;
  position: absolute;
  top: -10px;
  left: -10px;
  background-color: transparent;
  color: var(--default-theme-dark-blue);
  z-index: 1;
}

.product-card__delete i {
  font-size: 20px;
}


.order-details-area div .card ul .title {
  margin-bottom: 10px;
}

.order-details-area div .card ul .generalTitle {
  font-size: 21px;
  color: var(--default-color-black);
}

.order-details-area div .card ul li {
  color: #6c6c6c;
  font-size: 14px;
}

.order-details-area .payment-method-status .float-end span {
  display: block;
}

.shopping-cart-container .cart-table__body tr:last-child td {
  border-bottom: 1px solid #ebebeb !important;
}

.shopping-cart-container .cart-table__body td {
  padding: 40px 0;
  vertical-align: middle;
  border-bottom: 1px solid #80808024;
}

.shopping-cart-container .cart-table__body .product-picture img {
  margin-right: 25px;
}

.shopping-cart-container .cart__table,
.shopping-cart-container .cart__table a {
  color: #252531;
}

.order-detail-page .actions input[type="button"],
.shopping-cart-container .cart__table a.ajax,
.order-details-page .shipments td a {
  padding: 10px;
  background: #d7d7d7;
  color: var(--default-color-black);
  font-size: 13px;
  border-radius: 6px;
  border: 0;
  transition: all .4s;
}

.order-detail-page .actions input[type="button"]:hover,
.shopping-cart-container .cart__table a.ajax:hover,
.order-details-page .shipments td a:hover {
  background: #d7d7d7a1;
}

.order-detail-page .actions input[type="button"] {
  font-weight: 500;
  font-size: 15px;
}

.order-details-page .totals td,
.totals th {
  font-size: 17px;
  border: none !important;
}

.order-details-page h5 {
  font-size: 18px;
  font-weight: normal;
  margin-bottom: 15px;
}

.order-details-page .order-notes thead tr {
  margin-bottom: 20px;
}

.order-details-page .order-notes th {
  border-bottom: 1px solid #ebebeb !important;
}

.order-details-page .order-notes td {
  border: none !important;
  height: 30px;
}

.order-details-page .order-notes th {
  height: 50px;
  display: flex;
  align-items: center;
}

.cart__table th.cart-table__column,
.order-details-page .shipments th {
  height: 50px;
  font-weight: 700;
  background: #e1e1e1;
  padding: 0 10px;
  line-height: 50px;
}

.order-details-page .shipments td {
  height: 60px;
  vertical-align: middle;
}

.form-floating>label {
  padding: 0;
  left: 15px !important;
  opacity: 0.75 !important;
  height: auto;
  transform: translateY(50%) !important;
  position: absolute !important;
}

.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label,
.form-floating>.form-select~label {
  font-size: 12px;
  opacity: 0.50 !important;
  margin-top: 0.25em;
  transform: none !important;
  top: 0;
}

.form-control::placeholder {
  opacity: 0;
}

.discount-btn .form-control::placeholder {
  opacity: 1;
}

.form-floating textarea.form-control {
  padding-top: 20px !important;
}

.edit-address.row {
  margin: 10px;
}

.form-floating>.form-control::placeholder {
  color: #9d9d9d;
}

.form-control:disabled,
.form-control[readonly] {
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  opacity: 0.5;
}

.form-control+.select2-container .select2-selection__rendered {
  padding: 13px 15px 6px 15px;
}

#CreditCardInfoModel .form-floating > label {
    position: unset !important;
    transform: none !important;
    opacity: 1 !important;
}




#CreditCardInfoModel .row.align-items-center {
  margin-top: 30px;
}

#CreditCardInfoModel .row.align-items-center:last-child {
  margin-bottom: 30px;
}

.return-request-page .product img {
  margin-right: 15px;
}

.return-request-page .product a {
  display: block;
  color: #9d9d9d;
  font-size: 12px;
}

.return-request-page .product strong,
.return-request-page .quantity strong {
  font-size: 13px;
  color: var(--default-color-black);
}

.return-request-page .return-request-title {
  padding: 20px 30px;
  margin: 0;
  border-bottom: 2px solid #f0f0f0;
  font-size: 15px;
  font-weight: normal;
  display: block;
  width: 100%;
}

.return-request-page .buttons {
  display: flex;
  justify-content: space-between;
}

.return-request-page .buttons .btn {
  width: 260px;
}

.return-request-page th {
  white-space: nowrap;
}

#loader {
  position: absolute;
  z-index: 999;
  height: 2em;
  width: 2em;
  overflow: visible;
  margin: auto;
  bottom: 1.6rem;
  right: 50%;
  transform: translateX(-50%);
}

/* :not(:required) hides these rules from IE9 and below */
#loader:not(:required) {
  /* hide "loading..." text */
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

#loader:not(:required):after {
  content: '';
  display: block;
  font-size: 10px;
  width: 1em;
  height: 1em;
  margin-top: -0.5em;
  -webkit-animation: spinner 1500ms infinite linear;
  -moz-animation: spinner 1500ms infinite linear;
  -ms-animation: spinner 1500ms infinite linear;
  -o-animation: spinner 1500ms infinite linear;
  animation: spinner 1500ms infinite linear;
  border-radius: 0.5em;
  -webkit-box-shadow: rgba(0, 0, 0, 0.75) 1.5em 0 0 0, rgba(0, 0, 0, 0.75) 1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) 0 1.5em 0 0, rgba(0, 0, 0, 0.75) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.5) -1.5em 0 0 0, rgba(0, 0, 0, 0.5) -1.1em -1.1em 0 0, rgba(0, 0, 0, 0.75) 0 -1.5em 0 0, rgba(0, 0, 0, 0.75) 1.1em -1.1em 0 0;
  box-shadow: rgba(0, 0, 0, 0.75) 1.5em 0 0 0, rgba(0, 0, 0, 0.75) 1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) 0 1.5em 0 0, rgba(0, 0, 0, 0.75) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) -1.5em 0 0 0, rgba(0, 0, 0, 0.75) -1.1em -1.1em 0 0, rgba(0, 0, 0, 0.75) 0 -1.5em 0 0, rgba(0, 0, 0, 0.75) 1.1em -1.1em 0 0;
}

/* Animation */

@-webkit-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-moz-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-o-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.site__body {
  position: relative;
  /* min-height: 1200px; */
}

#mobile-menu {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  top: 0;
  left: -100%;
}

#mobile-menu-inner {
  width: 50%;
  height: 100%;
  background: var(--default-theme-white);
  padding-top: 50px;
  position: relative;
}

#mobile-menu .nav-links__list {
  flex-direction: column;
}

#mobile-menu .nav-links__item-link {
  display: block;
}

#mobile-menu .nav-links__list .nav-links__item {
  height: auto;
}

#mobile-menu .nav-links__item--has-submenu .nav-links__item-arrow {
  fill: #051c2c;
  transform: rotate(-90deg);
}

#mobile-menu-close {
  position: absolute;
  top: 2%;
  right: 4%;
  background: transparent;
  border: none;
  color: #051c2c;
}


.account-page {
  background-color: var(--default--theme-grey-bg);
  padding: 25px;
  margin-top: 55px;
  margin-left: 100px;
}

.address__card {
  height: 350px;
  margin-bottom: 24px;
}


@media screen and (min-width: 1025px) {
  .nav-panel__menu_opener {
    display: none;
  }
}

@media screen and (max-width:1700px) {
  .default__btn--line {
    min-width: 100%;
  }
}

@media screen and (max-width:1200px) {
  .site {
    overflow-x: hidden;
  }
}

@media screen and (max-width:768px) {

  .account-page,
  .return-request-page,
  .order-details-page {
    margin: 0;
  }

  .default__btn--line {
    min-width: 100%;
  }

  .wishlist-page .products-list[data-layout^="grid-"][data-mobile-grid-columns="2"] .products-list__item {
    width: 48%;
  }

  .block-slideshow .owl-carousel .owl-nav button.owl-next::before,
  .block-slideshow .owl-carousel .owl-nav button.owl-prev::before {
    font-size: 35px;
    height: 30px;
    background-size: contain;
  }

  .site {
    overflow-x: hidden;
  }

  .logo__footer {
    margin-bottom: 30px;
  }
}

.suggestions--location--header {
  display: flex;
  flex-direction: column;
}

.spinner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 40vh;
}


/* big__w-section  */
.big__w-section {
  background-color: var(--body-bg-altenative);
  padding: 30px;
  position: relative;
  margin-top: 150px;
  margin-bottom: 0;
}

.big__w-title {
  position: absolute;
  top: -17%;
  left: 0;
  width: 100%;
}

.big__w-title h2 {
  font-size: 160px;
  text-align: center;
  color: var(--body-bg-altenative);
  font-weight: bold;
}


@media screen and (max-width:767px) {
  .wishlist-table .cart__table thead,

  .cart-table__column--total {
    display: none;
  }

  .discount--item {
    display: none;

  }

  .wishlist-table .productAttributeMapping {
    text-align: left;
  }

  .cart-table__column--price {

    margin-left: 25px;
  }

  .cart-table__column--quantity .input-number {
    width: 82px;
    margin: 0 12px;
  }

  .edit-address {
    background: var(--default-theme-white);
  }

  .cart-table__product-name--box {
    margin-left: 20px;
  }

  .slider-wrapper .block-header {
    margin-bottom: 0;
  }

  [dir="ltr"] .block-header__groups-list+.block-header__arrows-list {
    margin: 15px 0 0 0;
  }

  .page-header__breadcrumb {
    padding-top: 0;
  }

  .generalMarginSupporter {
    margin: 0;
  }

  .account-page .blog-filter {
    display: none !important;
  }

  .wishlist-table {
    margin: 0 15px;
  }

  .shopping-cart-container .cart-table__body td {
    border: 0;
  }

  .ship-to-same-address {
    top: -31px;
    left: 0;
    right: unset;
  }

  #bankTransferPayment .fromCheckWrp {
    width: 100%;
    min-height: 160px;
  }

  .cartsummary__cart {
    margin-top: 20px;
    padding: 0px 15px 22px 15px;
    margin-left: 0;
    display: inline-table;
    width: 100%;
  }
}

@media screen and (max-width:1450px) {
  .big__w-title h2 {
    display: none;
  }
}

/* silinecek css  */
.search__product-box-list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}

.search__product-box {

  padding: 30px 0;

  border-top: 1px solid rgba(128, 128, 128, 0.466);

}

/**********************************
                blog  
  **********************************/
.blog__left {
  margin-top: 53px;
}

.blog__right {
  margin-top: 53px;
}

.blog__left ul li {
  list-style-type: none;
  padding: 10px 0;
  font-size: 16px;
}

#blog-month-list {
  font-size: 16px;
}

#blog-month-list strong {
  font-size: 16px;
}

.blog__left .sidebar_widget ul {
  padding-left: 0px;
  margin: 15px 0;
}

.blog__sidebar {
  margin-top: 0px;
}

#small-search-box-form-blog {
  height: 50px;
}

#small-searchterms-blog {
  height: 50px;
}

.widget-content.product-tags-list ul li a {
  cursor: pointer;
  font-weight: 500;
  margin-bottom: 0.5rem !important;
  margin-right: 0.5rem !important;
  padding: 0.25rem 0.5rem;
  font-size: .875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.widget-content.product-tags-list ul li a:hover {
  color: #212529;
  background-color: #e2e6ea;
  border-color: #dae0e5;
}

.blog__left .sidebar_widget h2 {
  font-size: 24px;

  font-weight: 700;
}

.blogsearch_box .form-control {
  font-size: 16px;
}

.blogsearch_box .search-box-button.btnSearch i,
.blogsearch_box .search-box-button.btnSearch p {
  float: left;
}

.blogsearch_box .search-box-button.btnSearch p {
  margin-left: 8px;
}

.blogsearch_box .search-box-button.btnSearch {
  height: 50px;
  font-size: 16px;
  color: #fff;
  background-color: var(--default-theme-dark-blue);
  border-color: var(--default-theme-dark-blue);
  width: 100px;
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
}

.blog--list-view .article_featured-image img {
  display: block;
  width: 100%;
  height: 300px;
  max-height: 500px;
  object-fit: cover;

}


.blog-single-page .article_featured-image img {
  width: 100%;
}

.blog--list-view .article {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  margin-top: 30px;
}

.blog--list-view .post-content {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  margin-top: 15px;
}

.blog--list-view .post-content h2.h3 {
  font-weight: 700;
  margin-bottom: 0;
  color: var(--default-theme-dark-blue);
  font-size: 18px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 80%;
}

.blog--list-view .post-content .rte a {
  color: #17a2b8;
  border-color: #17a2b8;
  background: #fff;
  border-radius: 5px;
  margin-top: 16px;
  font-weight: 500;
}

.publish-detail {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 10px 0;
}

.publish-detail li,
.publish-detail a {
  font-size: 14px;
  color: var(--default-theme-light-blue);

}

.publish-detail li {
  border-right: 1px solid #17a2b8;
  padding-right: 10px;
  margin-right: 10px;
}

.publish-detail li:last-child {
  border-right: 0;

}

.post-content__info {
  font-size: 15px;
  margin-top: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blogbox-footer {
  margin-top: 20px;
}

.blogbox-footer a {
  font-size: 14px;
}

.blogbox-footer ul {
  margin-bottom: 0;
  padding-left: 0;
}

.blogbox-footer ul li {
  list-style-type: none;
}

.blogbox-footer a:hover {
  color: var(--text-white-color);
}

.blog--list-view .post-content .rte a:hover {
  color: #fff !important;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.blog-single-page h1 {
  font-weight: 600;
  font-size: 25px;
  color: var(--default-theme-dark-blue);
  margin: 10px 0;

}

.blog-comment h2 {
  font-weight: bold;
  font-size: 18px;
  margin: 10px 0 20px;
}

.new-comment {
  margin: 20px 0;
}

.comment__avatar {
  border: 2px solid #ccc;
  width: 70px;
  height: 70px;
  border-radius: 100%;
  color: #ccc;
  margin-right: 15px;
  background-color: #cccccc3d;
}

.blog-single-page .publish-detail {
  border-bottom: 1px solid #cccccc;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.blog-post-add-comment-button {
  max-width: 300px;
  font-size: 16px;
  padding: 10px 15px;
  transition: 500ms all;
}

.blog-post-add-comment-button:hover {
  border: 1px solid var(--default-theme-dark-blue);
  background-color: transparent;
  color: var(--default-theme-dark-blue);
  transition: 500ms all;
}

.recently_blog_title {
  font-size: 14px;
  font-weight: 600;
}

.recently_blog_date {
  font-size: 12px;
  font-weight: 600;
  margin-top: 10px;
  color: #999;
}

.enter-comment-text {
  height: 200px;
  margin: 15px 0;
}

.not-found-page {
  padding: 80px 0;
}

.error-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.error-content .default__btn {
  margin-top: 25px;
}

.error-content .page-title h1 {
  font-weight: 600;
  font-size: 40px;
  text-transform: uppercase;
  margin: 20px 0;
}

.error-details {
  display: flex;
}


/* ==========================================================================
   Loader and Animation styles
   ========================================================================== */

.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--default-theme-white);
  /* change if the mask should have another color then white */
  opacity: 1;
  z-index: 11111;
  /* makes sure it stays on top */
  height: 100%;
  overflow: hidden;
  display: none;
}


/* Preloader */

.sk-cube-grid {
  width: 50px;
  height: 50px;
  margin: 0px auto;
  z-index: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%);
}

.sk-cube-grid .sk-cube {
  width: 33%;
  height: 33%;
  background-color: var(--default-theme-dark-blue);
  float: left;
  -webkit-animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
  animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
}

.sk-cube-grid .sk-cube1 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.sk-cube-grid .sk-cube2 {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.sk-cube-grid .sk-cube3 {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.sk-cube-grid .sk-cube4 {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.sk-cube-grid .sk-cube5 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.sk-cube-grid .sk-cube6 {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.sk-cube-grid .sk-cube7 {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.sk-cube-grid .sk-cube8 {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.sk-cube-grid .sk-cube9 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

@-webkit-keyframes sk-cubeGridScaleDelay {

  0%,
  70%,
  100% {
    -webkit-transform: scale3D(1, 1, 1);
    transform: scale3D(1, 1, 1);
  }

  35% {
    -webkit-transform: scale3D(0, 0, 1);
    transform: scale3D(0, 0, 1);
  }
}

@keyframes sk-cubeGridScaleDelay {

  0%,
  70%,
  100% {
    -webkit-transform: scale3D(1, 1, 1);
    transform: scale3D(1, 1, 1);
  }

  35% {
    -webkit-transform: scale3D(0, 0, 1);
    transform: scale3D(0, 0, 1);
  }
}

@media screen and (max-width:767px) {
  .products-list[data-layout="list"] .product-card .product-card__image {
    width: 100%;
  }

  .blog-single-page .blog-filter {
    display: none !important;
  }

  .blog-single-page {
    margin-top: 0 !important;
  }

  .blog-post-add-comment-button {
    max-width: 100%;
  }

  .block-slideshow__slide-image--mobile {
    background-position: top center;
    display: block;
    height: 100%;
    position: relative;
  }
}

@media (min-width: 992px) {
  .blogclosemobileMenu {
    display: none;
  }

}

@media (max-width: 991.98px) {

  .blogclosemobileMenu {
    display: block;
    display: flex;
    justify-content: flex-end;

  }

  .blogclosemobileMenu span {
    background-color: var(--default-theme-dark-blue);
    color: var(--text-white-color);
    margin: 15px 15px 0;
    width: 25px;
    height: 25px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .blog__sidebar {
    margin-top: 0px;
  }

  .blog__left_mobile {
    background: #000000d9;
    display: none;
    width: 100%;
    height: 100%;
    z-index: 999;
    position: fixed;
    top: 0;
  }

  .blog_menu_mobile {
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    left: -100%;
    transition: 0.5s;
    position: fixed;
    height: 100%;
    z-index: 9999;
    max-width: 300px;
    width: 100%;
    background: #fff;
    padding-left: 15px;
    padding-top: 20px;
    top: 0;
    margin-top: 0;
  }

  .mobile-blog__menu-button {
    text-align: center;
    margin: 15px 0;
    max-width: 200px;
    display: block;
    font-size: 16px;
  }
}

/**** blog css son ****/

#LoginForm #loginError {
  border-radius: 8px;
  background-color: rgba(250, 92, 92, 0.78);
  color: var(--default-theme-white);
  font-family: var(--bs-font-sans-serif);
  font-size: 16px;
  font-weight: bold;
  line-height: 24px;
  padding: 20px 0;
  display: block;
}

.register__card #ErrorMessage {
  border-radius: 8px;
  background-color: rgba(250, 92, 92, 0.78);
  color: var(--default-theme-white);
  font-family: var(--bs-font-sans-serif);
  font-size: 16px;
  font-weight: bold;
  line-height: 24px;
  padding: 20px 0;
  display: block;
  text-align: center;
}

.search-suggestions-list {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}

.search-suggestions-list li {
  border: 1px solid #4a4a4a;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: .5px;
  background-color: #fff;
  border-radius: 50px;
  padding: 10px 16px;
  border: 1px solid #4a4a4a;
  color: #4a4a4a;
  white-space: nowrap;
  margin: 8px 16px 8px 0;
  cursor: pointer;
  transition: 500ms all;
}

.search-suggestions-list li.active,
.search-suggestions-list li:hover {
  background: var(--default-theme-dark-blue);
  color: var(--text-white-color);
  transition: 500ms all;
}

.search-suggestions-list li:hover a {
  color: var(--text-white-color);
}


.suggestions__fast-search-categories li {
  border: 0;
  margin: 0 15px 0 0;
  padding: 0;
  font-size: 13px;
}

.suggestions__fast-search-categories li:hover {
  background: transparent;
  color: var(--text-black-color);
  transition: 500ms all;
}


.suggestions__fast-search-categories li:hover a {
  background: transparent;
  color: var(--text-black-color);
  transition: 500ms all;
}

.suggestions__list {
  border-top: 1px solid rgba(128, 128, 128, 0.466);
}

.search__suggestions h2 {
  font-weight: 600;
}

.search__list--box {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.search__word {
  font-weight: bold;
}

.search__body .logo {
  justify-content: flex-start;
  height: 100%;
  margin-top: 20px;
}



/* product-details gallery  */


/*Sportime */

.product-image__body {
  padding-bottom: 0;
}

.product-image__img {
  position: relative;
}

.products-list[data-layout="grid-2-sidebar"][data-mobile-grid-columns="2"] .product-card .product-card__image {
  height: 522px;
  min-height: unset;
}

.products-list[data-layout="grid-3-sidebar"][data-mobile-grid-columns="2"] .product-card .product-card__image {
  height: 620px;
  min-height: unset;
}

.products-list[data-layout="grid-3-sidebar"] .products-list__item {
  width: calc(33% - 0);
  margin: 0;
  padding: 15px !important;
  box-shadow: inset -1px -1px #ddd, -1px -1px #ddd;
}

.products-list[data-layout="grid-3-sidebar"] .products-list__item .product-card {
  width: 100%;
  margin: 0 auto;
}


.products-list[data-layout="grid-3-sidebar"] .products-list__item:first-child {
  margin-left: 0;
}

.products-list[data-layout="grid-3-sidebar"] .products-list__item:nth-child(3n) {
  margin-right: 0;
}

.products-list[data-layout="grid-3-sidebar"] .products-list__item:nth-child(3n)+div {
  margin-left: 0;
}

.products-list[data-layout="grid-4-sidebar"] .products-list__item {

  width: calc(25%);

  padding: 20px;
}

.products-list[data-layout="grid-4-sidebar"] .products-list__item:first-child {
  margin-left: 0px;
}

.products-list[data-layout="grid-4-sidebar"] .products-list__item:nth-child(4n) {
  margin-right: 0;
}

.products-list[data-layout="grid-4-sidebar"] .products-list__item:nth-child(4n)+div {
  margin-left: 0;
}


.product-gallery__featured .product-image {
  padding: 0;
  overflow: hidden;
}

.product-details-fall-box {
  display: none;
  justify-content: space-between;
  align-items: center;
}

.accardoin__product {
  margin-top: 20px;
}

.product__features,
.product-card__features-list {
  display: block !important;
  text-align: center;
  margin: 0;
}

.product-card__features-list {
  text-align: left;
}

.products-list[data-layout^="grid-"] .product-card .product-card__features-list {
  text-align: center;
}

.product__features li,
.product-card__features-list li {
  color: #797979;
  font-family: Nunito;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 27px;
  padding-left: 0 !important;
}

.product__features li:not(#SpecificationCategory, #Specificationmodel),
.product-card__features-list li:not(#Specificationcinsiyet, #SpecificationCategory) {
  display: none;
}

.product__features li {
  float: left;
  margin: 0 2.5px;
}

.product__features {
  display: flex !important;
  justify-content: center;
}

.product__features li b,
.product-card__features-list li b {
  display: none;
}

.product__features li::before,
.product-card__features-list li::before {
  display: none;
}

[dir=ltr] .product-card__features-list li {
  padding: 0;
  display: inline-block;
}

.product-card__actions {
  margin: 0;
}


.owl-carousel .owl-item .product-image--location--gallery .product-image__img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-54%) translateY(0%);
}

.product-gallery__featured {
  box-shadow: none;
}

/* .product-gallery__carousel {
  display: none;
} */

.owl-stage {
  min-width: 300px;
}

@media screen and (min-width: 768px) {
  #product-image .owl-stage {
    transform: none !important;
    transition: none !important;
    width: 100% !important;
  }

  #product-image .owl-stage .owl-item {
    float: left;
    width: 50% !important;
    height: 800px;
    overflow: hidden;
    margin: 12px 0;
  }

  #product-image .owl-stage .owl-item img {
    width: 100% !important;
    height: 800px;
    object-fit: cover;
    object-position: top;
  }

  #product-image .owl-carousel .owl-dots {
    display: none;
  }
}

@media screen and (max-width:990px) {
  .searchkeyword--box form {
    width: 100%;
    margin-top: 15px;
  }

  .widget-filters--offcanvas--mobile .widget-filters__item {
    border-width: 1px;
    margin: 0;
  }

  .filter__body {
    position: unset;
  }

  .widget-filters__item {
    background-color: var(--default-theme-white);
  }

  .filter__container {
    width: 100%;
    min-width: 100%;
    height: auto;
    padding: 15px;
  }

  .filter-categories__list {
    display: block;

  }

  #AttrsContainer .filter-list__list label {
    width: 40px;
    height: 40px;

  }

  .filter-categories__list li {
    width: 100%;
  }

  .filter-list__list label {
    width: 100%;
    margin: 2px 0;
  }

  .filter__title svg {
    opacity: 1;
  }

  .desktop-options__filter-button {
    display: none;
  }

  .filter__title {
    width: 97%;
    padding: 15px;
    border-bottom: 1px solid #b3b3b33b;
  }

  .filter--bg {
    background-color: transparent !important;
  }

  .filter__body {

    margin: 0;
  }

  #AttrsContainer .filter-list__list label {
    margin: 3px;
  }

  .product-social-shared span {
    display: none;
  }

  .products-list[data-layout="grid-4-full"] .products-list__item {
    padding: 0 !important;
  }

  .products-list[data-layout="grid-4-full"] .product-image__body {
    height: 175px;
  }

  .products-list[data-layout="grid-3"] .products-list__item {
    padding: 0 !important;
  }

  .products-list[data-layout="grid-3"] .product-image__body {
    height: 175px;
  }


  div.view-options__layout .grid-four {
    display: none;
  }
}

/* size guide  */

#sizechart table,
.tab-container table {
  table-layout: fixed;
}

#sizechart {
  text-align: center;
  background: #fff;
  margin: 0 auto;
  padding: 20px;
  max-width: 800px;
  position: relative;
}

#sizechart table tr th {
  background: var(--default-color-black);
  color: #fff;
  border: 0 !important;
}

#sizechart table tr th,
#sizechart table tr td {
  padding: 7px 12px;
  text-align: center;
  font-size: 12px;
  border: 1px solid #e8e9eb;
}

table {
  margin-bottom: 15px;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

#sizechart ul,
#ShippingInfo ul {
  margin: 0 0 20px 15px;
}

.card-footer-logo {
  height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.card-footer-logo img {
  height: 25px;
}

.admin-login-label-box {
  height: 20px;
}

.ErrorMessage {
  position: fixed;
  top: 15px;
  right: 15px;
  padding: 30px 50px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  background-color: #e66767;
  border-radius: 3px;
}

.ErrorMessage-close {
  position: absolute;
  top: 5px;
  right: 5px;
  background-color: var(--default-color-black);
  color: var(--default-theme-white);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  width: 25px;
  height: 25px;
}

.stock--button label {
  color: #252531;
  font-size: 15px;
  font-weight: 500;
  text-transform: capitalize;
  margin-left: 5px;
}

.return-items-button {
  display: none;
}



.search-page .filter--opened .filter__body {
  position: absolute;
  left: 320px;
  top: 110px;

}

.search-page .widget-filters__item {
  width: 300px;
  border-right: 1px solid #00000012;
  background-color: #f9f9f9;
}

/* .search-widget.active {
  transition: 500ms all;
  position: fixed;
  top: 0;
  left: -10px;
  background-color: var(--body-bg-color);
  width: 340px;
  height: auto;
  z-index: 999;
} */

.widget-filters-sidebar__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ebebeb;
  padding: 15px;
  font-weight: 600;
}


.backdrop-span {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: #111111ab;
  z-index: 99;
}

.search__wrapper-area {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
}

.search__wrapper-area .logo {
  margin-top: 0;
  width: 200px;
}

.search__list--box .block-header__title {
  font-size: 19px;
  font-weight: 600;
  text-decoration: none;
  text-transform: capitalize;

}

/* .search__list--box section{
  margin-top: 0;
} */
.search__list--box .block-header__arrow {
  width: 35px;
  height: 35px;
}

.search__list--box .block-header__arrow svg {
  width: 12px;
  height: 12px;
}

.search__list--box .product__car--buttons,
.search__list--box .product-card__rating,
.search__list--box .product-card__wishlist,
.search__list--box .product-card__badges-list,
.search__list--box .product__options {
  display: none;
}

.search__list--box .block-products-carousel__cell .product-card:hover {
  background: rgba(0, 0, 0, 0.03);
}

.search__loading {
  display: none;
}

.search__loading.show {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 200px;
}

.search__list--popular-product {
  display: none;
}

/* bootbox modal */
.bootbox.larger-modal .modal-dialog {
  max-width: 50%;
}

.eu-cookie-bar-notification {
  position: fixed;
  bottom: 0;
  left: 0;
  background: var(--header-top-bg);
  z-index: 800;
  padding: 20px 20px;
  width: 100%;
  box-shadow: rgb(149 157 165 / 64%) 0px 8px 24px;
}

.eu-cookie-bar-notification a {
  font-weight: 500;
}

.eu-cookie-bar-notification .btn-group a {
  padding: 10px 15px;
  line-height: 1;
  background: #ebebf6;
  margin: 0 10px;
  box-shadow: rgb(149 157 165 / 64%) 0px 8px 24px;
}


.product-swiper-item .swiper-pagination-bullet {
  background: var(--default-theme-white);
  width: 12px !important;
  height: 3px !important;
  margin: 0 2.5px !important;
  border-radius: 2px !important;
  border: solid 0.3px #979797 !important;
  opacity: 1 !important;
}

.product-swiper-item .swiper-pagination-bullet-active {
  width: 15px !important;
  height: 3px !important;
  border: solid 1px #fff !important;
  border-radius: 2px !important;
  background-color: var(--default-color-black) !important;
}


.categoryGrid .swiper-category .swiper-button-prev:after,
.categoryGrid .swiper-category .swiper-button-next:after {
  font-size: 17px;
  color: var(--default-theme-dark-blue);
  font-weight: 600;
}

.categoryGrid .swiper-slide {
  width: max-content;
}

.categoryGrid .card .card-title {
  font-size: 13px;
  font-weight: 600;
}

.categoryGrid .card .list-picture img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
}

.address-edit-page .card {
  background: transparent;
}

.wishlist-page .share-info {
  padding: 35px 0;
}

.cart__table.table.table-hover tr td {
  text-align: left;
}

.product-gallery {
  position: relative;
}

.product-gallery-wrapper {
  display: flex;
  gap: 20px;
}

.product-gallery__carousel .product-image__body {
  height: 80px;
}

.product-gallery__carousel .product-image__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.product-gallery__carousel .product-image__body {
  height: max-content;
  margin-bottom: 10px;
}

.product-gallery__carousel .swiper-slide {
  opacity: 0.7;
}

.product-gallery__carousel .swiper-slide-thumb-active {
  opacity: 1;
}

.product-gallery__carousel .swiper-slide-thumb-active img {
  border: 1px solid #0e0d0d8e;
}


@media screen and (min-width: 1024px) {
  .product-gallery__carousel {
    width: max-content;
    margin-top: 0;
    order: -1;
    height: max-content;
  }

  .product-gallery__carousel .swiper-wrapper {
    height: 350px;
  }

  .product-gallery__carousel .swiper-button-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 10px 0;
    height: max-content;
    margin-top: 20px;
  }

  .product-gallery__carousel .swiper-button-wrapper .swiper-button-prev,
  .product-gallery__carousel .swiper-button-wrapper .swiper-button-next {
    position: unset;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #eceaea;
  }

  .product-gallery__carousel .swiper-button-wrapper .swiper-button-prev::after,
  .product-gallery__carousel .swiper-button-wrapper .swiper-button-next::after {
    font-size: 15px;
    color: var(--default-color-black);
  }

  [dir=ltr] .product-gallery__zoom {
    display: none;
  }

  .product-gallery__carousel .product-gallery__carousel-item {
    height: max-content !important;
  }

  .product-gallery__featured {
    padding-right: 50px;
  }

  .product-gallery__featured .swiper {
    max-width: 800px;
  }

  .product-gallery__carousel .product-image__body {
    width: 100px;
  }

  /* .product-gallery__featured:not(.product-gallery__grid) .product-image__body{
    position: relative;
    overflow: hidden;
  }
  .product-gallery__featured:not(.product-gallery__grid) .product-image__body img{
    transform: scale(var(--zoom, 1));
    transform-origin: var(--x) var(--y);
    transition: transform 0.3s ease;
  }
  .product-gallery__featured:not(.product-gallery__grid) .product-image__body:hover{
    --zoom: 1.5;
  } */
}

@media screen and (min-width: 1024px) and (max-width: 1440px) {
  .product-gallery__featured {
    width: 75%;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .block-slideshow__slide-image--mobile {
    background-position: top center;
    display: block;
    height: 100%;
    position: relative;
  }

  .block-slideshow__slide-image--mobile img {
    height: 600px;
    object-fit: cover;
    object-position: bottom center;
  }
}

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

  .bootbox.larger-modal .modal-dialog {
    max-width: 100%;
  }

  .search__list--box section {
    width: 100%;
  }

  .search-suggestions-list li {
    margin: 5px 5px;
  }

  .wishlist-page .products-list[data-layout^="grid-"] .product-card .product-card__actions {
    padding: 0 5px 10px;
  }

  .products-list[data-layout^="grid-"] .product-card .product-card__info,
  .products-list[data-layout^="grid-"] .product-card .product-card__info .product-card__name {
    padding: 0 5px;
  }

  .card-wrapper>.jp-card-container {
    transform-origin: center center !important;
  }

  ul#paymentTabs {
    justify-content: center;
  }

  div#shipping-addresses-form {
    padding-top: 35px;
  }
}

.content-search {
  width: 100%;
  margin: 0 0 0 20px;
  position: absolute;
  left: 300px;
  top: 60px;
  width: 100%;
  max-width: 500px;
  min-width: 82%;
  display: flex;
  height: 45px;
  margin-bottom: 20px;
  border: 1px solid #d8d8d8;
  display: flex;
  align-items: center;
  justify-content: start;
  padding: 0;
  background-color: var(--default-theme-white);
}

.block-sidebar--offcanvas--always .content-search {
  position: unset;
  margin: 10px 0;
}

.content-search input {
  width: 100%;
  margin: auto;
  height: 100%;
  border: 0;
  outline: 0;

}

#content-search-input::placeholder {
  font-size: 14px;

}

.content-search i {
  margin-left: 15px;
}

.widget-filters__closebtn {
  border-bottom: 1px solid #d8d8d8;
  width: 100%;
  display: flex;
  justify-content: space-between;
  background-color: #F9F9F9;
  align-items: center;
}

.block-sidebar--offcanvas--always .widget-filters__closebtn {
  display: none;
}


.widget-filters__closebtn .widget__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  padding: 10px 23px;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.widget-filters__closebtn .widget__title svg {
  margin-right: 8px;
}

.widget-filters.widget.widget-filters--offcanvas--mobile::before {
  position: absolute;
  left: 300px;
  top: 46px;
  width: 100%;
  height: 100%;
  background-color: #F9F9F9;
  ;
  z-index: 0;
  content: '';
}


.stock--button .switch {
  position: relative;
  display: inline-block;
  width: 43px;
  height: 18px;
}

.stock--button .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.stock--button .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.stock--button .slider:before {
  position: absolute;
  content: "";
  height: 15px;
  width: 15px;
  left: 2px;
  bottom: 2px;
  -webkit-transition: .4s;
  transition: .4s;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  background-color: var(--default-theme-white);
}

.stock--button input:checked+.slider {
  background-color: var(--text-black-color);
}

.stock--button input:focus+.slider {
  box-shadow: 0 0 1px #2196F3;
}

.stock--button input:checked+.slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.stock--button .slider.round {
  border-radius: 34px;
}

.stock--button .slider.round:before {
  border-radius: 50%;
}

.stock--button:hover {
  text-decoration: none !important;
}

.hidden {
  display: none !important;
}


.widget-filters--offcanvas--always .filter-list__list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}

/*============================ contact us form ====================== */

#contactus-form .form-floating {
  margin: 10px 0;
  padding: 0;
}

.contact-us-button {
  width: 100%;
}

#contactus-form .form-floating textarea {
  min-height: 100px !important;
}

#contactus-form .form-floating input::placeholder {
  color: grey !important;
  font-size: 12px;
}

.contact-card {
  background-color: transparent;
}

div:where(.swal2-container) .swal2-html-container {
  overflow-x: hidden !important;
}

/* .edit-address .custom-radio input {
  display: none;
} */

.edit-address .custom-control-label {
  position: relative;
  cursor: pointer;
}

/* .edit-address .custom-control-label span {
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  line-height: 0;
  border-radius: 50%;
  background: transparent;
  border: 2px solid var(--button-border-color);
}

.edit-address .custom-control-label span::before {
  content: "";
  width: 60%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  height: 60%;
  border-radius: 50%;
}

.custom-radio input:checked+label span::before {
  background: var(--button-border-color);
} */

@media screen and (max-width: 1023px) {
  .product-gallery-wrapper {
    flex-direction: column-reverse;
  }

  .product-gallery__carousel .swiper-button-wrapper {
    display: none;
  }

  .block-sidebar--offcanvas--mobile .filter__body {
    position: unset;
    height: 0 !important;
  }

  .block-sidebar--offcanvas--mobile .filter--opened .filter__body {
    height: max-content !important;
  }

  .block-sidebar--offcanvas--mobile .filter-categories__list {
    flex-direction: column;
  }

  .block-sidebar--offcanvas--mobile .filter__container {
    height: max-content;
    max-height: max-content;
    min-width: max-content;
    width: 100%;
  }

  .block-sidebar--offcanvas--mobile .filter--opened .filter-list__list {}

  .block-sidebar--offcanvas--mobile .content-search {
    position: unset;
    max-width: max-content;
    min-width: max-content;
    width: 100%;
    margin: 7px auto;
  }

  .widget-filters.widget.widget-filters--offcanvas--mobile::before {
    display: none;
  }

  .block-sidebar--offcanvas--mobile .filter-categories__list li,
  .widget-filters--offcanvas--mobile .filter-list__list label {
    width: 100%;
  }

  .block-sidebar--offcanvas--mobile .filter-color__list,
  .block-sidebar--offcanvas--mobile #AttrsContainer .filter-list__list,
  .block-sidebar--offcanvas--mobile .filter--opened .filter-list__list {
    max-width: 275px;
  }

  .block-sidebar--offcanvas--mobile .widget-filters__list {
    overflow: hidden;
  }

  .block-sidebar--offcanvas--mobile .filter__arrow {
    top: 20px;
  }

}

.products-list[data-layout="grid-3-sidebar"] .product-swiper-item .swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  top: 75%;
}


/* filtereme mobile  */
.widget-nav-filters {
  display: none;
}

.categories-container {
  max-width: 1920px;
  width: 100%;
  min-width: 100%;
  padding: 0 45px;
}

@media screen and (max-width: 768px) {
  .categories-container {
    max-width: 1920px;
    width: 100%;
    min-width: 100%;
    padding: 0 15px;
  }

  .view-options__control {
    opacity: 1;
    display: block;
  }

  .view-options__legend {
    display: none;
  }

  .view-options {
    display: flex;
  }

  [dir=ltr] .view-options__control {
    margin: 0;
  }

  .filters-button__title {
    white-space: nowrap;
  }

  .layout-switcher__button {
    padding: 0 5px;
  }

  #mobile-filters-btn,
  #products-orderby-btn select {
    min-width: 170px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    white-space: nowrap;
    width: 100%;
    height: 42px;
    padding: 10px;
    border: none;
    border: solid 1px #dbdbdb;
    color: var(--default-color-black);
    font-size: 14px;
    line-height: 16px;
    -webkit-appearance: none;
  }

  .view-options {
    flex-wrap: nowrap;
  }

  [dir="ltr"] .view-options__filters-button {
    margin: 0;
  }

  .block-sidebar--offcanvas--mobile .block-sidebar__body {
    width: 100%;
  }

  .block-sidebar--offcanvas--mobile .block-sidebar__header {
    background-color: var(--default-color-black);
    color: var(--default-theme-white);
    height: 48px;
  }

  .block-sidebar__title {
    padding: 0 16px;
    font-weight: 500;
    color: var(--default-theme-white);
  }

  [dir="ltr"] .block-sidebar__close {
    border: 0;
  }

  .block-sidebar__close svg {
    fill: var(--default-theme-white);
    height: 15px;
  }

  .widget-nav-filters {
    display: block;
    position: fixed;
    top: 48px;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 99;
    background-color: var(--default-theme-white);
  }

  .block-sidebar--offcanvas--mobile .widget-filters__list {
    margin-top: 0px;
  }

  .widget-nav-filters ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e3e3e3;
  }

  .widget-nav-filters ul li {
    border-left: 1px solid #e3e3e3;
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 13px;
    color: var(--default-color-black);
  }

  #filter-Clears {
    color: var(--default-color-black);
    background-color: transparent;
    width: auto;
    display: inline;
    text-align: center;
    font-weight: 500;
    font-size: 13px;
    margin: 0;
    text-decoration: none !important;
    border: 0;
    white-space: nowrap;
  }

  .content-search {
    display: none;
  }

  .widget-filters__item,
  .stock--button {
    width: 100%;
  }

  .stock--button {
    border-right: 0;
    padding: 20px 10px;
  }

  .stock--button label {
    font-weight: 400;
    font-size: 16px;
    color: #373d3f;
  }

  [dir="ltr"] .filter__title {
    text-align: left;
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    color: #373d3f;
    width: 100%;
  }

  .filter-categories__list li,
  .widget-filters--offcanvas--mobile .filter-list__list label {
    text-align: left;
    font-size: 16px;
    font-weight: 400 !important;
    text-transform: capitalize;
    color: #373d3f;
    width: 100%;
    border-bottom: 1px solid #b3b3b33b;
    padding: 15px 18px;
    margin: 0;
  }

  .filter__title:focus,
  .filter__title:hover {
    text-decoration: none;
  }

  [dir="ltr"] .filter__arrow {
    transform: rotate(270deg);
  }

  .block-sidebar--offcanvas--mobile .filter__body {
    position: absolute;
    width: 100%;
    height: 100% !important;
    z-index: 99;
    top: 160px;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: var(--default-theme-white);
  }

  .block-sidebar--offcanvas--mobile .filter--opened .filter__body {
    height: 100% !important;
    max-height: 100%;
  }

  .filter__container {
    padding: 0;
  }

  .block-sidebar--offcanvas--mobile .content-search {
    margin-top: 0px;
    width: 93%;
    margin: 0;
    max-width: 93%;
    min-width: 93%;
    margin: 15px auto;
  }

  .block-sidebar__item {
    background-color: #e3e3e3;
  }

  .block-sidebar--offcanvas--mobile .filter--opened .filter-list__list,
  .block-sidebar--offcanvas--mobile #AttrsContainer .filter-list__list,
  .block-sidebar--offcanvas--mobile .filter--opened .filter-list__list {
    width: 100%;
    max-width: 100%;
  }

  #AttrsContainer .filter-list__list label {
    width: 100% !important;
    font-size: 16px;
    font-weight: 400 !important;
    text-transform: capitalize;
    color: #373d3f;
    width: 100%;
    border-bottom: 1px solid #b3b3b33b;
    padding: 15px 18px;
    margin: 0;
    border-radius: 0;
    height: 50px;
    padding: 0;
  }

  #AttrsContainer .filter-list__list label .input-check__input {
    position: relative;
    width: 14px;
    height: 14px;
    z-index: 99;
    opacity: 1;
  }

  .filters-backspace-btn.is-active {
    text-decoration: underline;
    font-weight: 600;
  }

  #AttrsContainer .filter-list__list label .input-check__box {
    width: auto;
    height: auto;
    position: unset;
    box-shadow: none;
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    color: #373d3f;
  }

  #PriceRangeFilter {
    display: none;
  }

  #AttrsContainer .filter-list__list label .input-check__body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
    padding: 18px 15px;
  }

  #AttrsContainer .filter-list__list label input:checked+.input-check__box {
    background-color: transparent;
    color: var(--default-color-black);
  }

  .selectedfilters .filter__body {
    top: 100px !important;
  }

  .category-page .view-options.view-options--offcanvas--mobile {
    position: relative;
  }

  .view-options__layout {
    position: absolute;
    bottom: 100%;
  }

  .products-list[data-layout="grid-3-sidebar"][data-mobile-grid-columns="2"] .product-card .product-card__image {
    height: unset;
  }
}

.product-card__image--dekstop {
  display: block;
}

.product-card__image--mobile {
  display: none;
}

@media screen and (max-width:1000px) {

  .product-card__image--dekstop {
    display: none;
  }


  .product-card__image--mobile {
    display: block;
  }

  .product-card__image--desktop {
    display: none;
  }

  .search-page .shop-layout__sidebar {
    display: none;
  }

  .search-page .block-sidebar__header {
    display: flex;
    background-color: var(--default-color-black);
    color: var(--default-theme-white);
    justify-content: space-between;
    align-items: center;
  }

  .search-page .shop-layout__sidebar.active {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    background-color: var(--default-theme-white);
    min-width: 300px;
    width: 100%;
    z-index: 99;
  }

  .search-widget.widget-filters--offcanvas--mobile {
    margin-top: 44px;
  }

  .search-page .widget-filters__item {
    width: 100%;
  }

  .search-page .filter--opened .filter__body {
    left: 0;
    top: 110px;
    background: var(--default-theme-white);
    min-height: 100vh !important;
    z-index: 99;
  }

  .search-page .filter__arrow {
    right: 10px;
    top: 22px;
  }
}



/*==========================================
                  İnstagram Start
=============================================*/
.instagram-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 0;
}

.instagram-header__title {
  display: flex;
  align-items: center;
}

.instagram-header__title h2 {
  color: var(--text-black-color);
  font-size: 20px;
  font-weight: 500;
  margin: 0 10px 0 0;
}

.instagram-header__title .instagram-share {
  color: #37352f66;
  font-size: 13px;
  padding-left: 10px;
  border-left: 1px solid #37352f66;
}

.instagram-btn {
  border: 1px solid #37352f24;
  padding: 10px;
  border-radius: 5px;
  font-size: 13px;
  border-radius: 4px;
  cursor: pointer;
  transition: 500ms all;
}

.instagram-btn i {
  margin-right: 5px;
  font-size: 14px;
}

.instagram-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.instagram-item a {
  height: 190px;
  width: 190px;
  margin: 0;
  border-radius: 3px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  transition: 500ms all;
  transform: scale(1);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.instagram-item a:nth-child(even) {
  margin: 0 13px;
}

.instagram-item a:hover {
  transform: scale(1.1);
  transition: 500ms all;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.instagram-item a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 5px;
}

.instagram-btn:hover {
  color: var(--default-theme-white);
  background: var(--default-color-black);
  transition: 500ms all;
}

@media screen and (max-width:768px) {
  .instagram-item a:nth-child(even) {
    margin: unset;
  }

  .instagram-item a:nth-child(odd) {
    margin: 5px 10px;
  }

  .instagram-share {
    display: none;
  }

  .instagram-header {
    padding: 25px 0;
  }
}

/*==========================================
                  İnstagram End
=============================================*/

/*==========================================
                  BLOG START
=============================================*/

.blog-posts .blog-post img {
  max-height: 280px;
  width: 100%;
  object-fit: cover;
  padding: 0 !important;
  margin-bottom: 10px;
  border-radius: 6px;
}

.block-header__title.home {
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
}

.blog-posts .blog-post h2 {
  font-size: 18px;
  margin: 14px 0px;
  color: var(--default-color-black);
  font-weight: 600;
  max-height: 40px;
  overflow: hidden;
}

.blog-posts .blog-post p,
.blog-posts .blog-post span {
  line-height: 27px !important;
  margin-bottom: 15px;
  font-weight: 400 !important;
  height: 80px;
  overflow: hidden;
  color: #808080;
  font-size: 14px !important;
  display: block;
  font-family: 'Poppins';
}

/*==========================================
                  BLOG FINISH
=============================================*/
.custom-sale {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}

.custom-sale span {
  font-size: 13px;
  color: var(--text-black-color);
}

.custom-sale .custom-sale_price {
  font-size: 18px;
  font-weight: bold;
  color: var(--product-sale-badge-bg);
  margin-top: 5px;
}

.filter-number {
  background-color: var(--text-black-color);
  color: var(--text-white-color);
  border-radius: 100%;
  position: absolute;
  top: 25%;
  right: 20px;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}


.was-validated .invalid-feedback {
  display: block;
}

/*==========================================
         MEGA MENU-STANDART MENU
=============================================*/
/*------------- STANDART MENU STYLE----------*/




.standart {
  display: flex;
  align-items: center;
  justify-content: space-around;
}


.standart__item-home {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 8px;
  position: relative;
}

.standart__item-home a {
  padding: 15px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid transparent;
  transition: 500ms all;
}

.standart__item-home:hover a {
  transition: 500ms all;
  color: var(--default-theme-dark-blue);
}

.standart__sublist {
  background-color: var(--text-white-color);
  opacity: 1;
}

.standart__sublist li {
  border-bottom: 1px solid #f2f2f2;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-transform: capitalize;
}

.standart__sublist li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  text-transform: capitalize;
}

.standart__sublist li:hover a {
  color: #2d3436;
}

.standart__sublist li .standart__item--arrow {
  opacity: 0;
  transform: rotate(0deg);
}

.standart__sublist li:hover .standart__item--arrow {
  opacity: 1;
  transform: rotate(0deg);
}

.standart__item-home .standart__item--subbox {
  display: block;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  background-color: #fbfbfb;
}

.standart__item-home span {
  width: 100%;
}

.standart__item-home.standart__item-submenu a {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 15px 0 15px 0;
}

.standart__item-home .standart__item--subbox {
  display: none;
  position: absolute;
  top: 51px;
  z-index: 999;
}

.standart__item-home.standart__item-submenu .standart__item--arrow {
  margin-left: 20px;
}

.standart__item-home:hover .standart__item--arrow {
  transform: rotate(-180deg);
  transition: 500ms all;
}

.standart__item-home:hover .standart__item--subbox {
  animation: fadeInDown;
  animation-duration: 0.8s;
  display: block;
  min-width: 250px;
}

.standart__item--1 li {
  position: relative;
}

.standart__item--1 li svg {
  display: block;
}

.standart__item--1 li .standart__item-submenu .standart__item--2 {
  display: none;
}

.standart__item--1 li:hover .standart__item-submenu .standart__item--2 {
  display: block;
  animation: fadeInDown;
  animation-duration: 0.8s;
  min-width: 250px;
  position: absolute;
  right: -100%;
  top: 0;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.standart__item--1 li .standart__item-submenu .standart__item--2 li {
  position: relative;
}

.standart__item--2 .standart__item-submenu .standart__item--3 {
  display: none;
  position: absolute;
  right: -78%;
  z-index: 999;
  top: 0;
  min-width: 200px;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.standart__item--1 li .standart__item-submenu .standart__item--2 li:hover .standart__item--3 {
  display: block;
  animation: fadeInDown;
  animation-duration: 0.8s;
}

.standart__item-mobil--arrow {
  display: none;
}

.standart__item--arrow {
  display: block;
}

@media screen and (max-width:1000px) {
  .standart {
    display: flex;
    flex-direction: column;
  }


  .standart__item-home.standart__item-submenu a {
  padding: 15px 0 15px 15px;
  }
  .standart__item--1 li:hover .standart__item-submenu .standart__item--2,
  .standart__item-home:hover .standart__item--subbox {
    animation: none;
  }

  .standart__item-home {
    padding: 0px;
    border-bottom: 1px solid #eee;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 0;

  }

  .standart__item-home span {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
  }

  .standart__item-home a,
  .standart__item-home span a {
    width: auto;
    display: flex;
    display: block;
    align-items: center;
    font-size: 13px;
    width: 100%;
    padding: 14px 0 14px 12px;
    color: #333333;
    letter-spacing: 0.05em;
    justify-content: flex-start;
    border: 0;
  }

  .standart__item-home svg {
    transform: rotate(90deg);
  }

  .standart__item--arrow {
    display: none;
  }

  .standart__item-mobil--arrow {
    display: block;
    width: 50px;
  }

  .standart__item-mobil--arrow i {
    font-size: 12px;
  }

  .standart__item-home .standart__item--subbox,
  .standart__item-home:hover .standart__item--subbox,
  .standart__item--1 li:hover .standart__item-submenu .standart__item--2,
  .standart__item--1 li .standart__item-submenu .standart__item--2,
  .standart__item--2 .standart__item-submenu .standart__item--3,
  .standart__item--1 li .standart__item-submenu {
    display: none;
    position: unset;
    top: 0;
    z-index: 999;
    width: 100%;
    box-shadow: none;
    animation: none;
    right: 0;
    width: 100%;
  }

  .standart__item--1 li:hover .standart__item-submenu .standart__item--2,
  .standart__item--1 li .standart__item-submenu .standart__item--2 {
    display: unset;
  }

  .standart__sublist li {
    flex-direction: column;
  }

  .standart__sublist {
    background-color: #f2f2f2;
  }

  .standart__item--1 li {
    padding: 0 0 0 14px;
    border-bottom: 1px solid #eee;
  }

  .standart__item--1 li a {
    padding-right: 0;
  }

  .standart__item--1 li .standart__item-submenu .standart__item--2 li {
    padding: 0;
  }

  .standart__item-submenu {
    width: 100%;
  }

  .standart__item--1 li .standart__item-submenu .standart__item--2 li:hover .standart__item--3 {
    display: block;
    animation: none;
    position: unset;
    animation-duration: 0.8s;
  }

  .standart__item--2 li {
    padding-left: 12px !important;
  }

}

/* */

/* Annimex Custom Icon CSS */ 
@font-face{font-family:annimex-icons;src:url(../content/fonts/fonts/annimex-icons.eot?ipuin8);src:url(../content/fonts/fonts/annimex-icons.eot?ipuin8#iefix) format('embedded-opentype'),url(../content/fonts/fonts/annimex-icons.ttf?ipuin8) format('truetype'),url(../content/fonts/fonts/annimex-icons.woff?ipuin8) format('woff'),url(../content/fonts/fonts/annimex-icons.svg?ipuin8#adorn-icons) format('svg');font-weight:400;font-style:normal}.anm{font-family:annimex-icons!important;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.anm-money-note:before{content:"\e91c"}.anm-chat:before{content:"\e906"}.anm-credit-card1:before{content:"\e907"}.anm-customer-service:before{content:"\e908"}.anm-dollar:before{content:"\e909"}.anm-fire:before{content:"\e911"}.anm-fire-l:before{content:"\e912"}.anm-free-delivery:before{content:"\e913"}.anm-gift-box:before{content:"\e914"}.anm-like:before{content:"\e91a"}.anm-money:before{content:"\e91b"}.anm-payment-security:before{content:"\e91d"}.anm-phone-24:before{content:"\e923"}.anm-recommended:before{content:"\e924"}.anm-reliability:before{content:"\e925"}.anm-rule:before{content:"\e926"}.anm-ruler:before{content:"\e929"}.anm-dressmaker:before{content:"\e92e"}.anm-shield:before{content:"\e930"}.anm-bag-t:before{content:"\e933"}.anm-video2:before{content:"\e93b"}.anm-video-player1:before{content:"\e93e"}.anm-worldwide:before{content:"\e941"}.anm-telegram:before{content:"\ec30"}.anm-telegram-plane:before{content:"\ec31"}.anm-upload:before{content:"\ea33"}.anm-upload-r:before{content:"\eb51"}.anm-upload-l:before{content:"\ec1a"}.anm-window-restore-r:before{content:"\eb5e"}.anm-book-r:before{content:"\ea6a"}.anm-briefcase:before{content:"\e93c"}.anm-briefcase-r:before{content:"\ea6b"}.anm-calculator:before{content:"\e940"}.anm-calculator-r:before{content:"\ea6e"}.anm-calculator-l:before{content:"\eb83"}.anm-calendar:before{content:"\f073"}.anm-copy-l:before{content:"\eba5"}.anm-download:before{content:"\e976"}.anm-download-r:before{content:"\eaa6"}.anm-paper-r-plane:before{content:"\eaeb"}.anm-paper-l-plane:before{content:"\ebd7"}.anm-portrait-l:before{content:"\ebe4"}.anm-save:before{content:"\e9f4"}.anm-save-r:before{content:"\eb1b"}.anm-save-l:before{content:"\ebf2"}.anm-server:before{content:"\f233"}.anm-server-r:before{content:"\eb20"}.anm-server-l:before{content:"\ebf6"}.anm-id-badge:before{content:"\e9a2"}.anm-id-badge-r:before{content:"\eabc"}.anm-id-card:before{content:"\e9a3"}.anm-id-card-r:before{content:"\eabd"}.anm-id-card-l:before{content:"\ebbe"}.anm-image:before{content:"\e9a4"}.anm-image-r:before{content:"\eabe"}.anm-images-r:before{content:"\eabf"}.anm-inbox:before{content:"\e9a6"}.anm-inbox-in:before{content:"\e9a7"}.anm-inbox-in-r:before{content:"\eac0"}.anm-inbox-out:before{content:"\e9a8"}.anm-inbox-out-r:before{content:"\eac1"}.anm-tag:before{content:"\ea1e"}.anm-tags:before{content:"\ea1f"}.anm-tag-r:before{content:"\eb39"}.anm-tags-r:before{content:"\eb3a"}.anm-tag-l:before{content:"\ec08"}.anm-tags-l:before{content:"\ec09"}.anm-newspaper:before{content:"\eae4"}.anm-newspaper-r:before{content:"\ebd6"}.anm-clipboard:before{content:"\f0ea"}.anm-paste:before{content:"\f0ea"}.anm-address-book-o:before{content:"\f2ba"}.anm-address-book:before{content:"\e900"}.anm-address-card:before{content:"\e901"}.anm-address-book-r:before{content:"\ebbd"}.anm-folder:before{content:"\e999"}.anm-folder-open:before{content:"\e99a"}.anm-browser:before{content:"\ea6c"}.anm-folder-r:before{content:"\eab5"}.anm-folder-open-r:before{content:"\eab6"}.anm-folder-l:before{content:"\ebb7"}.anm-folder-open-l:before{content:"\ebb8"}.anm-file-text-o:before{content:"\f0f6"}.anm-copy-files-o:before{content:"\f0c5"}.anm-file-alt:before{content:"\e992"}.anm-file-check:before{content:"\e993"}.anm-file-code:before{content:"\e994"}.anm-file-pdf:before{content:"\e995"}.anm-file-ar:before{content:"\ebb5"}.anm-sliders-h-square:before{content:"\ea08"}.anm-sliders-hr-square:before{content:"\eb2d"}.anm-tuning:before{content:"\ec46"}.anm-ban:before{content:"\e938"}.anm-ban-r:before{content:"\ea65"}.anm-bars:before{content:"\e939"}.anm-bars-r:before{content:"\ea66"}.anm-bars-l:before{content:"\eb7f"}.anm-chain:before{content:"\f0c1"}.anm-link3:before{content:"\f0c1"}.anm-circle-notch:before{content:"\e968"}.anm-circle-notch-r:before{content:"\ea92"}.anm-clone:before{content:"\f24d"}.anm-cog:before{content:"\f013"}.anm-gear:before{content:"\f013"}.anm-cog-r:before{content:"\ea96"}.anm-cog-l:before{content:"\eba0"}.anm-cogs:before{content:"\f085"}.anm-gears:before{content:"\f085"}.anm-cogs-r:before{content:"\ea97"}.anm-cogs-l:before{content:"\eba1"}.anm-edit1:before{content:"\ec47"}.anm-edit:before{content:"\e977"}.anm-edit-l:before{content:"\eba9"}.anm-edit4:before{content:"\f044"}.anm-pencil-square-o:before{content:"\f044"}.anm-ellipsis-h:before{content:"\e978"}.anm-ellipsis-hl:before{content:"\eaa8"}.anm-ellipsis-h3:before{content:"\f141"}.anm-ellipsis-v:before{content:"\e979"}.anm-ellipsis-vl:before{content:"\eaa9"}.anm-ellipsis-v3:before{content:"\f142"}.anm-expand-alt:before{content:"\e982"}.anm-compress-alt:before{content:"\ea9c"}.anm-expand:before{content:"\e981"}.anm-expand-wide:before{content:"\e985"}.anm-external-link:before{content:"\e986"}.anm-external-link-square:before{content:"\e988"}.anm-link:before{content:"\e9b3"}.anm-link-r:before{content:"\eac9"}.anm-list:before{content:"\e9b4"}.anm-list-alt:before{content:"\e9b5"}.anm-list-alt-r:before{content:"\eacc"}.anm-list-ul:before{content:"\e9b6"}.anm-list-ulr:before{content:"\eace"}.anm-list-r:before{content:"\eacb"}.anm-list-l:before{content:"\ebc6"}.anm-list4:before{content:"\f03a"}.anm-minus:before{content:"\e9c7"}.anm-minus-circle:before{content:"\e9c8"}.anm-minus-circle-r:before{content:"\ead9"}.anm-minus-circle-l:before{content:"\ebd2"}.anm-minus-square:before{content:"\e9c9"}.anm-minus-square-r:before{content:"\eada"}.anm-minus-square-l:before{content:"\ebd3"}.anm-minus-r:before{content:"\ead8"}.anm-minus-l:before{content:"\ebd1"}.anm-pen-alt:before{content:"\eaf1"}.anm-pen-square:before{content:"\eaf4"}.anm-pen-square-l:before{content:"\ebdb"}.anm-pencil:before{content:"\eaf2"}.anm-pencil-alt:before{content:"\e9d1"}.anm-pencil-ar:before{content:"\eaf3"}.anm-pencil-al:before{content:"\ebda"}.anm-pencil-square:before{content:"\f14b"}.anm-pencil-l:before{content:"\ebd9"}.anm-plus:before{content:"\e9d6"}.anm-plus-circle:before{content:"\e9d7"}.anm-plus-cir:before{content:"\eafc"}.anm-plus-cil:before{content:"\ebe1"}.anm-plus-square:before{content:"\e9d8"}.anm-plus-sqr:before{content:"\eafd"}.anm-plus-sql:before{content:"\ebe2"}.anm-plus-r:before{content:"\eafb"}.anm-plus-l:before{content:"\ebe0"}.anm-power-off:before{content:"\e9dc"}.anm-power-off-r:before{content:"\eb02"}.anm-random:before{content:"\e9e4"}.anm-random-r:before{content:"\eb0c"}.anm-recycle:before{content:"\e9e5"}.anm-recycle-r:before{content:"\eb0d"}.anm-recycle-l:before{content:"\ebec"}.anm-redo:before{content:"\e9e6"}.anm-redo-alt:before{content:"\e9e7"}.anm-redo-ar:before{content:"\eb0f"}.anm-redo-r:before{content:"\eb0e"}.anm-redo-l:before{content:"\ebed"}.anm-refresh:before{content:"\f021"}.anm-repeat:before{content:"\e9e8"}.anm-repeat-alt:before{content:"\eb12"}.anm-repeat-r:before{content:"\eb11"}.anm-repeat3:before{content:"\f01e"}.anm-rotate-right:before{content:"\f01e"}.anm-reply:before{content:"\e9ec"}.anm-reply-all:before{content:"\e9ed"}.anm-reply-all-r:before{content:"\eb14"}.anm-reply-r:before{content:"\eb13"}.anm-retweet:before{content:"\e9ee"}.anm-retweet-r:before{content:"\eb15"}.anm-retweet3:before{content:"\f079"}.anm-rotate-left:before{content:"\f0e2"}.anm-undo4:before{content:"\f0e2"}.anm-share:before{content:"\e9f9"}.anm-share-all:before{content:"\e9fa"}.anm-share-all-r:before{content:"\eb22"}.anm-share-square:before{content:"\e9fd"}.anm-share-sqr:before{content:"\eb25"}.anm-share-r:before{content:"\eb21"}.anm-sign-in-alt:before{content:"\ea05"}.anm-sign-in-ar:before{content:"\eb29"}.anm-sign-in-al:before{content:"\ebfb"}.anm-sign-out-alt:before{content:"\ea06"}.anm-sign-out-ar:before{content:"\eb2a"}.anm-sign-out-al:before{content:"\ebfc"}.anm-sitemap-r:before{content:"\eb2b"}.anm-sitemap-l:before{content:"\ebfd"}.anm-sliders:before{content:"\f1de"}.anm-sliders-h:before{content:"\eb2c"}.anm-sliders-hr:before{content:"\ebfe"}.anm-sliders-v:before{content:"\eb2e"}.anm-sliders-v-square:before{content:"\ea09"}.anm-sliders-v-sqr:before{content:"\eb2f"}.anm-sliders-vr:before{content:"\ebff"}.anm-sort-amount-down:before{content:"\ea0b"}.anm-sort-amount-up:before{content:"\ea0c"}.anm-spinner:before{content:"\ea0d"}.anm-spinner-r:before{content:"\eb30"}.anm-spinner-l:before{content:"\ec00"}.anm-spinner4:before{content:"\f110"}.anm-sync:before{content:"\ea18"}.anm-sync-ar:before{content:"\eb34"}.anm-table:before{content:"\ea1a"}.anm-table-r:before{content:"\eb35"}.anm-table3:before{content:"\f0ce"}.anm-th:before{content:"\ea20"}.anm-th-large:before{content:"\ea21"}.anm-th-large-r:before{content:"\eb3d"}.anm-th-large-l:before{content:"\ec0b"}.anm-th-list:before{content:"\ea22"}.anm-th-list-r:before{content:"\eb3e"}.anm-th-list-l:before{content:"\ec0c"}.anm-th-r:before{content:"\eb3c"}.anm-th-l:before{content:"\ec0a"}.anm-times:before{content:"\ea25"}.anm-times-circle:before{content:"\ea26"}.anm-times-cir:before{content:"\eb42"}.anm-times-cil:before{content:"\ec10"}.anm-times-square:before{content:"\ea27"}.anm-times-sqr:before{content:"\eb43"}.anm-times-sql:before{content:"\ec11"}.anm-times-r:before{content:"\eb41"}.anm-times-l:before{content:"\ec0f"}.anm-toggle-off:before{content:"\ea28"}.anm-toggle-offr:before{content:"\eb44"}.anm-toggle-onr:before{content:"\eb45"}.anm-trash-alt:before{content:"\ea2b"}.anm-trash-ar:before{content:"\eb46"}.anm-trash-al:before{content:"\ec14"}.anm-undo:before{content:"\ea2f"}.anm-undo-alt:before{content:"\ea30"}.anm-undo-r:before{content:"\eb4a"}.anm-undo-l:before{content:"\ec16"}.anm-wrench:before{content:"\ea43"}.anm-wrench-r:before{content:"\ec21"}.anm-exclamation:before{content:"\e97d"}.anm-exclamation-circle:before{content:"\e97e"}.anm-exclamation-cir:before{content:"\eaac"}.anm-exclamation-cil:before{content:"\ebad"}.anm-exclamation-square:before{content:"\e97f"}.anm-exclamation-sqr:before{content:"\eaad"}.anm-exclamation-sql:before{content:"\ebae"}.anm-exclamation-triangle:before{content:"\e980"}.anm-exclamation-tr:before{content:"\eaae"}.anm-exclamation-tl:before{content:"\ebaf"}.anm-exclamation-r:before{content:"\ebac"}.anm-info:before{content:"\e9ac"}.anm-info-circle:before{content:"\e9ad"}.anm-info-cir:before{content:"\eac3"}.anm-info-cil:before{content:"\ebc0"}.anm-info-square:before{content:"\e9ae"}.anm-info-sqr:before{content:"\eac4"}.anm-info-sql:before{content:"\ebc1"}.anm-info-r:before{content:"\eac2"}.anm-info-l:before{content:"\ebbf"}.anm-question:before{content:"\e9df"}.anm-question-circle:before{content:"\e9e0"}.anm-question-cir:before{content:"\eb07"}.anm-question-cil:before{content:"\ebe8"}.anm-question-square:before{content:"\e9e1"}.anm-question-sqr:before{content:"\eb08"}.anm-question-sql:before{content:"\ebe9"}.anm-question-r:before{content:"\eb06"}.anm-question-l:before{content:"\ebe7"}.anm-quote-left:before{content:"\e9e2"}.anm-quote-r-left:before{content:"\eb0a"}.anm-quote-l-left:before{content:"\ebea"}.anm-quote-right:before{content:"\e9e3"}.anm-quote-r-right:before{content:"\eb0b"}.anm-quote-l-right:before{content:"\ebeb"}.anm-amazon:before{content:"\e90e"}.anm-android:before{content:"\e918"}.anm-apple:before{content:"\e922"}.anm-bar-chart:before{content:"\f080"}.anm-bar-chart-o:before{content:"\f080"}.anm-bell-o:before{content:"\f0a2"}.anm-bell2:before{content:"\eb80"}.anm-birthday-cake:before{content:"\e93a"}.anm-birthday-cake-r:before{content:"\ea69"}.anm-bug:before{content:"\e93d"}.anm-vh-bus:before{content:"\e93f"}.anm-vh-bus-r:before{content:"\ea6d"}.anm-vh-bus-l:before{content:"\eb82"}.anm-certificate:before{content:"\e953"}.anm-child:before{content:"\e967"}.anm-clock:before{content:"\ea93"}.anm-clock-r:before{content:"\eb9e"}.anm-code:before{content:"\e96a"}.anm-code-r:before{content:"\ea95"}.anm-comment:before{content:"\e96d"}.anm-comment-alt:before{content:"\e96e"}.anm-comment-ar:before{content:"\ea9a"}.anm-comment-al:before{content:"\eba3"}.anm-comment-r:before{content:"\ea99"}.anm-comment-l:before{content:"\eba2"}.anm-comments:before{content:"\e96f"}.anm-comments-o:before{content:"\f0e6"}.anm-comments-r:before{content:"\ea9b"}.anm-comments-l:before{content:"\eba4"}.anm-css3-alt:before{content:"\eab4"}.anm-dashboard:before{content:"\f0e4"}.anm-tachometer:before{content:"\f0e4"}.anm-database:before{content:"\eaa2"}.anm-desktop:before{content:"\eaa3"}.anm-desktop-alt:before{content:"\e974"}.anm-desktop-ar:before{content:"\eaa4"}.anm-envelope:before{content:"\e97a"}.anm-envelope-square:before{content:"\e97b"}.anm-envelope-r:before{content:"\eaaa"}.anm-envelope-l:before{content:"\ebaa"}.anm-envelope1:before{content:"\ec48"}.anm-expeditedssl:before{content:"\eaec"}.anm-eye:before{content:"\e98a"}.anm-eye-slash:before{content:"\e98b"}.anm-eye-slash2:before{content:"\f070"}.anm-eye-slash-l:before{content:"\ebb3"}.anm-eye-r:before{content:"\eab1"}.anm-eye-l:before{content:"\ebb2"}.anm-female:before{content:"\e98f"}.anm-filter:before{content:"\e996"}.anm-filter-r:before{content:"\eab3"}.anm-filter-l:before{content:"\ebb6"}.anm-flag:before{content:"\f024"}.anm-flag-o:before{content:"\f11d"}.anm-gift:before{content:"\e99c"}.anm-gift-r:before{content:"\eab7"}.anm-gift-l:before{content:"\ebb9"}.anm-handshake:before{content:"\e99e"}.anm-handshake-o:before{content:"\f2b5"}.anm-handshake-l:before{content:"\ebba"}.anm-heart:before{content:"\e99f"}.anm-heart-r:before{content:"\eaba"}.anm-heart-l:before{content:"\ebbb"}.anm-history:before{content:"\e9a0"}.anm-home:before{content:"\e9a1"}.anm-home-r:before{content:"\eabb"}.anm-home-l:before{content:"\ebbc"}.anm-html5:before{content:"\ebcc"}.anm-key:before{content:"\e9af"}.anm-key-r:before{content:"\eac5"}.anm-key-l:before{content:"\ebc2"}.anm-language:before{content:"\e9b1"}.anm-language2:before{content:"\f1ab"}.anm-laptop:before{content:"\e9b2"}.anm-laptop-r:before{content:"\ebc3"}.anm-life-ring:before{content:"\eac7"}.anm-lightbulb:before{content:"\eac8"}.anm-lightbulb-r:before{content:"\ebc4"}.anm-location:before{content:"\ec49"}.anm-lock:before{content:"\ead0"}.anm-lock-alt:before{content:"\e9b7"}.anm-lock-ar:before{content:"\ead1"}.anm-lock-al:before{content:"\ebc7"}.anm-lock-open-alt:before{content:"\e9b8"}.anm-lock-open-ar:before{content:"\ead3"}.anm-lock-open-al:before{content:"\ebc8"}.anm-map-marker-alt:before{content:"\e9c2"}.anm-map-marker-ar:before{content:"\ead5"}.anm-map-marker-al:before{content:"\ebcd"}.anm-map-signs:before{content:"\e9c4"}.anm-map-signs-r:before{content:"\ead7"}.anm-map-signs-l:before{content:"\ebd0"}.anm-medapps:before{content:"\ec04"}.anm-microsoft:before{content:"\ec12"}.anm-mobile:before{content:"\e9ca"}.anm-mobile-alt:before{content:"\e9cb"}.anm-mobile-ar:before{content:"\eadb"}.anm-mobile-android:before{content:"\e9cc"}.anm-mobile-android-alt:before{content:"\e9cd"}.anm-mobile-android-ar:before{content:"\eadc"}.anm-neuter:before{content:"\e9ce"}.anm-neuter-r:before{content:"\eae3"}.anm-neuter-l:before{content:"\ebcf"}.anm-pennant:before{content:"\e9d2"}.anm-qrcode:before{content:"\e9de"}.anm-qrcode2:before{content:"\eb05"}.anm-react:before{content:"\ec26"}.anm-shield1:before{content:"\f132"}.anm-shield-alt:before{content:"\e9ff"}.anm-shield-check:before{content:"\ea00"}.anm-shield-check-r:before{content:"\e921"}.anm-signal:before{content:"\ea04"}.anm-search-sistrix:before{content:"\ec28"}.anm-sitemap:before{content:"\ea07"}.anm-slideshare:before{content:"\ec2a"}.anm-star:before{content:"\f005"}.anm-star-half-empty:before{content:"\f123"}.anm-star-half-full:before{content:"\f123"}.anm-star-half-o:before{content:"\f123"}.anm-star-o:before{content:"\f006"}.anm-suitcase:before{content:"\ea16"}.anm-sun:before{content:"\ea17"}.anm-tablet-alt:before{content:"\ea1b"}.anm-tablet-ar:before{content:"\eb36"}.anm-tablet-android-alt:before{content:"\ea1c"}.anm-tablet-android-ar:before{content:"\eb37"}.anm-tachometer-alt:before{content:"\ea1d"}.anm-tachometer-ar:before{content:"\eb38"}.anm-tachometer-al:before{content:"\ec07"}.anm-thumbs-down:before{content:"\ea23"}.anm-thumbs-down-r:before{content:"\eb3f"}.anm-thumbs-down-l:before{content:"\ec0d"}.anm-thumbs-up:before{content:"\ea24"}.anm-thumbs-up-r:before{content:"\eb40"}.anm-thumbs-up-l:before{content:"\ec0e"}.anm-trophy:before{content:"\f091"}.anm-trophy-alt:before{content:"\ea2d"}.anm-trophy-ar:before{content:"\eb48"}.anm-truck:before{content:"\ea2e"}.anm-truck-front:before{content:"\e90c"}.anm-truck-line:before{content:"\e90d"}.anm-truck-r:before{content:"\eb49"}.anm-truck-l:before{content:"\ec15"}.anm-unlock-alt:before{content:"\ea32"}.anm-unlock-ar:before{content:"\eb50"}.anm-unlock-al:before{content:"\ec19"}.anm-wifi:before{content:"\ea3f"}.anm-wifi-r:before{content:"\eb5c"}.anm-wifi3:before{content:"\f1eb"}.anm-group:before{content:"\f0c0"}.anm-users4:before{content:"\f0c0"}.anm-user-circle-o:before{content:"\f2be"}.anm-user:before{content:"\ea36"}.anm-user-alt:before{content:"\ea37"}.anm-user-circle:before{content:"\ea38"}.anm-user-plus:before{content:"\ea39"}.anm-users:before{content:"\ea3a"}.anm-user-r:before{content:"\eb54"}.anm-user-ar:before{content:"\eb55"}.anm-user-cir:before{content:"\eb56"}.anm-user-plus-r:before{content:"\eb58"}.anm-users-r:before{content:"\eb59"}.anm-user-times2:before{content:"\eb5a"}.anm-user-l:before{content:"\ec1b"}.anm-user-al:before{content:"\ec1c"}.anm-user-cil:before{content:"\ec1d"}.anm-users-l:before{content:"\ec1e"}.anm-bag4:before{content:"\f290"}.anm-basket4:before{content:"\f291"}.anm-cart-2-s:before{content:"\ec41"}.anm-cart-1-l:before{content:"\ec43"}.anm-shopping-cart4:before{content:"\ec45"}.anm-cart-arrow-down:before{content:"\e951"}.anm-cart-plus:before{content:"\e952"}.anm-bag:before{content:"\ea01"}.anm-basket:before{content:"\ea02"}.anm-cart-s:before{content:"\ea03"}.anm-cart-arrow-down-r:before{content:"\ea7d"}.anm-cart-plus-r:before{content:"\ea7e"}.anm-bag-r:before{content:"\eb26"}.anm-basket-r:before{content:"\eb27"}.anm-cart-r:before{content:"\eb28"}.anm-bag-l:before{content:"\ebf8"}.anm-sq-bag:before{content:"\e931"}.anm-basket-l:before{content:"\ebf9"}.anm-cart-l:before{content:"\ebfa"}.anm-camera-retro:before{content:"\e943"}.anm-camera-ar:before{content:"\ea70"}.anm-camera-al:before{content:"\eb84"}.anm-check-square-o:before{content:"\f046"}.anm-check-badge:before{content:"\e937"}.anm-check:before{content:"\e954"}.anm-check-circle:before{content:"\e955"}.anm-check-square:before{content:"\e956"}.anm-check-badge-r:before{content:"\ea64"}.anm-check-r:before{content:"\ea7f"}.anm-check-cir:before{content:"\ea80"}.anm-check-sqr:before{content:"\ea81"}.anm-check-cil:before{content:"\eb8c"}.anm-check-sql:before{content:"\eb8d"}.anm-search-s:before{content:"\ec44"}.anm-search-glass:before{content:"\ec4a"}.anm-search7:before{content:"\ec4b"}.anm-search:before{content:"\e9f5"}.anm-search-r:before{content:"\eb1d"}.anm-search-minus-r:before{content:"\eb1e"}.anm-search-plus-r:before{content:"\eb1f"}.anm-search-l:before{content:"\ebf3"}.anm-search-minus-l:before{content:"\ebf4"}.anm-search-plus-l:before{content:"\ebf5"}.anm-phone-tel:before{content:"\e920"}.anm-phone-call-r:before{content:"\e91e"}.anm-phone-call-l:before{content:"\e91f"}.anm-phone-old:before{content:"\e90b"}.anm-phone-s:before{content:"\e9d3"}.anm-phone-square:before{content:"\e9d4"}.anm-phone-volume:before{content:"\e9d5"}.anm-phone-r:before{content:"\eaf5"}.anm-phone-sqr:before{content:"\eaf6"}.anm-phone-l:before{content:"\ebdc"}.anm-phone-sql:before{content:"\ebdd"}.anm-phone:before{content:"\f095"}.anm-phone-square4:before{content:"\f098"}.anm-microphone:before{content:"\e9c5"}.anm-microphone-alt:before{content:"\e9c6"}.anm-bullhorn:before{content:"\f0a1"}.anm-mobile2:before{content:"\f10b"}.anm-fax:before{content:"\e98e"}.anm-fax-r:before{content:"\ebb4"}.anm-print:before{content:"\f02f"}.anm-print-r:before{content:"\eb03"}.anm-print-l:before{content:"\ebe6"}.anm-pay-security:before{content:"\e932"}.anm-ruble-sign:before{content:"\e9f2"}.anm-ruble-sign-r:before{content:"\eb19"}.anm-ruble-sign-l:before{content:"\ebf0"}.anm-dollar-sign:before{content:"\e975"}.anm-dollar-sign-r:before{content:"\eaa5"}.anm-dollar-sign-l:before{content:"\eba8"}.anm-aws:before{content:"\e96b"}.anm-btc:before{content:"\e9ea"}.anm-amazon-pay:before{content:"\e915"}.anm-apple-pay:before{content:"\e92f"}.anm-bitcoin:before{content:"\e991"}.anm-cc:before{content:"\f20a"}.anm-cc-amazon-pay:before{content:"\e9ef"}.anm-cc-amex:before{content:"\e9f8"}.anm-cc-apple-pay:before{content:"\ea0e"}.anm-cc-diners-club:before{content:"\ea0f"}.anm-cc-discover:before{content:"\ea19"}.anm-cc-jcb:before{content:"\ea2a"}.anm-cc-mastercard:before{content:"\ea2c"}.anm-cc-paypal:before{content:"\ea3e"}.anm-cc-stripe:before{content:"\ea42"}.anm-cc-visa:before{content:"\ea67"}.anm-credit-card:before{content:"\e972"}.anm-credit-card-blank:before{content:"\eaa0"}.anm-credit-card-front:before{content:"\e973"}.anm-credit-card-front-r:before{content:"\eaa1"}.anm-credit-card-r:before{content:"\ea9f"}.anm-credit-card-l:before{content:"\eba7"}.anm-euro-sign:before{content:"\e97c"}.anm-euro-sign-r:before{content:"\eaab"}.anm-euro-sign-l:before{content:"\ebab"}.anm-money-bill:before{content:"\eadd"}.anm-money-bill-alt:before{content:"\eade"}.anm-money-bill-ar:before{content:"\ebd5"}.anm-money-bill-r:before{content:"\ebd4"}.anm-paypal:before{content:"\ec20"}.anm-pound-sign:before{content:"\e9db"}.anm-pound-sign-r:before{content:"\eb01"}.anm-pound-sign-l:before{content:"\ebe5"}.anm-rupee-sign:before{content:"\e9f3"}.anm-rupee-sign-r:before{content:"\eb1a"}.anm-rupee-sign-l:before{content:"\ebf1"}.anm-stripe:before{content:"\ec2f"}.anm-yen-sign:before{content:"\ea44"}.anm-yen-sign-r:before{content:"\eb61"}.anm-yen-sign-l:before{content:"\ec22"}.anm-sort:before{content:"\ea0a"}.anm-step-forward:before{content:"\ea11"}.anm-step-forward-r:before{content:"\eb33"}.anm-an-double-down:before{content:"\eb62"}.anm-an-double-left:before{content:"\eb63"}.anm-an-double-right:before{content:"\eb64"}.anm-an-double-up:before{content:"\eb65"}.anm-angle-down:before{content:"\e902"}.anm-angle-down-r:before{content:"\ea45"}.anm-angle-down-l:before{content:"\eb66"}.anm-angle-left:before{content:"\e903"}.anm-angle-left-r:before{content:"\ea46"}.anm-angle-left-l:before{content:"\eb67"}.anm-angle-right:before{content:"\e904"}.anm-angle-right-r:before{content:"\ea47"}.anm-angle-right-l:before{content:"\eb68"}.anm-angle-up:before{content:"\e905"}.anm-angle-up-r:before{content:"\ea48"}.anm-angle-up-l:before{content:"\eb69"}.anm-arrow-alt-down:before{content:"\e90a"}.anm-arrow-ar-down:before{content:"\ea4d"}.anm-arrow-al-down:before{content:"\eb6e"}.anm-arrow-alt-left:before{content:"\e90f"}.anm-arrow-ar-left:before{content:"\ea4e"}.anm-arrow-al-left:before{content:"\eb6f"}.anm-arrow-alt-right:before{content:"\e910"}.anm-arrow-ar-right:before{content:"\ea4f"}.anm-arrow-al-right:before{content:"\eb70"}.anm-arrow-alt-to-left:before{content:"\e916"}.anm-arrow-alt-to-right:before{content:"\e917"}.anm-arrow-alt-up:before{content:"\e919"}.anm-arrow-ar-up:before{content:"\ea54"}.anm-arrow-al-up:before{content:"\eb72"}.anm-arw-down:before{content:"\ea59"}.anm-arrow-s-down:before{content:"\f063"}.anm-arw-left:before{content:"\ea5a"}.anm-arrow-s-left:before{content:"\f060"}.anm-arw-right:before{content:"\ea5b"}.anm-arrow-s-right:before{content:"\f061"}.anm-arrow-sq-down:before{content:"\e92a"}.anm-arrow-sql-down:before{content:"\eb79"}.anm-arrow-sq-left:before{content:"\e92b"}.anm-arrow-sql-left:before{content:"\eb7a"}.anm-arrow-sq-right:before{content:"\e92c"}.anm-arrow-sql-right:before{content:"\eb7b"}.anm-arrow-sq-up:before{content:"\e92d"}.anm-arrow-sql-up:before{content:"\eb7c"}.anm-arw-up:before{content:"\ea60"}.anm-arrow-s-up:before{content:"\f062"}.anm-arrows-alt-h:before{content:"\e927"}.anm-arrows-alt-v:before{content:"\e928"}.anm-caret-circle-down:before{content:"\e945"}.anm-caret-cir-down:before{content:"\ea71"}.anm-caret-circle-left:before{content:"\e946"}.anm-caret-cir-left:before{content:"\ea72"}.anm-caret-circle-right:before{content:"\e947"}.anm-caret-cir-right:before{content:"\ea73"}.anm-caret-circle-up:before{content:"\e948"}.anm-caret-cir-up:before{content:"\ea74"}.anm-caret-down:before{content:"\e949"}.anm-caret-r-down:before{content:"\ea75"}.anm-caret-l-down:before{content:"\eb85"}.anm-caret-left:before{content:"\e94a"}.anm-caret-r-left:before{content:"\ea76"}.anm-caret-l-left:before{content:"\eb86"}.anm-caret-right:before{content:"\e94b"}.anm-caret-r-right:before{content:"\ea77"}.anm-caret-l-right:before{content:"\eb87"}.anm-caret-sq-down:before{content:"\e94c"}.anm-caret-sqr-down:before{content:"\ea78"}.anm-caret-sq-left:before{content:"\e94d"}.anm-caret-sqr-left:before{content:"\ea79"}.anm-caret-sq-right:before{content:"\e94e"}.anm-caret-sqr-right:before{content:"\ea7a"}.anm-caret-sq-up:before{content:"\e94f"}.anm-caret-sqr-up:before{content:"\ea7b"}.anm-caret-up:before{content:"\e950"}.anm-caret-r-up:before{content:"\ea7c"}.anm-caret-l-up:before{content:"\eb88"}.anm-chevron-circle-down:before{content:"\e957"}.anm-chevron-cir-down:before{content:"\ea82"}.anm-chevron-cil-down:before{content:"\eb8e"}.anm-chevron-circle-left:before{content:"\e958"}.anm-chevron-cir-left:before{content:"\ea83"}.anm-chevron-cil-left:before{content:"\eb8f"}.anm-chevron-circle-right:before{content:"\e959"}.anm-chevron-cir-right:before{content:"\ea84"}.anm-chevron-cil-right:before{content:"\eb90"}.anm-chevron-circle-up:before{content:"\e95a"}.anm-chevron-cir-up:before{content:"\ea85"}.anm-chevron-cil-up:before{content:"\eb91"}.anm-ch-double-down:before{content:"\e95b"}.anm-ch-doublel-down:before{content:"\eb92"}.anm-ch-double-left:before{content:"\e95c"}.anm-ch-doublel-left:before{content:"\eb93"}.anm-ch-double-right:before{content:"\e95d"}.anm-ch-doublel-right:before{content:"\eb94"}.anm-ch-double-up:before{content:"\e95e"}.anm-ch-doublel-up:before{content:"\eb95"}.anm-chevron-down:before{content:"\e95f"}.anm-chevron-r-down:before{content:"\ea8a"}.anm-chevron-l-down:before{content:"\eb96"}.anm-chevron-left:before{content:"\e960"}.anm-chevron-r-left:before{content:"\ea8b"}.anm-chevron-l-left:before{content:"\eb97"}.anm-chevron-right:before{content:"\e961"}.anm-chevron-r-right:before{content:"\ea8c"}.anm-chevron-l-right:before{content:"\eb98"}.anm-chevron-square-down:before{content:"\e962"}.anm-chevron-sqr-down:before{content:"\ea8d"}.anm-chevron-sql-down:before{content:"\eb99"}.anm-chevron-square-left:before{content:"\e963"}.anm-chevron-sqr-left:before{content:"\ea8e"}.anm-chevron-sql-left:before{content:"\eb9a"}.anm-chevron-square-right:before{content:"\e964"}.anm-chevron-sqr-right:before{content:"\ea8f"}.anm-chevron-sql-right:before{content:"\eb9b"}.anm-chevron-square-up:before{content:"\e965"}.anm-chevron-sqr-up:before{content:"\ea90"}.anm-chevron-sql-up:before{content:"\eb9c"}.anm-chevron-up:before{content:"\e966"}.anm-chevron-r-up:before{content:"\ea91"}.anm-chevron-l-up:before{content:"\eb9d"}.anm-expand-arrows-alt:before{content:"\e984"}.anm-expand-arwsr-alt:before{content:"\eab0"}.anm-expand-r-arrows:before{content:"\eaaf"}.anm-expand-l-arrows:before{content:"\ebb0"}.anm-arrows2:before{content:"\eb77"}.anm-viber:before{content:"\ec38"}.anm-globe:before{content:"\eab8"}.anm-rss:before{content:"\e9f0"}.anm-rss-square:before{content:"\e9f1"}.anm-rss-sqr:before{content:"\eb18"}.anm-rss-sql:before{content:"\ebef"}.anm-rss-r:before{content:"\eb17"}.anm-safari:before{content:"\ec27"}.anm-share-alt:before{content:"\e9fb"}.anm-share-alt-square:before{content:"\e9fc"}.anm-share-ar-square:before{content:"\eb24"}.anm-share-al-square:before{content:"\ebf7"}.anm-share-ar:before{content:"\eb23"}.anm-spotify:before{content:"\ec2e"}.anm-tripadvisor:before{content:"\ec32"}.anm-whatsapp:before{content:"\ec3d"}.anm-whatsapp-square:before{content:"\ec3e"}.anm-flickr:before{content:"\eb4e"}.anm-flipboard:before{content:"\eb57"}.anm-skype:before{content:"\ec29"}.anm-codepen:before{content:"\ea68"}.anm-behance:before{content:"\e96c"}.anm-behance-square:before{content:"\e990"}.anm-blogger:before{content:"\e997"}.anm-blogger-b:before{content:"\e998"}.anm-delicious:before{content:"\eab9"}.anm-deviantart:before{content:"\eac6"}.anm-digg:before{content:"\eacd"}.anm-dribbble:before{content:"\ead4"}.anm-dribbble-square:before{content:"\eae5"}.anm-dropbox:before{content:"\eae6"}.anm-facebook:before{content:"\eaed"}.anm-facebook-f:before{content:"\eafa"}.anm-facebook-messenger:before{content:"\eb31"}.anm-facebook-square:before{content:"\eb47"}.anm-google:before{content:"\eb8a"}.anm-google-drive:before{content:"\eb8b"}.anm-google-play:before{content:"\eba6"}.anm-google-plus:before{content:"\ebc5"}.anm-google-plus-g:before{content:"\ebc9"}.anm-google-plus-square:before{content:"\ebca"}.anm-google-wallet:before{content:"\ebcb"}.anm-instagram:before{content:"\ec01"}.anm-linkedin:before{content:"\ec02"}.anm-linkedin-in:before{content:"\ec03"}.anm-linkedin-square:before{content:"\f08c"}.anm-pinterest:before{content:"\ec23"}.anm-pinterest-p:before{content:"\ec24"}.anm-pinterest-square:before{content:"\ec25"}.anm-snapchat:before{content:"\ec2b"}.anm-snapchat-ghost:before{content:"\ec2c"}.anm-snapchat-square:before{content:"\ec2d"}.anm-tumblr:before{content:"\ec33"}.anm-tumblr-square:before{content:"\ec34"}.anm-twitter:before{content:"\ec36"}.anm-twitter-square:before{content:"\ec37"}.anm-vimeo:before{content:"\ec39"}.anm-vimeo-square:before{content:"\ec3a"}.anm-vimeo-v:before{content:"\ec3b"}.anm-youtube:before{content:"\ec3f"}.anm-youtube-square:before{content:"\ec40"}.anm-youtube-square2:before{content:"\f166"}.anm-youtube2:before{content:"\f167"}.anm-video-player:before{content:"\e934"}.anm-forward:before{content:"\e99b"}.anm-backward:before{content:"\e936"}.anm-backward-r:before{content:"\ea63"}.anm-backward-l:before{content:"\eb7e"}.anm-fast-backward:before{content:"\e98c"}.anm-fast-forward:before{content:"\e98d"}.anm-pause:before{content:"\eaee"}.anm-pause-circle:before{content:"\eaef"}.anm-pause-cil:before{content:"\ebd8"}.anm-play:before{content:"\eaf8"}.anm-play-circle:before{content:"\eaf9"}.anm-play-cir:before{content:"\ebdf"}.anm-play-r:before{content:"\ebde"}.anm-podcast:before{content:"\e9d9"}.anm-podcast-r:before{content:"\eafe"}.anm-podcast-l:before{content:"\ebe3"}.anm-step-backward:before{content:"\ea10"}.anm-step-backward-r:before{content:"\eb32"}.anm-stop:before{content:"\ea12"}.anm-stop-circle:before{content:"\ea13"}.anm-video:before{content:"\ea3c"}.anm-video-r:before{content:"\eb5b"}.anm-video1:before{content:"\e935"}


/* Themify Fonts Icons */
@font-face{font-family:themify;src:url(../content/fonts/fonts/themify.eot?-fvbane);src:url(../content/fonts/fonts/themify.eot?#iefix-fvbane) format("embedded-opentype"),url(../content/fonts/fonts/themify.woff?-fvbane) format("woff"),url(../content/fonts/fonts/themify.ttf?-fvbane) format("truetype"),url(../content/fonts/fonts/themify.svg?-fvbane#themify) format("svg");font-weight:400;font-style:normal}[class*=" icon-"],[class^=icon-]{font-family:themify;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}[class*=" icon-"]:before,[class^=icon-]:before{text-decoration:inherit;display:inline-block;speak:none}.icon-large:before{vertical-align:-10%;font-size:1.3333333333em}a [class*=" icon-"],a [class^=icon-]{display:inline}[class*=" icon-"].icon-fixed-width,[class^=icon-].icon-fixed-width{display:inline-block;width:1.1428571429em;text-align:right;padding-right:.2857142857em}[class*=" icon-"].icon-fixed-width.icon-large,[class^=icon-].icon-fixed-width.icon-large{width:1.4285714286em}.icons-ul{margin-left:2.1428571429em;list-style-type:none}.icons-ul>li{position:relative}.icons-ul .icon-li{position:absolute;left:-2.1428571429em;width:2.1428571429em;text-align:center;line-height:inherit}[class*=" icon-"].hide,[class^=icon-].hide{display:none}.icon-muted{color:#eee}.icon-light{color:#fff}.icon-dark{color:#333}.icon-border{border:solid 1px #eee;padding:.2em .25em .15em;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}.icon-2x{font-size:2em}.icon-2x.icon-border{border-width:2px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.icon-3x{font-size:3em}.icon-3x.icon-border{border-width:3px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px}.icon-4x{font-size:4em}.icon-4x.icon-border{border-width:4px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.icon-5x{font-size:5em}.icon-5x.icon-border{border-width:5px;-webkit-border-radius:7px;-moz-border-radius:7px;border-radius:7px}.pull-right{float:right}.pull-left{float:left}[class*=" icon-"].pull-left,[class^=icon-].pull-left{margin-right:.3em}[class*=" icon-"].pull-right,[class^=icon-].pull-right{margin-left:.3em}.icon-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:-35%}.icon-stack [class*=" icon-"],.icon-stack [class^=icon-]{display:block;text-align:center;position:absolute;width:100%;height:100%;font-size:1em;line-height:inherit}.icon-stack .icon-stack-base{font-size:2em}.icon-spin{display:inline-block;-moz-animation:spin 2s infinite linear;-o-animation:spin 2s infinite linear;-webkit-animation:spin 2s infinite linear;animation:spin 2s infinite linear}a .icon-spin,a .icon-stack{display:inline-block;text-decoration:none}@-moz-keyframes spin{0%{-moz-transform:rotate(0)}100%{-moz-transform:rotate(359deg)}}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0)}100%{-webkit-transform:rotate(359deg)}}@-o-keyframes spin{0%{-o-transform:rotate(0)}100%{-o-transform:rotate(359deg)}}@-ms-keyframes spin{0%{-ms-transform:rotate(0)}100%{-ms-transform:rotate(359deg)}}@keyframes spin{0%{transform:rotate(0)}100%{transform:rotate(359deg)}}.icon-rotate-90:before{-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg)}.icon-rotate-180:before{-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg)}.icon-rotate-270:before{-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-ms-transform:rotate(270deg);-o-transform:rotate(270deg);transform:rotate(270deg)}.icon-flip-horizontal:before{-webkit-transform:scale(-1,1);-moz-transform:scale(-1,1);-ms-transform:scale(-1,1);-o-transform:scale(-1,1);transform:scale(-1,1)}.icon-flip-vertical:before{-webkit-transform:scale(1,-1);-moz-transform:scale(1,-1);-ms-transform:scale(1,-1);-o-transform:scale(1,-1);transform:scale(1,-1)}a .icon-flip-horizontal:before,a .icon-flip-vertical:before,a .icon-rotate-180:before,a .icon-rotate-270:before,a .icon-rotate-90:before{display:inline-block}.icon-wand:before{content:"\e600"}.icon-volume:before{content:"\e601"}.icon-user:before{content:"\e602"}.icon-unlock:before{content:"\e603"}.icon-unlink:before{content:"\e604"}.icon-trash:before{content:"\e605"}.icon-thought:before{content:"\e606"}.icon-target:before{content:"\e607"}.icon-tag:before{content:"\e608"}.icon-tablet:before{content:"\e609"}.icon-star:before{content:"\e60a"}.icon-spray:before{content:"\e60b"}.icon-signal:before{content:"\e60c"}.icon-shopping-cart:before{content:"\e60d"}.icon-shopping-cart-full:before{content:"\e60e"}.icon-settings:before{content:"\e60f"}.icon anm anm-search-l:before{content:"\e610"}.anm anm-search-plus-r:before{content:"\e611"}.icon-zoom-out:before{content:"\e612"}.icon-cut:before{content:"\e613"}.icon-ruler:before{content:"\e614"}.icon-ruler-pencil:before{content:"\e615"}.icon-ruler-alt:before{content:"\e616"}.icon-bookmark:before{content:"\e617"}.icon-bookmark-alt:before{content:"\e618"}.icon-reload:before{content:"\e619"}.icon-plus:before{content:"\e61a"}.icon-pin:before{content:"\e61b"}.icon-pencil:before{content:"\e61c"}.icon-pencil-alt:before{content:"\e61d"}.icon-paint-roller:before{content:"\e61e"}.icon-paint-bucket:before{content:"\e61f"}.icon-na:before{content:"\e620"}.icon-mobile:before{content:"\e621"}.icon-minus:before{content:"\e622"}.icon-medall:before{content:"\e623"}.icon-medall-alt:before{content:"\e624"}.icon-marker:before{content:"\e625"}.icon-marker-alt:before{content:"\e626"}.icon-arrow-up:before{content:"\e627"}.icon-arrow-right:before{content:"\e628"}.icon-arrow-left:before{content:"\e629"}.icon-arrow-down:before{content:"\e62a"}.icon-lock:before{content:"\e62b"}.icon-location-arrow:before{content:"\e62c"}.icon-link:before{content:"\e62d"}.icon-layout:before{content:"\e62e"}.icon-layers:before{content:"\e62f"}.icon-layers-alt:before{content:"\e630"}.icon-key:before{content:"\e631"}.icon-import:before{content:"\e632"}.icon-image:before{content:"\e633"}.anm anm-heart-l:before{content:"\e634"}.anm anm-heart-l-broken:before{content:"\e635"}.icon-hand-stop:before{content:"\e636"}.icon-hand-open:before{content:"\e637"}.icon-hand-drag:before{content:"\e638"}.icon-folder:before{content:"\e639"}.icon-flag:before{content:"\e63a"}.icon-flag-alt:before{content:"\e63b"}.icon-flag-alt-2:before{content:"\e63c"}.icon-eye:before{content:"\e63d"}.icon-export:before{content:"\e63e"}.icon-exchange-vertical:before{content:"\e63f"}.icon-desktop:before{content:"\e640"}.icon-cup:before{content:"\e641"}.icon-crown:before{content:"\e642"}.icon-comments:before{content:"\e643"}.icon-comment:before{content:"\e644"}.icon-comment-alt:before{content:"\e645"}.icon anm anm-times-l:before{content:"\e646"}.icon-clip:before{content:"\e647"}.icon-angle-up:before{content:"\e648"}.icon-angle-right:before{content:"\e649"}.icon-angle-left:before{content:"\e64a"}.icon-angle-down:before{content:"\e64b"}.icon-check:before{content:"\e64c"}.icon-check-box:before{content:"\e64d"}.icon-camera:before{content:"\e64e"}.icon-announcement:before{content:"\e64f"}.icon-brush:before{content:"\e650"}.icon-briefcase:before{content:"\e651"}.icon-bolt:before{content:"\e652"}.icon-bolt-alt:before{content:"\e653"}.icon-blackboard:before{content:"\e654"}.icon anm anm-bag-l:before{content:"\e655"}.icon-move:before{content:"\e656"}.icon-arrows-vertical:before{content:"\e657"}.icon-arrows-horizontal:before{content:"\e658"}.icon-fullscreen:before{content:"\e659"}.icon-arrow-top-right:before{content:"\e65a"}.icon-arrow-top-left:before{content:"\e65b"}.icon-arrow-circle-up:before{content:"\e65c"}.icon-arrow-circle-right:before{content:"\e65d"}.icon-arrow-circle-left:before{content:"\e65e"}.icon-arrow-circle-down:before{content:"\e65f"}.icon-angle-double-up:before{content:"\e660"}.icon-angle-double-right:before{content:"\e661"}.icon-angle-double-left:before{content:"\e662"}.icon-angle-double-down:before{content:"\e663"}.icon-zip:before{content:"\e664"}.icon-world:before{content:"\e665"}.icon-wheelchair:before{content:"\e666"}.icon-view-list:before{content:"\e667"}.icon-view-list-alt:before{content:"\e668"}.icon-view-grid:before{content:"\e669"}.icon-uppercase:before{content:"\e66a"}.icon-upload:before{content:"\e66b"}.icon-underline:before{content:"\e66c"}.icon-truck:before{content:"\e66d"}.icon-timer:before{content:"\e66e"}.icon-ticket:before{content:"\e66f"}.icon-thumb-up:before{content:"\e670"}.icon-thumb-down:before{content:"\e671"}.icon-text:before{content:"\e672"}.icon-stats-up:before{content:"\e673"}.icon-stats-down:before{content:"\e674"}.icon-split-v:before{content:"\e675"}.icon-split-h:before{content:"\e676"}.icon-smallcap:before{content:"\e677"}.icon-shine:before{content:"\e678"}.icon-shift-right:before{content:"\e679"}.icon-shift-left:before{content:"\e67a"}.icon-shield:before{content:"\e67b"}.icon-notepad:before{content:"\e67c"}.icon-server:before{content:"\e67d"}.icon-quote-right:before{content:"\e67e"}.icon-quote-left:before{content:"\e67f"}.icon-pulse:before{content:"\e680"}.icon-printer:before{content:"\e681"}.icon-power-off:before{content:"\e682"}.icon-plug:before{content:"\e683"}.icon-pie-chart:before{content:"\e684"}.icon-paragraph:before{content:"\e685"}.icon-panel:before{content:"\e686"}.icon-package:before{content:"\e687"}.icon-music:before{content:"\e688"}.icon-music-alt:before{content:"\e689"}.icon-mouse:before{content:"\e68a"}.icon-mouse-alt:before{content:"\e68b"}.icon-money:before{content:"\e68c"}.icon-microphone:before{content:"\e68d"}.icon-menu:before{content:"\e68e"}.icon-menu-alt:before{content:"\e68f"}.icon-map:before{content:"\e690"}.icon-map-alt:before{content:"\e691"}.icon-loop:before{content:"\e692"}.icon-location-pin:before{content:"\e693"}.icon-list:before{content:"\e694"}.icon-light-bulb:before{content:"\e695"}.icon-Italic:before{content:"\e696"}.icon-info:before{content:"\e697"}.icon-infinite:before{content:"\e698"}.icon-id-badge:before{content:"\e699"}.icon-hummer:before{content:"\e69a"}.icon-home:before{content:"\e69b"}.icon-help:before{content:"\e69c"}.icon-headphone:before{content:"\e69d"}.icon-harddrives:before{content:"\e69e"}.icon-harddrive:before{content:"\e69f"}.icon-gift:before{content:"\e6a0"}.icon-game:before{content:"\e6a1"}.icon-filter:before{content:"\e6a2"}.icon-files:before{content:"\e6a3"}.icon-file:before{content:"\e6a4"}.icon-eraser:before{content:"\e6a5"}.icon-envelope:before{content:"\e6a6"}.icon-download:before{content:"\e6a7"}.icon-direction:before{content:"\e6a8"}.icon-direction-alt:before{content:"\e6a9"}.icon-dashboard:before{content:"\e6aa"}.icon-control-stop:before{content:"\e6ab"}.icon-control-shuffle:before{content:"\e6ac"}.icon-control-play:before{content:"\e6ad"}.icon-control-pause:before{content:"\e6ae"}.icon-control-forward:before{content:"\e6af"}.icon-control-backward:before{content:"\e6b0"}.icon-cloud:before{content:"\e6b1"}.icon-cloud-up:before{content:"\e6b2"}.icon-cloud-down:before{content:"\e6b3"}.icon-clipboard:before{content:"\e6b4"}.icon-car:before{content:"\e6b5"}.icon-calendar:before{content:"\e6b6"}.icon-book:before{content:"\e6b7"}.icon-bell:before{content:"\e6b8"}.icon-basketball:before{content:"\e6b9"}.icon-bar-chart:before{content:"\e6ba"}.icon-bar-chart-alt:before{content:"\e6bb"}.icon-back-right:before{content:"\e6bc"}.icon-back-left:before{content:"\e6bd"}.icon-arrows-corner:before{content:"\e6be"}.icon-archive:before{content:"\e6bf"}.icon-anchor:before{content:"\e6c0"}.icon-align-right:before{content:"\e6c1"}.icon-align-left:before{content:"\e6c2"}.icon-align-justify:before{content:"\e6c3"}.icon-align-center:before{content:"\e6c4"}.icon-alert:before{content:"\e6c5"}.icon-alarm-clock:before{content:"\e6c6"}.icon-agenda:before{content:"\e6c7"}.icon-write:before{content:"\e6c8"}.icon-window:before{content:"\e6c9"}.icon-widgetized:before{content:"\e6ca"}.icon-widget:before{content:"\e6cb"}.icon-widget-alt:before{content:"\e6cc"}.icon-wallet:before{content:"\e6cd"}.icon-video-clapper:before{content:"\e6ce"}.icon-video-camera:before{content:"\e6cf"}.icon-vector:before{content:"\e6d0"}.icon-themify-logo:before{content:"\e6d1"}.icon-themify-favicon:before{content:"\e6d2"}.icon-themify-favicon-alt:before{content:"\e6d3"}.icon-support:before{content:"\e6d4"}.icon-stamp:before{content:"\e6d5"}.icon-split-v-alt:before{content:"\e6d6"}.icon-slice:before{content:"\e6d7"}.icon-shortcode:before{content:"\e6d8"}.icon-shift-right-alt:before{content:"\e6d9"}.icon-shift-left-alt:before{content:"\e6da"}.icon-ruler-alt-2:before{content:"\e6db"}.icon-receipt:before{content:"\e6dc"}.icon-pin2:before{content:"\e6dd"}.icon-pin-alt:before{content:"\e6de"}.icon-pencil-alt2:before{content:"\e6df"}.icon-palette:before{content:"\e6e0"}.icon-more:before{content:"\e6e1"}.icon-more-alt:before{content:"\e6e2"}.icon-microphone-alt:before{content:"\e6e3"}.icon-magnet:before{content:"\e6e4"}.icon-line-double:before{content:"\e6e5"}.icon-line-dotted:before{content:"\e6e6"}.icon-line-dashed:before{content:"\e6e7"}.icon-layout-width-full:before{content:"\e6e8"}.icon-layout-width-default:before{content:"\e6e9"}.icon-layout-width-default-alt:before{content:"\e6ea"}.icon-layout-tab:before{content:"\e6eb"}.icon-layout-tab-window:before{content:"\e6ec"}.icon-layout-tab-v:before{content:"\e6ed"}.icon-layout-tab-min:before{content:"\e6ee"}.icon-layout-slider:before{content:"\e6ef"}.icon-layout-slider-alt:before{content:"\e6f0"}.icon-layout-sidebar-right:before{content:"\e6f1"}.icon-layout-sidebar-none:before{content:"\e6f2"}.icon-layout-sidebar-left:before{content:"\e6f3"}.icon-layout-placeholder:before{content:"\e6f4"}.icon-layout-menu:before{content:"\e6f5"}.icon-layout-menu-v:before{content:"\e6f6"}.icon-layout-menu-separated:before{content:"\e6f7"}.icon-layout-menu-full:before{content:"\e6f8"}.icon-layout-media-right-alt:before{content:"\e6f9"}.icon-layout-media-right:before{content:"\e6fa"}.icon-layout-media-overlay:before{content:"\e6fb"}.icon-layout-media-overlay-alt:before{content:"\e6fc"}.icon-layout-media-overlay-alt-2:before{content:"\e6fd"}.icon-layout-media-left-alt:before{content:"\e6fe"}.icon-layout-media-left:before{content:"\e6ff"}.icon-layout-media-center-alt:before{content:"\e700"}.icon-layout-media-center:before{content:"\e701"}.icon-layout-list-thumb:before{content:"\e702"}.icon-layout-list-thumb-alt:before{content:"\e703"}.icon-layout-list-post:before{content:"\e704"}.icon-layout-list-large-image:before{content:"\e705"}.icon-layout-line-solid:before{content:"\e706"}.icon-layout-grid4:before{content:"\e707"}.icon-layout-grid3:before{content:"\e708"}.icon-layout-grid2:before{content:"\e709"}.icon-layout-grid2-thumb:before{content:"\e70a"}.icon-layout-cta-right:before{content:"\e70b"}.icon-layout-cta-left:before{content:"\e70c"}.icon-layout-cta-center:before{content:"\e70d"}.icon-layout-cta-btn-right:before{content:"\e70e"}.icon-layout-cta-btn-left:before{content:"\e70f"}.icon-layout-column4:before{content:"\e710"}.icon-layout-column3:before{content:"\e711"}.icon-layout-column2:before{content:"\e712"}.icon-layout-accordion-separated:before{content:"\e713"}.icon-layout-accordion-merged:before{content:"\e714"}.icon-layout-accordion-list:before{content:"\e715"}.icon-ink-pen:before{content:"\e716"}.icon-info-alt:before{content:"\e717"}.icon-help-alt:before{content:"\e718"}.icon-headphone-alt:before{content:"\e719"}.icon-hand-point-up:before{content:"\e71a"}.icon-hand-point-right:before{content:"\e71b"}.icon-hand-point-left:before{content:"\e71c"}.icon-hand-point-down:before{content:"\e71d"}.icon-gallery:before{content:"\e71e"}.icon-face-smile:before{content:"\e71f"}.icon-face-sad:before{content:"\e720"}.icon-credit-card:before{content:"\e721"}.icon-control-skip-forward:before{content:"\e722"}.icon-control-skip-backward:before{content:"\e723"}.icon-control-record:before{content:"\e724"}.icon-control-eject:before{content:"\e725"}.icon-comments-smiley:before{content:"\e726"}.icon-brush-alt:before{content:"\e727"}.icon-youtube:before{content:"\e728"}.icon-vimeo:before{content:"\e729"}.icon-twitter:before{content:"\e72a"}.icon-time:before{content:"\e72b"}.icon-tumblr:before{content:"\e72c"}.icon-skype:before{content:"\e72d"}.icon-share:before{content:"\e72e"}.icon-share-alt:before{content:"\e72f"}.icon-rocket:before{content:"\e730"}.icon-pinterest:before{content:"\e731"}.icon-new-window:before{content:"\e732"}.icon-microsoft:before{content:"\e733"}.icon-list-ol:before{content:"\e734"}.icon-linkedin:before{content:"\e735"}.icon-layout-sidebar-2:before{content:"\e736"}.icon-layout-grid4-alt:before{content:"\e737"}.icon-layout-grid3-alt:before{content:"\e738"}.icon-layout-grid2-alt:before{content:"\e739"}.icon-layout-column4-alt:before{content:"\e73a"}.icon-layout-column3-alt:before{content:"\e73b"}.icon-layout-column2-alt:before{content:"\e73c"}.icon-instagram:before{content:"\e73d"}.icon-google:before{content:"\e73e"}.icon-github:before{content:"\e73f"}.icon-flickr:before{content:"\e740"}.icon-facebook:before{content:"\e741"}.icon-dropbox:before{content:"\e742"}.icon-dribbble:before{content:"\e743"}.icon-apple:before{content:"\e744"}.icon-android:before{content:"\e745"}.icon-save:before{content:"\e746"}.icon-save-alt:before{content:"\e747"}.icon-yahoo:before{content:"\e748"}.icon-wordpress:before{content:"\e749"}.icon-vimeo-alt:before{content:"\e74a"}.icon-twitter-alt:before{content:"\e74b"}.icon-tumblr-alt:before{content:"\e74c"}.icon-trello:before{content:"\e74d"}.icon-stack-overflow:before{content:"\e74e"}.icon-soundcloud:before{content:"\e74f"}.icon-sharethis:before{content:"\e750"}.icon-sharethis-alt:before{content:"\e751"}.icon-reddit:before{content:"\e752"}.icon-pinterest-alt:before{content:"\e753"}.icon-microsoft-alt:before{content:"\e754"}.icon-linux:before{content:"\e755"}.icon-jsfiddle:before{content:"\e756"}.icon-joomla:before{content:"\e757"}.icon-html5:before{content:"\e758"}.icon-flickr-alt:before{content:"\e759"}.icon-email:before{content:"\e75a"}.icon-drupal:before{content:"\e75b"}.icon-dropbox-alt:before{content:"\e75c"}.icon-css3:before{content:"\e75d"}.icon-rss:before{content:"\e75e"}.icon-rss-alt:before{content:"\e75f"}

@keyframes spin {
  0% {
    transform: translateZ(0) rotate(0);
  }
  100% {
    transform: translateZ(0) rotate(360deg);
  }
}
.freeze-ui {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999999999;
  background-color: #fff;
  opacity: 0.8;
  transition: opacity 0.25s;
}
.freeze-ui.is-unfreezing {
  opacity: 0;
}
.freeze-ui:after {
  content: attr(data-text);
  display: block;
  max-width: 125px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  font-family: sans-serif;
  color: #343a40;
  text-align: center;
  text-transform: uppercase;
}
.freeze-ui:before {
  content: "";
  display: block;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border-width: 2px;
  border-style: solid;
  border-color: transparent #228ae6 #228ae6;
  position: absolute;
  top: calc(50% - 75px);
  left: calc(50% - 75px);
  will-change: transform;
  animation: spin 0.75s infinite ease-in-out;
}

@font-face {
    font-family: 'Roboto';
    src: url('../content/fonts/roboto/Roboto-MediumItalic.eot');
    src: url('../content/fonts/roboto/Roboto-MediumItalic.eot?#iefix') format('embedded-opentype'),
        url('../content/fonts/roboto/Roboto-MediumItalic.woff2') format('woff2'),
        url('../content/fonts/roboto/Roboto-MediumItalic.woff') format('woff'),
        url('../content/fonts/roboto/Roboto-MediumItalic.ttf') format('truetype'),
        url('../content/fonts/roboto/Roboto-MediumItalic.svg#Roboto-MediumItalic') format('svg');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../content/fonts/roboto/Roboto-Medium.eot');
    src: url('../content/fonts/roboto/Roboto-Medium.eot?#iefix') format('embedded-opentype'),
        url('../content/fonts/roboto/Roboto-Medium.woff2') format('woff2'),
        url('../content/fonts/roboto/Roboto-Medium.woff') format('woff'),
        url('../content/fonts/roboto/Roboto-Medium.ttf') format('truetype'),
        url('../content/fonts/roboto/Roboto-Medium.svg#Roboto-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../content/fonts/roboto/Roboto-Italic.eot');
    src: url('../content/fonts/roboto/Roboto-Italic.eot?#iefix') format('embedded-opentype'),
        url('../content/fonts/roboto/Roboto-Italic.woff2') format('woff2'),
        url('../content/fonts/roboto/Roboto-Italic.woff') format('woff'),
        url('../content/fonts/roboto/Roboto-Italic.ttf') format('truetype'),
        url('../content/fonts/roboto/Roboto-Italic.svg#Roboto-Italic') format('svg');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../content/fonts/roboto/Roboto-BoldItalic.eot');
    src: url('../content/fonts/roboto/Roboto-BoldItalic.eot?#iefix') format('embedded-opentype'),
        url('../content/fonts/roboto/Roboto-BoldItalic.woff2') format('woff2'),
        url('../content/fonts/roboto/Roboto-BoldItalic.woff') format('woff'),
        url('../content/fonts/roboto/Roboto-BoldItalic.ttf') format('truetype'),
        url('../content/fonts/roboto/Roboto-BoldItalic.svg#Roboto-BoldItalic') format('svg');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../content/fonts/roboto/Roboto-Bold.eot');
    src: url('../content/fonts/roboto/Roboto-Bold.eot?#iefix') format('embedded-opentype'),
        url('../content/fonts/roboto/Roboto-Bold.woff2') format('woff2'),
        url('../content/fonts/roboto/Roboto-Bold.woff') format('woff'),
        url('../content/fonts/roboto/Roboto-Bold.ttf') format('truetype'),
        url('../content/fonts/roboto/Roboto-Bold.svg#Roboto-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../content/fonts/roboto/Roboto-Regular.eot');
    src: url('../content/fonts/roboto/Roboto-Regular.eot?#iefix') format('embedded-opentype'),
        url('../content/fonts/roboto/Roboto-Regular.woff2') format('woff2'),
        url('../content/fonts/roboto/Roboto-Regular.woff') format('woff'),
        url('../content/fonts/roboto/Roboto-Regular.ttf') format('truetype'),
        url('../content/fonts/roboto/Roboto-Regular.svg#Roboto-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'stroyka';
    src: local('stroyka'), url('../content/fonts/stroyka/stroyka.woff') format('woff'),url('../content/fonts/stroyka/stroyka.ttf') format('truetype'), url('../content/fonts/stroyka/stroyka.svg#stroyka') format('svg');
    font-weight: normal;
    font-style: normal;
}

.block-products-carousel[data-layout^="grid-"] .product-card .product-card__image {
    height: 700px;
}

.logo a img {
    max-height: 150px;
    height: 80px;
}

.products-list[data-layout^="grid-"] .product-card .product-card__image {
     height:550px;
}

.toast-body .notification-icon {
    align-items: center;
}

.toast-body {
    align-items:start !important;
}

.toast-body a {
    margin:0 5px;
}
.product-social-shared, .product-details-categories-link {
    display: none;
}
.input-radio-label__list .outofstock {
    position: relative;
}
    .input-radio-label__list .outofstock span::before {
        position: absolute;
        content: '';
        background-color: rgba(0, 0, 0, 0.26);
        left: 0;
        top: 18px;
        width: 100%;
        height: 1px;
        transform: rotate(27deg);
    }

    #ProductInventoryInStore, #accordionExample .accordion-item:nth-child(3), #accordionExample .accordion-item:nth-child(4), #accordionExample .accordion-item:nth-child(5),
    #accordionExample .accordion-item:nth-child(6), #accordionExample .accordion-item:nth-child(7) {
        display: none;
    }
    .block-slideshow__slide-image--mobile img {
        max-height: 160px;
    }
    .swiper-button-next, .swiper-button-prev {
        opacity: 0;
        transition: 500ms;
    }
    .block-slideshow__body:hover .swiper-button-next, .block-slideshow__body:hover .swiper-button-prev {
        opacity: 1;
        transition: 500ms;
    }
    .loader-wrap {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #ffffff;
        opacity: 1;
        z-index: 11111;
        height: 100%;
        overflow: hidden;
        animation: slideIn 0.2s forwards;
    }
    .loader-box {
        width: 225px;
        height: 120px;
        margin: 0px auto;
        z-index: 1;
        position: absolute;
        left: 50%;
        top: 40%;
        transform: translate(-50%);
    }
    .loader-box img {
        max-height: 225px !important;
        height: 120px !important;
    }
    .product-card__image  .product-image__img {
        height: 550px;
    }
    .card-body.info__Card .row .form-group.custom-attributes {
        display: none;
    }
    .productdetails__cart {
        justify-content: start;
    }
    .product__actions-item--wishlist {
        height: 50px;
    }
    .header__culture--box .language {
        display: none;
    }
    .loader-box .logo {
        justify-content: center;
    }
    .collection-grid-item img {
        max-width: 100%;
        display: block;
    }
    .collection-grid-item .details {
        opacity: 1;
        visibility: visible;
        height: auto;
        top: auto;
        width: auto;
    }
    .collection-banners .collection-grid-item {
        position: relative;
        overflow: hidden;
    }
    .collection-banners.style1 .collection-grid-item .details {
        top: auto;
        width: auto;
        text-align: center;
        display: block;
        padding: 15px;
        position: absolute;
        background-color: #fff;
        color: #000;
        width: 50%;
        left: 50%;
        -ms-transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        position: absolute;
        bottom: 30px;
        right: 0;
    }
    
    .banner-item.first {
        margin-bottom: 20px;
    }
    .collection-banners .details .title {
        margin: 0;
        font-size: 16px;
        text-transform: uppercase;
    }
    .collection-banners .details p {
        margin: 5px 0 0;
    }
    .collection-banners .details .btn {
        font-size: 12px;
        padding: 5px 15px;
        margin-top: 10px;
    }
    .imgBanner-grid-item {
        height: 390px;
    }
    .banner-item img {
        display: block;
        width: 100%;
    }
    .collection-banners .details {
        background-color: #fff;
        color: #000;
        width: 50%;
        left: 50%;
        -ms-transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        position: absolute;
        bottom: 30px;
        right: 0;
        padding: 20px;
        text-align: center;
        position: relative;
    }
    .collection-banners .details .title {
        margin: 0;
        font-size: 16px;
        text-transform: uppercase;
    }
    .col__inner {
        bottom: 150px !important;
    }
    .product-card__info .product-card__name {
        width: 100%;
        text-align: left;
    }
    #RegisterForm .form-group.custom-attributes {
        display: none;
    }
    @keyframes slideIn {
        0% {
            transform: translateX(20%);
        }
        100% {
            transform: translateX(0);
        }
    }
    @media (max-width: 1400px) { 
        .slider-container.home-top .slider {
            min-height: 400px;
        }
    }
    @media (max-width: 992px) { 
        .slider-container.home-top .slider {
            min-height: 275px;
        }
        .products-list[data-layout="grid-4-full"] .product-image__body {
            height: 650px;
          }
    }
    @media (min-width: 992px){
        .product-gallery__carousel .swiper-wrapper {
            height: 500px;
          }
        .nav-li__home--arrow {
            display: none;
        }
        .nav_list {
            justify-content: center;
        }
        .nav-li__home {
            width: auto;
            position: relative;
            margin: 3px 20px;
        }
    
        .nav-li__home--subbox {
            overflow: visible;
            left: initial;
            width: initial;
            height: initial;
            top: 90%;
            left: 0;
        }
        #MobileNav>li .nav__subbox--list, #MobileNav>li .nav__subbox--list ul {
            background-color: #fff;
            list-style: none;
            width: 220px;
            position: absolute;
            left: 0;
            z-index: 999;
            box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
            -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
            -ms-transition: all 0.3s ease-in-out;
            -webkit-transition: all 0.3s ease-in-out;
            transition: all 0.3s ease-in-out;
            padding: 10px;
            border: 1px solid #dee2e6!important;
        }
        .block-products-carousel[data-layout^="grid-"] .product-card .product-card__image {
            height: 550px;
        }
    }
    @media (min-width: 767.98px) {.banner-item.last {
        position: absolute;
        bottom: 0px;
        right: 0;}
    }
    @media (max-width: 768px) {
        .logo a img {
            max-height: 36px;
        }
        .block-products-carousel[data-layout^="grid-"] .product-card .product-card__image {
            height: 450px;
            margin-bottom: 0;
        }
        .block-products-carousel[data-layout="grid-4"][data-mobile-grid-columns="2"] .product-card .product-card__actions {
            padding: 0 0px 15px;
        }
        .block-products-carousel[data-layout^="grid-"] .product-card .product-card__actions {
            margin-top: 5px;
        }
        .slider-container.home-top .slider {
            min-height: 200px !important;
        }
        .categories-description-box {
            font-size: 10px;
        }
        .swipertabs-wrap .swiper-button-next {
            right: -8px;
        }
        .swipertabs-wrap .swiper-button-prev {
            left: -8px;
        }
        .swipertabs-wrap .swiper-button-prev, .swipertabs-wrap .swiper-button-next {
            height: 20px;
        }
        .swiper-container.tabs .swiper-slide {
            padding: 3px 12px 10px !important;
        }
        .slider-container.home-top .indicators button {
            padding: 6px 12px;
            font-size: 13px;
        }
        .dots-box {
            padding: 2px !important;
        }
        .indicators-dots {
            bottom: 26px !important;
        }
        .products-list[data-layout^="grid-"] .product-card .product-card__image {
            height: 240px;
        }
        .product-card__image .product-image__img {
            height: 240px;
        }
        .products-list[data-layout="grid-4-full"] .product-image__body {
            height: 240px;
        }
        .indicators {
            top: 33% !important;
        }
        .indicators-dots button {
            width: 10px !important;
            height: 10px !important;
        }
        .block-products-carousel[data-layout^="grid-"] .product-card .product-card__image {
            height: 250px;
        }
        .banner-item {
            margin-bottom: 20px;
        }
        .collection-banners .section {
            padding-bottom: 0px;
        }
        .swiper-slide {
            text-align: center;
            color: black;
            font-size: 16px;
            font-weight: 600;
            padding: 3px 20px 10px;
        }
    }
    @media (max-width: 450px) {
        .slider-container.home-top .slider {
            min-height: 160px !important;
        }
     }
     