@charset "UTF-8";
/*------------------------------------------------------------------
[Table of contents]
  01. Theme Settings
  02. Mixins
  03. Helper
  04. Icon Font
  05. Form
-------------------------------------------------------------------*/
/*------------------------------------ 
    01 - Theme Settings 
------------------------------------*/
/*------------------------------------ 
    02 - Mixins 
------------------------------------*/
:root {
  --color-background: #fff;
  --color-main-text: #212121;
  --color-text-light: #818ea0;
  --color-primary: #212121;
  --color-secondary: #ffbd27;
  --color-link: #212121;
  --color-form-border: #d9dde3;
  --color-form-placeholder: #9aa5b3;
  --color-theme-danger: #ef262c;
  --color-theme-warning: #ff5c00;
  --color-theme-info: #e8e8e8;
  --color-theme-border: #e5e8ec;
  --color-theme-success: #00a046;
  --color-theme-light: #f2f3f5;
  --color-product-fade-border: #e0e5ea;
  --color-shop-button: #ffbd27;
  --color-shop-button-active: #d99d00;
}

:root {
  --font-primary: "telecomchimp", sans-serif;
  --font-secondary: "telecomchimp", sans-serif;
}

:root {
  --size-site-width: 1320px;
  --size-border-radius: 7px;
  --size-form-radius: 6px;
}

@-webkit-keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}
@keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}
/*------------------------------------ 
    01 - Theme Settings 
------------------------------------*/
/* Magnific Popup CSS */

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

/* Main image in popup */

/* The shadow behind the image */

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
}

/*------------------------------------ 
    03 - Helper 
------------------------------------*/
@media screen and (max-width: 74.999rem) {
  .hide-mobile {
    display: none !important;
  }
}

@media screen and (min-width: 75rem) {
  .hide-desktop {
    display: none !important;
  }
}

.container {
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
}
@media screen and (min-width: 75rem) {
  .container {
    max-width: var(--size-site-width);
  }
}

img {
  max-width: 100%;
  height: auto;
  image-rendering: -webkit-optimize-contrast;
}

body {
  font-family: var(--font-primary);
  font-weight: 400;
  letter-spacing: -0.03px;
  color: var(--color-main-text);
  background-color: var(--color-background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-primary);
  font-weight: 400;
  letter-spacing: 0;
}

.column {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.column.left {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.column.center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.column.right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.column.align-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.site-brand {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.site-brand a {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.site-brand a img {
  height: 34px;
}

.site-menu.horizontal .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-menu.horizontal .menu > li {
  margin-right: 1.5625rem;
}
.site-menu.horizontal .menu > li:last-child {
  margin-right: 0;
}
.site-menu.horizontal .menu a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
}
.site-menu.horizontal .menu .menu-item {
  position: relative;
  white-space: nowrap;
}
.site-menu.horizontal .menu .sub-menu {
  position: absolute;
  min-width: 16.25rem;
  top: 100%;
  left: -1.3125rem;
  margin: 0;
  padding: 1.25rem 0;
  list-style: none;
  background-color: #fff;
  border: 1px solid #eef2f6;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  will-change: opacity;
  -webkit-transition: all 0.1s cubic-bezier(0.17, 0.62, 0.44, 0.99);
  transition: all 0.1s cubic-bezier(0.17, 0.62, 0.44, 0.99);
}
.site-menu.horizontal .menu .sub-menu a {
  font-size: 0.875rem;
  font-weight: 400;
  padding-top: 0.375rem;
  padding-bottom: 0.575rem;
  padding-left: 1.875rem;
  padding-right: 1.875rem;
}
.site-menu.horizontal .menu .sub-menu .menu-item-has-children > a::after {
  position: relative;
  content: "";
  padding-left: 0.4375rem;
  margin-left: auto;
  top: 1px;
}
.site-menu.horizontal .menu .sub-menu .sub-menu {
  top: -1.25rem;
  left: 100%;
}
.site-menu.horizontal .menu .menu-item-has-children > a::after {
  font-family: "telecomchimp";
  content: "";
  margin-left: 0.4375rem;
}
.site-menu.horizontal .menu .menu-item-has-children:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.site-menu.horizontal .menu .mega-menu {
  position: static;
}
.site-menu.horizontal .menu .mega-menu > .sub-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  width: 100%;
  left: 0;
}
.site-menu.horizontal .menu .mega-menu > .sub-menu > .menu-item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.site-menu.horizontal .menu .mega-menu > .sub-menu > .menu-item > a {
  font-weight: 600;
}
.site-menu.horizontal .menu .mega-menu > .sub-menu .menu-item-has-children > a::after {
  display: none;
}
.site-menu.horizontal .menu .mega-menu > .sub-menu .sub-menu {
  position: relative;
  left: 0;
  top: 0;
  opacity: 1;
  visibility: visible;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 0;
  background-color: transparent;
  padding-top: 0.625rem;
  z-index: 10;
}
.site-menu.horizontal.shadow-enable .sub-menu {
  -webkit-box-shadow: 0 2px 3px rgba(4, 30, 66, 0.1);
          box-shadow: 0 2px 3px rgba(4, 30, 66, 0.1);
}

.site-search {
  width: 100%;
}
.site-search .input-group {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.site-search .input-group > * {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.site-search .input-group > *.input-search-field {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.site-search select {
  width: auto;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right: 0;
  height: 2.75rem;
}
@media screen and (min-width: 75rem) {
  .site-search select {
    height: 3.125rem;
  }
}
.site-search input[type=search] {
  border-radius: 0;
  padding-left: 3.625rem;
  height: 2.75rem;
}
@media screen and (min-width: 75rem) {
  .site-search input[type=search] {
    height: 3.125rem;
  }
}
.site-search i {
  position: absolute;
  font-size: 1.5rem;
  left: 0.75rem;
  color: var(--color-form-placeholder);
}
@media screen and (min-width: 75rem) {
  .site-search i {
    font-size: 1.75rem;
  }
}
.site-search button {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  height: 2.75rem;
  padding-left: 1.5625rem;
  padding-right: 1.5625rem;
}
@media screen and (min-width: 75rem) {
  .site-search button {
    height: 3.125rem;
  }
}

.site-scroll {
  width: 100%;
  height: 100%;
}

.label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 0.625rem;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  height: 1.125rem;
  background-color: var(--color-theme-info);
  border-radius: 1.125rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.site-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0.4);
  will-change: opacity;
}

.color-success {
  color: var(--color-theme-success);
}

.color-danger {
  color: var(--color-theme-danger);
}

.color-light {
  color: var(--color-text-light);
}

.site-social ul {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-social ul li + li {
  margin-left: 4px;
}
.site-social ul li a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 14px;
  width: 1.875rem;
  height: 1.875rem;
  border-radius: 50%;
  color: #fff;
  background-color: #d1d6dd;
}
@media screen and (min-width: 64rem) {
  .site-social ul li a {
    font-size: 0.9375rem;
    width: 2.125rem;
    height: 2.125rem;
  }
}

.site-departments {
  color: #212121;
  margin-right: 1.875rem;
}
.site-departments .site-departments-wrapper {
  position: relative;
}
.site-departments .site-departments-wrapper > a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
}
.site-departments .site-departments-wrapper > a .departments-icon {
  font-size: 1.1875rem;
}
.site-departments .site-departments-wrapper > a .departments-text {
  font-size: 0.875rem;
  font-weight: 500;
  margin-left: 0.75rem;
}
.site-departments .site-departments-wrapper > a .departments-arrow {
  font-size: 1.25rem;
  margin-left: auto;
}
.site-departments.large .site-departments-wrapper > a {
  min-width: 293px;
  height: 54px;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  background-color: #f7f8f9;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}
.site-departments .departments-menu {
  position: absolute;
  min-width: 293px;
  top: 100%;
  left: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  border: 1px solid #e5e8ec;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}
.site-departments .departments-menu a {
  font-size: 0.8125rem;
  text-decoration: none;
}
.site-departments .departments-menu > li {
  position: relative;
}
.site-departments .departments-menu > li + li {
  border-top: 1px solid #e5e8ec;
}
.site-departments .departments-menu > li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
  height: 44px;
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
}
.site-departments .departments-menu > li > a i.text {
  font-size: 0.5625rem;
  font-weight: 600;
  font-style: normal;
  color: var(--color-link);
}
.site-departments .departments-menu > li > a .label {
  margin-left: auto;
}
.site-departments .departments-menu > li.menu-item-has-children {
  position: static;
}
.site-departments .departments-menu > li.menu-item-has-children > a::after {
  font-family: "telecomchimp";
  font-size: 1rem;
  content: "";
  margin-left: auto;
  margin-right: 0.375rem;
  padding-left: 0.625rem;
}
.site-departments .departments-menu > li.menu-item-has-children:hover .sub-menu {
  opacity: 1;
  pointer-events: auto;
}

.site-departments .departments-menu .sub-menu {
  position: absolute;
  width: 100%;
  height: 100%;
  left: calc(100% - 1px);
  top: 0;
  margin: 0;
  padding: 1.25rem 0;
  list-style: none;
  background-color: #fff;
  border: 1px solid #e5e8ec;
  border-top: 0;
  opacity: 0;
  pointer-events: none;
  will-change: opacity;
  -webkit-transition: all 0.2s cubic-bezier(0.28, 0.12, 0.22, 1);
  transition: all 0.2s cubic-bezier(0.28, 0.12, 0.22, 1);
}
.site-departments .departments-menu .sub-menu a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.4375rem 1.875rem;
}
.site-departments .departments-menu .sub-menu a:hover {
  text-decoration: underline;
}
.site-departments .departments-menu .sub-menu .sub-menu {
  position: relative;
  left: 0;
  padding: 0;
  background-color: transparent;
  border: 0;
}

.content-wrapper {
  position: relative;
}
@media screen and (min-width: 64rem) {
  .content-wrapper.sidebar-right .content-primary {
    padding-right: 1.875rem;
  }
}
@media screen and (min-width: 64rem) {
  .content-wrapper.sidebar-left {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
@media screen and (min-width: 64rem) {
  .content-wrapper.sidebar-left .content-primary {
    padding-left: 1.875rem;
  }
}

.mobile-bottom-menu {
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 0;
  background-color: #fff;
  -webkit-box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}
@media screen and (min-width: 64rem) {
  .mobile-bottom-menu {
    display: none !important;
  }
}

/*------------------------------------ 
    04 - Icon Font 
------------------------------------*/
[class^=klbth-icon-]:before, [class*=" klbth-icon-"]:before {
  font-family: "telecomchimp";
  font-style: normal;
  font-weight: normal;
  speak: never;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: 0.2em;
  text-align: center;
  /* opacity: .8; */
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: 0.2em;
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}

/* '' */

/* '' */
.klbth-icon-user-1:before {
  content: "";
}

/* '' */
.klbth-icon-cancel:before {
  content: "";
}

/* '' */
.klbth-icon-menu:before {
  content: "";
}

/* '' */
.klbth-icon-shop-1:before {
  content: "";
}

/* '' */
.klbth-icon-simple-cart:before {
  content: "";
}

/* '' */
.klbth-icon-fast-delivery:before {
  content: "";
}

/* '' */
.klbth-icon-discount-black:before {
  content: "";
}

/* '' */
/*------------------------------------ 
    05 - Form 
------------------------------------*/
input[type=color], input[type=date], input[type=number], input[type=search], input[type=text], input[type=url], textarea, select, .form-control, .form-select {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: var(--font-secondary);
  font-size: 0.875rem;
  letter-spacing: -0.03px;
  width: 100%;
  height: 2.5rem;
  padding: 0 0.9375rem;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid var(--color-form-border);
  border-radius: var(--size-form-radius);
}
input[type=color]:focus, input[type=color]:active, input[type=date]:focus, input[type=date]:active, input[type=number]:focus, input[type=number]:active, input[type=search]:focus, input[type=search]:active, input[type=text]:focus, input[type=text]:active, input[type=url]:focus, input[type=url]:active, textarea:focus, textarea:active, select:focus, select:active, .form-control:focus, .form-control:active, .form-select:focus, .form-select:active {
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border-color: var(--color-main-text);
}
input[type=color]::-webkit-input-placeholder, input[type=date]::-webkit-input-placeholder, input[type=number]::-webkit-input-placeholder, input[type=search]::-webkit-input-placeholder, input[type=text]::-webkit-input-placeholder, input[type=url]::-webkit-input-placeholder, textarea::-webkit-input-placeholder, select::-webkit-input-placeholder, .form-control::-webkit-input-placeholder, .form-select::-webkit-input-placeholder {
  font-size: 0.875rem;
  color: var(--color-form-placeholder);
}
input[type=color]::-moz-placeholder, input[type=date]::-moz-placeholder, input[type=number]::-moz-placeholder, input[type=search]::-moz-placeholder, input[type=text]::-moz-placeholder, input[type=url]::-moz-placeholder, textarea::-moz-placeholder, select::-moz-placeholder, .form-control::-moz-placeholder, .form-select::-moz-placeholder {
  font-size: 0.875rem;
  color: var(--color-form-placeholder);
}
input[type=color]:-ms-input-placeholder, input[type=date]:-ms-input-placeholder, input[type=number]:-ms-input-placeholder, input[type=search]:-ms-input-placeholder, input[type=text]:-ms-input-placeholder, input[type=url]:-ms-input-placeholder, textarea:-ms-input-placeholder, select:-ms-input-placeholder, .form-control:-ms-input-placeholder, .form-select:-ms-input-placeholder {
  font-size: 0.875rem;
  color: var(--color-form-placeholder);
}
input[type=color]::-ms-input-placeholder, input[type=date]::-ms-input-placeholder, input[type=number]::-ms-input-placeholder, input[type=search]::-ms-input-placeholder, input[type=text]::-ms-input-placeholder, input[type=url]::-ms-input-placeholder, textarea::-ms-input-placeholder, select::-ms-input-placeholder, .form-control::-ms-input-placeholder, .form-select::-ms-input-placeholder {
  font-size: 0.875rem;
  color: var(--color-form-placeholder);
}
input[type=color]::placeholder, input[type=date]::placeholder, input[type=number]::placeholder, input[type=search]::placeholder, input[type=text]::placeholder, input[type=url]::placeholder, textarea::placeholder, select::placeholder, .form-control::placeholder, .form-select::placeholder {
  font-size: 0.875rem;
  color: var(--color-form-placeholder);
}

textarea {
  padding-top: 0.9375rem;
  padding-bottom: 0.9375rem;
}

.form-select {
  padding-right: 2.1875rem;
}

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #fff url("data:image/svg+xml;utf8,<svg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M6 9L12 15L18 9' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>") calc(100% - 5px) 12px no-repeat;
  background-size: 18px 15px;
  padding-right: 1.875rem;
}

button, .button, input[type=submit], .submit, .btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 2.5rem;
  font-family: var(--font-primary);
  font-size: 0.875rem;
  letter-spacing: -0.03px;
  font-weight: 600;
  text-decoration: none;
  padding: 0 0.9375rem;
  color: #fff;
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  border-radius: var(--size-form-radius);
  -webkit-transition: all 0.2s cubic-bezier(0.28, 0.12, 0.22, 1);
  transition: all 0.2s cubic-bezier(0.28, 0.12, 0.22, 1);
}
@media screen and (min-width: 75rem) {
  button, .button, input[type=submit], .submit, .btn {
    padding: 0 1.25rem;
  }
}
button:active, button:focus, .button:active, .button:focus, input[type=submit]:active, input[type=submit]:focus, .submit:active, .submit:focus, .btn:active, .btn:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}
button:hover, .button:hover, input[type=submit]:hover, .submit:hover, .btn:hover {
  color: #fff;
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}
button.small, .button.small, input[type=submit].small, .submit.small, .btn.small {
  font-size: 0.8125rem;
  height: 2.375rem;
}
button.wide, .button.wide, input[type=submit].wide, .submit.wide, .btn.wide {
  width: 100%;
}

/*------------------------------------ 
    06 - Perfect Scrollbar 
------------------------------------*/
/*
 * Container style
 */

/*
 * Scrollbar rail styles
 */

/*
 * Scrollbar thumb styles
 */

/* MS supports */
/*------------------------------------ 
    06 - Perfect Scrollbar 
------------------------------------*/

/*------------------------------------ 
    06 - Perfect Scrollbar 
------------------------------------*/

/*------------------------------------ 
    05 - Form 
------------------------------------*/
.site-offcanvas {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  color: #212121;
  background-color: #fff;
  z-index: 1001;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  will-change: opacity, transform;
}
@media screen and (min-width: 20rem) {
  .site-offcanvas {
    width: 320px;
  }
}
@media screen and (max-width: 64rem) {
  .site-offcanvas .site-scroll {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    max-height: 100dvh;
    overflow-y: auto;
    overflow-x: hidden;
    padding-bottom: 4rem;
    padding-bottom: calc(4rem + env(safe-area-inset-bottom));
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }
}
.site-offcanvas-row {
  padding-top: 0.9375rem;
  padding-bottom: 0.9375rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.site-offcanvas-header {
  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;
  color: black;
  background-color: #031624;
  border-bottom: 1px solid #e5e8ef;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}
.site-offcanvas-header .site-brand img {
  height: 23px;
}
.site-offcanvas-header .site-offcanvas-close {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.5rem;
  width: 2.375rem;
  height: 2.375rem;
  cursor: pointer;
}
.site-offcanvas-body {
  padding-top: 1.875rem;
}
.site-offcanvas .offcanvas-menu-wrapper {
  position: relative;
  left: 0;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}
.site-offcanvas .site-menu + .site-menu {
  margin-top: 1.875rem;
  padding-top: 1.875rem;
  border-top: 1px solid #e5e8ef;
}
.site-offcanvas .site-menu .menu {
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-offcanvas .site-menu .menu a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 0.875rem;
  text-decoration: none;
  color: currentColor;
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}
.site-offcanvas .site-menu .menu a span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.site-offcanvas .site-menu .menu a i {
  font-size: 1.25rem;
  width: 1.875rem;
  margin-right: 0.625rem;
}
.site-offcanvas .site-menu .menu.menu-item-has-children > a {
  padding-right: 1.875rem;
}
.site-offcanvas .site-menu.primary a {
  padding-top: 0.4375rem;
  padding-bottom: 0.4375rem;
}
.site-offcanvas .site-menu a:hover span {
  text-decoration: underline;
}
.site-offcanvas .site-menu .sub-menu {
  padding: 0;
  margin: 0;
  list-style: none;
}
.site-offcanvas .site-copyright {
  font-size: 0.75rem;
  margin-top: 3.125rem;
  padding-bottom: 1.875rem;
  opacity: 0.6;
}

/*------------------------------------ 
    05 - Form 
------------------------------------*/
.site-header {
  position: relative;
  z-index: 20;
}
.site-header.border-enable {
  border-bottom: 1px solid #e5e8ec;
}
.site-header .header-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.site-header .header-addons {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 1.25rem;
}
.site-header .header-addons a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  color: currentColor;
}
.site-header .header-addons-icon {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.5rem;
  width: 2.25rem;
  height: 2.25rem;
}
.site-header .header-addons-icon i {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
}
.site-header .header-addons-icon .klbth-icon-simple-cart {
  font-size: 1.75rem;
  text-shadow: 0 0.2px 0;
}
.site-header .header-addons-icon .button-count {
  position: absolute;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 0.6875rem;
  font-weight: 700;
  min-width: 1.125rem;
  height: 1.125rem;
  top: 2px;
  right: -3px;
  color: #212121;
  background-color: #ffbd27;
  border-radius: 50%;
}
.site-header .header-addons-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-left: 0.625rem;
  line-height: 1.1;
}
.site-header .header-addons-text .sub-text {
  display: block;
  font-size: 0.6875rem;
  opacity: 0.5;
  margin-bottom: 2px;
}
.site-header .header-addons-text .primary-text {
  font-size: 0.9375rem;
  font-weight: 500;
}
.site-header .header-addons.cart-button:not(.tc-cart-force-closed):hover .cart-dropdown,
.site-header .header-addons.cart-button:not(.tc-cart-force-closed):focus-within .cart-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.site-header .site-search + .header-addons {
  margin-left: 2.5rem;
}
.site-header .header-top {
  position: relative;
  font-size: 0.75rem;
  z-index: 9;
  color: #212121;
  z-index: 11;
}
.site-header .header-top.border-enable .header-wrapper:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: currentColor;
  opacity: 0.1;
}
.site-header .header-top a {
  color: currentColor;
  -webkit-transition: all 0.1s cubic-bezier(0.28, 0.12, 0.22, 1);
  transition: all 0.1s cubic-bezier(0.28, 0.12, 0.22, 1);
}
.site-header .header-top .site-menu .menu > li > a {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.site-header .header-top .site-menu .menu > li > a:hover {
  color: #212121;
}
.site-header .header-top .site-menu .menu > li.menu-item-has-children:hover > a {
  color: #212121;
}
.site-header .header-top .site-menu .menu .sub-menu {
  min-width: auto;
  padding: 0.3125rem 0;
  left: auto;
  right: 0;
  border-color: #e5e8ec;
}
.site-header .header-top .site-menu .menu .sub-menu a {
  font-size: 0.75rem;
  font-weight: 500;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  color: #212121;
}
.site-header .header-top .site-menu .menu .sub-menu a:hover {
  color: #212121;
}
.site-header .header-top .column.right {
  margin-left: auto;
}
.site-header .header-main {
  position: relative;
  color: #212121;
  z-index: 10;
}
.site-header .header-main a {
  color: currentColor;
  -webkit-transition: all 0.1s cubic-bezier(0.28, 0.12, 0.22, 1);
  transition: all 0.1s cubic-bezier(0.28, 0.12, 0.22, 1);
}
.site-header .header-main.height-padding .header-wrapper {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.site-header .header-main .column.right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.site-header .header-main .site-brand {
  margin-right: 2.5rem;
}
.site-header .header-nav {
  color: #212121;
}
.site-header .header-nav a {
  color: currentColor;
  -webkit-transition: all 0.1s cubic-bezier(0.28, 0.12, 0.22, 1);
  transition: all 0.1s cubic-bezier(0.28, 0.12, 0.22, 1);
}
.site-header .header-nav .column.right {
  margin-left: auto;
}
.site-header .header-nav .site-menu .menu > li > a:hover {
  color: #212121;
}
.site-header .header-nav .site-menu .menu > li.menu-item-has-children:hover > a {
  color: #212121;
}
.site-header .header-nav .site-menu .menu .sub-menu a {
  color: #212121;
}
.site-header .header-nav .site-menu .menu .sub-menu a:hover {
  color: #212121;
}
.site-header .header-nav .site-menu .menu .sub-menu .menu-item-has-children:hover > a {
  color: #212121;
}
.site-header .header-nav .site-menu .menu .mega-menu .sub-menu .menu-item-has-children > a {
  color: #212121;
}
.site-header .site-menu.primary .menu {
  margin-left: -0.625rem;
}
.site-header .site-menu.primary .menu > li {
  margin-right: 0.625rem;
}
.site-header .site-menu.primary .menu > li > a {
  height: 54px;
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}
.site-header .site-menu.primary a {
  font-size: 15px;
  font-weight: 500;
}
.site-header .site-menu.primary a i {
  font-size: 1.25rem;
  margin-right: 0.625rem;
}
.site-header .discount-products .discount-banner {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 54px;
  cursor: pointer;
}
.site-header .discount-products .discount-banner-icon {
  font-size: 1.25rem;
  color: var(--color-theme-danger);
  margin-right: 0.625rem;
}
.site-header .discount-products .discount-banner-text {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  line-height: 1;
}
.site-header .discount-products .discount-banner-text .small-text {
  font-size: 0.625rem;
  opacity: 0.5;
  margin-bottom: 0.1875rem;
}
.site-header .discount-products .discount-banner-text .main-text {
  font-size: 0.875rem;
  font-weight: 500;
}
.site-header .discount-products .discount-banner-arrow {
  font-size: 1.125rem;
  margin-left: 1.25rem;
}
.site-header .discount-products .discount-items {
  position: absolute;
  width: 100%;
  top: 100%;
  right: 0;
  padding: 1.25rem;
  background-color: #fff;
  border: 1px solid #e5e8ec;
  z-index: 3;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  -webkit-box-shadow: 0 2px 3px rgba(4, 30, 66, 0.07);
          box-shadow: 0 2px 3px rgba(4, 30, 66, 0.07);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  will-change: opacity;
  -webkit-transition: all 0.1s cubic-bezier(0.28, 0.12, 0.22, 1);
  transition: all 0.1s cubic-bezier(0.28, 0.12, 0.22, 1);
}
.site-header .discount-products-wrapper:hover .discount-items {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.site-header .cart-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 20rem;
  max-width: 20rem;
  padding-top: 0.625rem;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  will-change: opacity;
  -webkit-transition: all 0.1s cubic-bezier(0.28, 0.12, 0.22, 1);
  transition: all 0.1s cubic-bezier(0.28, 0.12, 0.22, 1);
}
.site-header .cart-dropdown-wrapper {
  padding: 0.9375rem;
  color: #212121;
  background-color: #fff;
  border: 1px solid #eef2f6;
  -webkit-box-shadow: 0 2px 3px rgba(4, 30, 66, 0.07);
          box-shadow: 0 2px 3px rgba(4, 30, 66, 0.07);
  border-radius: 4px;
  width: 100%;
}
.site-header .cart-dropdown .cart-empty {
  text-align: center;
  padding-top: 0.9375rem;
  padding-bottom: 0.9375rem;
}
.site-header .cart-dropdown .cart-empty .empty-icon {
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 0.9375rem;
}
.site-header .cart-dropdown .cart-empty .empty-icon svg {
  max-width: 52px;
}
.site-header .cart-dropdown .cart-empty .empty-text {
  font-size: 0.875rem;
  font-weight: 500;
}
.site-header .cart-dropdown .cart-noticy {
  position: relative;
  display: block;
  font-size: 0.8125rem;
  text-align: center;
  margin-top: 0.875rem;
  padding-top: 0.9375rem;
}
.site-header .cart-dropdown .cart-noticy::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  top: 0;
  left: 0;
  background-color: currentColor;
  opacity: 0.1;
}
.site-header .cart-dropdown .products {
  position: relative;
  overflow: hidden;
}
.site-header .cart-dropdown .products .product .product-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.site-header .cart-dropdown .products .product .product-content .thumbnail-wrapper {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 3.5rem;
          flex: 0 0 3.5rem;
  max-width: 3.5rem;
  padding: 0;
  margin-right: 0.625rem;
  margin-bottom: 0;
}
.site-header .cart-dropdown .products .product .product-title {
  font-size: 0.8125rem;
  height: 2.2rem;
  line-height: 1.35;
  margin-bottom: 5px;
  min-height: 2.2rem;
  overflow: hidden;
  padding-right: 1.5rem;
}
.site-header .cart-dropdown .products .product .product-title a {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  overflow: hidden;
  overflow-wrap: anywhere;
}
.site-header .cart-dropdown .products .product .content-wrapper {
  flex: 1 1 auto;
  min-width: 0;
}
.site-header .cart-dropdown .products .product .content-wrapper {
  position: relative;
  padding-bottom: 0;
}
.site-header .cart-dropdown .products .product + .product {
  padding-top: 0.625rem;
  margin-top: 0.625rem;
  border-top: 1px solid var(--color-theme-border);
}
.site-header .cart-dropdown .woocommerce-mini-cart__total {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--color-theme-border);
}
.site-header .cart-dropdown .woocommerce-mini-cart__total strong {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-light);
}
.site-header .cart-dropdown .woocommerce-mini-cart__total .woocommerce-Price-amount {
  margin-left: auto;
  font-size: 1.125rem;
  font-weight: 600;
  color: #ef262c;
}
.site-header .cart-dropdown .woocommerce-mini-cart__buttons .btn {
  font-size: 0.8125rem;
  height: 2.75rem;
  border-radius: 4px;
}
.site-header .cart-dropdown .woocommerce-mini-cart__buttons .btn:not(.checkout) {
  background-color: var(--color-theme-light);
  border-color: transparent;
  margin-bottom: 3px;
}
.site-header .cart-dropdown .woocommerce-mini-cart__buttons .btn.checkout {
  color: #fff;
  background-color: #ef262c;
  border-color: transparent;
}
.site-header .cart-dropdown .woocommerce-mini-cart__buttons .btn:hover {
  opacity: 0.8;
}
.site-header .header-mobile {
  background-color: #fff;
}
.site-header .header-mobile .header-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
  height: 56px;
}
.site-header .header-mobile .column.center {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.site-header .header-mobile .site-brand img {
  height: 27px;
}
.site-header .header-mobile .menu-toggle {
  margin-left: 0;
  margin-right: 1.25rem;
}
.site-header .header-mobile .button-count {
  right: 0;
  top: 0;
}
.site-header .discount-products-header {
  padding: 0 1.25rem;
}
.site-header .discount-products-header .entry-title {
  font-size: 1.0625rem;
  font-weight: 500;
  margin-bottom: 0;
}
.site-header .discount-products-header p {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

/*------------------------------------ 
    05 - Form 
------------------------------------*/
.site-module {
  position: relative;
}
.site-module .module-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-bottom: 1px solid var(--color-theme-border);
  padding-bottom: 0.9375rem;
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 20rem) {
  .site-module .module-header {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.site-module .module-header .entry-title {
  font-size: 1.25rem;
  margin-bottom: 0.9375rem;
}
@media screen and (min-width: 20rem) {
  .site-module .module-header .entry-title {
    margin-bottom: 0;
  }
}
.site-module .module-header .btn {
  margin-left: auto;
}
.site-module .module-header .btn.link {
  font-size: 0.8125rem;
  color: var(--color-link);
  background-color: transparent;
  border: 0;
  height: auto;
  padding-right: 0;
}
.site-module .module-header .btn.link i {
  font-size: 0.875rem;
  margin-left: 0.4375rem;
}

.banner {
  position: relative;
}
.banner.dark {
  color: var(--color-main-text);
}
.banner.bordered {
  border: 1px solid var(--color-theme-border);
}
.banner.medium .entry-title {
  font-size: 1.375rem;
  font-weight: 600;
  letter-spacing: -0.07px;
}
@media screen and (min-width: 48rem) {
  .banner.medium .entry-title {
    font-size: 1.75rem;
  }
}
@media screen and (min-width: 48rem) {
   .banner.large .entry-title {
    margin-bottom: 1.25rem;
  }
}
.banner.large .entry-title {
  font-size: 1.75rem;
  letter-spacing: -0.07px;
}
@media screen and (min-width: 48rem) {
  .banner.large .entry-title {
    font-size: 2.5rem;
    font-weight: 300;
  }
  .banner.large .entry-title strong {
    font-size: 3rem;
    font-weight: 600;
  }
}
.banner.vertical .entry-title {
  font-size: 1.5rem;
}
.banner .entry-title {
  font-size: 1.25rem;
}
.banner .entry-title strong {
  font-weight: 600;
}
.banner .btn {
  font-size: 0.75rem;
  height: 2rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

/*------------------------------------ 
    05 - Form 
------------------------------------*/
.widget {
  position: relative;
  margin-bottom: 3.125rem;
}
.widget:last-child {
  margin-bottom: 0;
}
.widget .widget-title {
  font-size: 1.125rem;
  padding-bottom: 0.9375rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--color-theme-border);
}

/*------------------------------------ 
    05 - Form 
------------------------------------*/

.post {
  margin-bottom: 1.875rem;
}
@media screen and (min-width: 64rem) {
  .post {
    margin-bottom: 3.75rem;
  }
}
.post:last-child {
  margin-bottom: 0;
}
.post .entry-title {
  font-size: 1.75rem;
  margin-bottom: 0.625rem;
}
@media screen and (min-width: 64rem) {
  .post .entry-title {
    font-size: 2.625rem;
    margin-bottom: 0.9375rem;
  }
}
.post .entry-title a {
  text-decoration: none;
  color: currentColor;
}

/*------------------------------------ 
    05 - Form 
------------------------------------*/
.products {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}
.products .product {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0px;
  min-width: 0;
  z-index: 1;
}
.products.align-center .content-wrapper {
  text-align: center;
}
@media screen and (min-width: 20rem) {
  .products.mobile-1 .product {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
}
@media screen and (min-width: 20rem) {
  .products.mobile-2 .product {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
}
@media screen and (min-width: 48rem) {
  .products.column-6 .product {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
}
@media screen and (min-width: 75rem) {
  .products.column-6 .product {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.6666%;
            flex: 0 0 16.6666%;
    max-width: 16.6666%;
  }
}
@media screen and (min-width: 48rem) {
  .products.column-4 .product {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
}
@media screen and (min-width: 75rem) {
  .products.column-4 .product {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
}
@media screen and (min-width: 48rem) {
  .products.column-1 .product {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .products.column-1 .product .product-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.products .product {
  position: relative;
  z-index: 10;
}
.products .product:hover {
  z-index: 11;
}
.products .product:hover .product-title a {
  color: var(--color-link);
}
.products .product-wrapper {
  position: relative;
  z-index: 1;
}
.products .thumbnail-wrapper {
  padding: 0.9375rem;
  margin-bottom: 0.625rem;
}
.products .content-wrapper {
  padding: 0 0.9375rem 0.9375rem;
}
.products .product-title {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: .09px;
  line-height: 1.4;
  min-height: 3.2rem;
}
.products .product-title a {
  text-decoration: none;
  color: var(--color-main-text);
}
.products .product-title a:hover {
  color: var(--color-link);
  text-decoration: underline;
}
.products .price {
  font-size: 1.175rem;
  margin-bottom: 0.625rem;
}
.products .product-message {
  display: block;
  font-size: 0.75rem;
  font-weight: bold;
}
.products .product-price-cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.products .product-price-cart .price {
  font-size: 1rem;
  -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;
  padding-right: 0.9375rem;
  margin-bottom: 0;
}
.products .product-price-cart .add_to_cart_button {
  font-size: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: auto;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  color: var(--color-shop-button);
  background-color: var(--color-background);
  border: 1px solid var(--color-product-fade-border);
}
.products .product-price-cart .add_to_cart_button::before {
  width: 1.25rem;
  height: 1.25rem;
  margin-left: 0;
  margin-right: 0;
}
.products .product-price-cart .add_to_cart_button:hover {
  background-color: #eff5f2;
  border-color: #e4f0e9;
}
.products .product-price-cart .add_to_cart_button i {
  font-size: 1.25rem;
  margin-right: 0;
}
.products .add_to_cart_button {
  font-size: 0.8125rem;
  height: 2.9rem;
  border-radius: 5px;
}
.products .add_to_cart_button::before {
  width: 1.125rem;
  height: 1.125rem;
  background-size: 1.125rem 1.125rem;
}
.products.list-view-products .product {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
}
.products.list-view-products .product + .product {
  padding-top: 1.875rem;
  margin-top: 0.9375rem;
  border-top: 1px solid var(--color-theme-border);
}
.products.list-view-products .product .product-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.products.list-view-products .product .product-content .content-wrapper {
  margin-top: 0;
}
@media screen and (min-width: 48rem) {
  .products.list-view-products .product .product-content .product-title {
    font-size: 1rem;
  }
}
@media screen and (min-width: 48rem) {
  .products.list-view-products .product .product-content .price {
    font-size: 1.5rem;
  }
}
.products.list-view-products .product .thumbnail-wrapper {
  position: relative;
}
@media screen and (min-width: 48rem) {
  .products.list-view-products .product .thumbnail-wrapper {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 14.375rem;
            flex: 0 0 14.375rem;
    max-width: 14.375rem;
    padding: 5px;
    margin-bottom: 0;
    margin-right: 1.25rem;
  }
}
.products.list-view-products .product .product-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
}
@media screen and (max-width: 48rem) {
  .products.list-view-products .product .product-wrapper, .products.list-view-products .product .product-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.product-title {
  font-family: var(--font-primary);
}

.price {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  font-family: var(--font-secondary);
  color: var(--color-main-text);
}

.product-badges {
  position: absolute;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  top: 0.9375rem;
  left: 0.9375rem;
  pointer-events: none;
  z-index: 1;
}
@media screen and (min-width: 64rem) {
  .product-badges {
    top: 1.25rem;
    left: 1.25rem;
  }
}

.badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  min-height: 1.5rem;
  background-color: var(--color-text-light);
  padding: 0.375rem 0.75rem;
  border-radius: 1.5rem;
}
.badge.top {
  background-color: var(--color-theme-success);
}
.badge.onsale {
  font-size: 0.8125rem;
  background-color: var(--color-theme-danger);
}
.badge.super {
  background-color: var(--color-theme-warning);
}

.add_to_cart_button {
  font-weight: 500;
  background-color: var(--color-shop-button);
}
.add_to_cart_button i {
  font-size: 1.125rem;
  margin-right: 5px;
}
.add_to_cart_button svg {
  width: 1.125rem;
}
.add_to_cart_button:hover {
  background-color: var(--color-shop-button-active);
}

.product-price-cart .add_to_cart_button svg {
  width: 1.25rem;
}

.woocommerce-breadcrumb ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}
.woocommerce-breadcrumb ul li {
  font-size: 0.75rem;
}
.woocommerce-breadcrumb ul li::after {
  content: "/";
  color: var(--color-text-light);
  margin-left: 5px;
  margin-right: 5px;
}
.woocommerce-breadcrumb ul li:last-child::after {
  display: none;
}
.woocommerce-breadcrumb ul li a {
  text-decoration: none;
  color: var(--color-text-light);
}

.shop-page-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 1.875rem;
}

@media screen and (max-width: 767px) {
  nav.woocommerce-breadcrumb, .shop-page-header {
    display: none !important;
  }

  .single-product-wrapper {
    margin-top: 0px !important;
  }
}

@media screen and (min-width: 64rem) {
  .shop-page-header {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

.before-shop-loop {
  position: relative;
  margin-top: 1.875rem;
  border-bottom: 1px solid var(--color-theme-border);
  padding-bottom: 0.625rem;
  font-size: 0.8125rem;
}
.before-shop-loop + .content-wrapper {
  margin-top: 0;
}
@media screen and (min-width: 64rem) {
  .before-shop-loop > .row.sidebar-left {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
.before-shop-loop .content-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.before-shop-loop .woocommerce-result-count {
  margin-bottom: 0;
}
.before-shop-loop .filter-button a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  color: currentColor;
  font-weight: 500;
}
.before-shop-loop .filter-button a i {
  position: relative;
  font-size: 1rem;
  margin-right: 0.375rem;
  top: -1px;
}
.before-shop-loop .filter-wrapper {
  align-items: center;
  margin-left: auto;
}
.before-shop-loop .filter-wrapper .sorting-product {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.before-shop-loop .filter-wrapper .sorting-product > span {
  font-weight: 500;
  color: var(--color-text-light);
  margin-right: 0.625rem;
  opacity: 0.7;
}
.before-shop-loop .filter-wrapper .sorting-product + .sorting-product {
  padding-left: 0.625rem;
  margin-left: 0.625rem;
  border-left: 1px solid var(--color-theme-border);
}
@media screen and (min-width: 64rem) {
  .before-shop-loop .filter-wrapper .sorting-product + .sorting-product {
    padding-left: 1.25rem;
  }
}

.shop-content .content-wrapper {
  margin-top: 1.875rem;
}
.shop-content .content-wrapper.sidebar-right .site-sidebar::before {
  position: absolute;
  content: "";
  width: 1px;
  background-color: var(--color-theme-border);
  left: 0.75rem;
  top: -1.875rem;
  bottom: 0;
}
.shop-content .content-wrapper.sidebar-left .site-sidebar::before {
  position: absolute;
  content: "";
  width: 1px;
  background-color: var(--color-theme-border);
  right: 0.75rem;
  top: -1.875rem;
  bottom: 0;
}
.shop-content .site-sidebar {
  position: relative;
}
.shop-content .site-sidebar .widget .widget-title {
  font-size: 0.9375rem;
}

.woocommerce-pagination ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 1.875rem 0 0;
  padding: 0;
  list-style: none;
}
.woocommerce-pagination ul li {
  margin-right: 3px;
  margin-bottom: 3px;
}
.woocommerce-pagination ul li > * {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 0.8125rem;
  font-weight: 600;
  width: 2.125rem;
  height: 2.125rem;
  border: 1px solid var(--color-theme-border);
  border-radius: 3px;
}
.woocommerce-pagination ul li > *.current {
  background-color: var(--color-link);
  border-color: transparent;
  color: #fff;
}
.woocommerce-pagination ul li a {
  text-decoration: none;
  color: var(--color-main-text);
}
 .woocommerce-pagination ul li a.next {
  font-size: 1.25rem;
  border: 0;
}
.woocommerce-pagination ul li a.next {
  margin-left: 0.4375rem;
}

.quantity {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding-left: 23px;
  padding-right: 23px;
  margin-right: 7px !important;
  margin-left: 5%;
  border: 1px solid #dde2e8;
  border-radius: 4px;
  -webkit-box-shadow: 1px 1px 3px rgba(35, 35, 35, 0.08);
          box-shadow: 1px 1px 3px rgba(35, 35, 35, 0.08);
}
.quantity .minus, .quantity .plus {
  position: absolute;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 0;
  border: 0;
  background: transparent;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 32px;
  height: 100%;
  top: 0;
  left: 0;
  cursor: pointer;
  color: var(--color-text-light);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.quantity .minus:after, .quantity .plus:after {
  content: "";
  display: block;
  width: 10px;
  height: 2px;
  background: currentColor;
  position: absolute;
  top: 50%;
  left: 13px;
}
.quantity .plus {
  left: auto;
  right: 0;
}
.quantity .plus::before {
  content: "";
  display: block;
  width: 2px;
  height: 10px;
  background: currentColor;
  position: absolute;
  top: 19px;
  left: 13px;
}
.quantity .plus:after {
  left: auto;
  right: 13px;
}
.quantity .qty {
  width: 42px;
  border: 0;
  margin-bottom: 0;
  height: 2.875rem;
  padding-left: 0;
  padding-right: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  font-size: 0.9375rem;
  text-align: center;
}

.single-product-wrapper {
  position: relative;
  margin-top: 1.25rem;
}
.single-product-wrapper .single-product-container {
  margin-top: 0.25rem;
}
.single-product-wrapper .single-thumbnails .woocommerce-product-gallery {
  position: relative;
}
@media screen and (min-width: 64rem) {
  .single-product-wrapper .single-thumbnails .woocommerce-product-gallery {
    padding-left: 6.25rem;
  }
}
.single-product-wrapper .single-thumbnails.default .woocommerce-product-gallery {
  padding: 0;
}
.single-product-wrapper .single-thumbnails.default .product-extra-detail {
  padding-left: 0;
}
.single-product-wrapper .product-extra-detail {
  font-size: 0.8125rem;
  margin-top: 1.875rem;
}
@media screen and (min-width: 64rem) {
  .single-product-wrapper .product-extra-detail {
    padding-left: 6.25rem;
  }
}
.single-product-wrapper .product-extra-detail a {
  display: inline-block;
  margin-top: 1.25rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--color-link);
}
.single-product-wrapper .product_title {
    font-size: 1rem;
    font-weight: bold;
}
.single-product-wrapper .product-stock {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.8125rem;
  margin-top: 1.25rem;
}
.single-product-wrapper .product-stock.in-stock {
  border-radius: 8px;
  background-color: #f4faf6;
  color: #00a046;
  padding: 6px 14px;
}
.single-product-wrapper .product-stock.in-stock::before {
  font-family: "telecomchimp";
  font-size: 0.875rem;
  content: "";
  margin-right: 6px;
}
.single-product-wrapper .product-price {
  margin-top: 1rem;
  text-align: center;
}
.single-product-wrapper .product-price .price {
  font-size: 1.65rem;
}
.single-product-wrapper form.cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  width: 100%;
  margin-top: 1.25rem;
}
.single-product-wrapper form.cart .add_to_cart_button {
  border-radius: 4px;
  height: 46px;
  margin-left: 5px;
  font-size: 0.9375rem;
  padding-left: 1.875rem;
  padding-right: 1.875rem;
}
.single-product-wrapper .product-info {
  position: relative;
  margin-top: 1.25rem;
}
.single-product-wrapper .product-info-top {
  display: table;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 1rem;
  margin-right: auto;
  margin-left: auto;  
}
.single-product-wrapper .product-info-top {
  display: table;
  margin-right: auto;
}
.single-product-wrapper .product-info-top .single_add_to_cart_button {
  margin-right: auto;
  margin-left: unset;
}
.single-product-wrapper .product-info-top .quantity {
  margin-left: auto;
}

@media screen and (min-width: 64rem) {
  .single-product-wrapper .product-info-top {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.single-product-wrapper .product-info-top .cart {
  margin-top: 0;
  margin-bottom: 0.625rem;
}
@media screen and (min-width: 64rem) {
  .single-product-wrapper .product-info-top .cart {
    margin-bottom: 0;
    width: auto;
  }
}
.single-product-wrapper .product-info-top > a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.75rem;
  text-decoration: none;
  color: var(--color-text-light);
  -webkit-transition: all 0.2s cubic-bezier(0.28, 0.12, 0.22, 1);
  transition: all 0.2s cubic-bezier(0.28, 0.12, 0.22, 1);
}
.single-product-wrapper .product-info-top > a i {
  font-size: 1rem;
  margin-right: 6px;
}
.single-product-wrapper .product-info-top > a + a {
  margin-left: 1.25rem;
}
.single-product-wrapper .product-info-top > a:hover {
  color: var(--color-main-text);
}
.single-product-wrapper .product-info-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: table;
  padding: 0.2rem;
  width: 100%;
  margin-bottom: auto;
}
.single-product-wrapper .product-info-bottom .info-message {
  font-size: .9rem;
  text-align: center;
  margin-bottom: .5rem;
}
.single-product-wrapper .product-info-bottom .info-message:last-child::after {
  display: none;
}
.single-product-wrapper .product-info-bottom .info-message i {
  margin-right: 6px;
}
.single-product-wrapper .product-message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.8125rem;
  margin-top: 1.25rem;
  background-color: var(--color-theme-light);
  border-radius: var(--size-border-radius);
  padding: 14px 20px;
}
.single-product-wrapper .product-message i {
  font-size: 1.125rem;
  margin-right: 6px;
}
.single-product-wrapper .product-categories {
  margin-top: 1.25rem;
  font-size: 0.8125rem;
}
.single-product-wrapper .product-categories span {
  margin-right: 5px;
}
.single-product-wrapper .product-categories a {
  text-decoration: none;
  color: var(--color-link);
}
.single-product-wrapper .product-categories a::after {
  content: ",";
  margin-right: 2px;
}
.single-product-wrapper .product-categories a:last-child::after {
  display: none;
}
.single-product-wrapper .product-categories a:hover {
  text-decoration: underline;
}
.single-product-wrapper .site-social {
  margin-top: 1.875rem;
}
.single-product-wrapper .site-social a {
  width: 2rem;
  height: 2rem;
}
.single-product-wrapper .site-social + .product-extra-detail {
  margin-top: 1.875rem;
  padding-top: 1.875rem;
  padding-left: 0;
  border-top: 1px solid var(--color-theme-border);
}

@media screen and (max-width: 64rem) {
  .filtered-sidebar {
    position: fixed !important;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 90%;
            flex: 0 0 90%;
    max-width: 90%;
    width: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    margin-top: 0;
    padding: 1.25rem 1.25rem 0;
    background-color: #fff;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    z-index: 10001;
  }
  .filtered-sidebar::before {
    display: none;
  }
}
.filtered-sidebar .sidebar-mobile-header {
  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;
  margin-bottom: 1.875rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--color-theme-border);
}
@media screen and (min-width: 64rem) {
  .filtered-sidebar .sidebar-mobile-header {
    display: none;
  }
}
.filtered-sidebar .sidebar-mobile-header .entry-title {
  font-size: 0.875rem;
  margin-bottom: 0;
}
.filtered-sidebar .sidebar-mobile-header .close-sidebar {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.125rem;
  width: 1.875rem;
  height: 1.875rem;
  color: var(--color-main-text);
  border: 1px solid var(--color-theme-border);
  border-radius: 50%;
}

/*------------------------------------ 
    05 - Form 
------------------------------------*/
.site-footer {
  position: relative;
}
.site-footer .footer-row.dark {
  color: #fff;
}
.site-footer .footer-row.bordered .container {
  border-top: 1px solid #e5e8ec;
}
.site-footer .footer-widgets {
  padding-top: 1.875rem;
  padding-bottom: 1.875rem;
  background-color: #f7f8f9;
}
@media screen and (min-width: 64rem) {
  .site-footer .footer-widgets {
    padding-top: 6.25rem;
    padding-bottom: 6.25rem;
  }
}
.site-footer .footer-widgets .widget-title {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.9375rem;
  color: #212121;
  border-bottom: 0;
}
.site-footer .footer-widgets .widget {
  font-size: 0.8125rem;
  color: #818ea0;
  margin-bottom: 1.875rem;
}
.site-footer .footer-widgets .widget ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.site-footer .footer-widgets .widget ul li + li {
  margin-top: .8rem;
}
.site-footer .footer-widgets .widget ul li a {
  text-decoration: none;
  color: #000;
  -webkit-transition: 0.1s cubic-bezier(0.28, 0.12, 0.22, 1);
  transition: 0.1s cubic-bezier(0.28, 0.12, 0.22, 1);
}
.site-footer .footer-widgets .widget ul li a:hover {
  color: #212121;
  text-decoration: underline;
}
.site-footer .footer-details .container {
  padding-top: 1.875rem;
  padding-bottom: 1.875rem;
}
@media screen and (min-width: 64rem) {
  .site-footer .footer-details .container {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }
}
.site-footer .footer-details .site-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 64rem) {
  .site-footer .footer-details .site-details {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-flow: row wrap;
        flex-flow: row wrap;
  }
}
.site-footer .footer-details .site-details + .site-details {
  margin-top: 1.875rem;
}
@media screen and (min-width: 64rem) {
  .site-footer .footer-details .site-details + .site-details {
    margin-top: 2.5rem;
  }
}
.site-footer .footer-details .site-details .tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  padding: 0;
  margin: 0;
  list-style: none;
}
.site-footer .footer-details .site-details .tags li {
  position: relative;
  font-size: 0.8125rem;
  margin-bottom: 0.1875rem;
}
.site-footer .footer-details .site-details .tags li::after {
  content: "|";
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.site-footer .footer-details .site-details .tags li:last-child::after {
  display:none;
}

.site-footer .footer-details .site-details .tags li a {
  text-decoration: none;
  color: currentColor;
}
.site-footer .footer-details .site-details .tags li a:hover {
  text-decoration: underline;
}
.site-footer .footer-details .site-details .site-social {
  margin-top: 1.25rem;
}
@media screen and (min-width: 64rem) {
  .site-footer .footer-details .site-details .site-social {
    margin-left: auto;
    margin-top: 0;
  }
}
.site-footer .footer-copyright .container {
  padding-top: 1.875rem;
  padding-bottom: 1.875rem;
}
@media screen and (min-width: 64rem) {
  .site-footer .footer-copyright .container {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }
}
@media screen and (min-width: 64rem) {
  .site-footer .footer-copyright .footer-bottom {
    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;
  }
  .site-footer .footer-copyright .footer-bottom p {
    margin-bottom: 0;
  }
}
.site-footer .footer-copyright .site-copyright {
  font-size: 0.75rem;
  color: #818ea0;
}
.tc-responsive-header-slot {
  display: contents;
}
