@charset "UTF-8";
.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

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

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: -ms-flexbox !important;
  display: -webkit-box !important;
  display: flex !important;
}

.d-inline-flex {
  display: -ms-inline-flexbox !important;
  display: -webkit-inline-box !important;
  display: inline-flex !important;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: -ms-flexbox !important;
    display: -webkit-box !important;
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: -ms-inline-flexbox !important;
    display: -webkit-inline-box !important;
    display: inline-flex !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: -ms-flexbox !important;
    display: -webkit-box !important;
    display: flex !important;
  }
  .d-md-inline-flex {
    display: -ms-inline-flexbox !important;
    display: -webkit-inline-box !important;
    display: inline-flex !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: -ms-flexbox !important;
    display: -webkit-box !important;
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: -ms-inline-flexbox !important;
    display: -webkit-inline-box !important;
    display: inline-flex !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: -ms-flexbox !important;
    display: -webkit-box !important;
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: -ms-inline-flexbox !important;
    display: -webkit-inline-box !important;
    display: inline-flex !important;
  }
}
.offcanvas {
  position: fixed;
  bottom: 0;
  z-index: 1050;
  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: 100%;
  color: #2e2d2c;
  visibility: hidden;
  background-color: #ffffff;
  background-clip: padding-box;
  outline: 0;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .offcanvas {
    -webkit-transition: none;
    transition: none;
  }
}

.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;
  padding: 1rem 1rem;
}
.offcanvas-header .btn-close {
  padding: 0.5rem 0.5rem;
  margin-top: -0.5rem;
  margin-right: -0.5rem;
  margin-bottom: -0.5rem;
}

.offcanvas-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.offcanvas-body {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 1rem 1rem;
  overflow-y: auto;
  font-size: 15px;
}

.offcanvas-start {
  top: 0;
  left: 0;
  width: 400px;
  border-right: 0 solid #000000;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}

.offcanvas-end {
  top: 0;
  right: 0;
  width: 400px;
  border-left: 0 solid #000000;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

.offcanvas-top {
  top: 0;
  right: 0;
  left: 0;
  height: 30vh;
  max-height: 100%;
  border-bottom: 0 solid #000000;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

.offcanvas-bottom {
  right: 0;
  left: 0;
  height: 30vh;
  max-height: 100%;
  border-top: 0 solid #000000;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}

.offcanvas.show {
  -webkit-transform: none;
          transform: none;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: 0.5;
}

@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}

.woocommerce div.product .out-of-stock {
  color: darkred;
}

.woocommerce form .form-row .required {
  color: darkred;
}

.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.swiper-container-multirow-column > .swiper-wrapper {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}

.swiper-container-3d .swiper-cube-shadow,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
  scroll-snap-type: x mandatory;
}

.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
  scroll-snap-type: y mandatory;
}

:root {
  --swiper-navigation-size: 44px;
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(-1 * var(--swiper-navigation-size) / 2);
  z-index: 10;
  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;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-next.swiper-button-white,
.swiper-button-prev.swiper-button-white {
  --swiper-navigation-color: #ffffff;
}

.swiper-button-next.swiper-button-black,
.swiper-button-prev.swiper-button-black {
  --swiper-navigation-color: #000000;
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 0.3s opacity;
  transition: 0.3s opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-container-horizontal > .swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 0.2s top, 0.2s -webkit-transform;
  transition: 0.2s top, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s top;
  transition: 0.2s transform, 0.2s top, 0.2s -webkit-transform;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 0.2s left, 0.2s -webkit-transform;
  transition: 0.2s left, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s left;
  transition: 0.2s transform, 0.2s left, 0.2s -webkit-transform;
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 0.2s right, 0.2s -webkit-transform;
  transition: 0.2s right, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s right;
  transition: 0.2s transform, 0.2s right, 0.2s -webkit-transform;
}

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-container-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-white {
  --swiper-pagination-color: #ffffff;
}

.swiper-pagination-black {
  --swiper-pagination-color: #000000;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  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;
  text-align: center;
}

.swiper-zoom-container > canvas,
.swiper-zoom-container > img,
.swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
  animation: swiper-preloader-spin 1s infinite linear;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-next + .swiper-slide,
.swiper-container-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right,
.swiper-container-cube .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}

.swiper-container-flip {
  overflow: visible;
}

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right,
.swiper-container-flip .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

abbr,
address,
article,
aside,
audio,
b,
blockquote,
body,
body div,
caption,
cite,
code,
dd,
del,
details,
dfn,
dl,
dt,
em,
fieldset,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
p,
pre,
q,
samp,
section,
small,
span,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
ul,
var,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-weight: 400;
  vertical-align: baseline;
  background: 0 0;
}

article,
aside,
details,
figure,
footer,
header,
nav,
section,
summary {
  display: block;
  margin: 0;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

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

embed,
img,
object {
  max-width: 100%;
}

html {
  /* overflow-y: scroll;*/
  overflow-y: unset;
}

ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:after,
blockquote:before,
q:after,
q:before {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: 0 0;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted #000;
  cursor: help;
}

table {
  border-collapse: separate;
  border-spacing: 0;
}

th {
  font-weight: 700;
  vertical-align: bottom;
}

td {
  font-weight: 400;
  vertical-align: top;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

pre {
  white-space: pre;
  white-space: pre-wrap;
  white-space: pre-line;
  word-wrap: break-word;
}

input[type=radio] {
  vertical-align: text-bottom;
}

input[type=checkbox] {
  vertical-align: bottom;
}

.ie7 input[type=checkbox] {
  vertical-align: baseline;
}

.ie6 input {
  vertical-align: text-bottom;
}

input,
select,
textarea {
  font: 99% sans-serif;
}

table {
  font-size: inherit;
  font: 100%;
}

small {
  font-size: 85%;
}

strong {
  font-weight: 700;
}

td,
td img {
  vertical-align: top;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

code,
kbd,
pre,
samp {
  font-family: monospace, sans-serif;
}

.clickable,
button,
input[type=button],
input[type=file],
input[type=submit],
label {
  cursor: pointer;
}

button,
input,
select,
textarea {
  margin: 0;
}

button,
input[type=button] {
  width: auto;
  overflow: visible;
}

.ie7 img {
  -ms-interpolation-mode: bicubic;
}

.clearfix:after {
  content: " ";
  display: block;
  clear: both;
}

button {
  border: none;
  background-color: transparent;
  margin: 0;
  padding: 0;
}

:root {
  --nav-height: 400px;
  --submenu-height: 215px;
  --category-color: grey;
  --category-text-color: $almostBlack;
}

.color-default {
  color: #f6f6f6;
}

.color-orange {
  color: #8b3c04;
}

.color-brown {
  color: #c36e15;
}

.color-purple {
  color: #622066;
}

.color-black {
  color: #2e2d2c !important;
}

:root {
  --blue: #00a1df;
  --indigo: #6610f2;
  --purple: #622066;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #8b3c04;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #00a1df;
  --secondary: #6c757d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-middle: 832px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

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

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  background-color: #fff;
}

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0 !important;
}

hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[data-original-title],
abbr[title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ol ul,
ul ol,
ul ul {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #00a1df;
  text-decoration: none;
  background-color: transparent;
}

a:hover {
  color: #006a93;
  text-decoration: underline;
}

a:not([href]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):hover {
  color: inherit;
  text-decoration: none;
}

code,
kbd,
pre,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  -ms-overflow-style: scrollbar;
}

figure {
  margin: 0 0 1rem;
}

img {
  vertical-align: middle;
  border-style: none;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
}

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

button {
  border-radius: 0;
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

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

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}

[type=button],
[type=reset],
[type=submit],
button {
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
}

[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled),
button:not(:disabled) {
  cursor: pointer;
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type=checkbox],
input[type=radio] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

summary {
  display: list-item;
  cursor: pointer;
}

template {
  display: none;
}

[hidden] {
  display: none !important;
}

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

.h1,
h1 {
  font-size: 2.5rem;
}

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

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

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

.h5,
h5 {
  font-size: 1.25rem;
}

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

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

.display-1 {
  font-size: 6rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-2 {
  font-size: 5.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-3 {
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-4 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
}

hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.small,
small {
  font-size: 80%;
  font-weight: 400;
}

.mark,
mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-inline {
  padding-left: 0;
  list-style: none;
}

.list-inline-item {
  display: inline-block;
}

.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}

.initialism {
  font-size: 90%;
  text-transform: uppercase;
}

.blockquote {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.blockquote-footer {
  display: block;
  font-size: 80%;
  color: #6c757d;
}

.blockquote-footer::before {
  content: "— ";
}

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

.img-thumbnail {
  padding: 0.25rem;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  max-width: 100%;
  height: auto;
}

.figure {
  display: inline-block;
}

.figure-img {
  margin-bottom: 0.5rem;
  line-height: 1;
}

.figure-caption {
  font-size: 90%;
  color: #6c757d;
}

code {
  font-size: 87.5%;
  color: #e83e8c;
  word-wrap: break-word;
}

a > code {
  color: inherit;
}

kbd {
  padding: 0.2rem 0.4rem;
  font-size: 87.5%;
  color: #fff;
  background-color: #212529;
  border-radius: 0.2rem;
}

kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: 700;
}

pre {
  display: block;
  font-size: 87.5%;
  color: #212529;
}

pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 832px) {
  .container {
    max-width: 800px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}
.container-fluid,
.container-lg,
.container-md,
.container-middle,
.container-sm,
.container-xl {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container,
  .container-sm {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container,
  .container-md,
  .container-sm {
    max-width: 720px;
  }
}
@media (min-width: 832px) {
  .container,
  .container-md,
  .container-middle,
  .container-sm {
    max-width: 800px;
  }
}
@media (min-width: 992px) {
  .container,
  .container-lg,
  .container-md,
  .container-middle,
  .container-sm {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-middle,
  .container-sm,
  .container-xl {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-middle,
  .container-sm,
  .container-xl {
    max-width: 1320px;
  }
}
.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.col,
.col-1,
.col-10,
.col-11,
.col-12,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-auto,
.col-lg,
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-auto,
.col-md,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-auto,
.col-middle,
.col-middle-1,
.col-middle-10,
.col-middle-11,
.col-middle-12,
.col-middle-2,
.col-middle-3,
.col-middle-4,
.col-middle-5,
.col-middle-6,
.col-middle-7,
.col-middle-8,
.col-middle-9,
.col-middle-auto,
.col-sm,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-auto,
.col-xl,
.col-xl-1,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-auto {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  min-width: 0;
  max-width: 100%;
}

.row-cols-1 > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.row-cols-2 > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.row-cols-3 > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.33333%;
  flex: 0 0 33.33333%;
  max-width: 33.33333%;
}

.row-cols-4 > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.row-cols-5 > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%;
}

.row-cols-6 > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 16.66667%;
  flex: 0 0 16.66667%;
  max-width: 16.66667%;
}

.col-auto {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.col-1 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 8.33333%;
  flex: 0 0 8.33333%;
  max-width: 8.33333%;
}

.col-2 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 16.66667%;
  flex: 0 0 16.66667%;
  max-width: 16.66667%;
}

.col-3 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.33333%;
  flex: 0 0 33.33333%;
  max-width: 33.33333%;
}

.col-5 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 41.66667%;
  flex: 0 0 41.66667%;
  max-width: 41.66667%;
}

.col-6 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 58.33333%;
  flex: 0 0 58.33333%;
  max-width: 58.33333%;
}

.col-8 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 66.66667%;
  flex: 0 0 66.66667%;
  max-width: 66.66667%;
}

.col-9 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 83.33333%;
  flex: 0 0 83.33333%;
  max-width: 83.33333%;
}

.col-11 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 91.66667%;
  flex: 0 0 91.66667%;
  max-width: 91.66667%;
}

.col-12 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
}

.order-last {
  -webkit-box-ordinal-group: 14;
  -ms-flex-order: 13;
  order: 13;
}

.order-0 {
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 0;
  order: 0;
}

.order-1 {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

.order-2 {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

.order-3 {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
}

.order-4 {
  -webkit-box-ordinal-group: 5;
  -ms-flex-order: 4;
  order: 4;
}

.order-5 {
  -webkit-box-ordinal-group: 6;
  -ms-flex-order: 5;
  order: 5;
}

.order-6 {
  -webkit-box-ordinal-group: 7;
  -ms-flex-order: 6;
  order: 6;
}

.order-7 {
  -webkit-box-ordinal-group: 8;
  -ms-flex-order: 7;
  order: 7;
}

.order-8 {
  -webkit-box-ordinal-group: 9;
  -ms-flex-order: 8;
  order: 8;
}

.order-9 {
  -webkit-box-ordinal-group: 10;
  -ms-flex-order: 9;
  order: 9;
}

.order-10 {
  -webkit-box-ordinal-group: 11;
  -ms-flex-order: 10;
  order: 10;
}

.order-11 {
  -webkit-box-ordinal-group: 12;
  -ms-flex-order: 11;
  order: 11;
}

.order-12 {
  -webkit-box-ordinal-group: 13;
  -ms-flex-order: 12;
  order: 12;
}

.offset-1 {
  margin-left: 8.33333%;
}

.offset-2 {
  margin-left: 16.66667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.33333%;
}

.offset-5 {
  margin-left: 41.66667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.33333%;
}

.offset-8 {
  margin-left: 66.66667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.33333%;
}

.offset-11 {
  margin-left: 91.66667%;
}

@media (min-width: 576px) {
  .col-sm {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    min-width: 0;
    max-width: 100%;
  }
  .row-cols-sm-1 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-sm-2 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-sm-3 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .row-cols-sm-4 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-sm-5 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-sm-6 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-sm-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-sm-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .col-sm-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-sm-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .col-sm-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .col-sm-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .col-sm-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .col-sm-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .col-sm-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .col-sm-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-sm-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .order-sm-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
  }
  .order-sm-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .order-sm-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .order-sm-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .order-sm-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .order-sm-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .order-sm-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .order-sm-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
  .order-sm-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }
  .order-sm-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }
  .order-sm-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }
  .order-sm-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }
  .order-sm-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }
  .order-sm-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333%;
  }
  .offset-sm-2 {
    margin-left: 16.66667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333%;
  }
  .offset-sm-5 {
    margin-left: 41.66667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333%;
  }
  .offset-sm-8 {
    margin-left: 66.66667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333%;
  }
  .offset-sm-11 {
    margin-left: 91.66667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    min-width: 0;
    max-width: 100%;
  }
  .row-cols-md-1 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-md-2 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-md-3 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .row-cols-md-4 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-md-5 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-md-6 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-md-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-md-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .col-md-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-md-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .col-md-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .col-md-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .col-md-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .col-md-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .col-md-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .col-md-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-md-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .order-md-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
  }
  .order-md-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .order-md-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .order-md-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .order-md-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .order-md-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .order-md-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .order-md-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
  .order-md-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }
  .order-md-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }
  .order-md-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }
  .order-md-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }
  .order-md-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }
  .order-md-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333%;
  }
  .offset-md-2 {
    margin-left: 16.66667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333%;
  }
  .offset-md-5 {
    margin-left: 41.66667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333%;
  }
  .offset-md-8 {
    margin-left: 66.66667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333%;
  }
  .offset-md-11 {
    margin-left: 91.66667%;
  }
}
@media (min-width: 832px) {
  .col-middle {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    min-width: 0;
    max-width: 100%;
  }
  .row-cols-middle-1 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-middle-2 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-middle-3 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .row-cols-middle-4 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-middle-5 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-middle-6 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-middle-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-middle-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .col-middle-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-middle-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-middle-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .col-middle-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .col-middle-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-middle-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .col-middle-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .col-middle-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-middle-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .col-middle-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .col-middle-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-middle-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .order-middle-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
  }
  .order-middle-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .order-middle-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .order-middle-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .order-middle-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .order-middle-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .order-middle-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .order-middle-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
  .order-middle-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }
  .order-middle-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }
  .order-middle-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }
  .order-middle-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }
  .order-middle-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }
  .order-middle-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-middle-0 {
    margin-left: 0;
  }
  .offset-middle-1 {
    margin-left: 8.33333%;
  }
  .offset-middle-2 {
    margin-left: 16.66667%;
  }
  .offset-middle-3 {
    margin-left: 25%;
  }
  .offset-middle-4 {
    margin-left: 33.33333%;
  }
  .offset-middle-5 {
    margin-left: 41.66667%;
  }
  .offset-middle-6 {
    margin-left: 50%;
  }
  .offset-middle-7 {
    margin-left: 58.33333%;
  }
  .offset-middle-8 {
    margin-left: 66.66667%;
  }
  .offset-middle-9 {
    margin-left: 75%;
  }
  .offset-middle-10 {
    margin-left: 83.33333%;
  }
  .offset-middle-11 {
    margin-left: 91.66667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    min-width: 0;
    max-width: 100%;
  }
  .row-cols-lg-1 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-lg-2 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-lg-3 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .row-cols-lg-4 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-lg-5 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-lg-6 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-lg-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-lg-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .col-lg-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-lg-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .col-lg-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .col-lg-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .col-lg-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .col-lg-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .col-lg-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .col-lg-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-lg-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .order-lg-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
  }
  .order-lg-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .order-lg-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .order-lg-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .order-lg-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .order-lg-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .order-lg-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .order-lg-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
  .order-lg-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }
  .order-lg-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }
  .order-lg-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }
  .order-lg-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }
  .order-lg-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }
  .order-lg-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333%;
  }
  .offset-lg-2 {
    margin-left: 16.66667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333%;
  }
  .offset-lg-5 {
    margin-left: 41.66667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333%;
  }
  .offset-lg-8 {
    margin-left: 66.66667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333%;
  }
  .offset-lg-11 {
    margin-left: 91.66667%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    min-width: 0;
    max-width: 100%;
  }
  .row-cols-xl-1 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-xl-2 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-xl-3 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .row-cols-xl-4 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-xl-5 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-xl-6 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-xl-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-xl-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .col-xl-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-xl-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .col-xl-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .col-xl-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .col-xl-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .col-xl-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .col-xl-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .col-xl-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .order-xl-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
  }
  .order-xl-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .order-xl-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .order-xl-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .order-xl-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .order-xl-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .order-xl-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .order-xl-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
  .order-xl-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }
  .order-xl-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }
  .order-xl-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }
  .order-xl-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }
  .order-xl-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }
  .order-xl-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333%;
  }
  .offset-xl-2 {
    margin-left: 16.66667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333%;
  }
  .offset-xl-5 {
    margin-left: 41.66667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333%;
  }
  .offset-xl-8 {
    margin-left: 66.66667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333%;
  }
  .offset-xl-11 {
    margin-left: 91.66667%;
  }
}
.dropdown,
.dropleft,
.dropright,
.dropup {
  position: relative;
}

.dropdown-toggle {
  white-space: nowrap;
}

.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}

.dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0.125rem 0 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}

.dropdown-menu-left {
  right: auto;
  left: 0;
}

.dropdown-menu-right {
  right: 0;
  left: auto;
}

@media (min-width: 576px) {
  .dropdown-menu-sm-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-sm-right {
    right: 0;
    left: auto;
  }
}
@media (min-width: 768px) {
  .dropdown-menu-md-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-md-right {
    right: 0;
    left: auto;
  }
}
@media (min-width: 832px) {
  .dropdown-menu-middle-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-middle-right {
    right: 0;
    left: auto;
  }
}
@media (min-width: 992px) {
  .dropdown-menu-lg-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-lg-right {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1200px) {
  .dropdown-menu-xl-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xl-right {
    right: 0;
    left: auto;
  }
}
.dropup .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.125rem;
}

.dropup .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}

.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropright .dropdown-menu {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: 0.125rem;
}

.dropright .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}

.dropright .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropright .dropdown-toggle::after {
  vertical-align: 0;
}

.dropleft .dropdown-menu {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: 0.125rem;
}

.dropleft .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}

.dropleft .dropdown-toggle::after {
  display: none;
}

.dropleft .dropdown-toggle::before {
  display: inline-block;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}

.dropleft .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropleft .dropdown-toggle::before {
  vertical-align: 0;
}

.dropdown-menu[x-placement^=bottom],
.dropdown-menu[x-placement^=left],
.dropdown-menu[x-placement^=right],
.dropdown-menu[x-placement^=top] {
  right: auto;
  bottom: auto;
}

.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid #e9ecef;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}

.dropdown-item:focus,
.dropdown-item:hover {
  color: #16181b;
  text-decoration: none;
  background-color: #f8f9fa;
}

.dropdown-item.active,
.dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #00a1df;
}

.dropdown-item.disabled,
.dropdown-item:disabled {
  color: #6c757d;
  pointer-events: none;
  background-color: transparent;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-header {
  display: block;
  padding: 0.5rem 1.5rem;
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #6c757d;
  white-space: nowrap;
}

.dropdown-item-text {
  display: block;
  padding: 0.25rem 1.5rem;
  color: #212529;
}

.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
}

.nav-link:focus,
.nav-link:hover {
  text-decoration: none;
}

.nav-link.disabled {
  color: #6c757d;
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  border-bottom: 1px solid #dee2e6;
}

.nav-tabs .nav-item {
  margin-bottom: -1px;
}

.nav-tabs .nav-link {
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
  border-color: #e9ecef #e9ecef #dee2e6;
}

.nav-tabs .nav-link.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  color: #495057;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
}

.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-pills .nav-link {
  border-radius: 0.25rem;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #00a1df;
}

.nav-fill .nav-item {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  text-align: center;
}

.nav-justified .nav-item {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  text-align: center;
}

.tab-content > .tab-pane {
  display: none;
}

.tab-content > .active {
  display: block;
}

.navbar {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0.5rem 1rem;
}

.navbar .container,
.navbar .container-fluid,
.navbar .container-lg,
.navbar .container-md,
.navbar .container-middle,
.navbar .container-sm,
.navbar .container-xl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.navbar-brand {
  display: inline-block;
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap;
}

.navbar-brand:focus,
.navbar-brand:hover {
  text-decoration: none;
}

.navbar-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}

.navbar-nav .dropdown-menu {
  position: static;
  float: none;
}

.navbar-text {
  display: inline-block;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.navbar-collapse {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.navbar-toggler:focus,
.navbar-toggler:hover {
  text-decoration: none;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  content: "";
  background: no-repeat center center;
  background-size: 100% 100%;
}

@media (max-width: 575.98px) {
  .navbar-expand-sm > .container,
  .navbar-expand-sm > .container-fluid,
  .navbar-expand-sm > .container-lg,
  .navbar-expand-sm > .container-md,
  .navbar-expand-sm > .container-middle,
  .navbar-expand-sm > .container-sm,
  .navbar-expand-sm > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 576px) {
  .navbar-expand-sm {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .navbar-expand-sm .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-sm > .container,
  .navbar-expand-sm > .container-fluid,
  .navbar-expand-sm > .container-lg,
  .navbar-expand-sm > .container-md,
  .navbar-expand-sm > .container-middle,
  .navbar-expand-sm > .container-sm,
  .navbar-expand-sm > .container-xl {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .navbar-expand-sm .navbar-collapse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .navbar-expand-md > .container,
  .navbar-expand-md > .container-fluid,
  .navbar-expand-md > .container-lg,
  .navbar-expand-md > .container-md,
  .navbar-expand-md > .container-middle,
  .navbar-expand-md > .container-sm,
  .navbar-expand-md > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 768px) {
  .navbar-expand-md {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .navbar-expand-md .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-md > .container,
  .navbar-expand-md > .container-fluid,
  .navbar-expand-md > .container-lg,
  .navbar-expand-md > .container-md,
  .navbar-expand-md > .container-middle,
  .navbar-expand-md > .container-sm,
  .navbar-expand-md > .container-xl {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .navbar-expand-md .navbar-collapse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
  .navbar-expand-md .navbar-toggler {
    display: none;
  }
}
@media (max-width: 831.98px) {
  .navbar-expand-middle > .container,
  .navbar-expand-middle > .container-fluid,
  .navbar-expand-middle > .container-lg,
  .navbar-expand-middle > .container-md,
  .navbar-expand-middle > .container-middle,
  .navbar-expand-middle > .container-sm,
  .navbar-expand-middle > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 832px) {
  .navbar-expand-middle {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .navbar-expand-middle .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .navbar-expand-middle .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-middle .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-middle > .container,
  .navbar-expand-middle > .container-fluid,
  .navbar-expand-middle > .container-lg,
  .navbar-expand-middle > .container-md,
  .navbar-expand-middle > .container-middle,
  .navbar-expand-middle > .container-sm,
  .navbar-expand-middle > .container-xl {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .navbar-expand-middle .navbar-collapse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
  .navbar-expand-middle .navbar-toggler {
    display: none;
  }
}
@media (max-width: 991.98px) {
  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid,
  .navbar-expand-lg > .container-lg,
  .navbar-expand-lg > .container-md,
  .navbar-expand-lg > .container-middle,
  .navbar-expand-lg > .container-sm,
  .navbar-expand-lg > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 992px) {
  .navbar-expand-lg {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .navbar-expand-lg .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid,
  .navbar-expand-lg > .container-lg,
  .navbar-expand-lg > .container-md,
  .navbar-expand-lg > .container-middle,
  .navbar-expand-lg > .container-sm,
  .navbar-expand-lg > .container-xl {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .navbar-expand-lg .navbar-collapse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}
@media (max-width: 1199.98px) {
  .navbar-expand-xl > .container,
  .navbar-expand-xl > .container-fluid,
  .navbar-expand-xl > .container-lg,
  .navbar-expand-xl > .container-md,
  .navbar-expand-xl > .container-middle,
  .navbar-expand-xl > .container-sm,
  .navbar-expand-xl > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 1200px) {
  .navbar-expand-xl {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .navbar-expand-xl .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-xl > .container,
  .navbar-expand-xl > .container-fluid,
  .navbar-expand-xl > .container-lg,
  .navbar-expand-xl > .container-md,
  .navbar-expand-xl > .container-middle,
  .navbar-expand-xl > .container-sm,
  .navbar-expand-xl > .container-xl {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .navbar-expand-xl .navbar-collapse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
}
.navbar-expand {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.navbar-expand > .container,
.navbar-expand > .container-fluid,
.navbar-expand > .container-lg,
.navbar-expand > .container-md,
.navbar-expand > .container-middle,
.navbar-expand > .container-sm,
.navbar-expand > .container-xl {
  padding-right: 0;
  padding-left: 0;
}

.navbar-expand .navbar-nav {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}

.navbar-expand .navbar-nav .nav-link {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}

.navbar-expand > .container,
.navbar-expand > .container-fluid,
.navbar-expand > .container-lg,
.navbar-expand > .container-md,
.navbar-expand > .container-middle,
.navbar-expand > .container-sm,
.navbar-expand > .container-xl {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.navbar-expand .navbar-collapse {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}

.navbar-expand .navbar-toggler {
  display: none;
}

.navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-brand:focus,
.navbar-light .navbar-brand:hover {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.5);
}

.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
  color: rgba(0, 0, 0, 0.7);
}

.navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(0, 0, 0, 0.3);
}

.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .show > .nav-link {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.5);
  border-color: rgba(0, 0, 0, 0.1);
}

.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-light .navbar-text {
  color: rgba(0, 0, 0, 0.5);
}

.navbar-light .navbar-text a {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-text a:focus,
.navbar-light .navbar-text a:hover {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-dark .navbar-brand {
  color: #fff;
}

.navbar-dark .navbar-brand:focus,
.navbar-dark .navbar-brand:hover {
  color: #fff;
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.5);
}

.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover {
  color: rgba(255, 255, 255, 0.75);
}

.navbar-dark .navbar-nav .nav-link.disabled {
  color: rgba(255, 255, 255, 0.25);
}

.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .show > .nav-link {
  color: #fff;
}

.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
}

.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-dark .navbar-text {
  color: rgba(255, 255, 255, 0.5);
}

.navbar-dark .navbar-text a {
  color: #fff;
}

.navbar-dark .navbar-text a:focus,
.navbar-dark .navbar-text a:hover {
  color: #fff;
}

.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.bg-primary {
  background-color: #00a1df !important;
}

a.bg-primary:focus,
a.bg-primary:hover,
button.bg-primary:focus,
button.bg-primary:hover {
  background-color: #007cac !important;
}

.bg-secondary {
  background-color: #6c757d !important;
}

a.bg-secondary:focus,
a.bg-secondary:hover,
button.bg-secondary:focus,
button.bg-secondary:hover {
  background-color: #545b62 !important;
}

.bg-success {
  background-color: #28a745 !important;
}

a.bg-success:focus,
a.bg-success:hover,
button.bg-success:focus,
button.bg-success:hover {
  background-color: #1e7e34 !important;
}

.bg-info {
  background-color: #17a2b8 !important;
}

a.bg-info:focus,
a.bg-info:hover,
button.bg-info:focus,
button.bg-info:hover {
  background-color: #117a8b !important;
}

.bg-warning {
  background-color: #ffc107 !important;
}

a.bg-warning:focus,
a.bg-warning:hover,
button.bg-warning:focus,
button.bg-warning:hover {
  background-color: #d39e00 !important;
}

.bg-danger {
  background-color: #dc3545 !important;
}

a.bg-danger:focus,
a.bg-danger:hover,
button.bg-danger:focus,
button.bg-danger:hover {
  background-color: #bd2130 !important;
}

.bg-light {
  background-color: #f8f9fa !important;
}

a.bg-light:focus,
a.bg-light:hover,
button.bg-light:focus,
button.bg-light:hover {
  background-color: #dae0e5 !important;
}

.bg-dark {
  background-color: #343a40 !important;
}

a.bg-dark:focus,
a.bg-dark:hover,
button.bg-dark:focus,
button.bg-dark:hover {
  background-color: #1d2124 !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.border {
  border: 1px solid #dee2e6 !important;
}

.border-top {
  border-top: 1px solid #dee2e6 !important;
}

.border-right {
  border-right: 1px solid #dee2e6 !important;
}

.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}

.border-left {
  border-left: 1px solid #dee2e6 !important;
}

.border-0 {
  border: 0 !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-right-0 {
  border-right: 0 !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-left-0 {
  border-left: 0 !important;
}

.border-primary {
  border-color: #00a1df !important;
}

.border-secondary {
  border-color: #6c757d !important;
}

.border-success {
  border-color: #28a745 !important;
}

.border-info {
  border-color: #17a2b8 !important;
}

.border-warning {
  border-color: #ffc107 !important;
}

.border-danger {
  border-color: #dc3545 !important;
}

.border-light {
  border-color: #f8f9fa !important;
}

.border-dark {
  border-color: #343a40 !important;
}

.border-white {
  border-color: #fff !important;
}

.rounded-sm {
  border-radius: 0.2rem !important;
}

.rounded {
  border-radius: 0.25rem !important;
}

.rounded-top {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
}

.rounded-right {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}

.rounded-bottom {
  border-bottom-right-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-left {
  border-top-left-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-lg {
  border-radius: 0.3rem !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: 50rem !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

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

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-inline-flex {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-md-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 832px) {
  .d-middle-none {
    display: none !important;
  }
  .d-middle-inline {
    display: inline !important;
  }
  .d-middle-inline-block {
    display: inline-block !important;
  }
  .d-middle-block {
    display: block !important;
  }
  .d-middle-table {
    display: table !important;
  }
  .d-middle-table-row {
    display: table-row !important;
  }
  .d-middle-table-cell {
    display: table-cell !important;
  }
  .d-middle-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-middle-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media print {
  .d-print-none {
    display: none !important;
  }
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-print-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.embed-responsive::before {
  display: block;
  content: "";
}

.embed-responsive .embed-responsive-item,
.embed-responsive embed,
.embed-responsive iframe,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-responsive-21by9::before {
  padding-top: 42.85714%;
}

.embed-responsive-16by9::before {
  padding-top: 56.25%;
}

.embed-responsive-4by3::before {
  padding-top: 75%;
}

.embed-responsive-1by1::before {
  padding-top: 100%;
}

.flex-row {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}

.flex-column {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.flex-row-reverse {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: reverse !important;
  -ms-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important;
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
  flex-wrap: wrap-reverse !important;
}

.flex-fill {
  -webkit-box-flex: 1 !important;
  -ms-flex: 1 1 auto !important;
  flex: 1 1 auto !important;
}

.flex-grow-0 {
  -webkit-box-flex: 0 !important;
  -ms-flex-positive: 0 !important;
  flex-grow: 0 !important;
}

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

.flex-shrink-0 {
  -ms-flex-negative: 0 !important;
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  -ms-flex-negative: 1 !important;
  flex-shrink: 1 !important;
}

.justify-content-start {
  -webkit-box-pack: start !important;
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}

.justify-content-end {
  -webkit-box-pack: end !important;
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}

.justify-content-center {
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.justify-content-between {
  -webkit-box-pack: justify !important;
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.justify-content-around {
  -ms-flex-pack: distribute !important;
  justify-content: space-around !important;
}

.align-items-start {
  -webkit-box-align: start !important;
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}

.align-items-end {
  -webkit-box-align: end !important;
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}

.align-items-center {
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}

.align-items-baseline {
  -webkit-box-align: baseline !important;
  -ms-flex-align: baseline !important;
  align-items: baseline !important;
}

.align-items-stretch {
  -webkit-box-align: stretch !important;
  -ms-flex-align: stretch !important;
  align-items: stretch !important;
}

.align-content-start {
  -ms-flex-line-pack: start !important;
  align-content: flex-start !important;
}

.align-content-end {
  -ms-flex-line-pack: end !important;
  align-content: flex-end !important;
}

.align-content-center {
  -ms-flex-line-pack: center !important;
  align-content: center !important;
}

.align-content-between {
  -ms-flex-line-pack: justify !important;
  align-content: space-between !important;
}

.align-content-around {
  -ms-flex-line-pack: distribute !important;
  align-content: space-around !important;
}

.align-content-stretch {
  -ms-flex-line-pack: stretch !important;
  align-content: stretch !important;
}

.align-self-auto {
  -ms-flex-item-align: auto !important;
  -ms-grid-row-align: auto !important;
      align-self: auto !important;
}

.align-self-start {
  -ms-flex-item-align: start !important;
  align-self: flex-start !important;
}

.align-self-end {
  -ms-flex-item-align: end !important;
  align-self: flex-end !important;
}

.align-self-center {
  -ms-flex-item-align: center !important;
  -ms-grid-row-align: center !important;
      align-self: center !important;
}

.align-self-baseline {
  -ms-flex-item-align: baseline !important;
  align-self: baseline !important;
}

.align-self-stretch {
  -ms-flex-item-align: stretch !important;
  -ms-grid-row-align: stretch !important;
      align-self: stretch !important;
}

@media (min-width: 576px) {
  .flex-sm-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-sm-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .flex-sm-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-sm-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .justify-content-sm-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-sm-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-sm-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-sm-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-sm-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-sm-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    -ms-flex-item-align: auto !important;
    -ms-grid-row-align: auto !important;
        align-self: auto !important;
  }
  .align-self-sm-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    -ms-flex-item-align: center !important;
    -ms-grid-row-align: center !important;
        align-self: center !important;
  }
  .align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
    -ms-grid-row-align: stretch !important;
        align-self: stretch !important;
  }
}
@media (min-width: 768px) {
  .flex-md-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-md-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-md-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .flex-md-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-md-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .justify-content-md-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-md-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-md-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-md-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-md-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-md-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-md-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-md-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-md-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-md-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-md-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-md-auto {
    -ms-flex-item-align: auto !important;
    -ms-grid-row-align: auto !important;
        align-self: auto !important;
  }
  .align-self-md-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-md-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-md-center {
    -ms-flex-item-align: center !important;
    -ms-grid-row-align: center !important;
        align-self: center !important;
  }
  .align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
    -ms-grid-row-align: stretch !important;
        align-self: stretch !important;
  }
}
@media (min-width: 832px) {
  .flex-middle-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-middle-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-middle-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-middle-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-middle-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-middle-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-middle-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .flex-middle-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-middle-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-middle-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-middle-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-middle-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .justify-content-middle-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-middle-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-middle-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-middle-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-middle-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-middle-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-middle-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-middle-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-middle-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-middle-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-middle-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-middle-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-middle-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-middle-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-middle-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-middle-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-middle-auto {
    -ms-flex-item-align: auto !important;
    -ms-grid-row-align: auto !important;
        align-self: auto !important;
  }
  .align-self-middle-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-middle-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-middle-center {
    -ms-flex-item-align: center !important;
    -ms-grid-row-align: center !important;
        align-self: center !important;
  }
  .align-self-middle-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-middle-stretch {
    -ms-flex-item-align: stretch !important;
    -ms-grid-row-align: stretch !important;
        align-self: stretch !important;
  }
}
@media (min-width: 992px) {
  .flex-lg-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-lg-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .flex-lg-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-lg-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .justify-content-lg-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-lg-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-lg-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-lg-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-lg-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-lg-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    -ms-flex-item-align: auto !important;
    -ms-grid-row-align: auto !important;
        align-self: auto !important;
  }
  .align-self-lg-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    -ms-flex-item-align: center !important;
    -ms-grid-row-align: center !important;
        align-self: center !important;
  }
  .align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
    -ms-grid-row-align: stretch !important;
        align-self: stretch !important;
  }
}
@media (min-width: 1200px) {
  .flex-xl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-xl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .flex-xl-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-xl-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .justify-content-xl-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-xl-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-xl-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-xl-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-xl-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-xl-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    -ms-flex-item-align: auto !important;
    -ms-grid-row-align: auto !important;
        align-self: auto !important;
  }
  .align-self-xl-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    -ms-flex-item-align: center !important;
    -ms-grid-row-align: center !important;
        align-self: center !important;
  }
  .align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
    -ms-grid-row-align: stretch !important;
        align-self: stretch !important;
  }
}
.float-left {
  float: left !important;
}

.float-right {
  float: right !important;
}

.float-none {
  float: none !important;
}

@media (min-width: 576px) {
  .float-sm-left {
    float: left !important;
  }
  .float-sm-right {
    float: right !important;
  }
  .float-sm-none {
    float: none !important;
  }
}
@media (min-width: 768px) {
  .float-md-left {
    float: left !important;
  }
  .float-md-right {
    float: right !important;
  }
  .float-md-none {
    float: none !important;
  }
}
@media (min-width: 832px) {
  .float-middle-left {
    float: left !important;
  }
  .float-middle-right {
    float: right !important;
  }
  .float-middle-none {
    float: none !important;
  }
}
@media (min-width: 992px) {
  .float-lg-left {
    float: left !important;
  }
  .float-lg-right {
    float: right !important;
  }
  .float-lg-none {
    float: none !important;
  }
}
@media (min-width: 1200px) {
  .float-xl-left {
    float: left !important;
  }
  .float-xl-right {
    float: right !important;
  }
  .float-xl-none {
    float: none !important;
  }
}
.user-select-all {
  -webkit-user-select: all !important;
  -moz-user-select: all !important;
  -ms-user-select: all !important;
  user-select: all !important;
}

.user-select-auto {
  -webkit-user-select: auto !important;
  -moz-user-select: auto !important;
  -ms-user-select: auto !important;
  user-select: auto !important;
}

.user-select-none {
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: sticky !important;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

@supports (position: sticky) {
  .sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

.shadow-sm {
  -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow {
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-lg {
  -webkit-box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.shadow-none {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.mh-100 {
  max-height: 100% !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.vw-100 {
  width: 100vw !important;
}

.vh-100 {
  height: 100vh !important;
}

.m-0 {
  margin: 0 !important;
}

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-3,
.my-3 {
  margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}

.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5,
.my-5 {
  margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}

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

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
  padding-left: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3,
.py-3 {
  padding-top: 1rem !important;
}

.pr-3,
.px-3 {
  padding-right: 1rem !important;
}

.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
  padding-left: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

.pr-5,
.px-5 {
  padding-right: 3rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
  padding-left: 3rem !important;
}

.m-n1 {
  margin: -0.25rem !important;
}

.mt-n1,
.my-n1 {
  margin-top: -0.25rem !important;
}

.mr-n1,
.mx-n1 {
  margin-right: -0.25rem !important;
}

.mb-n1,
.my-n1 {
  margin-bottom: -0.25rem !important;
}

.ml-n1,
.mx-n1 {
  margin-left: -0.25rem !important;
}

.m-n2 {
  margin: -0.5rem !important;
}

.mt-n2,
.my-n2 {
  margin-top: -0.5rem !important;
}

.mr-n2,
.mx-n2 {
  margin-right: -0.5rem !important;
}

.mb-n2,
.my-n2 {
  margin-bottom: -0.5rem !important;
}

.ml-n2,
.mx-n2 {
  margin-left: -0.5rem !important;
}

.m-n3 {
  margin: -1rem !important;
}

.mt-n3,
.my-n3 {
  margin-top: -1rem !important;
}

.mr-n3,
.mx-n3 {
  margin-right: -1rem !important;
}

.mb-n3,
.my-n3 {
  margin-bottom: -1rem !important;
}

.ml-n3,
.mx-n3 {
  margin-left: -1rem !important;
}

.m-n4 {
  margin: -1.5rem !important;
}

.mt-n4,
.my-n4 {
  margin-top: -1.5rem !important;
}

.mr-n4,
.mx-n4 {
  margin-right: -1.5rem !important;
}

.mb-n4,
.my-n4 {
  margin-bottom: -1.5rem !important;
}

.ml-n4,
.mx-n4 {
  margin-left: -1.5rem !important;
}

.m-n5 {
  margin: -3rem !important;
}

.mt-n5,
.my-n5 {
  margin-top: -3rem !important;
}

.mr-n5,
.mx-n5 {
  margin-right: -3rem !important;
}

.mb-n5,
.my-n5 {
  margin-bottom: -3rem !important;
}

.ml-n5,
.mx-n5 {
  margin-left: -3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto,
.my-auto {
  margin-top: auto !important;
}

.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0 !important;
  }
  .mt-sm-0,
  .my-sm-0 {
    margin-top: 0 !important;
  }
  .mr-sm-0,
  .mx-sm-0 {
    margin-right: 0 !important;
  }
  .mb-sm-0,
  .my-sm-0 {
    margin-bottom: 0 !important;
  }
  .ml-sm-0,
  .mx-sm-0 {
    margin-left: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .mt-sm-1,
  .my-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mr-sm-1,
  .mx-sm-1 {
    margin-right: 0.25rem !important;
  }
  .mb-sm-1,
  .my-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-sm-1,
  .mx-sm-1 {
    margin-left: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .mt-sm-2,
  .my-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mr-sm-2,
  .mx-sm-2 {
    margin-right: 0.5rem !important;
  }
  .mb-sm-2,
  .my-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-sm-2,
  .mx-sm-2 {
    margin-left: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .mt-sm-3,
  .my-sm-3 {
    margin-top: 1rem !important;
  }
  .mr-sm-3,
  .mx-sm-3 {
    margin-right: 1rem !important;
  }
  .mb-sm-3,
  .my-sm-3 {
    margin-bottom: 1rem !important;
  }
  .ml-sm-3,
  .mx-sm-3 {
    margin-left: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .mt-sm-4,
  .my-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mr-sm-4,
  .mx-sm-4 {
    margin-right: 1.5rem !important;
  }
  .mb-sm-4,
  .my-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-sm-4,
  .mx-sm-4 {
    margin-left: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .mt-sm-5,
  .my-sm-5 {
    margin-top: 3rem !important;
  }
  .mr-sm-5,
  .mx-sm-5 {
    margin-right: 3rem !important;
  }
  .mb-sm-5,
  .my-sm-5 {
    margin-bottom: 3rem !important;
  }
  .ml-sm-5,
  .mx-sm-5 {
    margin-left: 3rem !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .pt-sm-0,
  .py-sm-0 {
    padding-top: 0 !important;
  }
  .pr-sm-0,
  .px-sm-0 {
    padding-right: 0 !important;
  }
  .pb-sm-0,
  .py-sm-0 {
    padding-bottom: 0 !important;
  }
  .pl-sm-0,
  .px-sm-0 {
    padding-left: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .pt-sm-1,
  .py-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pr-sm-1,
  .px-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pb-sm-1,
  .py-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-sm-1,
  .px-sm-1 {
    padding-left: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .pt-sm-2,
  .py-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pr-sm-2,
  .px-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pb-sm-2,
  .py-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-sm-2,
  .px-sm-2 {
    padding-left: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .pt-sm-3,
  .py-sm-3 {
    padding-top: 1rem !important;
  }
  .pr-sm-3,
  .px-sm-3 {
    padding-right: 1rem !important;
  }
  .pb-sm-3,
  .py-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pl-sm-3,
  .px-sm-3 {
    padding-left: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .pt-sm-4,
  .py-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pr-sm-4,
  .px-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pb-sm-4,
  .py-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-sm-4,
  .px-sm-4 {
    padding-left: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .pt-sm-5,
  .py-sm-5 {
    padding-top: 3rem !important;
  }
  .pr-sm-5,
  .px-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-5,
  .py-sm-5 {
    padding-bottom: 3rem !important;
  }
  .pl-sm-5,
  .px-sm-5 {
    padding-left: 3rem !important;
  }
  .m-sm-n1 {
    margin: -0.25rem !important;
  }
  .mt-sm-n1,
  .my-sm-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-sm-n1,
  .mx-sm-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-sm-n1,
  .my-sm-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-sm-n1,
  .mx-sm-n1 {
    margin-left: -0.25rem !important;
  }
  .m-sm-n2 {
    margin: -0.5rem !important;
  }
  .mt-sm-n2,
  .my-sm-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-sm-n2,
  .mx-sm-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-sm-n2,
  .my-sm-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-sm-n2,
  .mx-sm-n2 {
    margin-left: -0.5rem !important;
  }
  .m-sm-n3 {
    margin: -1rem !important;
  }
  .mt-sm-n3,
  .my-sm-n3 {
    margin-top: -1rem !important;
  }
  .mr-sm-n3,
  .mx-sm-n3 {
    margin-right: -1rem !important;
  }
  .mb-sm-n3,
  .my-sm-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-sm-n3,
  .mx-sm-n3 {
    margin-left: -1rem !important;
  }
  .m-sm-n4 {
    margin: -1.5rem !important;
  }
  .mt-sm-n4,
  .my-sm-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-sm-n4,
  .mx-sm-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-sm-n4,
  .my-sm-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-sm-n4,
  .mx-sm-n4 {
    margin-left: -1.5rem !important;
  }
  .m-sm-n5 {
    margin: -3rem !important;
  }
  .mt-sm-n5,
  .my-sm-n5 {
    margin-top: -3rem !important;
  }
  .mr-sm-n5,
  .mx-sm-n5 {
    margin-right: -3rem !important;
  }
  .mb-sm-n5,
  .my-sm-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-sm-n5,
  .mx-sm-n5 {
    margin-left: -3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mt-sm-auto,
  .my-sm-auto {
    margin-top: auto !important;
  }
  .mr-sm-auto,
  .mx-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-auto,
  .my-sm-auto {
    margin-bottom: auto !important;
  }
  .ml-sm-auto,
  .mx-sm-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important;
  }
  .mt-md-0,
  .my-md-0 {
    margin-top: 0 !important;
  }
  .mr-md-0,
  .mx-md-0 {
    margin-right: 0 !important;
  }
  .mb-md-0,
  .my-md-0 {
    margin-bottom: 0 !important;
  }
  .ml-md-0,
  .mx-md-0 {
    margin-left: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .mt-md-1,
  .my-md-1 {
    margin-top: 0.25rem !important;
  }
  .mr-md-1,
  .mx-md-1 {
    margin-right: 0.25rem !important;
  }
  .mb-md-1,
  .my-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-md-1,
  .mx-md-1 {
    margin-left: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .mt-md-2,
  .my-md-2 {
    margin-top: 0.5rem !important;
  }
  .mr-md-2,
  .mx-md-2 {
    margin-right: 0.5rem !important;
  }
  .mb-md-2,
  .my-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-md-2,
  .mx-md-2 {
    margin-left: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .mt-md-3,
  .my-md-3 {
    margin-top: 1rem !important;
  }
  .mr-md-3,
  .mx-md-3 {
    margin-right: 1rem !important;
  }
  .mb-md-3,
  .my-md-3 {
    margin-bottom: 1rem !important;
  }
  .ml-md-3,
  .mx-md-3 {
    margin-left: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .mt-md-4,
  .my-md-4 {
    margin-top: 1.5rem !important;
  }
  .mr-md-4,
  .mx-md-4 {
    margin-right: 1.5rem !important;
  }
  .mb-md-4,
  .my-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-md-4,
  .mx-md-4 {
    margin-left: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .mt-md-5,
  .my-md-5 {
    margin-top: 3rem !important;
  }
  .mr-md-5,
  .mx-md-5 {
    margin-right: 3rem !important;
  }
  .mb-md-5,
  .my-md-5 {
    margin-bottom: 3rem !important;
  }
  .ml-md-5,
  .mx-md-5 {
    margin-left: 3rem !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .pt-md-0,
  .py-md-0 {
    padding-top: 0 !important;
  }
  .pr-md-0,
  .px-md-0 {
    padding-right: 0 !important;
  }
  .pb-md-0,
  .py-md-0 {
    padding-bottom: 0 !important;
  }
  .pl-md-0,
  .px-md-0 {
    padding-left: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .pt-md-1,
  .py-md-1 {
    padding-top: 0.25rem !important;
  }
  .pr-md-1,
  .px-md-1 {
    padding-right: 0.25rem !important;
  }
  .pb-md-1,
  .py-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-md-1,
  .px-md-1 {
    padding-left: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .pt-md-2,
  .py-md-2 {
    padding-top: 0.5rem !important;
  }
  .pr-md-2,
  .px-md-2 {
    padding-right: 0.5rem !important;
  }
  .pb-md-2,
  .py-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-md-2,
  .px-md-2 {
    padding-left: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .pt-md-3,
  .py-md-3 {
    padding-top: 1rem !important;
  }
  .pr-md-3,
  .px-md-3 {
    padding-right: 1rem !important;
  }
  .pb-md-3,
  .py-md-3 {
    padding-bottom: 1rem !important;
  }
  .pl-md-3,
  .px-md-3 {
    padding-left: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .pt-md-4,
  .py-md-4 {
    padding-top: 1.5rem !important;
  }
  .pr-md-4,
  .px-md-4 {
    padding-right: 1.5rem !important;
  }
  .pb-md-4,
  .py-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-md-4,
  .px-md-4 {
    padding-left: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .pt-md-5,
  .py-md-5 {
    padding-top: 3rem !important;
  }
  .pr-md-5,
  .px-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-5,
  .py-md-5 {
    padding-bottom: 3rem !important;
  }
  .pl-md-5,
  .px-md-5 {
    padding-left: 3rem !important;
  }
  .m-md-n1 {
    margin: -0.25rem !important;
  }
  .mt-md-n1,
  .my-md-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-md-n1,
  .mx-md-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-md-n1,
  .my-md-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-md-n1,
  .mx-md-n1 {
    margin-left: -0.25rem !important;
  }
  .m-md-n2 {
    margin: -0.5rem !important;
  }
  .mt-md-n2,
  .my-md-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-md-n2,
  .mx-md-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-md-n2,
  .my-md-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-md-n2,
  .mx-md-n2 {
    margin-left: -0.5rem !important;
  }
  .m-md-n3 {
    margin: -1rem !important;
  }
  .mt-md-n3,
  .my-md-n3 {
    margin-top: -1rem !important;
  }
  .mr-md-n3,
  .mx-md-n3 {
    margin-right: -1rem !important;
  }
  .mb-md-n3,
  .my-md-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-md-n3,
  .mx-md-n3 {
    margin-left: -1rem !important;
  }
  .m-md-n4 {
    margin: -1.5rem !important;
  }
  .mt-md-n4,
  .my-md-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-md-n4,
  .mx-md-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-md-n4,
  .my-md-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-md-n4,
  .mx-md-n4 {
    margin-left: -1.5rem !important;
  }
  .m-md-n5 {
    margin: -3rem !important;
  }
  .mt-md-n5,
  .my-md-n5 {
    margin-top: -3rem !important;
  }
  .mr-md-n5,
  .mx-md-n5 {
    margin-right: -3rem !important;
  }
  .mb-md-n5,
  .my-md-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-md-n5,
  .mx-md-n5 {
    margin-left: -3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mt-md-auto,
  .my-md-auto {
    margin-top: auto !important;
  }
  .mr-md-auto,
  .mx-md-auto {
    margin-right: auto !important;
  }
  .mb-md-auto,
  .my-md-auto {
    margin-bottom: auto !important;
  }
  .ml-md-auto,
  .mx-md-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 832px) {
  .m-middle-0 {
    margin: 0 !important;
  }
  .mt-middle-0,
  .my-middle-0 {
    margin-top: 0 !important;
  }
  .mr-middle-0,
  .mx-middle-0 {
    margin-right: 0 !important;
  }
  .mb-middle-0,
  .my-middle-0 {
    margin-bottom: 0 !important;
  }
  .ml-middle-0,
  .mx-middle-0 {
    margin-left: 0 !important;
  }
  .m-middle-1 {
    margin: 0.25rem !important;
  }
  .mt-middle-1,
  .my-middle-1 {
    margin-top: 0.25rem !important;
  }
  .mr-middle-1,
  .mx-middle-1 {
    margin-right: 0.25rem !important;
  }
  .mb-middle-1,
  .my-middle-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-middle-1,
  .mx-middle-1 {
    margin-left: 0.25rem !important;
  }
  .m-middle-2 {
    margin: 0.5rem !important;
  }
  .mt-middle-2,
  .my-middle-2 {
    margin-top: 0.5rem !important;
  }
  .mr-middle-2,
  .mx-middle-2 {
    margin-right: 0.5rem !important;
  }
  .mb-middle-2,
  .my-middle-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-middle-2,
  .mx-middle-2 {
    margin-left: 0.5rem !important;
  }
  .m-middle-3 {
    margin: 1rem !important;
  }
  .mt-middle-3,
  .my-middle-3 {
    margin-top: 1rem !important;
  }
  .mr-middle-3,
  .mx-middle-3 {
    margin-right: 1rem !important;
  }
  .mb-middle-3,
  .my-middle-3 {
    margin-bottom: 1rem !important;
  }
  .ml-middle-3,
  .mx-middle-3 {
    margin-left: 1rem !important;
  }
  .m-middle-4 {
    margin: 1.5rem !important;
  }
  .mt-middle-4,
  .my-middle-4 {
    margin-top: 1.5rem !important;
  }
  .mr-middle-4,
  .mx-middle-4 {
    margin-right: 1.5rem !important;
  }
  .mb-middle-4,
  .my-middle-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-middle-4,
  .mx-middle-4 {
    margin-left: 1.5rem !important;
  }
  .m-middle-5 {
    margin: 3rem !important;
  }
  .mt-middle-5,
  .my-middle-5 {
    margin-top: 3rem !important;
  }
  .mr-middle-5,
  .mx-middle-5 {
    margin-right: 3rem !important;
  }
  .mb-middle-5,
  .my-middle-5 {
    margin-bottom: 3rem !important;
  }
  .ml-middle-5,
  .mx-middle-5 {
    margin-left: 3rem !important;
  }
  .p-middle-0 {
    padding: 0 !important;
  }
  .pt-middle-0,
  .py-middle-0 {
    padding-top: 0 !important;
  }
  .pr-middle-0,
  .px-middle-0 {
    padding-right: 0 !important;
  }
  .pb-middle-0,
  .py-middle-0 {
    padding-bottom: 0 !important;
  }
  .pl-middle-0,
  .px-middle-0 {
    padding-left: 0 !important;
  }
  .p-middle-1 {
    padding: 0.25rem !important;
  }
  .pt-middle-1,
  .py-middle-1 {
    padding-top: 0.25rem !important;
  }
  .pr-middle-1,
  .px-middle-1 {
    padding-right: 0.25rem !important;
  }
  .pb-middle-1,
  .py-middle-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-middle-1,
  .px-middle-1 {
    padding-left: 0.25rem !important;
  }
  .p-middle-2 {
    padding: 0.5rem !important;
  }
  .pt-middle-2,
  .py-middle-2 {
    padding-top: 0.5rem !important;
  }
  .pr-middle-2,
  .px-middle-2 {
    padding-right: 0.5rem !important;
  }
  .pb-middle-2,
  .py-middle-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-middle-2,
  .px-middle-2 {
    padding-left: 0.5rem !important;
  }
  .p-middle-3 {
    padding: 1rem !important;
  }
  .pt-middle-3,
  .py-middle-3 {
    padding-top: 1rem !important;
  }
  .pr-middle-3,
  .px-middle-3 {
    padding-right: 1rem !important;
  }
  .pb-middle-3,
  .py-middle-3 {
    padding-bottom: 1rem !important;
  }
  .pl-middle-3,
  .px-middle-3 {
    padding-left: 1rem !important;
  }
  .p-middle-4 {
    padding: 1.5rem !important;
  }
  .pt-middle-4,
  .py-middle-4 {
    padding-top: 1.5rem !important;
  }
  .pr-middle-4,
  .px-middle-4 {
    padding-right: 1.5rem !important;
  }
  .pb-middle-4,
  .py-middle-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-middle-4,
  .px-middle-4 {
    padding-left: 1.5rem !important;
  }
  .p-middle-5 {
    padding: 3rem !important;
  }
  .pt-middle-5,
  .py-middle-5 {
    padding-top: 3rem !important;
  }
  .pr-middle-5,
  .px-middle-5 {
    padding-right: 3rem !important;
  }
  .pb-middle-5,
  .py-middle-5 {
    padding-bottom: 3rem !important;
  }
  .pl-middle-5,
  .px-middle-5 {
    padding-left: 3rem !important;
  }
  .m-middle-n1 {
    margin: -0.25rem !important;
  }
  .mt-middle-n1,
  .my-middle-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-middle-n1,
  .mx-middle-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-middle-n1,
  .my-middle-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-middle-n1,
  .mx-middle-n1 {
    margin-left: -0.25rem !important;
  }
  .m-middle-n2 {
    margin: -0.5rem !important;
  }
  .mt-middle-n2,
  .my-middle-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-middle-n2,
  .mx-middle-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-middle-n2,
  .my-middle-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-middle-n2,
  .mx-middle-n2 {
    margin-left: -0.5rem !important;
  }
  .m-middle-n3 {
    margin: -1rem !important;
  }
  .mt-middle-n3,
  .my-middle-n3 {
    margin-top: -1rem !important;
  }
  .mr-middle-n3,
  .mx-middle-n3 {
    margin-right: -1rem !important;
  }
  .mb-middle-n3,
  .my-middle-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-middle-n3,
  .mx-middle-n3 {
    margin-left: -1rem !important;
  }
  .m-middle-n4 {
    margin: -1.5rem !important;
  }
  .mt-middle-n4,
  .my-middle-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-middle-n4,
  .mx-middle-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-middle-n4,
  .my-middle-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-middle-n4,
  .mx-middle-n4 {
    margin-left: -1.5rem !important;
  }
  .m-middle-n5 {
    margin: -3rem !important;
  }
  .mt-middle-n5,
  .my-middle-n5 {
    margin-top: -3rem !important;
  }
  .mr-middle-n5,
  .mx-middle-n5 {
    margin-right: -3rem !important;
  }
  .mb-middle-n5,
  .my-middle-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-middle-n5,
  .mx-middle-n5 {
    margin-left: -3rem !important;
  }
  .m-middle-auto {
    margin: auto !important;
  }
  .mt-middle-auto,
  .my-middle-auto {
    margin-top: auto !important;
  }
  .mr-middle-auto,
  .mx-middle-auto {
    margin-right: auto !important;
  }
  .mb-middle-auto,
  .my-middle-auto {
    margin-bottom: auto !important;
  }
  .ml-middle-auto,
  .mx-middle-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0 !important;
  }
  .mt-lg-0,
  .my-lg-0 {
    margin-top: 0 !important;
  }
  .mr-lg-0,
  .mx-lg-0 {
    margin-right: 0 !important;
  }
  .mb-lg-0,
  .my-lg-0 {
    margin-bottom: 0 !important;
  }
  .ml-lg-0,
  .mx-lg-0 {
    margin-left: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .mt-lg-1,
  .my-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mr-lg-1,
  .mx-lg-1 {
    margin-right: 0.25rem !important;
  }
  .mb-lg-1,
  .my-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-lg-1,
  .mx-lg-1 {
    margin-left: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .mt-lg-2,
  .my-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mr-lg-2,
  .mx-lg-2 {
    margin-right: 0.5rem !important;
  }
  .mb-lg-2,
  .my-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-lg-2,
  .mx-lg-2 {
    margin-left: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .mt-lg-3,
  .my-lg-3 {
    margin-top: 1rem !important;
  }
  .mr-lg-3,
  .mx-lg-3 {
    margin-right: 1rem !important;
  }
  .mb-lg-3,
  .my-lg-3 {
    margin-bottom: 1rem !important;
  }
  .ml-lg-3,
  .mx-lg-3 {
    margin-left: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .mt-lg-4,
  .my-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mr-lg-4,
  .mx-lg-4 {
    margin-right: 1.5rem !important;
  }
  .mb-lg-4,
  .my-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-lg-4,
  .mx-lg-4 {
    margin-left: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .mt-lg-5,
  .my-lg-5 {
    margin-top: 3rem !important;
  }
  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 3rem !important;
  }
  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 3rem !important;
  }
  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 3rem !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .pt-lg-0,
  .py-lg-0 {
    padding-top: 0 !important;
  }
  .pr-lg-0,
  .px-lg-0 {
    padding-right: 0 !important;
  }
  .pb-lg-0,
  .py-lg-0 {
    padding-bottom: 0 !important;
  }
  .pl-lg-0,
  .px-lg-0 {
    padding-left: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .pt-lg-1,
  .py-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pr-lg-1,
  .px-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pb-lg-1,
  .py-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-lg-1,
  .px-lg-1 {
    padding-left: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .pt-lg-2,
  .py-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pr-lg-2,
  .px-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pb-lg-2,
  .py-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-lg-2,
  .px-lg-2 {
    padding-left: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .pt-lg-3,
  .py-lg-3 {
    padding-top: 1rem !important;
  }
  .pr-lg-3,
  .px-lg-3 {
    padding-right: 1rem !important;
  }
  .pb-lg-3,
  .py-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pl-lg-3,
  .px-lg-3 {
    padding-left: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .pt-lg-4,
  .py-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pr-lg-4,
  .px-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pb-lg-4,
  .py-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-lg-4,
  .px-lg-4 {
    padding-left: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .pt-lg-5,
  .py-lg-5 {
    padding-top: 3rem !important;
  }
  .pr-lg-5,
  .px-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 3rem !important;
  }
  .pl-lg-5,
  .px-lg-5 {
    padding-left: 3rem !important;
  }
  .m-lg-n1 {
    margin: -0.25rem !important;
  }
  .mt-lg-n1,
  .my-lg-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-lg-n1,
  .mx-lg-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-lg-n1,
  .my-lg-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-lg-n1,
  .mx-lg-n1 {
    margin-left: -0.25rem !important;
  }
  .m-lg-n2 {
    margin: -0.5rem !important;
  }
  .mt-lg-n2,
  .my-lg-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-lg-n2,
  .mx-lg-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-lg-n2,
  .my-lg-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-lg-n2,
  .mx-lg-n2 {
    margin-left: -0.5rem !important;
  }
  .m-lg-n3 {
    margin: -1rem !important;
  }
  .mt-lg-n3,
  .my-lg-n3 {
    margin-top: -1rem !important;
  }
  .mr-lg-n3,
  .mx-lg-n3 {
    margin-right: -1rem !important;
  }
  .mb-lg-n3,
  .my-lg-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-lg-n3,
  .mx-lg-n3 {
    margin-left: -1rem !important;
  }
  .m-lg-n4 {
    margin: -1.5rem !important;
  }
  .mt-lg-n4,
  .my-lg-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-lg-n4,
  .mx-lg-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-lg-n4,
  .my-lg-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-lg-n4,
  .mx-lg-n4 {
    margin-left: -1.5rem !important;
  }
  .m-lg-n5 {
    margin: -3rem !important;
  }
  .mt-lg-n5,
  .my-lg-n5 {
    margin-top: -3rem !important;
  }
  .mr-lg-n5,
  .mx-lg-n5 {
    margin-right: -3rem !important;
  }
  .mb-lg-n5,
  .my-lg-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-lg-n5,
  .mx-lg-n5 {
    margin-left: -3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mt-lg-auto,
  .my-lg-auto {
    margin-top: auto !important;
  }
  .mr-lg-auto,
  .mx-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-auto,
  .my-lg-auto {
    margin-bottom: auto !important;
  }
  .ml-lg-auto,
  .mx-lg-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1200px) {
  .m-xl-0 {
    margin: 0 !important;
  }
  .mt-xl-0,
  .my-xl-0 {
    margin-top: 0 !important;
  }
  .mr-xl-0,
  .mx-xl-0 {
    margin-right: 0 !important;
  }
  .mb-xl-0,
  .my-xl-0 {
    margin-bottom: 0 !important;
  }
  .ml-xl-0,
  .mx-xl-0 {
    margin-left: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .mt-xl-1,
  .my-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mr-xl-1,
  .mx-xl-1 {
    margin-right: 0.25rem !important;
  }
  .mb-xl-1,
  .my-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-xl-1,
  .mx-xl-1 {
    margin-left: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .mt-xl-2,
  .my-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mr-xl-2,
  .mx-xl-2 {
    margin-right: 0.5rem !important;
  }
  .mb-xl-2,
  .my-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-xl-2,
  .mx-xl-2 {
    margin-left: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .mt-xl-3,
  .my-xl-3 {
    margin-top: 1rem !important;
  }
  .mr-xl-3,
  .mx-xl-3 {
    margin-right: 1rem !important;
  }
  .mb-xl-3,
  .my-xl-3 {
    margin-bottom: 1rem !important;
  }
  .ml-xl-3,
  .mx-xl-3 {
    margin-left: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .mt-xl-4,
  .my-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mr-xl-4,
  .mx-xl-4 {
    margin-right: 1.5rem !important;
  }
  .mb-xl-4,
  .my-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-xl-4,
  .mx-xl-4 {
    margin-left: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .mt-xl-5,
  .my-xl-5 {
    margin-top: 3rem !important;
  }
  .mr-xl-5,
  .mx-xl-5 {
    margin-right: 3rem !important;
  }
  .mb-xl-5,
  .my-xl-5 {
    margin-bottom: 3rem !important;
  }
  .ml-xl-5,
  .mx-xl-5 {
    margin-left: 3rem !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .pt-xl-0,
  .py-xl-0 {
    padding-top: 0 !important;
  }
  .pr-xl-0,
  .px-xl-0 {
    padding-right: 0 !important;
  }
  .pb-xl-0,
  .py-xl-0 {
    padding-bottom: 0 !important;
  }
  .pl-xl-0,
  .px-xl-0 {
    padding-left: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .pt-xl-1,
  .py-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pr-xl-1,
  .px-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pb-xl-1,
  .py-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-xl-1,
  .px-xl-1 {
    padding-left: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .pt-xl-2,
  .py-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pr-xl-2,
  .px-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pb-xl-2,
  .py-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-xl-2,
  .px-xl-2 {
    padding-left: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .pt-xl-3,
  .py-xl-3 {
    padding-top: 1rem !important;
  }
  .pr-xl-3,
  .px-xl-3 {
    padding-right: 1rem !important;
  }
  .pb-xl-3,
  .py-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pl-xl-3,
  .px-xl-3 {
    padding-left: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .pt-xl-4,
  .py-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pr-xl-4,
  .px-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pb-xl-4,
  .py-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-xl-4,
  .px-xl-4 {
    padding-left: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .pt-xl-5,
  .py-xl-5 {
    padding-top: 3rem !important;
  }
  .pr-xl-5,
  .px-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-5,
  .py-xl-5 {
    padding-bottom: 3rem !important;
  }
  .pl-xl-5,
  .px-xl-5 {
    padding-left: 3rem !important;
  }
  .m-xl-n1 {
    margin: -0.25rem !important;
  }
  .mt-xl-n1,
  .my-xl-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-xl-n1,
  .mx-xl-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-xl-n1,
  .my-xl-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-xl-n1,
  .mx-xl-n1 {
    margin-left: -0.25rem !important;
  }
  .m-xl-n2 {
    margin: -0.5rem !important;
  }
  .mt-xl-n2,
  .my-xl-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-xl-n2,
  .mx-xl-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-xl-n2,
  .my-xl-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-xl-n2,
  .mx-xl-n2 {
    margin-left: -0.5rem !important;
  }
  .m-xl-n3 {
    margin: -1rem !important;
  }
  .mt-xl-n3,
  .my-xl-n3 {
    margin-top: -1rem !important;
  }
  .mr-xl-n3,
  .mx-xl-n3 {
    margin-right: -1rem !important;
  }
  .mb-xl-n3,
  .my-xl-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-xl-n3,
  .mx-xl-n3 {
    margin-left: -1rem !important;
  }
  .m-xl-n4 {
    margin: -1.5rem !important;
  }
  .mt-xl-n4,
  .my-xl-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-xl-n4,
  .mx-xl-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-xl-n4,
  .my-xl-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-xl-n4,
  .mx-xl-n4 {
    margin-left: -1.5rem !important;
  }
  .m-xl-n5 {
    margin: -3rem !important;
  }
  .mt-xl-n5,
  .my-xl-n5 {
    margin-top: -3rem !important;
  }
  .mr-xl-n5,
  .mx-xl-n5 {
    margin-right: -3rem !important;
  }
  .mb-xl-n5,
  .my-xl-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-xl-n5,
  .mx-xl-n5 {
    margin-left: -3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mt-xl-auto,
  .my-xl-auto {
    margin-top: auto !important;
  }
  .mr-xl-auto,
  .mx-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-auto,
  .my-xl-auto {
    margin-bottom: auto !important;
  }
  .ml-xl-auto,
  .mx-xl-auto {
    margin-left: auto !important;
  }
}
.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  content: "";
  background-color: rgba(0, 0, 0, 0);
}

.text-monospace {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
}

.text-justify {
  text-align: justify !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

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

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

@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important;
  }
  .text-sm-right {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }
  .text-md-right {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 832px) {
  .text-middle-left {
    text-align: left !important;
  }
  .text-middle-right {
    text-align: right !important;
  }
  .text-middle-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important;
  }
  .text-lg-right {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important;
  }
  .text-xl-right {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}
.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.font-weight-light {
  font-weight: 300 !important;
}

.font-weight-lighter {
  font-weight: lighter !important;
}

.font-weight-normal {
  font-weight: 400 !important;
}

.font-weight-bold {
  font-weight: 700 !important;
}

.font-weight-bolder {
  font-weight: bolder !important;
}

.font-italic {
  font-style: italic !important;
}

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

.text-primary {
  color: #00a1df !important;
}

a.text-primary:focus,
a.text-primary:hover {
  color: #006a93 !important;
}

.text-secondary {
  color: #6c757d !important;
}

a.text-secondary:focus,
a.text-secondary:hover {
  color: #494f54 !important;
}

.text-success {
  color: #28a745 !important;
}

a.text-success:focus,
a.text-success:hover {
  color: #19692c !important;
}

.text-info {
  color: #17a2b8 !important;
}

a.text-info:focus,
a.text-info:hover {
  color: #0f6674 !important;
}

.text-warning {
  color: #ffc107 !important;
}

a.text-warning:focus,
a.text-warning:hover {
  color: #ba8b00 !important;
}

.text-danger {
  color: #dc3545 !important;
}

a.text-danger:focus,
a.text-danger:hover {
  color: #a71d2a !important;
}

.text-light {
  color: #f8f9fa !important;
}

a.text-light:focus,
a.text-light:hover {
  color: #cbd3da !important;
}

.text-dark {
  color: #343a40 !important;
}

a.text-dark:focus,
a.text-dark:hover {
  color: #121416 !important;
}

.text-body {
  color: #212529 !important;
}

.text-muted {
  color: #6c757d !important;
}

.text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-break {
  word-wrap: break-word !important;
}

.text-reset {
  color: inherit !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

.container-4xp {
  max-width: 1260px;
  width: 100%;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 75px;
  padding-left: 75px;
}

@media (max-width: 831.98px) {
  .container-4xp {
    padding-right: 15px;
    padding-left: 15px;
  }
}
.container-lg {
  max-width: 1260px;
  width: 100%;
  padding-right: 15px !important;
  padding-left: 15px !important;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

form {
  margin-bottom: 1.618em;
}

button,
input,
select,
textarea {
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;
}

.wp-block-button__link {
  border-radius: 0 !important;
}

.added_to_cart::after,
.button::after,
.wc-block-grid__products .wc-block-grid__product .wp-block-button__link::after,
button::after,
input[type=button]::after,
input[type=reset]::after,
input[type=submit]::after {
  display: none;
}

.added_to_cart.alt,
.added_to_cart.cta,
.button.alt,
.button.cta,
.wc-block-grid__products .wc-block-grid__product .wp-block-button__link.alt,
.wc-block-grid__products .wc-block-grid__product .wp-block-button__link.cta,
button.alt,
button.cta,
input[type=button].alt,
input[type=button].cta,
input[type=reset].alt,
input[type=reset].cta,
input[type=submit].alt,
input[type=submit].cta {
  background-color: #2c2d33;
  border-color: #2c2d33;
}

.added_to_cart.alt:hover,
.added_to_cart.cta:hover,
.button.alt:hover,
.button.cta:hover,
.wc-block-grid__products .wc-block-grid__product .wp-block-button__link.alt:hover,
.wc-block-grid__products .wc-block-grid__product .wp-block-button__link.cta:hover,
button.alt:hover,
button.cta:hover,
input[type=button].alt:hover,
input[type=button].cta:hover,
input[type=reset].alt:hover,
input[type=reset].cta:hover,
input[type=submit].alt:hover,
input[type=submit].cta:hover {
  background-color: #2c2d33;
}

.added_to_cart:hover,
.button:hover,
.wc-block-grid__products .wc-block-grid__product .wp-block-button__link:hover,
button:hover,
input[type=button]:hover,
input[type=reset]:hover,
input[type=submit]:hover {
  color: #fff;
}

.added_to_cart.loading,
.button.loading,
.wc-block-grid__products .wc-block-grid__product .wp-block-button__link.loading,
button.loading,
input[type=button].loading,
input[type=reset].loading,
input[type=submit].loading {
  opacity: 0.5;
}

.added_to_cart.small,
.button.small,
.wc-block-grid__products .wc-block-grid__product .wp-block-button__link.small,
button.small,
input[type=button].small,
input[type=reset].small,
input[type=submit].small {
  padding: 0.5407911001em 0.875em;
  font-size: 0.875em;
}

.added_to_cart.disabled,
.added_to_cart:disabled,
.button.disabled,
.button:disabled,
.wc-block-grid__products .wc-block-grid__product .wp-block-button__link.disabled,
.wc-block-grid__products .wc-block-grid__product .wp-block-button__link:disabled,
button.disabled,
button:disabled,
input[type=button].disabled,
input[type=button]:disabled,
input[type=reset].disabled,
input[type=reset]:disabled,
input[type=submit].disabled,
input[type=submit]:disabled {
  opacity: 0.5 !important;
  cursor: not-allowed;
}

.added_to_cart.disabled:hover,
.added_to_cart:disabled:hover,
.button.disabled:hover,
.button:disabled:hover,
.wc-block-grid__products .wc-block-grid__product .wp-block-button__link.disabled:hover,
.wc-block-grid__products .wc-block-grid__product .wp-block-button__link:disabled:hover,
button.disabled:hover,
button:disabled:hover,
input[type=button].disabled:hover,
input[type=button]:disabled:hover,
input[type=reset].disabled:hover,
input[type=reset]:disabled:hover,
input[type=submit].disabled:hover,
input[type=submit]:disabled:hover {
  opacity: 0.5 !important;
}

input[type=checkbox],
input[type=radio] {
  padding: 0;
}

input[type=checkbox] + label,
input[type=radio] + label {
  margin: 0 0 0 0.3819820591em;
}

input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

input[type=search] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

input[type=search]::-webkit-input-placeholder {
  color: #616161;
}

input[type=search]::-moz-placeholder {
  color: #616161;
}

input[type=search]:-ms-input-placeholder {
  color: #616161;
}

input[type=search]::-ms-input-placeholder {
  color: #616161;
}

input[type=search]::placeholder {
  color: #616161;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.input-text,
input[type=email],
input[type=number],
input[type=password],
input[type=search],
input[type=tel],
input[type=text],
input[type=url],
textarea {
  padding: 0.6180469716em;
  font-size: 1rem;
  height: 45px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  -webkit-appearance: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-weight: 400;
}

.input-text:focus,
input[type=email]:focus,
input[type=number]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=text]:focus,
input[type=url]:focus,
textarea:focus {
  background-color: #ededed;
}

textarea {
  overflow: auto;
  padding-left: 0.875em;
  vertical-align: top;
  width: 100%;
}

label {
  font-weight: 400;
}

label.inline input {
  width: auto;
}

fieldset {
  padding: 1.618em;
  padding-top: 1em;
  border: 0;
  margin: 0;
  margin-bottom: 1.618em;
  margin-top: 1.618em;
}

fieldset legend {
  font-weight: 600;
  padding: 0.6180469716em 1em;
  margin-left: -1em;
}

[placeholder]:focus::-webkit-input-placeholder {
  -webkit-transition: opacity 0.5s 0.5s ease;
  transition: opacity 0.5s 0.5s ease;
  opacity: 0;
}

#place_order,
.checkout-button,
.wc_quick_order_add_to_cart,
.wc_quick_order_add_row,
a.button.checkout-button {
  background-color: #622066 !important;
}

#place_order:hover,
.checkout-button:hover,
.wc_quick_order_add_to_cart:hover,
.wc_quick_order_add_row:hover,
a.button.checkout-button:hover {
  background-color: #dfdcde !important;
}

.woocommerce form .form-row.woocommerce-validated .select2-container,
.woocommerce form .form-row.woocommerce-validated input.input-text,
.woocommerce form .form-row.woocommerce-validated select {
  border-color: #622066;
}

.woocommerce form .form-row {
  padding-bottom: 15px;
}

.woocommerce-additional-fields {
  margin-top: 30px;
}

.woocommerce-NoticeGroup {
  width: 100%;
}

.select2-container .select2-selection--single {
  height: 44px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 44px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 8px;
}

.woocommerce-cart-form .actions button[name=update_cart] {
  margin-left: auto;
  height: 45px !important;
}

.woocommerce-cart-form .coupon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.woocommerce-cart-form .coupon label {
  margin-right: 5px;
}

.woocommerce a.remove {
  color: #622066 !important;
}

.woocommerce a.remove:hover {
  background-color: #622066 !important;
}

.woocommerce-checkout h3 {
  font-size: 1.4rem;
}

.woocommerce-checkout label {
  display: none !important;
}

.create-account {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.create-account .woocommerce-form__label.woocommerce-form__label-for-checkbox.checkbox {
  display: block !important;
}

.woocommerce-form__label.woocommerce-form__label-for-checkbox.checkbox input {
  width: 22px;
  height: 22px;
}

#billing_timologio_field .woocommerce-input-wrapper {
  position: relative;
}

#billing_timologio_field .woocommerce-input-wrapper select {
  font-size: 1rem;
  height: 45px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  -webkit-appearance: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-weight: 400;
  padding: 0.6180469716em;
}

#billing_timologio_field .woocommerce-input-wrapper:after {
  content: "";
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 45%;
  width: 0;
  left: 98%;
}

.woocommerce-shipping-fields h3 label {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.woocommerce-shipping-fields h3 label input {
  margin-right: 15px;
}

.woocommerce-notices-wrapper {
  width: 100%;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  max-width: 1320px;
  margin: 0 auto;
}

.woocommerce.register .col-md-6 {
  margin: 0 auto;
}

.woocommerce-account .woocommerce .col-md-6,
.woocommerce-account .woocommerce.register .col-md-6 {
  margin: 0 auto;
}

.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation,
.woocommerce-account .woocommerce.register .woocommerce-MyAccount-navigation {
  width: 20%;
}

@media (max-width: 831.98px) {
  .woocommerce-account .woocommerce .woocommerce-MyAccount-navigation,
  .woocommerce-account .woocommerce.register .woocommerce-MyAccount-navigation {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul,
  .woocommerce-account .woocommerce.register .woocommerce-MyAccount-navigation ul {
    margin-right: 30px;
  }
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul li,
.woocommerce-account .woocommerce.register .woocommerce-MyAccount-navigation ul li {
  list-style: none;
  margin: 0 !important;
  padding: 15px 0 !important;
  border-bottom: 1px solid #dadada;
}

.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul li:first-child,
.woocommerce-account .woocommerce.register .woocommerce-MyAccount-navigation ul li:first-child {
  padding-top: 0;
}

.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul li.is-active a,
.woocommerce-account .woocommerce.register .woocommerce-MyAccount-navigation ul li.is-active a {
  font-weight: 700;
}

.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--upgrade-account a::before,
.woocommerce-account .woocommerce.register .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--upgrade-account a::before {
  content: "" !important;
}

.woocommerce-account .woocommerce .woocommerce-form__label-for-checkbox.woocommerce-form-login__rememberme,
.woocommerce-account .woocommerce.register .woocommerce-form__label-for-checkbox.woocommerce-form-login__rememberme {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.woocommerce-account .woocommerce .woocommerce-form__label-for-checkbox.woocommerce-form-login__rememberme span,
.woocommerce-account .woocommerce.register .woocommerce-form__label-for-checkbox.woocommerce-form-login__rememberme span {
  margin-left: 10px;
}

.woocommerce-account .woocommerce .woocommerce-MyAccount-content,
.woocommerce-account .woocommerce.register .woocommerce-MyAccount-content {
  width: 80%;
}

@media (min-width: 768px) {
  .woocommerce-account .woocommerce .woocommerce-MyAccount-content,
  .woocommerce-account .woocommerce.register .woocommerce-MyAccount-content {
    padding: 0 30px;
  }
}
@media (max-width: 831.98px) {
  .woocommerce-account .woocommerce .woocommerce-MyAccount-content,
  .woocommerce-account .woocommerce.register .woocommerce-MyAccount-content {
    width: 100%;
  }
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content a,
.woocommerce-account .woocommerce.register .woocommerce-MyAccount-content a {
  font-weight: 700;
  white-space: normal;
}

.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-order-details h2,
.woocommerce-account .woocommerce.register .woocommerce-MyAccount-content .woocommerce-order-details h2 {
  text-align: left;
}

.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-EditAccountForm fieldset,
.woocommerce-account .woocommerce.register .woocommerce-MyAccount-content .woocommerce-EditAccountForm fieldset {
  padding: 1em 0;
}

.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-EditAccountForm fieldset legend,
.woocommerce-account .woocommerce.register .woocommerce-MyAccount-content .woocommerce-EditAccountForm fieldset legend {
  margin: 0;
  margin-top: 20px;
  padding: 0;
}

.woocommerce-account .addresses .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 10px;
}

.woocommerce-account .addresses .title h3 {
  margin: 0;
}

.woocommerce-account .addresses .title .edit {
  background-color: #622066;
  margin-left: auto;
  color: #fff;
  padding: 2px 5px;
  border-radius: 4px;
  font-size: 0.875rem;
}

.woocommerce-info {
  border-top-color: #622066;
}

.woocommerce-info:before {
  color: #622066;
}

.woocommerce-info .woocommerce-Button {
  display: none !important;
}

#customer_login > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
}

#customer_login > div form {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.woocommerce #respond input#submit,
.woocommerce input.button {
  background-color: var(--category-color) !important;
  color: #fff !important;
  font-weight: 400;
}

.woocommerce #respond input#submit:hover,
.woocommerce input.button:hover {
  color: #fff !important;
}

.wc_payment_method label {
  display: inline-block !important;
}

.woocommerce .woocommerce-order {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.woocommerce .woocommerce-order .woocommerce-customer-details {
  width: 100%;
}

.woocommerce .woocommerce-order .woocommerce-customer-details h2 {
  text-align: center;
}

.woocommerce .woocommerce-order-details {
  width: 100%;
}

.woocommerce .woocommerce-order-details .woocommerce-order-details__title {
  text-align: center;
}

@media (max-width: 831.98px) {
  .woocommerce-order-received .woocommerce-customer-details .woocommerce-columns--2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
  }
}
.woocommerce-order-received .woocommerce-customer-details .woocommerce-columns--2 h2 {
  font-size: 2rem;
  text-align: left;
}

form.woocommerce-ResetPassword {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

form.woocommerce-ResetPassword label {
  font-weight: 700;
}

form.woocommerce-ResetPassword p {
  max-width: 450px !important;
}

.woocommerce-checkout-review-order .woocommerce-form__label.woocommerce-form__label-for-checkbox {
  display: block !important;
}

.wc_payment_methods li label {
  display: inline-block !important;
  max-width: 80%;
}

.wc_payment_methods li label img {
  max-width: 100%;
  margin: 0;
}

.wc_payment_methods li input {
  display: inline-block;
  vertical-align: top;
  margin-top: 8px !important;
}

.woocommerce table.shop_table tfoot th {
  width: 120px;
}

.shop_table.woocommerce-checkout-review-order-table label {
  display: inline !important;
}

label[for=shipping_method_0_flexible_shipping_10_4]:after {
  display: inline-block;
}

label[for=shipping_method_0_flexible_shipping_10_4] span ~ :after {
  display: none;
}

th {
  vertical-align: top !important;
}

.order-total .includes_tax {
  display: none;
}

.woocommerce-columns--2.woocommerce-columns--addresses {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.woocommerce-columns--2.woocommerce-columns--addresses .woocommerce-column {
  float: none !important;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: auto !important;
  max-width: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
}

.woocommerce-columns--2.woocommerce-columns--addresses .woocommerce-column address {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.register-link a {
  color: #0f90ed !important;
}

.register-link a:hover {
  color: #1a9cbf;
}

.hidden-title-form {
  display: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
}

.hidden-title-form input {
  margin-right: 10px;
}

.hidden-title-form input[type=submit] {
  height: 41px;
  border: none;
  background-color: #622066;
  border-radius: 4px;
  color: #fff;
}

#ship-to-different-address-checkbox {
  opacity: 1;
}

h3#ship-to-different-address {
  margin-top: 30px;
}

#pickup_location_field {
  background: #ebe9eb;
  padding: 20px;
}

#pickup_location_field .select2-containeer {
  width: auto !important;
}

.pickup_location_wrap {
  padding: 10px 25px;
  display: inline-block;
  background: #e8e4e4;
  width: 100%;
  border-radius: 4px;
}

.register-link a:hover,
.woocommerce-LostPassword a:hover {
  text-decoration: underline;
}

label {
  margin-bottom: 0 !important;
}

.woocommerce-Address header {
  text-align: left !important;
}

.woocommerce-checkout-review-order-table .product-name {
  width: 50%;
}

#add_payment_method #payment ul.payment_methods li img,
.woocommerce-cart #payment ul.payment_methods li img,
.woocommerce-checkout #payment ul.payment_methods li img {
  margin: 0 !important;
}

#place_order:hover {
  background-color: #622066 !important;
  opacity: 0.6;
}

.woocommerce-table__product-name {
  width: 50% !important;
}

.woocommerce-table a {
  white-space: normal !important;
}

.grid--b.title {
  position: relative;
}

@media (min-width: 992px) {
  .grid--b.title {
    position: static;
  }
}
.woocommerce span.onsale {
  width: 6.236em !important;
  height: 6.236em !important;
  line-height: 6.236em !important;
  padding: 0 !important;
  background-color: #0f90ed !important;
  bottom: -105px;
  left: 33px;
  top: unset;
}

@media (min-width: 992px) {
  .woocommerce span.onsale {
    top: 20px !important;
    bottom: unset;
  }
}
.woocommerce-info a {
  white-space: normal !important;
}

.yith_wcwl_wishlist_footer .yith-wcwl-share {
  display: none !important;
}

@media (max-width: 831.98px) {
  .wishlist-title {
    width: 100%;
  }
}
@media (max-width: 831.98px) {
  .wishlist-title h2 {
    font-size: 2rem !important;
    width: 100%;
  }
}
@media (max-width: 831.98px) {
  .wishlist-title {
    margin-bottom: 0 !important;
  }
}
.wishlist_table.mobile li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.wishlist_table.mobile li .item-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.wishlist_table.mobile .additional-info-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.wishlist_table.mobile .item-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.wishlist_table.mobile .item-details .product-name h3 {
  font-size: 1.15rem !important;
}

.wishlist_table.mobile .item-details .product-name a {
  white-space: normal;
}

.mailchimp-newsletter label {
  display: inline !important;
}

.mailchimp-newsletter input {
  width: 22px;
  height: 22px;
}

#mailchimp-gdpr-fields > p {
  margin-bottom: 0;
}

#mailchimp-gdpr-fields .woocommerce-form__label.woocommerce-form__label-for-checkbox {
  display: inline-block !important;
  position: relative;
  top: 8px;
}

.page-template-template-my-account #container-wrap div#row-row--wide {
  display: block !important;
  margin: 0 !important;
} /*! Generated by Font Squirrel (https://www.fontsquirrel.com) on July 3, 2018 */
@font-face {
  font-family: AvertaPE;
  font-display: auto;
  src: url(../fonts/Averta/3B0CD9_0_0.woff) format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: AvertaPE;
  font-display: auto;
  src: url(../fonts/Averta/3B0CD9_1_0.woff) format("woff");
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: AvertaPE;
  font-display: auto;
  src: url(../fonts/Averta/3B0CD9_2_0.woff) format("woff");
  font-weight: 400;
  font-style: normal;
}
code {
  font-family: AvertaPE !important;
  font-size: 16px;
}

body {
  font-family: AvertaPE;
  font-size: 16px;
}

body * {
  -webkit-font-smoothing: antialiased;
}

a {
  color: #2e2d2c;
}

a:hover {
  color: initial;
  text-decoration: none;
}

p {
  font-size: 0.875rem;
}

button:focus {
  outline: 0;
}

[role=button]:focus {
  outline: 0;
}

:focus {
  outline: 0;
}

select:focus {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.txt-48 {
  font-size: 3rem !important;
}

.txt-36 {
  font-size: 2.25rem !important;
}

.content ul {
  list-style-type: disc;
}

.content ul li {
  margin-left: 15px;
  padding-left: 5px;
  margin-bottom: 4px;
}

ul.no-bullets {
  margin-left: 0 !important;
  padding-left: 0 !important;
  list-style: none !important;
}

h1 {
  font-size: 1.875rem;
}

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

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

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

.main-header {
  position: relative;
  z-index: 9;
  background-color: #fff;
}

.main-header a {
  font-size: 0.875rem;
}

.main-header a:hover {
  text-decoration: none;
}

.main-header .upper {
  height: 90px;
}

@media (max-width: 991.98px) {
  .main-header .upper {
    height: 50px;
  }
  .main-header .upper h1 {
    margin: 0;
  }
  .woocommerce span.onsale {
    top: 18vh !important;
    bottom: unset;
  }
}
.main-header .hamburger, .main-header .hamburger2 {
  position: absolute;
  left: 5px;
  padding: 10px;
  top: 10px;
  display: none;
}

@media (max-width: 991.98px) {
  .main-header .hamburger, .main-header .hamburger2 {
    display: block;
  }
}
.main-header .hamburger.open + #main-nav-wrap {
  -webkit-transition: height 0.5s ease;
  transition: height 0.5s ease;
}

@media (max-width: 991.98px) {
  .main-header .hamburger.open + #main-nav-wrap {
    height: var(--nav-height);
  }
}
.main-header .main-logo {
  height: 43px;
  width: 220px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  position: relative;
  margin: 0;
}

@media (max-width: 991.98px) {
  .main-header .main-logo {
    height: 35px;
    width: 260px;
    overflow: hidden;
  }
}
@media (max-width: 575.98px) {
  .main-header .main-logo {
    width: 180px;
  }
}
.main-header .main-logo a {
  display: block;
}

.main-header .main-logo img {
  width: 220px;
  height: 43px;
  display: block;
  position: absolute;
  top: 0;
}

@media (max-width: 767.98px) {
  .main-header .main-logo img {
    top: -3;
  }
}
@media (max-width: 991.98px) {
  .main-header .main-logo img {
    height: 52px;
    width: auto;
  }
}
.main-header #main-nav-wrap {
  margin: 0 auto;
  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;
  max-width: 900px;
  height: auto;
  -webkit-transition: height 0.5s ease;
  transition: height 0.5s ease;
}

@media (max-width: 991.98px) {
  .main-header #main-nav-wrap {
    max-width: 100%;
    overflow-y: hidden;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-flow: column !important;
    flex-flow: column !important;
    background-color: #f6f6f6;
    margin-right: -15px;
    margin-left: -15px;
    height: 0;
    position: absolute;
    width: 100%;
  }
}
@media (max-width: 991.98px) {
  .main-header #main-nav-wrap .small-logo {
    display: none;
  }
}
/*.main-header #main-nav-wrap ul:not(.woocommerce-mini-cart) {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 0;
} */
@media (max-width: 991.98px) {
  .main-header #main-nav-wrap ul:not(.woocommerce-mini-cart) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    width: 90%;
  }
}
/*.main-header #main-nav-wrap ul:not(.woocommerce-mini-cart) li {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    border-bottom: 1px solid #fff;
}
.main-header #main-nav-wrap ul:not(.woocommerce-mini-cart) li:hover a {
    -webkit-text-stroke: 0.5px #000;
} 
.main-header #main-nav-wrap ul:not(.woocommerce-mini-cart) li.current_page_item a {
    -webkit-text-stroke: 0.5px #000;
}*/
/*.main-header #main-nav-wrap ul:not(.woocommerce-mini-cart) li a {
    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;
    height: 45px;
    -webkit-transition: text-stroke 0.4s ease;
    -o-transition: text-stroke 0.4s ease;
    transition: text-stroke 0.4s ease;
}*/
@media (max-width: 991.98px) {
  .main-header #main-nav-wrap ul:not(.woocommerce-mini-cart) li a {
    font-size: 1.25rem;
    -webkit-text-stroke: 0.5px #000;
  }
  .main-header #main-nav-wrap ul:not(.woocommerce-mini-cart) li a:hover {
    text-decoration: underline;
  }
}
.main-header #main-nav-wrap .mini-cart,
.main-header #main-nav-wrap a.search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.main-header #main-nav-wrap a.search {
  margin-left: 25px;
  height: 100%;
}

@media (max-width: 991.98px) {
  .main-header #main-nav-wrap a.search {
    display: none;
  }
}
.main-header form.search {
  -webkit-transition: width 0.2s ease;
  transition: width 0.2s ease;
  width: 100vw;
  position: absolute;
  left: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #e5e5e5;
  margin-bottom: 0;
  height: 0;
  z-index: -1;
  opacity: 0;
  overflow: hidden;
  -webkit-animation-name: fade_out;
  animation-name: fade_out;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
}

@media (max-width: 991.98px) {
  .main-header form.search {
    background-color: #f6f6f6;
  }
}
.main-header form.search.open {
  z-index: 99;
  height: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
  -webkit-animation-name: fade_in;
  animation-name: fade_in;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
}

.main-header form.search.open button {
  display: inline-block;
  top: 20px;
  right: 13px;
}

@-webkit-keyframes fade_out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fade_out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@media (max-width: 991.98px) {
  .main-header form.search {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    display: block;
    opacity: 1;
    padding: 10px;
    width: 100% !important;
    position: relative;
    right: auto;
    height: 56px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    z-index: 100;
  }
}
.main-header form.search button.clear-search {
  display: none;
}

@media (max-width: 991.98px) {
  .main-header form.search button.clear-search {
    display: block;
    position: absolute;
    top: 17px;
    right: 23px;
    width: 20px;
    height: 20px;
    border-radius: 10px;
    background: #c1c1c1;
    color: #fff;
    line-height: 20px;
  }
}
.main-header form.search button.close-search {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
  font-size: 20px;
  color: #535353;
}

.main-header form.search button.close-search:hover {
  -webkit-transform: scale(1.15);
  transform: scale(1.15);
}

@media (max-width: 991.98px) {
  .main-header form.search button.close-search {
    display: none;
  }
}
.main-header form.search button[type=submit] {
  width: 45px;
  height: 45px;
}

.main-header form.search button[type=submit] .icon {
  margin-top: 5px;
}

@media (max-width: 991.98px) {
  .main-header form.search button[type=submit] {
    display: inline-block;
    position: absolute;
    top: 6px;
    left: 8px;
  }
}
.main-header form.search #s:not(:valid) ~ .clear-search {
  display: none;
}

.main-header form.search input {
  outline: 0;
  background: #e5e5e5;
  color: grey;
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  width: 500px;
  border: none;
}

.main-header form.search input:placeholder {
  color: #fff;
}

@media (max-width: 991.98px) {
  .main-header form.search input {
    -webkit-box-shadow: none;
    box-shadow: none;
    background: #dbdbdb;
    height: 36px;
    color: #000;
    border-radius: 10px;
    padding: 0 20px;
    visibility: visible;
    text-align: center;
    width: 100%;
  }
  .main-header form.search input::-webkit-input-placeholder {
    text-align: center;
    color: #000;
  }
  .main-header form.search input::-moz-placeholder {
    text-align: center;
    color: #000;
  }
  .main-header form.search input:-ms-input-placeholder {
    text-align: center;
    color: #000;
  }
  .main-header form.search input::-ms-input-placeholder {
    text-align: center;
    color: #000;
  }
  .main-header form.search input::placeholder {
    text-align: center;
    color: #000;
  }
}
.mini-cart {
  position: relative;
  height: 46px;
  margin-left: 25px;
  position: relative;
  margin-right: 15px;
}

.mini-cart a.cart {
  position: absolute;
  width: 15px;
  height: 100%;
}

.mini-cart em {
  margin-top: -4px;
}

.mini-cart.icon {
  top: 50%;
  position: absolute;
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
}

.mini-cart .count {
  position: absolute;
  background: #000;
  color: #fff;
  width: 14px;
  height: 14px;
  border-radius: 7px;
  top: 9px;
  right: -10px;
  /*top: 1px;
  right: -12px;*/
  line-height: 14px;
  font-size: 10px;
  text-align: center;
  overflow: hidden;
  -webkit-animation-name: govisible;
  animation-name: govisible;
  -webkit-animation-duration: 0.4s;
  animation-duration: 0.4s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  width: 14px;
  height: 14px;
}

@-webkit-keyframes govisible {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes govisible {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.mini-cart {
  position: relative;
}

.mini-cart:hover .mini-cart-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
}

@media (max-width: 991.98px) {
  .mini-cart {
    display: none !important;
  }
}
.mini-cart .mini-cart-wrapper {
  display: none;
  width: 380px;
  min-height: 85px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 40px;
  background-color: #fff;
  padding: 0 25px;
  border: 1px solid #e4e4e4;
  font-size: 0.75rem;
}

@media (max-width: 1279px) {
  .mini-cart .mini-cart-wrapper {
    right: -20px;
    left: unset;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.mini-cart .mini-cart-wrapper:before {
  content: "";
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13.25 9.4'%3e%3cdefs%3e%3cstyle%3e.cls-1%7bfill:%23e4e4e4;%7d.cls-1,.cls-2%7bfill-rule:evenodd;%7d.cls-2%7bfill:%23fff;%7d%3c/style%3e%3c/defs%3e%3ctitle%3ecaret-up-2%3c/title%3e%3cg id='Layer_2' data-name='Layer 2'%3e%3cg id='Layer_1-2' data-name='Layer 1'%3e%3cpolygon class='cls-1' points='13.25 9.4 6.71 0 0 9.39 13.25 9.4'/%3e%3cpolygon class='cls-2' points='11.38 9.4 6.68 2.66 1.87 9.39 11.38 9.4'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 10px;
  height: 8px;
  top: -8px;
  display: block;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media (max-width: 1279px) {
  .mini-cart .mini-cart-wrapper:before {
    right: 25px;
    left: unset;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.mini-cart .mini-cart-wrapper ul.woocommerce-mini-cart {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  margin-bottom: 1rem;
}

.mini-cart .mini-cart-wrapper .woocommerce-mini-cart-item {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid #dadada;
  padding: 15px 0 !important;
}

.mini-cart .mini-cart-wrapper .woocommerce-mini-cart-item > * {
  display: block;
}

.mini-cart .mini-cart-wrapper .woocommerce-mini-cart-item span {
  margin-left: auto;
}

.mini-cart .mini-cart-wrapper .woocommerce-mini-cart-item a {
  font-weight: 400 !important;
}

.mini-cart .mini-cart-wrapper .woocommerce-mini-cart-item a:nth-of-type(2) {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 260px;
}

.mini-cart .mini-cart-wrapper .woocommerce-mini-cart-item a img {
  width: 35px;
  height: 35px;
  float: none !important;
  -webkit-box-flex: 1 !important;
  -ms-flex: 1 0 32px !important;
  flex: 1 0 32px !important;
}

.mini-cart .mini-cart-wrapper .woocommerce-mini-cart-item a.remove {
  font-size: 1.5em;
  height: 1em;
  width: 1em;
  text-align: center;
  line-height: 1;
  border-radius: 100%;
  color: #000 !important;
  text-decoration: none;
  font-weight: 700;
  border: 0;
  position: static !important;
}

.mini-cart .mini-cart-wrapper .woocommerce-mini-cart-item a.remove:hover {
  background-color: #000 !important;
  color: #fff !important;
}

.mini-cart .mini-cart-wrapper .woocommerce-mini-cart-item .quantity {
  white-space: nowrap;
}

.mini-cart .mini-cart-wrapper .woocommerce-mini-cart__empty-message {
  text-align: center;
  margin-top: 20px;
}

.mini-cart .mini-cart-wrapper .woocommerce-mini-cart__total {
  text-align: center;
  border-top: none !important;
}

.mini-cart .mini-cart-wrapper .woocommerce-mini-cart__buttons {
  text-align: center;
  margin-bottom: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
}

.mini-cart .mini-cart-wrapper .woocommerce-mini-cart__buttons a:first-child {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  padding-bottom: 0;
  padding-top: 20px;
}

.mini-cart .mini-cart-wrapper .woocommerce-mini-cart__buttons a.checkout {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

.mini-cart .mini-cart-wrapper .woocommerce-mini-cart__buttons a {
  margin: 0;
  line-height: 1;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  overflow: visible;
  padding: 0;
  padding-bottom: 0;
  font-weight: 400;
  border-radius: 0;
  left: auto;
  color: inherit;
  background-color: transparent;
  border: 0;
  display: block;
  background-image: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  text-shadow: none;
  text-align: center;
  padding-bottom: 10px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 100%;
}

.mini-cart .mini-cart-wrapper .woocommerce-mini-cart__buttons a:first-child {
  background-color: transparent !important;
  color: #2e2d2c !important;
  font-weight: 700;
}

.mini-cart .mini-cart-wrapper .woocommerce-mini-cart__buttons a:first-child:hover {
  text-decoration: underline;
  color: #000;
}

.mini-cart .mini-cart-wrapper .woocommerce-mini-cart__buttons a.checkout {
  padding: 10px 70px;
  background-color: #00a1df;
  color: #fff;
  display: inline-block;
}

.mini-cart .mini-cart-wrapper .woocommerce-mini-cart__buttons a.checkout:hover {
  background-color: #3cc9ff;
}

.mini-cart .mini-cart-wrapper .account a {
  display: block;
  text-align: center;
  border-bottom: 1px solid #dadada;
  padding: 10px 0;
  color: #00a1df;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.mini-cart .mini-cart-wrapper .account a .icon {
  width: 20px !important;
  height: 20px !important;
  display: inline-block !important;
  position: relative;
  margin-right: 10px;
}

.mini-cart .mini-cart-wrapper .account a .icon.icon-profile {
  width: 24px !important;
  height: 24px !important;
}

.mini-cart .mini-cart-wrapper .account a span {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.mini-cart .mini-cart-wrapper .account a:hover span {
  display: block;
}

.mini-cart .mini-cart-wrapper .account a:hover span:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #0f90ed;
  margin-top: -2px;
}

.mini-cart .mini-cart-wrapper .account a:first-child {
  border-top: 1px solid #dadada;
}

.mini-cart .mini-cart-wrapper .account a:last-child {
  border-bottom: none;
}

.mini-cart.mobile {
  position: absolute;
  display: none;
  top: 0;
  z-index: 101;
  right: 0;
}

.mini-cart.mobile .mini-cart-wrapper {
  opacity: 0;
}

.mini-cart.mobile:hover .mini-cart-wrapper {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
}

.mini-cart.mobile .icon-cart {
  top: 15px;
}

.mini-cart.mobile .cart {
  left: 0;
}

.mini-cart.mobile .cart.open {
  opacity: 1;
}

.mini-cart.mobile .cart.open .mini-cart-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  opacity: 1;
  -webkit-animation-name: open_fade_in;
  animation-name: open_fade_in;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
}

.mini-cart.mobile .cart {
  height: 50px;
  position: absolute;
  width: 100%;
  height: 100%;
  display: inline;
}

.mini-cart.mobile .cart .count {
  top: 5px;
}

.mini-cart.mobile .cart:hover {
  cursor: pointer;
}

.mini-cart.mobile .mini-cart-wrapper {
  width: 100vw;
  right: -15px;
  top: 50px;
}

.mini-cart.mobile .mini-cart-wrapper:before {
  right: 18px;
}

@media (max-width: 991.98px) {
  .mini-cart.mobile {
    display: block !important;
  }
}
@-webkit-keyframes open_fade_in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes open_fade_in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.header-border {
  padding: 0;
  margin: 0;
}

.woocommerce ul.cart_list li img,
.woocommerce ul.product_list_widget li img {
  margin-left: 0 !important;
}

.hamburger, .hamburger2 {
  width: 18px;
  height: 9px;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.hamburger:after,
.hamburger:before, .hamburger2:after, .hamburger2:before {
  content: "";
  height: 2px;
  width: 100%;
  background-color: #000;
  display: block;
  border-radius: 4px;
}

.hamburger:before, .hamburger2:before {
  margin-bottom: 5px;
  -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: -webkit-transform 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.2s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger:after, .hamburger2:after {
  -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: -webkit-transform 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.2s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger.open:before {
  -webkit-transform: translate(0, 2px) rotate(-45deg) scalex(1);
  transform: translate(0, 2px) rotate(-45deg) scalex(1);
  margin: 0;
}

.hamburger.open:after {
  -webkit-transform: translate(0, 0) rotate(45deg) scalex(1);
  transform: translate(0, 0) rotate(45deg) scalex(1);
}

.icon {
  width: 15px;
  height: 15px;
  display: inline-block;
  position: relative;
}

.icon.icon-magnifier::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background-image: url(../images/icon-magnifier.svg);
  background-repeat: no-repeat;
}

.icon.icon-cart::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background-image: url(../images/icon-cart.svg);
  background-repeat: no-repeat;
}

.icon.icon-profile {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 17.46 23.21'%3e%3cdefs%3e%3cstyle%3e.cls-profile-1,.cls-2-profile%7bfill:none;%7d.cls-2-profile%7bstroke:%2300a1df;stroke-miterlimit:10;%7d.cls-3-profile%7bclip-path:url(%23clip-path);%7d.cls-4-profile%7bfill:%2300a1df;%7d%3c/style%3e%3cclipPath id='clip-path'%3e%3ccircle class='cls-1-profile' cx='8.73' cy='8.73' r='8.23'/%3e%3c/clipPath%3e%3c/defs%3e%3ctitle%3eicon-profile%3c/title%3e%3cg id='Layer_2' data-name='Layer 2'%3e%3cg id='Layer_1-2' data-name='Layer 1'%3e%3ccircle class='cls-2-profile' cx='8.73' cy='8.73' r='8.23'/%3e%3cg class='cls-3-profile'%3e%3cpath class='cls-4-profile' d='M8.73,3.76a3.16,3.16,0,1,0,3.16,3.16A3.16,3.16,0,0,0,8.73,3.76Zm-5,19.45h9.9V14.42a5,5,0,0,0-9.9,0Z'/%3e%3c/g%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
  background-repeat: no-repeat;
  display: block;
}

.icon.icon-gear {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16.14 15.8'%3e%3cdefs%3e%3cstyle%3e.cls-1%7bfill:%2300a1df;%7d%3c/style%3e%3c/defs%3e%3ctitle%3eicon-gear%3c/title%3e%3cg id='Layer_2' data-name='Layer 2'%3e%3cg id='Layer_1-2' data-name='Layer 1'%3e%3cpath class='cls-1' d='M13.92,6.09l-.41-1a17.37,17.37,0,0,0,.86-2.22L13.12,1.67a17.32,17.32,0,0,0-2.23.89l-1-.4A17.21,17.21,0,0,0,8.92,0H7.15a16.46,16.46,0,0,0-.93,2.17l-1,.4A18.4,18.4,0,0,0,3,1.73L1.71,3a16.55,16.55,0,0,0,.91,2.18l-.41,1A18.47,18.47,0,0,0,0,7.07V8.8a17.1,17.1,0,0,0,2.22.91l.41,1a17.5,17.5,0,0,0-.86,2.22L3,14.13a17.7,17.7,0,0,0,2.22-.89l1,.4a17.21,17.21,0,0,0,1,2.17H9a16.6,16.6,0,0,0,.93-2.17l1-.4a18.51,18.51,0,0,0,2.26.85l1.25-1.23a16.48,16.48,0,0,0-.91-2.18l.41-1a18.19,18.19,0,0,0,2.22-1V7A17.45,17.45,0,0,0,13.92,6.09ZM10.66,7.9A2.59,2.59,0,1,1,8.07,5.37,2.56,2.56,0,0,1,10.66,7.9Z'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
  background-repeat: no-repeat;
  display: block;
}

.icon.icon-syringe {
  content: "";
  width: 37px;
  height: 149px;
  background-image: url(../images/icon-syringe.svg);
  background-repeat: no-repeat;
  display: block;
}

.icon.icon-chevron {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.icon.icon-chevron:before {
  content: "";
  border-style: solid;
  border-width: 1px 1px 0 0;
  display: block;
  height: 7px;
  width: 7px;
  left: 0.15em;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-top: 0;
}

.icon.icon-chevron:before.right:before {
  left: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.icon.icon-plus .plus {
  display: inline-block;
  background: -webkit-gradient(linear, left top, left bottom, from(#000), to(#000)), -webkit-gradient(linear, left top, left bottom, from(#000), to(#000)), #fff;
  background: linear-gradient(#000, #000), linear-gradient(#000, #000), #fff;
  background-position: center;
  background-size: 100% 2px, 2px 1000%;
  background-repeat: no-repeat;
}

.small-logo {
  width: 29px;
  height: 25px;
  margin-right: 25px;
}

a.more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 200;
  color: #0f90ed;
}

a.more em {
  margin-left: 5px;
}

.cross {
  width: 10px;
  height: 10px;
  position: relative;
  display: inline-block;
}

.cross:after,
.cross:before {
  content: "";
  position: absolute;
  z-index: 1;
  background: #383838;
}

.cross:before {
  left: 50%;
  width: 2px;
  -webkit-transform: translateX(-1px);
  transform: translateX(-1px);
  height: 100%;
}

.cross:after {
  top: 50%;
  height: 2px;
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
  width: 100%;
}

.txt-black {
  color: #000;
}

.txt-white {
  color: #fff;
}

.ja_loader,
.ja_loader:after {
  border-radius: 50%;
  width: 5em;
  height: 5em;
}

.ja_loader {
  margin: 60px auto;
  font-size: 10px;
  position: relative;
  text-indent: -9999em;
  border-top: 1.1em solid rgba(50, 50, 50, 0.1);
  border-right: 1.1em solid rgba(50, 50, 50, 0.1);
  border-bottom: 1.1em solid rgba(50, 50, 50, 0.1);
  border-left: 1.1em solid #3d3d3d;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
}

@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.overflow-hidden {
  overflow: hidden;
}

hr {
  margin-top: 50px;
  margin-bottom: 60px;
}

.gform_wrapper form {
  max-width: 800px !important;
}

.gform_wrapper form ul.gform_fields li.gfield {
  padding-right: 0 !important;
  padding-left: 0;
}

.gform_wrapper form .gform_button {
  background: #622066;
  color: #fff;
  width: 100%;
  width: 100% !important;
  height: 50px;
  border: none;
  border-radius: 3px;
}

.ja-pagination {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.ja-pagination > * {
  line-height: 26px;
}

.ja-pagination > :last-child {
  padding-right: 0;
}

.ja-pagination > .current {
  background-color: #6f6f6e;
  color: #fff;
}

.ja-pagination a:not(.prev):not(.next),
.ja-pagination > span {
  width: 26px;
  height: 26px;
  padding: 0 5px;
  text-align: center;
}

.icon-product-line {
  display: inline-block;
}

@media (max-width: 767.98px) {
  .icon-product-line {
    font-size: 85%;
  }
}
.icon-product-line:before {
  content: "";
  height: 67px;
  width: auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: block;
}

.icon-product-line.icon-sunfilm-products:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 67.24 67.24'%3E%3Cdefs%3E%3Cstyle%3E.cls-1,.cls-2,.cls-4,.cls-6%7Bfill:none;%7D.cls-2,.cls-4%7Bstroke:%23000100;%7D.cls-2%7Bstroke-width:0.74px;%7D.cls-3%7Bfill:%23000100;%7D.cls-4%7Bstroke-linecap:round;stroke-linejoin:round;stroke-width:0.33px;%7D.cls-5%7Bfill:%23fff;%7D.cls-5,.cls-8%7Bfill-rule:evenodd;%7D.cls-6,.cls-7,.cls-8%7Bstroke:%232d2d2b;stroke-miterlimit:10;stroke-width:0.8px;%7D.cls-7,.cls-8%7Bfill:%23f5f5f5;%7D%3C/style%3E%3C/defs%3E%3Ctitle%3Esunfilm-products%3C/title%3E%3Cg id='Layer_2' data-name='Layer 2'%3E%3Cg id='Layer_1-2' data-name='Layer 1'%3E%3Crect class='cls-1' width='67.24' height='67.24'/%3E%3Cg id='Skincare---Home-Copy-9'%3E%3Cg id='Group-4'%3E%3Cg id='Group-2'%3E%3Cg id='BodyHydrators'%3E%3Cg id='Group'%3E%3Cg id='SVGID_1_-link' data-name='SVGID 1 -link'%3E%3Cpath id='SVGID' class='cls-2' d='M27.22,30.61h8c-1.21,3.73-1.76,20-2,26.29,0,.48-.07,1-.37,1.27H21.54c-.3-.23-.36-.79-.37-1.27-.19-6.28-.74-22.56-2-26.29Z'/%3E%3C/g%3E%3Cg id='Shape'%3E%3Cpolygon class='cls-1' points='19.64 29.04 19.43 29.04 19.22 30.53 19.43 30.53 19.64 29.04'/%3E%3Cpolygon class='cls-1' points='19.86 29.04 19.66 30.53 19.87 30.53 20.07 29.04 19.86 29.04'/%3E%3Cpolygon class='cls-1' points='20.29 29.04 20.1 30.53 20.31 30.53 20.5 29.04 20.29 29.04'/%3E%3Cpolygon class='cls-1' points='20.72 29.04 20.54 30.53 20.75 30.53 20.93 29.04 20.72 29.04'/%3E%3Cpolygon class='cls-1' points='21.14 29.04 20.97 30.53 21.19 30.53 21.35 29.04 21.14 29.04'/%3E%3Cpolygon class='cls-1' points='21.57 29.04 21.41 30.53 21.63 30.53 21.78 29.04 21.57 29.04'/%3E%3Cpolygon class='cls-1' points='22 29.04 21.85 30.53 22.07 30.53 22.21 29.04 22 29.04'/%3E%3Cpolygon class='cls-1' points='22.42 29.04 22.29 30.53 22.5 30.53 22.63 29.04 22.42 29.04'/%3E%3Cpolygon class='cls-1' points='22.85 29.04 22.73 30.53 22.94 30.53 23.06 29.04 22.85 29.04'/%3E%3Cpolygon class='cls-1' points='23.27 29.04 23.17 30.53 23.38 30.53 23.48 29.04 23.27 29.04'/%3E%3Cpolygon class='cls-1' points='23.7 29.04 23.6 30.53 23.82 30.53 23.91 29.04 23.7 29.04'/%3E%3Cpolygon class='cls-1' points='24.13 29.04 24.04 30.53 24.26 30.53 24.34 29.04 24.13 29.04'/%3E%3Cpolygon class='cls-1' points='24.56 29.04 24.48 30.53 24.7 30.53 24.77 29.04 24.56 29.04'/%3E%3Cpolygon class='cls-1' points='24.98 29.04 24.92 30.53 25.14 30.53 25.19 29.04 24.98 29.04'/%3E%3Cpolygon class='cls-1' points='25.41 29.04 25.36 30.53 25.57 30.53 25.62 29.04 25.41 29.04'/%3E%3Cpolygon class='cls-1' points='25.84 29.04 25.8 30.53 26.01 30.53 26.05 29.04 25.84 29.04'/%3E%3Cpolygon class='cls-1' points='26.26 29.04 26.23 30.53 26.45 30.53 26.47 29.04 26.26 29.04'/%3E%3Cpolygon class='cls-1' points='26.69 29.04 26.68 30.53 26.89 30.53 26.9 29.04 26.69 29.04'/%3E%3Cpolygon class='cls-1' points='27.11 29.04 27.11 30.53 27.33 30.53 27.32 29.04 27.11 29.04'/%3E%3Cpolygon class='cls-1' points='27.54 29.04 27.55 30.53 27.77 30.53 27.75 29.04 27.54 29.04'/%3E%3Cpolygon class='cls-1' points='27.97 29.04 27.99 30.53 28.2 30.53 28.18 29.04 27.97 29.04'/%3E%3Cpolygon class='cls-1' points='28.39 29.04 28.43 30.53 28.64 30.53 28.6 29.04 28.39 29.04'/%3E%3Cpolygon class='cls-1' points='28.82 29.04 28.87 30.53 29.08 30.53 29.03 29.04 28.82 29.04'/%3E%3Cpolygon class='cls-1' points='29.25 29.04 29.31 30.53 29.52 30.53 29.46 29.04 29.25 29.04'/%3E%3Cpolygon class='cls-1' points='29.68 29.04 29.74 30.53 29.96 30.53 29.89 29.04 29.68 29.04'/%3E%3Cpolygon class='cls-1' points='30.1 29.04 30.18 30.53 30.4 30.53 30.31 29.04 30.1 29.04'/%3E%3Cpolygon class='cls-1' points='30.53 29.04 30.62 30.53 30.84 30.53 30.74 29.04 30.53 29.04'/%3E%3Cpolygon class='cls-1' points='30.96 29.04 31.06 30.53 31.27 30.53 31.16 29.04 30.96 29.04'/%3E%3Cpolygon class='cls-1' points='31.38 29.04 31.5 30.53 31.71 30.53 31.59 29.04 31.38 29.04'/%3E%3Cpolygon class='cls-1' points='31.81 29.04 31.94 30.53 32.15 30.53 32.02 29.04 31.81 29.04'/%3E%3Cpolygon class='cls-1' points='32.23 29.04 32.37 30.53 32.59 30.53 32.44 29.04 32.23 29.04'/%3E%3Cpolygon class='cls-1' points='32.66 29.04 32.81 30.53 33.03 30.53 32.87 29.04 32.66 29.04'/%3E%3Cpolygon class='cls-1' points='33.09 29.04 33.25 30.53 33.47 30.53 33.3 29.04 33.09 29.04'/%3E%3Cpolygon class='cls-1' points='33.52 29.04 33.69 30.53 33.91 30.53 33.73 29.04 33.52 29.04'/%3E%3Cpolygon class='cls-1' points='33.94 29.04 34.13 30.53 34.34 30.53 34.15 29.04 33.94 29.04'/%3E%3Cpolygon class='cls-1' points='34.37 29.04 34.57 30.53 34.78 30.53 34.58 29.04 34.37 29.04'/%3E%3Cpolygon class='cls-1' points='35.01 29.04 34.8 29.04 35.01 30.53 35.22 30.53 35.01 29.04'/%3E%3C/g%3E%3Crect id='Rectangle-path' class='cls-3' x='19.22' y='30.42' width='16' height='0.67'/%3E%3C/g%3E%3Cpath id='_Path_' data-name='&lt;Path&gt;' class='cls-4' d='M22.19,58.17v5.62'/%3E%3Cpath id='_Path_2' data-name='&lt;Path&gt;' class='cls-4' d='M22.19,63.79c0,.44.87.8,1.94.8'/%3E%3Cpath id='_Path_3' data-name='&lt;Path&gt;' class='cls-4' d='M24.13,64.6h3.48'/%3E%3Cpath id='_Path_4' data-name='&lt;Path&gt;' class='cls-4' d='M22.19,62.6c0,.2,2.43.37,5.43.37'/%3E%3Cpath id='_Path_5' data-name='&lt;Path&gt;' class='cls-4' d='M25.51,62.86a1.62,1.62,0,0,1,1.74-1.46'/%3E%3Cpath id='_Path_6' data-name='&lt;Path&gt;' class='cls-4' d='M32.25,58.17v5.62'/%3E%3Cpath id='_Path_7' data-name='&lt;Path&gt;' class='cls-4' d='M32.25,63.79c0,.44-.87.8-1.94.8'/%3E%3Cpath id='_Path_8' data-name='&lt;Path&gt;' class='cls-4' d='M30.31,64.6H26.82'/%3E%3Cpath id='_Path_9' data-name='&lt;Path&gt;' class='cls-4' d='M32.25,62.6c0,.2-2.43.37-5.43.37'/%3E%3Cpath id='_Path_10' data-name='&lt;Path&gt;' class='cls-4' d='M28.93,62.86a1.59,1.59,0,0,0-1.7-1.46'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cpath class='cls-5' d='M47.87,23.66a1.46,1.46,0,0,0-.56-.47A6.7,6.7,0,0,0,46.23,23L44,22.7v0c.15,0,.41,0,.49-.08A1.17,1.17,0,0,0,44.5,22c0-.44,0-1,0-1.52q0-1.3,0-2.6a2.26,2.26,0,0,0-.14-1.17c-.18-.24-.7-.21-1.1-.22a12.59,12.59,0,0,1,0-2.08q0-1.78,0-3.56c0-.49.11-1.79-.17-2s-.42,0-.68-.08l-1.58,0a18.94,18.94,0,0,0-2.4,0c-.37.06-.83-.06-1,.18a7.19,7.19,0,0,0-.1,2.05q0,2.56,0,5.11a1.07,1.07,0,0,0,0,.36,3.05,3.05,0,0,0-1,.11c-.26.2-.23.69-.23,1.16v4.17s0,0,0,.08a1.44,1.44,0,0,0,0,.55c.08.12.32.11.51.11v0l-2.51.35c-.65.13-1.15.13-1.38.67a3,3,0,0,0-.11,1.17q0,.86,0,1.71,0,3.11,0,6.22,0,10.8.07,21.61,0,3.15,0,6.3c0,1.05-.1,2.23.35,2.84a2.1,2.1,0,0,0,1.26.78H46.28a1.61,1.61,0,0,0,1.33-.88,6.76,6.76,0,0,0,.28-2.95q0-3,0-5.92,0-11.19.08-22.39,0-3.12,0-6.24A7.66,7.66,0,0,0,47.87,23.66Zm-4.81-7.21-5.67,0c0-.51,0-.88,0-1.38.08-.12.37-.23.45-.35v-.25c0-.5-.14-.9.4-.9V11c0-.31-.06-.78.12-.91A1.46,1.46,0,0,1,39,10H40.5a7.29,7.29,0,0,1,1.53.06c.2.14.14.59.14.92v1.83a2.4,2.4,0,0,0,0,.76c.68,0,.26.59.39,1.09,0,.15.46.24.5.4Z'/%3E%3Cpath class='cls-6' d='M47.87,23.66a1.46,1.46,0,0,0-.56-.47A6.7,6.7,0,0,0,46.23,23L44,22.7v0c.15,0,.41,0,.49-.08A1.17,1.17,0,0,0,44.5,22c0-.44,0-1,0-1.52q0-1.3,0-2.6a2.26,2.26,0,0,0-.14-1.17c-.18-.24-.7-.21-1.1-.22a12.59,12.59,0,0,1,0-2.08q0-1.78,0-3.56c0-.49.11-1.79-.17-2s-.42,0-.68-.08l-1.58,0a18.94,18.94,0,0,0-2.4,0c-.37.06-.83-.06-1,.18a7.19,7.19,0,0,0-.1,2.05q0,2.56,0,5.11a1.07,1.07,0,0,0,0,.36,3.05,3.05,0,0,0-1,.11c-.26.2-.23.69-.23,1.16v4.17s0,0,0,.08a1.44,1.44,0,0,0,0,.55c.08.12.32.11.51.11v0l-2.51.35c-.65.13-1.15.13-1.38.67a3,3,0,0,0-.11,1.17q0,.86,0,1.71,0,3.11,0,6.22,0,10.8.07,21.61,0,3.15,0,6.3c0,1.05-.1,2.23.35,2.84a2.1,2.1,0,0,0,1.26.78H46.28a1.61,1.61,0,0,0,1.33-.88,6.76,6.76,0,0,0,.28-2.95q0-3,0-5.92,0-11.19.08-22.39,0-3.12,0-6.24A7.66,7.66,0,0,0,47.87,23.66Zm-4.81-7.21-5.67,0c0-.51,0-.88,0-1.38.08-.12.37-.23.45-.35v-.25c0-.5-.14-.9.4-.9V11c0-.31-.06-.78.12-.91A1.46,1.46,0,0,1,39,10H40.5a7.29,7.29,0,0,1,1.53.06c.2.14.14.59.14.92v1.83a2.4,2.4,0,0,0,0,.76c.68,0,.26.59.39,1.09,0,.15.46.24.5.4Z'/%3E%3Ccircle class='cls-7' cx='40.31' cy='11.23' r='0.61'/%3E%3Cpath class='cls-8' d='M36.42,22.67s3.57.16,7.54,0'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.icon-product-line.icon-skincare-products:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 67.24 67.24'%3E%3Cdefs%3E%3Cstyle%3E.cls-1,.cls-3%7Bfill:none;%7D.cls-2,.cls-4%7Bfill:%23fff;%7D.cls-2%7Bstroke:%232d2d2b;stroke-miterlimit:10;%7D.cls-2,.cls-3,.cls-4%7Bstroke-width:0.8px;%7D.cls-3,.cls-4%7Bstroke:%23000100;%7D%3C/style%3E%3C/defs%3E%3Ctitle%3Eskincare-products%3C/title%3E%3Cg id='Layer_2' data-name='Layer 2'%3E%3Cg id='Layer_1-2' data-name='Layer 1'%3E%3Crect class='cls-1' width='67.24' height='67.24'/%3E%3Cpath class='cls-2' d='M30.73,62.81h9.52l5.39-.05c.6-.09,1.37.13,1.77-.15a4.07,4.07,0,0,0,0-.95q0-.67,0-1.33,0-1.25,0-2.5c0-.36,0-.72,0-1.08s0-1,0-1.53,0-.73,0-1.09q.13-2,.27-3.92c0-.37,0-.73.06-1.09A17.23,17.23,0,0,0,48,46.69a17.66,17.66,0,0,0-.05-2.5q-.1-2-.19-4c-.19-.14-.57-.06-.86-.11a19.18,19.18,0,0,0-2.2-.08L36,39.88H25.37l-8.75.1a19.15,19.15,0,0,0-2.2.08c-.29,0-.67,0-.86.11q-.1,2-.19,4a17.66,17.66,0,0,0-.05,2.5,16.93,16.93,0,0,0,.06,2.43l.06,1.09.27,3.92c0,.37,0,.73,0,1.09s0,1,0,1.53,0,.72,0,1.08q0,1.25,0,2.5c0,.44,0,.88,0,1.33a4.19,4.19,0,0,0,0,.95c.4.27,1.18.06,1.77.15l5.39.05h9.62Z'/%3E%3Cpath class='cls-2' d='M30.62,62.81h.11'/%3E%3Cline class='cls-2' x1='13.3' y1='48.5' x2='48.03' y2='48.5'/%3E%3Cg id='Skincare---Home-Copy-9'%3E%3Cg id='Group-4'%3E%3Cg id='Group-2'%3E%3Cg id='HairOils'%3E%3Cpolygon class='cls-3' points='52.41 32.16 52.41 32.16 52.41 32.16 52.51 32.12 52.41 32.16'/%3E%3Cpath class='cls-4' d='M50.27,25.3A23.19,23.19,0,0,1,50,22.23c0-1.77,0-3.95,0-3.95a3.3,3.3,0,0,0-.92-2.21,3.6,3.6,0,0,0-4.53,0,3.3,3.3,0,0,0-.92,2.21s0,2.18,0,3.95a23.37,23.37,0,0,1-.25,3.07A53.9,53.9,0,0,1,50.27,25.3Z'/%3E%3Cpath class='cls-4' d='M54.63,39.55a5.84,5.84,0,0,0-2.55-2.67c-.49-.29-.52-.4-.66-.92l0-.12a5.93,5.93,0,0,1-.14-1.44l.53-.24a.48.48,0,0,0,.31-.46.66.66,0,0,0-.09-.28c-.17,0-.36,0-.64,0-1.29.09-2.76.14-4.32.14-2.63,0-4.67-.14-4.75-.15a5.56,5.56,0,0,1-.57,0,.65.65,0,0,0-.09.28.48.48,0,0,0,.31.46l.53.24a6.09,6.09,0,0,1-.14,1.44l0,.12c-.14.52-.17.63-.66.92a5.85,5.85,0,0,0-2.55,2.67,16,16,0,0,0-.32,3.91V60.31a2.65,2.65,0,0,0,2.14,2.33c1.8.24,5.92.17,6,.17H48.2a44.47,44.47,0,0,0,4.61-.18A2.65,2.65,0,0,0,55,60.3V43.46A16.21,16.21,0,0,0,54.63,39.55Z'/%3E%3Cpath id='_Path_' data-name='&lt;Path&gt;' class='cls-4' d='M52.65,32.23c0-.29-.09-.23-.09-.59V26.82s0-.51-.35-.6A9.8,9.8,0,0,0,50.44,26a53.48,53.48,0,0,0-7.19,0,9.8,9.8,0,0,0-1.76.19c-.37.09-.35.6-.35.6v4.83c0,.36-.08.3-.09.59s.07.31.07.31a3,3,0,0,0,1,.11,59.85,59.85,0,0,0,9.54,0,3,3,0,0,0,1-.11S52.67,32.52,52.65,32.23Z'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.icon-product-line.icon-skincare-therapies:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 67.24 67.24'%3E%3Cdefs%3E%3Cstyle%3E.cls-1,.cls-2,.cls-5%7Bfill:none;%7D.cls-2,.cls-3,.cls-5%7Bstroke:%232d2d2b;stroke-miterlimit:10;%7D.cls-2%7Bstroke-width:0.62px;%7D.cls-3%7Bfill:%23fff;%7D.cls-3,.cls-5%7Bstroke-width:0.81px;%7D.cls-4%7Bfill:%232d2d2b;%7D%3C/style%3E%3C/defs%3E%3Ctitle%3Eskincare-therapies%3C/title%3E%3Cg id='Layer_2' data-name='Layer 2'%3E%3Cg id='Layer_1-2' data-name='Layer 1'%3E%3Crect class='cls-1' width='67.24' height='67.24'/%3E%3Crect class='cls-2' x='52.44' y='22.11' width='3.8' height='9.17' rx='0.87' ry='0.87'/%3E%3Crect class='cls-2' x='52.44' y='34.62' width='3.8' height='9.17' rx='0.87' ry='0.87'/%3E%3Crect class='cls-2' x='52.44' y='47.13' width='3.8' height='9.17' rx='0.87' ry='0.87'/%3E%3Crect class='cls-3' x='13.67' y='14.46' width='40.67' height='48.58'/%3E%3Ccircle class='cls-4' cx='16.71' cy='31.9' r='1.06'/%3E%3Cpath class='cls-5' d='M11.26,34.07a2.42,2.42,0,0,1,2.42-2.42,11.67,11.67,0,0,1,2.91.13'/%3E%3Cpath class='cls-5' d='M13.68,36.48a2.42,2.42,0,1,1,0-4.83'/%3E%3Ccircle class='cls-4' cx='16.71' cy='46.1' r='1.06'/%3E%3Cpath class='cls-5' d='M11.26,48.26a2.41,2.41,0,0,1,2.42-2.42,11.58,11.58,0,0,1,2.91.13'/%3E%3Cpath class='cls-5' d='M13.68,50.68a2.42,2.42,0,0,1,0-4.83'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.icon-product-line.icon-skinb-products:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 67.24 67.24'%3E%3Cdefs%3E%3Cstyle%3E.cls-1,.cls-2,.cls-4,.cls-5%7Bfill:none;%7D.cls-2,.cls-4,.cls-5,.cls-6%7Bstroke:%232d2d2b;stroke-width:0.8px;%7D.cls-2,.cls-4,.cls-6%7Bstroke-miterlimit:10;%7D.cls-3%7Bfill:%232d2d2b;%7D.cls-3,.cls-4,.cls-5,.cls-6%7Bfill-rule:evenodd;%7D.cls-5%7Bstroke-linecap:round;stroke-linejoin:bevel;%7D.cls-6%7Bfill:%23fff;%7D%3C/style%3E%3C/defs%3E%3Ctitle%3Eskinb-products%3C/title%3E%3Cg id='Layer_2' data-name='Layer 2'%3E%3Cg id='Layer_1-2' data-name='Layer 1'%3E%3Crect class='cls-1' width='67.24' height='67.24'/%3E%3Cpath class='cls-2' d='M46.71,56.53V53.2a7.49,7.49,0,0,1,0-1.07V42.26c0-.8,0-1.61,0-2.42a10.37,10.37,0,0,0-.05-1.6,5,5,0,0,0-1.3-.05H42.13l-5.71,0-4.11,0-9.14,0-2.93,0a14.35,14.35,0,0,0-2,0,3.68,3.68,0,0,0-.06,1.25l0,3q0,5.44-.06,10.89,0,1.48,0,3c0,.37-.11.95.06,1.19s.49.19.7.25a2.15,2.15,0,0,1,0,.54v.87l0,2.76c0,.6-.12,1.41.24,1.69s.85.16,1.32.24l1.42.12.75,0,.74,0,1,0,1.92.06h.52l1.8,0,1.1,0h4.76l1.38,0h.45l1.4,0,2.32-.05h1l.75,0c.85-.14,1.79,0,2.62-.18.56-.09,1.11,0,1.47-.26s.08-1,.15-1.49Q46,60,46,57.73c.21,0,.48,0,.61-.14A3.68,3.68,0,0,0,46.71,56.53Z'/%3E%3Cpath class='cls-3' d='M32.5,40.3a.23.23,0,1,1-.23.23A.23.23,0,0,1,32.5,40.3Z'/%3E%3Cpath class='cls-4' d='M31.71,39.37h1.55a.37.37,0,0,1,.36.37V44a.37.37,0,0,1-.36.37H31.71a.36.36,0,0,1-.36-.37V39.74A.36.36,0,0,1,31.71,39.37Z'/%3E%3Cpath class='cls-5' d='M18.86,57.8s10.61,0,14.32,0S42,57.8,46,57.73'/%3E%3Cpath class='cls-6' d='M50.74,54.89q0,3,0,6v1.67a2.09,2.09,0,0,0,0,.72c.32,0,.75,0,.93.21V64a9.57,9.57,0,0,1-2.31.26H46.77l-1.44-.07-1-.17a.94.94,0,0,1,.06-.53,7.47,7.47,0,0,0,.93-.18,5.45,5.45,0,0,0,0-.89V60.58q0-2.85,0-5.7a3.34,3.34,0,0,1-1-.15c-.1-.12,0-.49,0-.67q0-.89,0-1.78c0-.17.08-.6,0-.71-.41-.15-.74,0-1.09-.26,0-.27,0-.55,0-.82a5.18,5.18,0,0,1,1.45-.19q0-14.76,0-29.52c0-2.59,0-5.17,0-7.76q0-1,0-2.08a2.08,2.08,0,0,1,.09-.94l.71,0a15.28,15.28,0,0,1,2.12,0L50,10c.37.05,1.23-.09,1.36.17l.06,40.21a3.11,3.11,0,0,1,1.43.2v.82a6,6,0,0,1-1.09.22v2.26a3.06,3.06,0,0,1,0,1C51.48,54.8,51.1,54.88,50.74,54.89Z'/%3E%3Cpath class='cls-6' d='M44.72,20.34a21.33,21.33,0,0,0,6.69,0'/%3E%3Cpath class='cls-6' d='M44.88,54.82a20.81,20.81,0,0,0,6.63,0'/%3E%3Cpath class='cls-6' d='M44.1,51.55a33.12,33.12,0,0,0,7.94,0'/%3E%3Cpath class='cls-6' d='M44.72,50.34a21.42,21.42,0,0,0,6.69,0'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.icon-product-line.icon-skinb-therapies_kit:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 78.04 67.24'%3E%3Cdefs%3E%3Cstyle%3E.cls-1,.cls-2,.cls-3%7Bfill:none;%7D.cls-2,.cls-3%7Bstroke:%232d2d2b;stroke-miterlimit:10;stroke-width:0.8px;%7D.cls-2%7Bfill-rule:evenodd;%7D%3C/style%3E%3C/defs%3E%3Ctitle%3Eskinb-therapies_kit%3C/title%3E%3Cg id='Layer_2' data-name='Layer 2'%3E%3Cg id='Layer_1-2' data-name='Layer 1'%3E%3Crect class='cls-1' width='78.04' height='67.24'/%3E%3Cpath class='cls-2' d='M17.76,45.89h3.43'/%3E%3Cpath class='cls-2' d='M75.56,45.89V64.3H3.16V45.89H8.51'/%3E%3Cpath class='cls-2' d='M22.43,45.89c.19-3.93-.3-7.16,1.41-9.76L23,36V30l.15-.15A8.48,8.48,0,0,1,27,29.29h-.32a8.48,8.48,0,0,1,3.87.55l.15.15v6l-.81.15c1.71,2.6,1.22,5.84,1.41,9.76h.48'/%3E%3Cpath class='cls-2' d='M23.65,36.1a41.87,41.87,0,0,0,6.27,0'/%3E%3Cpath class='cls-2' d='M9.19,45.89c.19-3.93-.3-7.16,1.41-9.76L9.78,36V30l.15-.15a8.48,8.48,0,0,1,3.87-.55h-.32a8.48,8.48,0,0,1,3.87.55l.15.15v6l-.81.15c1.71,2.6,1.22,5.84,1.41,9.76h.48'/%3E%3Cpath class='cls-2' d='M10.41,36.1a41.87,41.87,0,0,0,6.27,0'/%3E%3Cpath class='cls-2' d='M35.66,45.89c.19-3.93-.3-7.16,1.41-9.76L36.25,36V30l.15-.15a8.48,8.48,0,0,1,3.87-.55H40a8.48,8.48,0,0,1,3.87.55L44,30v6l-.81.15c1.71,2.6,1.22,5.84,1.41,9.76'/%3E%3Cpath class='cls-2' d='M36.89,36.1a41.87,41.87,0,0,0,6.27,0'/%3E%3Cpath class='cls-2' d='M48.42,45.89c.19-3.93-.3-7.16,1.41-9.76L49,36V30l.15-.15A8.48,8.48,0,0,1,53,29.29h-.32a8.48,8.48,0,0,1,3.87.55l.15.15v6l-.81.15c1.71,2.6,1.22,5.84,1.41,9.76'/%3E%3Cpath class='cls-2' d='M49.64,36.1a41.87,41.87,0,0,0,6.27,0'/%3E%3Cpath class='cls-2' d='M61.17,45.89c.19-3.93-.3-7.16,1.41-9.76L61.76,36V30l.15-.15a8.48,8.48,0,0,1,3.87-.55h-.32a8.48,8.48,0,0,1,3.87.55l.15.15v6l-.81.15c1.71,2.6,1.22,5.84,1.41,9.76'/%3E%3Cpath class='cls-2' d='M62.39,36.1a41.87,41.87,0,0,0,6.27,0'/%3E%3Cline class='cls-3' x1='3.16' y1='45.89' x2='75.56' y2='45.89'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.icon-product-line.icon-story-moments:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 67.24 67.24'%3E%3Cdefs%3E%3Cstyle%3E.cls-1,.cls-2%7Bfill:none;%7D.cls-2%7Bstroke:%232d2d2b;stroke-miterlimit:10;stroke-width:0.8px;%7D%3C/style%3E%3C/defs%3E%3Ctitle%3Estory_moments%3C/title%3E%3Cg id='Layer_2' data-name='Layer 2'%3E%3Cg id='Layer_1-2' data-name='Layer 1'%3E%3Crect class='cls-1' width='67.24' height='67.24'/%3E%3Cpath class='cls-2' d='M53.59,23.84a5.13,5.13,0,0,0-4.75,0l-.26,14.34-10.5-6.65v7.38L26.43,31.53v7.38L14.77,31.53V55.67H54.16ZM27.26,49.06h-7v-5.4h7Zm9.5,0H30.21v-5.4h6.55Zm9.5,0H39.7v-5.4h6.55Z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.icon-product-line.icon-story-presence:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 67.24 67.24'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;%7D.cls-2%7Bfill:%232d2d2b;%7D%3C/style%3E%3C/defs%3E%3Ctitle%3Estory_presence%3C/title%3E%3Cg id='Layer_2' data-name='Layer 2'%3E%3Cg id='Layer_1-2' data-name='Layer 1'%3E%3Crect class='cls-1' width='67.24' height='67.24'/%3E%3Cpath class='cls-2' d='M44.21,29.85a15,15,0,0,0-10.47-4.24h0a15,15,0,1,0,0,30.05h0A15,15,0,0,0,44.21,29.85Zm-10,5.29c2.1,0,3.89-.11,5.42-.24a27.19,27.19,0,0,1,.58,5.23h-6Zm0-1V26.66a3.73,3.73,0,0,1,1.65.79,8.66,8.66,0,0,1,2.19,2.85,17.71,17.71,0,0,1,1.35,3.61C38,34,36.24,34.13,34.24,34.14Zm-1-7.48v7.48c-2,0-3.71-.1-5.18-.22a18.28,18.28,0,0,1,1.19-3.3C30.36,28.34,31.79,26.93,33.24,26.66Zm0,8.48v5h-6a27.1,27.1,0,0,1,.58-5.23C29.35,35,31.15,35.13,33.24,35.14Zm-7,5H19.71a13.9,13.9,0,0,1,1.75-6.31,30.46,30.46,0,0,0,5.36,1A28.4,28.4,0,0,0,26.24,40.14Zm0,1a28.35,28.35,0,0,0,.58,5.33,30.52,30.52,0,0,0-5.36,1,13.91,13.91,0,0,1-1.75-6.31Zm1,0h6v5c-2.1,0-3.89.11-5.42.24A27.33,27.33,0,0,1,27.24,41.14Zm6,6v7.48a3.73,3.73,0,0,1-1.65-.79A8.63,8.63,0,0,1,29.41,51a17.68,17.68,0,0,1-1.35-3.61C29.53,47.24,31.25,47.15,33.24,47.14Zm1,7.48V47.14c2,0,3.71.1,5.18.23a18.1,18.1,0,0,1-1.19,3.29C37.13,52.94,35.7,54.35,34.24,54.62Zm0-8.48v-5h6a27.09,27.09,0,0,1-.58,5.23C38.13,46.24,36.34,46.15,34.24,46.14Zm7-5h6.53A13.89,13.89,0,0,1,46,47.45a30.47,30.47,0,0,0-5.36-1A28.39,28.39,0,0,0,41.25,41.14Zm0-1a28.36,28.36,0,0,0-.58-5.33,30.17,30.17,0,0,0,5.36-1,13.94,13.94,0,0,1,1.75,6.31Zm2.27-9.57a14.07,14.07,0,0,1,2,2.37,31.87,31.87,0,0,1-5.05.88,18.77,18.77,0,0,0-1.46-4A10.19,10.19,0,0,0,36.85,27,14,14,0,0,1,43.52,30.57Zm-19.86.31a14,14,0,0,1,7-3.92,10.56,10.56,0,0,0-2.28,3.22,19.34,19.34,0,0,0-1.3,3.64,32.23,32.23,0,0,1-5-.88A14.16,14.16,0,0,1,23.66,30.88ZM24,50.71a14.15,14.15,0,0,1-2-2.37,31.92,31.92,0,0,1,5.05-.88,18.8,18.8,0,0,0,1.47,4,10.2,10.2,0,0,0,2.11,2.89A14,14,0,0,1,24,50.71Zm19.86-.32a14,14,0,0,1-4.7,3.2,14.13,14.13,0,0,1-2.27.72,10.56,10.56,0,0,0,2.28-3.22,19.26,19.26,0,0,0,1.3-3.63,31.91,31.91,0,0,1,5,.88A14.11,14.11,0,0,1,43.83,50.4Z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.icon-product-line.icon-story-values:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 67.24 67.24'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;%7D.cls-2%7Bfill:%232d2d2b;%7D%3C/style%3E%3C/defs%3E%3Ctitle%3Estory_values%3C/title%3E%3Cg id='Layer_2' data-name='Layer 2'%3E%3Cg id='Layer_1-2' data-name='Layer 1'%3E%3Crect class='cls-1' width='67.24' height='67.24'/%3E%3Cpath class='cls-2' d='M19.19,33.93c2.37.34,3.21,1.07,3.21,4.24V51.33c0,2.75-.34,5.51-1.45,7a9.35,9.35,0,0,1-3.74,2.86l.12.38a19.73,19.73,0,0,0,7.86-3.66,9.27,9.27,0,0,0,2.71-7V33.62h-8.7Z'/%3E%3Cpath class='cls-2' d='M34.22,50a3,3,0,0,0-3,3,2.91,2.91,0,0,0,3,3,3,3,0,0,0,3.09-3,3.05,3.05,0,0,0-3.09-3'/%3E%3Cpath class='cls-2' d='M40,55.4v.31h9.91L40.44,33.62h-.51l-3,6.08L41.6,50.21a11.33,11.33,0,0,1,1.07,3.1c0,1.45-.92,2-2.63,2.1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.icon-product-line.icon-medical-dermal:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 67.24 67.24'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;%7D.cls-2%7Bfill:%23fff;stroke:%232d2d2b;stroke-miterlimit:10;stroke-width:0.68px;%7D%3C/style%3E%3C/defs%3E%3Ctitle%3Emedical-dermal%3C/title%3E%3Cg id='Layer_2' data-name='Layer 2'%3E%3Cg id='Layer_1-2' data-name='Layer 1'%3E%3Crect class='cls-1' width='67.24' height='67.24'/%3E%3Cpolygon class='cls-2' points='40.67 56.76 40.67 54.8 26.71 54.8 26.71 56.76 32.89 56.76 32.89 62.15 31 62.15 31 63.74 36.38 63.74 36.38 62.15 34.48 62.15 34.48 56.76 40.67 56.76'/%3E%3Crect class='cls-2' x='31.62' y='23.56' width='4.14' height='31.24'/%3E%3Cline class='cls-2' x1='31.62' y1='30.67' x2='35.76' y2='30.67'/%3E%3Cline class='cls-2' x1='32.61' y1='33.62' x2='35.76' y2='33.62'/%3E%3Cline class='cls-2' x1='32.61' y1='37.5' x2='35.76' y2='37.5'/%3E%3Cline class='cls-2' x1='32.61' y1='41.06' x2='35.76' y2='41.06'/%3E%3Cline class='cls-2' x1='32.61' y1='44.84' x2='35.76' y2='44.84'/%3E%3Cline class='cls-2' x1='32.61' y1='48.48' x2='35.76' y2='48.48'/%3E%3Cline class='cls-2' x1='33.69' y1='46.55' x2='35.76' y2='46.55'/%3E%3Cline class='cls-2' x1='33.69' y1='50.19' x2='35.76' y2='50.19'/%3E%3Cline class='cls-2' x1='33.69' y1='43.06' x2='35.76' y2='43.06'/%3E%3Cline class='cls-2' x1='33.69' y1='39.28' x2='35.76' y2='39.28'/%3E%3Cline class='cls-2' x1='33.69' y1='35.57' x2='35.76' y2='35.57'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.icon-product-line.icon-medical-mesotherapy:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 67.24 67.24'%3E%3Cdefs%3E%3Cstyle%3E.cls-1,.cls-2%7Bfill:none;%7D.cls-2%7Bstroke:%232d2d2b;stroke-miterlimit:10;stroke-width:0.8px;fill-rule:evenodd;%7D%3C/style%3E%3C/defs%3E%3Ctitle%3Emedical-mesotherapy%3C/title%3E%3Cg id='Layer_2' data-name='Layer 2'%3E%3Cg id='Layer_1-2' data-name='Layer 1'%3E%3Crect class='cls-1' width='67.24' height='67.24'/%3E%3Cpath class='cls-2' d='M33.6,63.69a4.52,4.52,0,0,0,2.24-.35c-.13-1.77,0-3.92,0-5.74q0-1.41,0-2.82c0-.24,0-.55,0-.75a3.61,3.61,0,0,0-.08-1.27l.11-1.87L36.35,48a11,11,0,0,0,.43-2.49l.19,0,.22-1,.19-.13v-1c-.06-.11-.15-.06-.17-.26s.16-.14.19-.21v-.77c-.52-.35-.17-.58-.06-1v-.9a8.54,8.54,0,0,0-.13-2.56l-.11-1.55L37,34.76c0-.09.09-.07.11-.21A5.41,5.41,0,0,1,37,32.76c0-.08.09-.06.11-.19a3.33,3.33,0,0,1,.06-1.94c0-.1-.07-.09-.09-.15q0-.59.08-1.18c.15-1,.1-1.92.24-2.8s0-1.53,0-2.3a2.88,2.88,0,0,0,0-.9c0-.53,0-1.06,0-1.59q0-2.58.06-5.16,0-1.46.06-2.92c-.08-.36-.24-.77-.32-1.18-.05-.26,0-1.29-.09-1.42l-.32-.28-.36-.34a6.28,6.28,0,0,0-2.17-.32H32.65a6.14,6.14,0,0,0-2,.33l-.36.34L30,11c-.08.13,0,1.16-.09,1.42-.08.41-.23.82-.32,1.18q0,1.46.06,2.92,0,2.58.06,5.16c0,.53,0,1.06,0,1.59-.06.14-.21.28-.15.56a1.91,1.91,0,0,0,.17.34c0,.77,0,1.53,0,2.3s.09,1.85.24,2.8q0,.59.08,1.18c0,.06-.07.05-.09.15a3.33,3.33,0,0,1,.06,1.94c0,.13.08.11.11.19A5.41,5.41,0,0,1,30,34.55c0,.13.09.11.11.21l-.08,1.36-.11,1.55a8.54,8.54,0,0,0-.13,2.56v.9c.11.43.46.66-.06,1v.77c0,.07.14.13.19.21s-.11.15-.17.26v1l.19.13.22,1,.19,0A11,11,0,0,0,30.8,48l.41,2.93.11,1.87A3.61,3.61,0,0,0,31.25,54c0,.19,0,.5,0,.75q0,1.41,0,2.82c0,1.82.11,4,0,5.74a4.52,4.52,0,0,0,2.24.35Z'/%3E%3Cpath class='cls-2' d='M30.58,45.47l5.94-.06'/%3E%3Cpath class='cls-2' d='M30,40.09,36.9,40'/%3E%3Cpath class='cls-2' d='M31.48,54.14l4.15-.06'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.icon-product-line.icon-medical-chemical:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 67.24 67.24'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;%7D.cls-2,.cls-3%7Bfill:%23fff;stroke:%232d2d2b;stroke-miterlimit:10;fill-rule:evenodd;%7D.cls-2%7Bstroke-width:0.73px;%7D.cls-3%7Bstroke-width:0.8px;%7D%3C/style%3E%3C/defs%3E%3Ctitle%3Emedical-chemical%3C/title%3E%3Cg id='Layer_2' data-name='Layer 2'%3E%3Cg id='Layer_1-2' data-name='Layer 1'%3E%3Crect class='cls-1' width='67.24' height='67.24'/%3E%3Cpath class='cls-2' d='M37.74,63.74a32.11,32.11,0,0,0,5.78-.48c.78-.18,2.25-.6,2.54-3.89s.37-12.54.31-14.76S46.37,29,46.05,27s-.76-4.75-3-6.82c-.78-1-1.54-1.62-1.41-2.4a1.7,1.7,0,0,0,.89-.26.76.76,0,0,0,.13-.29l.13-.34a2.17,2.17,0,0,0,0-.6c0-.26-.47-5-.47-5a.89.89,0,0,0-.68-.65,18.49,18.49,0,0,0-4-.36,18.5,18.5,0,0,0-4,.36.89.89,0,0,0-.68.65s-.43,4.73-.47,5a2.15,2.15,0,0,0,0,.6l.13.34a.79.79,0,0,0,.13.29,1.71,1.71,0,0,0,.89.26c.13.78-.63,1.44-1.41,2.4-2.22,2.06-2.67,4.86-3,6.82S29,42.4,28.92,44.62s0,11.47.31,14.76,1.75,3.71,2.53,3.89a32.12,32.12,0,0,0,5.78.48Z'/%3E%3Cpath class='cls-2' d='M41.67,17.82a73.78,73.78,0,0,1-8,0'/%3E%3Cpath class='cls-3' d='M28.74,63.74h.32a19.08,19.08,0,0,0,3.59-.24,1.55,1.55,0,0,0,1.19-.7,6.45,6.45,0,0,0,.46-1.36,28.34,28.34,0,0,0,.22-2.89c0-.53-.06-10.06-.06-10.06A11.83,11.83,0,0,0,34.2,46a10,10,0,0,0-.79-1.7l-.57-.78a3.32,3.32,0,0,0,.49,0,1.58,1.58,0,0,0,.45-.15l.12-7.19a.41.41,0,0,0-.16-.28,1.79,1.79,0,0,0-.79-.25,24.21,24.21,0,0,0-8.07,0,1.81,1.81,0,0,0-.79.25.41.41,0,0,0-.16.28L24,43.37a1.58,1.58,0,0,0,.45.15,3.29,3.29,0,0,0,.48,0l-.57.78a10.22,10.22,0,0,0-.79,1.7,11.82,11.82,0,0,0-.26,2.44s0,9.54-.06,10.06a27.78,27.78,0,0,0,.22,2.89A6.43,6.43,0,0,0,24,62.8a1.56,1.56,0,0,0,1.19.7A20.39,20.39,0,0,0,28.74,63.74Z'/%3E%3Cpath class='cls-3' d='M25,43.54s6.32.08,7.75,0'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.icon-product-line.icon-medical-products:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 67.24 67.24'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;%7D.cls-2,.cls-4%7Bfill:%23fff;fill-rule:evenodd;%7D.cls-3%7Bfill:%232d2d2b;%7D.cls-4%7Bstroke:%232d2d2b;stroke-miterlimit:10;stroke-width:0.8px;%7D%3C/style%3E%3C/defs%3E%3Ctitle%3Emedical-products%3C/title%3E%3Cg id='Layer_2' data-name='Layer 2'%3E%3Cg id='Layer_1-2' data-name='Layer 1'%3E%3Crect class='cls-1' width='67.24' height='67.24'/%3E%3Cpath class='cls-2' d='M34,64.14A18.56,18.56,0,0,1,29,63.76a1.3,1.3,0,0,1-1.13-1.26V49.32c0-.12-.27-1.78.72-2.46l.24-.17a5.22,5.22,0,0,0,.83-.64l0-1.1a3,3,0,0,0,0-.4h0l-.07,0c-1.37-.08-1.59-.73-1.59-1.11l0-1.78a.52.52,0,0,1-.48-.49c0-.17,0-1,0-1.19h0a.58.58,0,0,1,.16-.41.88.88,0,0,1,.69-.26H39.92c.58,0,1,.28,1,.71l0,1.08a.64.64,0,0,1-.48.59c0,.52,0,1.65,0,1.65a1.1,1.1,0,0,1-.85,1.08l-.22,0c-.45,0-.51.07-.51.38,0,.16,0,.31,0,.45,0,.57,0,.81.18.94l.15.1a2.52,2.52,0,0,1,1.43,2.21c0,1.18,0,13.72,0,13.72a1.85,1.85,0,0,1-1.47,1.57,28.2,28.2,0,0,1-4.64.36Z'/%3E%3Cpath class='cls-3' d='M28.34,39.68H39.92c.06,0,.56,0,.57.32s0,1.08,0,1.08a.23.23,0,0,1-.24.19c-.22,0-.23,0-.24.22s0,1.81,0,1.81.07.47-.58.7c-.44.05-1,0-1,.8s-.15,1.39.34,1.72a2.31,2.31,0,0,1,1.4,2c0,1.18,0,13.72,0,13.72a1.45,1.45,0,0,1-1.13,1.18,24.77,24.77,0,0,1-4.58.35H34a22.27,22.27,0,0,1-4.91-.35c-.26-.09-.89-.19-.89-.89V49.32s-.26-1.57.55-2.13,1.23-.83,1.23-1V45a1.67,1.67,0,0,0,0-.54c-.06-.1-.22-.28-.34-.29s-1.29-.05-1.3-.73l0-2.16H28c-.07,0-.14,0-.15-.13s0-1.15,0-1.15,0-.29.45-.29m0-.8a1.26,1.26,0,0,0-1,.39,1,1,0,0,0-.26.69c0,.47,0,1,0,1.2a.92.92,0,0,0,.49.77l0,1.48c0,.38.19,1.25,1.64,1.47v1c-.15.12-.41.3-.64.46l-.24.17c-1.1.77-.95,2.44-.89,2.85V62.5a1.64,1.64,0,0,0,1.38,1.63h0c.45.17,1.51.4,5.18.4h.49a28.51,28.51,0,0,0,4.64-.35h.05A2.21,2.21,0,0,0,41,62.34v-.13c0-.13,0-12.55,0-13.71a2.94,2.94,0,0,0-1.61-2.55l-.14-.09a3.86,3.86,0,0,1,0-.59c0-.14,0-.29,0-.44l.15,0,.14,0h.09l.08,0a1.52,1.52,0,0,0,1.11-1.49c0-.49,0-1,0-1.36a1,1,0,0,0,.48-.74v-.12l0-1.08a1.23,1.23,0,0,0-1.37-1.09H28.34Z'/%3E%3Cpath class='cls-4' d='M29.46,44.4a50.25,50.25,0,0,0,9.46-.05'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-template-template-boxed .two-cols-txt, .single-post .two-cols-txt {
  border-bottom: none;
}

.two-cols-txt {
  padding-top: 91px;
  padding-bottom: 66px;
  border-bottom: 6px solid #f6f6f6;
}

.two-cols-txt a {
  color: #0f90ed;
}

.two-cols-txt a:hover {
  text-decoration: underline;
}

@media (max-width: 767.98px) {
  .two-cols-txt {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.two-cols-txt .container {
  -webkit-columns: 2;
  -moz-columns: 2;
  columns: 2;
  -webkit-column-width: 460px;
  -moz-column-width: 460px;
  column-width: 460px;
  -webkit-column-gap: 90px;
  -moz-column-gap: 90px;
  column-gap: 90px;
}

@media (max-width: 767.98px) {
  .two-cols-txt .container {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.two-cols-txt p {
  font-size: 1rem;
  line-height: 32px;
}

.side-txt {
  padding-top: 71px;
  padding-bottom: 66px;
  border-bottom: 6px solid #f6f6f6;
}

.side-txt a {
  color: #0f90ed;
}

.side-txt a:hover {
  text-decoration: underline;
}

.side-txt .row {
  margin-bottom: 40px;
}

@media (max-width: 767.98px) {
  .side-txt .row > div {
    padding-right: 25px;
    padding-left: 25px;
  }
}
.side-txt .row p {
  font-size: 1rem;
  line-height: 32px;
}

.side-txt h3 {
  font-size: 2.25rem;
  font-weight: 700;
}

@media (max-width: 767.98px) {
  .side-txt h3 {
    font-size: 1.875rem;
  }
}
.txt-grid {
  border-bottom: 6px solid #f6f6f6;
  padding-top: 55px;
  padding-bottom: 55px;
}

.txt-grid header {
  padding: 0 10px 30px;
}

.txt-grid header h2 {
  text-align: center;
  font-size: 2.25rem;
  font-weight: 700;
}

.txt-grid [class*=col] {
  margin-bottom: 50px;
}

.txt-grid h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

.txt-grid h3 span {
  font-size: 1.25rem;
  font-weight: 700;
}

.txt-grid h3 span:after {
  content: "";
  width: 20px;
  height: 2px;
  background: #2e2d2c;
  display: inline-block;
  margin: 5px 8px;
}

.txt-grid p {
  font-size: 0.875rem;
}

.first-letters {
  color: #0f90ed;
}

footer {
  background-color: #f6f6f6;
  padding-bottom: 40px;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  footer {
    padding-top: 35px;
  }
}
footer a {
  font-size: 0.75rem;
}

footer ul li a {
  color: #6f6f6e;
}

footer ul li .sub-menu .menu-item a:hover,
footer div ul li .sub-menu .menu-item a:hover {
  text-decoration: underline;
}

@media (max-width: 767.98px) {
  footer .accordion {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
  }
}
footer .accordion ul {
  margin-bottom: 0;
}

@media (max-width: 767.98px) {
  footer .accordion ul li a,
  footer .accordion div ul li a {
    padding-left: 15px !important;
  }
}
@media (max-width: 767.98px) {
  footer .accordion > ul > li,
  footer .accordion > div > ul > li {
    border-bottom: 1px solid #dadada;
  }
}
footer .accordion > ul > li .sub-menu,
footer .accordion > div > ul > li .sub-menu {
  margin-bottom: 30px;
}

@media (max-width: 767.98px) {
  footer .accordion > ul > li .sub-menu,
  footer .accordion > div > ul > li .sub-menu {
    display: none;
    margin-left: 5px;
  }
}
footer .accordion > ul > li > a,
footer .accordion > div > ul > li > a {
  font-size: 0.8125rem;
  font-weight: 700;
  display: block;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 0;
  color: #2e2d2c;
}

@media (max-width: 767.98px) {
  footer .accordion > ul > li > a,
  footer .accordion > div > ul > li > a {
    padding: 15px 0 15px;
    font-size: 0.85rem;
    margin-left: 5px;
  }
}
footer .accordion > ul > li > a:after,
footer .accordion > div > ul > li > a:after,
footer .accordion > ul > li > a:before,
footer .accordion > div > ul > li > a:before {
  content: "";
  position: absolute;
  z-index: 1;
  background: #383838;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

@media (min-width: 768px) {
  footer .accordion > ul > li > a:after,
  footer .accordion > div > ul > li > a:after,
  footer .accordion > ul > li > a:before,
  footer .accordion > div > ul > li > a:before {
    display: none;
  }
}
footer .accordion > ul > li > a:before,
footer .accordion > div > ul > li > a:before {
  height: 10px;
  right: 23px;
  width: 2px;
  -webkit-transform: translateX(-1px);
  transform: translateX(-1px);
}

footer .accordion > ul > li > a:after,
footer .accordion > div > ul > li > a:after {
  top: 50%;
  right: 20px;
  height: 2px;
  width: 10px;
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
}

@media (min-width: 768px) {
  footer .accordion > ul > li > a,
  footer .accordion > div > ul > li > a {
    cursor: default;
  }
}
footer .accordion > ul > li > a.open:before,
footer .accordion > div > ul > li > a.open:before {
  height: 12px;
  -webkit-transform: rotate(45deg) translateX(0) translateY(2px);
  transform: rotate(45deg) translateX(0) translateY(2px);
}

footer .accordion > ul > li > a.open:after,
footer .accordion > div > ul > li > a.open:after {
  width: 12px;
  -webkit-transform: rotate(45deg) translateX(1px) translateY(0);
  transform: rotate(45deg) translateX(1px) translateY(0);
}

footer .accordion > ul > li > a.open ~ .sub-menu,
footer .accordion > div > ul > li > a.open ~ .sub-menu {
  display: block;
}

footer .accordion input[type=radio] {
  display: none;
}

footer .accordion > ul,
footer .accordion > div {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 0 15px;
}

@media (max-width: 767.98px) {
  footer .accordion > ul ul li ul,
  footer .accordion > div > ul ul li ul {
    display: none;
  }
}
footer section:last-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (min-width: 768px) {
  footer section:last-child {
    border-top: 1px solid #dadada;
    margin-top: 0;
  }
}
footer section:last-child .small-logo {
  margin-top: 28px;
  margin-bottom: 18px;
  margin-right: 0;
}

footer section:last-child p {
  font-size: 0.75rem;
  text-align: center;
  margin-bottom: 0.5rem;
}

footer .lang-footer > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

footer .lang-footer > a:after,
footer .lang-footer > a:before {
  height: 0 !important;
  width: 0 !important;
}

footer .lang-footer > a img {
  width: 16px;
  height: 16px;
  margin-left: auto;
  margin-right: 16px;
}

@media (min-width: 768px) {
  footer .lang-footer > a img {
    display: none;
  }
}
@media (max-width: 767.98px) {
  footer .lang-footer .sub-menu li {
    display: none;
  }
}
footer .lang-footer .sub-menu li a:hover {
  cursor: pointer;
}

footer .lang-footer .sub-menu li img {
  width: 16px;
  height: 16px;
}

footer .lang-footer .sub-menu li span {
  font-size: 0.75rem;
  margin-left: 8px;
  display: inline-block;
}

footer .revoke {
  position: static;
  bottom: unset;
  right: unset;
  background-color: transparent;
  width: auto;
  text-align: left;
  color: #fff;
  z-index: unset;
  padding: 2px;
  display: inline !important;
  color: inherit !important;
}

footer .copyright {
  text-align: center;
}

.banner-wrap {
  border-bottom: 6px solid #f6f6f6;
}

.banner-wrap .banner--main:not(.bg-size-full) {
  max-width: 1920px;
}

.banner,
.banner--half header,
.banner--main {
  position: relative;
  height: 700px;
  margin: 0 auto;
}

.banner--half header.free-height,
.banner.free-height,
.free-height.banner--main {
  height: auto;
}

@media (min-width: 1920px) {
  .banner .wrap,
  .banner--half header .wrap,
  .banner--main .wrap {
    max-width: 1920px;
  }
}
.banner--half header.capitalize,
.banner.capitalize,
.capitalize.banner--main {
  text-transform: uppercase;
}

.banner h2,
.banner--half header h2,
.banner--main h2 {
  font-weight: 700;
  font-size: 3rem;
}

@media (max-width: 767.98px) {
  .banner h2,
  .banner--half header h2,
  .banner--main h2 {
    font-size: 2.5rem;
  }
}
.banner p,
.banner--half header p,
.banner--main p {
  font-weight: 200;
  font-size: 1.3125rem;
}

@media (max-width: 1199.98px) {
  .banner p,
  .banner--half header p,
  .banner--main p {
    font-size: 1.125rem;
  }
}
@media (max-width: 767.98px) {
  .banner p,
  .banner--half header p,
  .banner--main p {
    font-weight: 400;
  }
}
.banner figure,
.banner--half header figure,
.banner--main figure {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  position: absolute;
  z-index: 1;
  margin: 0;
}

.banner figure img,
.banner--half header figure img,
.banner--main figure img {
  height: 100%;
  width: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

@media (max-width: 767.98px) {
  .banner figure img,
  .banner--half header figure img,
  .banner--main figure img {
    -o-object-position: top;
    object-position: top;
  }
}
@media (max-width: 767.98px) {
  .banner figure,
  .banner--half header figure,
  .banner--main figure {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 500px;
    flex: 0 1 500px;
    overflow: hidden;
  }
}
.banner .links,
.banner--half header .links,
.banner--main .links {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.banner .links span,
.banner--half header .links span,
.banner--main .links span {
  margin: 0 10px;
  color: #0f90ed;
}

.banner .links span:last-child,
.banner--half header .links span:last-child,
.banner--main .links span:last-child {
  display: none;
}

.banner .links a.more,
.banner--half header .links a.more,
.banner--main .links a.more {
  font-size: 1.125rem;
}

.banner .links a.more:hover,
.banner--half header .links a.more:hover,
.banner--main .links a.more:hover {
  text-decoration: underline;
}

.banner--main {
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
}

@media (max-width: 767.98px) {
  .banner--main {
    height: 600px;
  }
}
@media (max-width: 1199.98px) {
  .banner--main.free-height {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    min-height: 800px !important;
    height: auto !important;
  }
}
.banner--main.free-height header > * {
  max-width: 490px;
}

.banner--main.free-height header p {
  font-size: 1rem;
  margin-top: 80px;
  line-height: 2.375rem;
}

.banner--main header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 20px 10%;
}

.banner--main header > * {
  max-width: 400px;
}

@media (max-width: 1199.98px) {
  .banner--main header {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.banner--main.left-main {
  border-bottom: 6px solid #f6f6f6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (max-width: 767.98px) {
  .banner--main.left-main {
    height: 800px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
.banner--main.left-main header {
  width: 50%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

@media (max-width: 767.98px) {
  .banner--main.left-main header {
    width: 100%;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
.banner--main.left-main header h2 {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  letter-spacing: 3px;
  font-size: 4rem;
  line-height: 1.1;
}

@media (max-width: 831.98px) {
  .banner--main.left-main header h2 {
    font-size: 2.25rem;
    margin-top: 50px;
  }
}
@media (max-width: 767.98px) {
  .banner--main.left-main header h2 {
    font-size: 3rem !important;
  }
}
.banner--main.left-main header .icon-badge {
  -webkit-box-flex: 0;
  -ms-flex: 0 auto;
  flex: 0 auto;
  width: 70px;
  display: block;
  margin-top: 20px;
}

.banner--main.left-main header .icon-badge svg {
  width: 100%;
  height: auto;
  fill: #fff;
}

.banner--main.left-main figure {
  position: absolute;
}

@media (max-width: 767.98px) {
  .banner--main.left-main figure {
    z-index: -1;
    border-top: none;
  }
  .banner--main.left-main figure img {
    -o-object-position: bottom;
    object-position: bottom;
  }
}
.banner--main.center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.banner--main.center header {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 0;
  padding-top: 50px;
  max-width: 400px;
}

@media (max-width: 1199.98px) {
  .banner--main.center header {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.banner--main.center.bg-size-full figure img {
  -o-object-position: center;
  object-position: center;
}

.banner--main.center.plain {
  height: auto;
  padding: 35px 0 35px;
}

.banner--main.center.plain figure {
  position: static !important;
  margin-bottom: 25px;
}

.banner--main.center.plain figure img {
  height: 150px;
}

.banner--main.center.plain header {
  padding-top: 0;
}

.banner--main.center.plain h2 {
  font-size: 1.3125rem;
}

.banner--main.center.plain p {
  font-size: 1rem;
}

.banner--main.left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.banner--main.left header {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  width: 50%;
}

.banner--main.left header .wrap {
  max-width: 40px;
}

.banner--main.left header .wrap .more {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.banner--main.left.bg-size-full figure img {
  -o-object-position: center;
  object-position: center;
}

.banner--main.left.half-background figure {
  left: auto;
  width: 50%;
}

@media (max-width: 767.98px) {
  .banner--main.left.half-background figure {
    width: 100%;
  }
}
.banner--main.left.half-background figure img {
  -o-object-fit: cover;
  object-fit: cover;
}

.banner--main.right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.banner--main.right header {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  width: 50%;
}

.banner--main.right.bg-size-full figure img {
  -o-object-position: left;
  object-position: left;
}

.banner--main.right.half-background figure {
  right: auto;
  width: 50%;
}

@media (max-width: 767.98px) {
  .banner--main.right.half-background figure {
    width: 100%;
  }
}
.banner--main.right.half-background figure img {
  -o-object-fit: contain;
  object-fit: contain;
}

@media (max-width: 767.98px) {
  .banner--main.left,
  .banner--main.right {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
@media (max-width: 767.98px) {
  .banner--main.left header,
  .banner--main.right header {
    width: 100%;
    margin-top: 25px;
    padding: 25px 25px;
  }
}
@media (max-width: 767.98px) {
  .banner--main.left.bg-size-full figure,
  .banner--main.right.bg-size-full figure {
    position: absolute !important;
  }
}
@media (max-width: 767.98px) {
  .banner--main.mobile-half {
    height: auto;
    min-height: auto !important;
  }
}
@media (max-width: 767.98px) {
  .banner--main.mobile-half header h2 {
    color: #000 !important;
  }
}
@media (max-width: 767.98px) {
  .banner--main.mobile-half header p {
    color: #000 !important;
  }
}
@media (max-width: 767.98px) {
  .banner--main.mobile-half figure {
    height: auto;
    width: 100%;
    position: static;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
  }
}
.banner--main.bg-align-center img {
  -o-object-position: center !important;
  object-position: center !important;
}

.banner--main.bg-align-right img {
  -o-object-position: right !important;
  object-position: right !important;
}

.banner--main.bg-align-left img {
  -o-object-position: left !important;
  object-position: left !important;
}

.banner--main.txt-white a.more {
  color: #fff;
}

.banner--carousel,
.product--list {
  position: relative;
}

.banner--carousel .container-4xp,
.product--list .container-4xp {
  padding-bottom: 90px;
  position: relative;
  padding-left: 45px;
  padding-right: 45px;
}

@media (max-width: 767.98px) {
  .banner--carousel .container-4xp,
  .product--list .container-4xp {
    padding-left: 0;
    padding-right: 0;
  }
}
.banner--carousel header,
.product--list header {
  margin: 47px 0 37px;
}

.banner--carousel header h2,
.product--list header h2 {
  font-weight: 700;
  font-size: 36px;
  text-align: center;
}

.banner--carousel header p,
.product--list header p {
  max-width: 600px;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 1.3125rem;
  font-weight: 200;
  margin: 0 auto;
  text-align: center;
}

@media (max-width: 831.98px) {
  .banner--carousel header p,
  .product--list header p {
    font-size: 1.125rem;
    font-weight: 400;
  }
}
.banner--carousel .item,
.banner--carousel .swiper-slide,
.product--list .item,
.product--list .swiper-slide {
  height: 485px;
  background-color: #f6f6f6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 25px 30px;
}

.banner--carousel .item .background,
.banner--carousel .swiper-slide .background,
.product--list .item .background,
.product--list .swiper-slide .background {
  margin-left: 15px;
  margin-right: 15px;
  background-color: #f6f6f6;
}

.banner--carousel .item .cat,
.banner--carousel .swiper-slide .cat,
.product--list .item .cat,
.product--list .swiper-slide .cat {
  min-height: 48px;
}

.banner--carousel .item .cat span,
.banner--carousel .swiper-slide .cat span,
.product--list .item .cat span,
.product--list .swiper-slide .cat span {
  display: block;
  text-align: center;
}

.banner--carousel .item .cat span:first-child,
.banner--carousel .swiper-slide .cat span:first-child,
.product--list .item .cat span:first-child,
.product--list .swiper-slide .cat span:first-child {
  font-size: 0.625rem;
  color: #0f90ed;
  line-height: 0.9375rem;
  height: 12px;
}

.banner--carousel .item .cat span:last-child,
.banner--carousel .swiper-slide .cat span:last-child,
.product--list .item .cat span:last-child,
.product--list .swiper-slide .cat span:last-child {
  font-size: 1.375rem;
  line-height: 1.375rem;
  font-weight: 700;
  color: var(--category-color);
}

.banner--carousel .item figure,
.banner--carousel .swiper-slide figure,
.product--list .item figure,
.product--list .swiper-slide figure {
  height: 280px;
  margin-bottom: 5px;
  margin-top: auto;
}

.banner--carousel .item figure img,
.banner--carousel .swiper-slide figure img,
.product--list .item figure img,
.product--list .swiper-slide figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.banner--carousel .item .title,
.banner--carousel .swiper-slide .title,
.product--list .item .title,
.product--list .swiper-slide .title {
  font-size: 0.875rem;
  font-weight: 700;
}

.banner--carousel .item p,
.banner--carousel .swiper-slide p,
.product--list .item p,
.product--list .swiper-slide p {
  font-size: 0.875rem;
  font-weight: 200;
  text-align: center;
  margin-bottom: 20px;
  max-height: 42px;
  overflow-y: hidden;
}

.banner--carousel .item .for-prof,
.banner--carousel .swiper-slide .for-prof,
.product--list .item .for-prof,
.product--list .swiper-slide .for-prof {
  margin: 0;
  font-weight: 200 !important;
}

.banner--carousel .item .price,
.banner--carousel .swiper-slide .price,
.product--list .item .price,
.product--list .swiper-slide .price {
  font-size: 14px;
  color: #0f90ed;
  min-height: 22px;
}

.banner--carousel .item figure,
.product--list .item figure {
  height: 250px;
  margin-bottom: 20px;
}

@media (max-width: 1199.98px) {
  .banner--carousel .swiper-button-next,
  .banner--carousel .swiper-button-prev,
  .product--list .swiper-button-next,
  .product--list .swiper-button-prev {
    display: none;
  }
}
.banner--carousel .swiper-button-next:after,
.banner--carousel .swiper-button-prev:after,
.product--list .swiper-button-next:after,
.product--list .swiper-button-prev:after {
  font-size: 28px;
  color: grey;
}

.banner--carousel .swiper-button-prev,
.product--list .swiper-button-prev {
  left: 0;
}

.banner--carousel .swiper-button-next,
.product--list .swiper-button-next {
  right: 0;
}

.banner--carousel .swiper-pagination-bullet-active,
.product--list .swiper-pagination-bullet-active {
  background-color: grey;
}

.banner--carousel .swiper-pagination-bullets,
.product--list .swiper-pagination-bullets {
  bottom: 20px;
  left: 0;
  width: 100%;
}

.banner--carousel .swiper-pagination-bullet,
.product--list .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  margin-right: 15px;
}

.banner--carousel .swiper-pagination-bullet:last-child,
.product--list .swiper-pagination-bullet:last-child {
  margin-right: 0;
}

.banner--carousel .swiper-pagination,
.product--list .swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 0.3s opacity;
  transition: 0.3s opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 3;
  bottom: 50px;
}

.banner--carousel {
  border-bottom: 6px solid #f6f6f6;
}

.banner--half {
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 6px solid #f6f6f6;
  padding: 0;
  overflow: hidden;
}

@media (min-width: 992px) {
  .banner--half:first-child {
    border-right: 3px solid #f6f6f6;
  }
  .banner--half:last-child {
    border-left: 3px solid #f6f6f6;
  }
}
@media (max-width: 767.98px) {
  .banner--half {
    height: 600px;
  }
}
.banner--half header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  padding-top: 80px;
  max-width: 500px;
  text-align: center;
  height: auto;
}

@media (max-width: 767.98px) {
  .banner--half header {
    padding-top: 45px;
  }
}
.banner--half header p {
  max-width: 360px;
}

.banner--half header h2 {
  max-width: 500px;
  font-size: 2.25rem;
  font-weight: 700;
}

@media (max-width: 767.98px) {
  .banner--half header h2 {
    font-size: 2.5rem;
  }
}
.banner--half figure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  width: 100%;
  overflow: hidden;
}

.banner--half figure picture {
  width: 100%;
  height: 100%;
}

.banner--half figure img {
  display: block;
  margin: 0 auto;
}

.banner-center-plain {
  padding-top: 35px;
  padding-bottom: 35px;
}

@media (max-width: 767.98px) {
  .banner-center-plain {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.banner-center-plain header {
  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;
}

.banner-center-plain header h2 {
  margin-top: 25px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 25px;
}

.banner-center-plain header p {
  font-size: 1rem;
  line-height: 19px;
  max-width: 350px;
  text-align: center;
}

.banner-center-plain header figure {
  width: 20px;
  height: 100px;
}

.banner-center-plain header figure img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.banner-center-plain header a:hover {
  text-decoration: underline;
}

@media (max-width: 767.98px) {
  .banner-center-plain header a.more {
    font-weight: 400;
  }
}
.banner-center-plain header a.more .icon.icon-chevron:before {
  margin-top: 3px;
}

.divided {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 1200px;
}

.divided header {
  text-align: center;
  padding-top: 55px;
}

.divided header > * {
  max-width: unset;
}

.divided figure {
  width: 100%;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  position: relative;
}

.divided figure picture {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.banner--slider {
  background-color: #005f85;
  height: 700px;
  color: #fff;
  max-width: 1920px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.banner--slider .container-4xp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
}

.banner--slider .container-4xp header {
  text-align: center;
  margin-bottom: 80px;
  padding-top: 50px;
}

@media (max-width: 767.98px) {
  .banner--slider .container-4xp header {
    margin-bottom: 50px;
  }
}
.banner--slider .container-4xp header h2 {
  max-width: 420px;
}

.banner--slider .container-4xp .slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.banner--slider .container-4xp .slider-container .swiper-slide {
  text-align: center;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.banner--slider .container-4xp .slider-container .swiper-slide figure {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: 100%;
  height: 90%;
}

.banner--slider .container-4xp .slider-container .swiper-slide figure img {
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.banner--slider .container-4xp .slider-container .swiper-slide p {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0;
  margin-top: 30px;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
}

.banner--slider .container-4xp .slider-container .swiper-button-next,
.banner--slider .container-4xp .slider-container .swiper-button-prev {
  top: 47%;
}

@media (max-width: 1199.98px) {
  .banner--slider .container-4xp .slider-container .swiper-button-next,
  .banner--slider .container-4xp .slider-container .swiper-button-prev {
    display: none;
  }
}
.banner--slider .container-4xp .slider-container .swiper-button-next:after,
.banner--slider .container-4xp .slider-container .swiper-button-prev:after {
  font-size: 28px;
  color: #fff;
}

.banner--slider .container-4xp .slider-container .swiper-button-disabled {
  display: none;
}

.banner--slider .container-4xp .slider-pagination {
  position: absolute;
  bottom: -50px;
}

@media (max-width: 575.98px) {
  .banner--slider .container-4xp .slider-pagination {
    bottom: -25px;
  }
}
.banner--slider .container-4xp .slider-pagination span:not(:last-child) {
  margin-right: 10px;
}

.banner--slider .container-4xp .slider-pagination .swiper-pagination-bullet {
  background: #c6c6c5;
  opacity: 1;
}

.banner--slider .container-4xp .slider-pagination .swiper-pagination-bullet-active {
  background: #6f6f6e;
}

.graph-banner {
  height: 760px;
}

.graph-banner header .desc,
.graph-banner header button {
  font-size: 1.125rem;
  color: #005f85;
}

.graph-banner header .desc input,
.graph-banner header button input {
  display: none;
}

.graph-banner header .desc input:checked + span,
.graph-banner header button input:checked + span {
  font-weight: 700;
}

.graph-banner header p {
  text-align: center;
}

.graph-banner .graph {
  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-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  margin-bottom: 90px;
  margin-top: 20px;
}

.graph-banner .graph .element {
  height: 370px;
  width: 160px;
  margin-right: 20px;
  position: relative;
  background: repeating-linear-gradient(-45deg, #fff 0, #b1b1b1 1px, #b1b1b1 1px, #fff 2px, #fff 6px);
}

@media (max-width: 1199.98px) {
  .graph-banner .graph .element {
    width: 100px;
    height: 300px;
  }
}
@media (max-width: 767.98px) {
  .graph-banner .graph .element {
    width: 60px;
    height: 200px;
  }
}
.graph-banner .graph .element .square {
  width: 100%;
  position: absolute;
  bottom: 0;
  background-color: #005f85;
  -webkit-transition: height 0.3s ease-out;
  transition: height 0.3s ease-out;
}

.graph-banner .graph .element .bubble {
  min-width: 70px;
  padding: 6px 10px;
  border-radius: 12px;
  top: -50px;
  position: absolute;
  background-color: #005f85;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  left: 50%;
}

.graph-banner .graph .element .bubble:after {
  content: "";
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #005f85;
  position: absolute;
  bottom: -8px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  left: 50%;
}

.graph-banner .graph .element .bubble p {
  font-size: 0.9375rem;
  color: #fff;
  text-align: center;
  margin: 0;
  white-space: nowrap;
}

@media (max-width: 1199.98px) {
  .graph-banner .graph .element .bubble p {
    font-size: 0.625rem;
  }
}
@media (max-width: 767.98px) {
  .graph-banner .graph .element .bubble p {
    font-size: 0.4375rem;
  }
}
.graph-banner .graph .element .perc {
  font-size: 1.9375rem;
  color: #005f85;
  position: absolute;
  bottom: -50px;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  text-align: center;
}

@media (max-width: 767.98px) {
  .graph-banner .graph .element .perc {
    font-size: 1.25rem;
  }
}
.graph-banner .graph .element:last-child p {
  white-space: unset;
}

.graph-banner .graph-desc {
  font-size: 1rem;
  color: #005f85;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  text-align: center;
}

@media (max-width: 767.98px) {
  .graph-banner .graph-desc {
    font-size: 0.875rem;
  }
}
.fade-in-banner header {
  opacity: 0;
  -webkit-transform: translateY(3vh);
  transform: translateY(3vh);
  visibility: hidden;
  -webkit-transition: opacity 0.4s ease-out, -webkit-transform 0.6s ease-out;
  transition: opacity 0.4s ease-out, -webkit-transform 0.6s ease-out;
  transition: opacity 0.4s ease-out, transform 0.6s ease-out;
  transition: opacity 0.4s ease-out, transform 0.6s ease-out, -webkit-transform 0.6s ease-out;
  will-change: opacity, visibility;
}

.fade-in-banner header.is-visible {
  opacity: 1;
  -webkit-transform: none;
  transform: none;
  visibility: visible;
  z-index: 2;
}

.category-menu {
  z-index: 8;
  position: relative;
  width: 100%;
  background: #f6f6f6;
  color: #2e2d2c;
}

.category-menu .category-menu-nav ul > li > a {
  color: #000;
}

.category-menu .category-menu-nav ul > li > a:hover {
  -webkit-text-stroke: 0.5px #000;
}

.category-menu .category-menu-nav .current-menu-item {
  -webkit-text-stroke: 0.5px #000;
}

.category-menu .category-menu-nav .icon {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  width: 9px;
  height: 9px;
  display: inline-block;
}

.category-menu .category-menu-nav .icon.icon-chevron:before {
  -webkit-transform: translateY(0) rotate(45deg);
  transform: translateY(0) rotate(45deg);
}

.category-menu .category-menu-nav a:hover {
  text-decoration: none;
  -webkit-text-stroke: 0.8px #fff;
}

@media (max-width: 767.98px) {
  .category-menu .category-menu-nav {
    height: 50px;
  }
}
.category-menu.open .category-menu-nav .icon-chevron {
  -webkit-transform: translateX(50%) translateY(10%) rotate(-90deg);
  transform: translateX(50%) translateY(10%) rotate(-90deg);
}

.category-menu.open .submenu-nav {
  height: var(--submenu-height);
  -webkit-transition: height 0.3s ease-in-out;
  transition: height 0.3s ease-in-out;
}

@media (max-width: 767.98px) {
  .category-menu.open .submenu-nav {
    height: auto;
  }
}
.category-menu > * {
  font-size: 0.875rem;
}

.category-menu ul {
  margin-bottom: 0;
}

.category-menu nav.category-menu-nav > ul {
  height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.category-menu nav.category-menu-nav > ul > li {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  padding: 0 20px;
}

.category-menu nav.category-menu-nav > ul > li > a {
  font-size: 0.875rem;
  line-height: 44px;
}

.category-menu nav.category-menu-nav > ul > li > a em {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.category-menu nav.category-menu-nav > ul > li > a em:before {
  left: 0.37rem !important;
}

.category-menu nav.submenu-nav {
  background-color: #fff;
  height: 0;
  overflow: hidden;
  position: absolute;
  width: 100%;
  -webkit-transition: height 0.4s ease-in-out;
  transition: height 0.4s ease-in-out;
}

.category-menu nav.submenu-nav #cat_filter {
  margin-bottom: 0;
}

.category-menu nav.submenu-nav .cat-menu {
  padding: 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 940px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  height: 220px;
}

.category-menu nav.submenu-nav .cat-menu .sub-menu {
  -webkit-transition: height 0.2s ease;
  transition: height 0.2s ease;
}

.category-menu nav.submenu-nav .cat-menu .sub-menu a {
  font-size: 0.8125rem;
  white-space: normal;
}

.category-menu nav.submenu-nav .cat-menu .sub-menu a .active,
.category-menu nav.submenu-nav .cat-menu .sub-menu a:hover {
  -webkit-text-stroke: 0.5px #2e2d2c;
}

.category-menu nav.submenu-nav .cat-menu > li {
  -webkit-box-flex: 0;
  -ms-flex: 0 auto;
  flex: 0 auto;
  position: relative;
  background: #fff;
}

.category-menu nav.submenu-nav .cat-menu > li .label,
.category-menu nav.submenu-nav .cat-menu > li > a,
.category-menu nav.submenu-nav .cat-menu > li > span {
  line-height: 1.5rem;
  margin-left: 0;
  font-weight: 700;
  padding: 5px 0;
  color: #000;
}

.category-menu nav.submenu-nav .cat-menu > li .label:hover,
.category-menu nav.submenu-nav .cat-menu > li > a:hover,
.category-menu nav.submenu-nav .cat-menu > li > span:hover {
  text-decoration: none;
  cursor: default;
}

.category-menu nav.submenu-nav .cat-menu > li:nth-child(1) .group,
.category-menu nav.submenu-nav .cat-menu > li:nth-child(1) ul,
.category-menu nav.submenu-nav .cat-menu > li:nth-child(2) .group,
.category-menu nav.submenu-nav .cat-menu > li:nth-child(2) ul {
  -webkit-column-count: 3;
  -moz-column-count: 3;
  column-count: 3;
  -webkit-column-fill: auto;
  -moz-column-fill: auto;
  column-fill: auto;
  height: 90%;
}

@media (min-width: 768px) {
  .category-menu nav.submenu-nav .cat-menu > li:not(:last-child) {
    border-right: 1px solid #dadada;
    margin-right: 15px;
    padding-right: 15px;
  }
}
.category-menu nav.submenu-nav .cat-menu > li:not(:last-child):after {
  content: "";
  margin-right: 25px;
  position: absolute;
  width: 1px;
  height: 90%;
  top: 5%;
  right: 0;
}

.category-menu nav.submenu-nav .cat-menu ul {
  color: #000;
  position: relative;
}

.category-menu nav.submenu-nav .cat-menu ul li {
  padding: 3px 0;
  background: #ffffff;
}

.category-menu nav.submenu-nav .cat-menu ul li:nth-of-type(1n + 16) {
  display: none;
}

.category-menu nav.submenu-nav .cat-menu ul li label {
  margin-bottom: 0;
}

.category-menu .btn-reset {
  padding: 30px;
  margin: 0 auto;
  display: block;
}

@media (min-width: 768px) {
  .category-menu .btn-reset {
    display: none;
  }
}
.archive-product nav.submenu-nav .cat-menu > li:after {
  width: 0 !important;
}

.archive-product nav.submenu-nav .cat-menu > li:nth-child(2) ul {
  -webkit-column-count: 3;
  -moz-column-count: 3;
  column-count: 3;
}

.sort-by {
  margin-left: auto;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.sort-by span {
  margin-right: 10px;
}

.mobile-menu-icons {
  overflow: scroll;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-bottom: 3px solid #eeeded;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

@media (min-width: 768px) {
  .mobile-menu-icons {
    display: none;
  }
}
.mobile-menu-icons.overflows {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.mobile-menu-icons.overflows .icons-wrap {
  padding: 10px 20px;
}

.mobile-menu-icons::-webkit-scrollbar {
  display: none;
}

.mobile-menu-icons .icons-wrap {
  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: 10px 10px;
}

.mobile-menu-icons .active {
  font-weight: 700;
}

.mobile-menu-icons a:not(:last-child) {
  margin-right: 30px;
}

@media (max-width: 767.98px) {
  .mobile-menu-icons a:not(:last-child) {
    margin-right: 20px;
    font-size: 90%;
  }
}
.color-brown .filters-toggle:hover,
.color-orange .filters-toggle:hover,
.color-purple .filters-toggle:hover {
  color: #fff !important;
}

.filters-toggle {
  color: inherit;
  position: absolute;
  right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.filters-toggle:hover {
  color: #2e2d2c;
}

.filters-toggle.open em {
  -webkit-transform: rotate(-90deg) !important;
  transform: rotate(-90deg) !important;
}

.filters-toggle em {
  width: 10px;
  margin-left: 5px;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

@media (min-width: 768px) {
  .filters-toggle {
    display: none;
  }
}
.column-1 + .sub-menu {
  -webkit-column-count: 1 !important;
  -moz-column-count: 1 !important;
  column-count: 1 !important;
}

.column-2 + .sub-menu {
  -webkit-column-count: 2 !important;
  -moz-column-count: 2 !important;
  column-count: 2 !important;
}

.column-3 + .sub-menu {
  -webkit-column-count: 3 !important;
  -moz-column-count: 3 !important;
  column-count: 3 !important;
}

@media (max-width: 767.98px) {
  content > .header {
    display: none;
  }
}
.archive .header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-flex-wrap: wrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  flex-wrap: wrap;
}

.archive .header .filters form,
.archive .header .sort-by form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 0;
}

.archive .header .filters form label:not(:last-child),
.archive .header .sort-by form label:not(:last-child) {
  border-right: 1px solid #c1c1c1;
  padding-right: 9px;
  margin-right: 15px;
}

.archive .header .sort-by form label:not(:last-child) {
  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-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sort-by form label span {
  line-height: 1.875rem;
}

@media (max-width: 767.98px) {
  .archive .header {
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .archive .header.open {
    opacity: 1;
    height: auto;
    max-height: 500px;
  }
  .header .sort-by {
    min-height: unset;
  }
  .archive .header .sort-by form label:not(:last-child) {
    -ms-flex-line-pack: justify;
        align-content: space-between;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media (max-width: 991.98px) {
  .archive .header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.archive .header .woocommerce-notices-wrapper {
  width: 100%;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  margin-top: 50px;
}

.archive .header .woocommerce-notices-wrapper .woocommerce-message {
  margin-bottom: 1em;
}

.archive .header .clear-choices {
  width: 90px;
  color: #0f90ed;
  white-space: normal;
  display: none;
}

@media (max-width: 991.98px) {
  .archive .header .clear-choices {
    width: 100%;
    text-align: center;
    line-height: 50px;
  }
}
@media (max-width: 991.98px) {
  .archive .header .filters {
    -webkit-box-ordinal-group: 4 !important;
    -ms-flex-order: 3 !important;
    order: 3 !important;
  }
}
.archive .header .filters,
.archive .header .sort-by {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  padding: 10px 0;
  min-height: 70px;
  margin-top: 40px;
}

@media (max-width: 991.98px) {
  .archive .header .filters,
  .archive .header .sort-by {
    width: 100%;
    margin-top: 0;
  }
}
@media (max-width: 991.98px) {
  .archive .header .filters form,
  .archive .header .sort-by form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
  }
}
@media (max-width: 991.98px) {
  .archive .header .filters form label:not(:last-child),
  .archive .header .sort-by form label:not(:last-child) {
    border-bottom: 1px solid #c1c1c1;
    border-right: none;
    padding-right: 0;
    margin-right: 0;
  }
}
.archive .header .filters form label span,
.archive .header .sort-by form label span {
  margin-left: 3px;
  font-weight: 700;
  font-size: 0.75rem;
}

.archive .header .filters form .choices,
.archive .header .sort-by form .choices {
  min-width: 160px;
  margin-bottom: 0;
}

@media (max-width: 991.98px) {
  .archive .header .filters form .choices,
  .archive .header .sort-by form .choices {
    min-width: auto;
  }
}
.archive .header .choices .pla,
.archive .header .sort-by {
  font-size: 0.875rem !important;
}

.sort-by {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 10px;
}

.sort-by label {
  border-right: none !important;
}

@media (max-width: 991.98px) {
  .sort-by {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
@media (max-width: 767.98px) {
  .sort-by {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.sort-by form {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 991.98px) {
  .sort-by form {
    width: 100%;
  }
  .sort-by form label {
    width: 100%;
  }
  .sort-by form label:not(:last-child) {
    border-right: none !important;
    padding-right: 0 !important;
    margin-right: 0 !important;
  }
}
.sort-by form .choices {
  margin-bottom: 0;
}

.product--list {
  margin: 0;
  margin-bottom: 40px;
}

.product--list .item {
  background-color: transparent !important;
  padding: 0;
  margin-bottom: 7px !important;
}

@media (min-width: 832px) {
  .product--list .item {
    padding-right: 7px;
  }
}
.product--list .item .background {
  padding: 25px 30px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 !important;
  width: 100%;
}

.product--list .item .background .price {
  color: #0f90ed !important;
  font-size: 0.875rem !important;
}

.product--list .item:nth-child(3n) {
  padding-right: 0;
}

.product--list span {
  font-size: 0.875rem;
  color: #0f90ed;
}

.form-submit {
  display: none !important;
}

.btn-reset {
  font-size: 14px;
  text-decoration: underline;
  margin-left: 5px;
  color: #0f90ed;
}

.btn-reset:hover {
  color: #0f90ed;
}

.choices {
  position: relative;
  margin-bottom: 24px;
  font-size: 16px;
}

.choices:focus {
  outline: 0;
}

.choices:last-child {
  margin-bottom: 0;
}

.choices.is-disabled .choices__inner,
.choices.is-disabled .choices__input {
  background-color: #eaeaea;
  cursor: not-allowed;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.choices.is-disabled .choices__item {
  cursor: not-allowed;
}

.choices [hidden] {
  display: none !important;
}

.choices[data-type*=select-one] {
  cursor: pointer;
}

.choices[data-type*=select-one] .choices__inner {
  padding-bottom: 7.5px;
}

.choices[data-type*=select-one] .choices__input {
  display: block;
  width: 100%;
  padding: 10px;
  border-bottom: 1px solid #ddd;
  background-color: #fff;
  margin: 0;
}

.choices[data-type*=select-one] .choices__button {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==);
  padding: 0;
  background-size: 8px;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -10px;
  margin-right: 25px;
  height: 20px;
  width: 20px;
  border-radius: 10em;
  opacity: 0.5;
}

.choices[data-type*=select-one] .choices__button:focus,
.choices[data-type*=select-one] .choices__button:hover {
  opacity: 1;
}

.choices[data-type*=select-one] .choices__button:focus {
  -webkit-box-shadow: 0 0 0 2px #00bcd4;
  box-shadow: 0 0 0 2px #00bcd4;
}

.choices[data-type*=select-one] .choices__item[data-value=""] .choices__button {
  display: none;
}

.choices[data-type*=select-one]:after {
  content: "";
  height: 0;
  width: 0;
  border-style: solid;
  border-color: #333 transparent transparent transparent;
  border-width: 5px;
  position: absolute;
  right: 11.5px;
  top: 50%;
  margin-top: -2.5px;
  pointer-events: none;
}

.choices[data-type*=select-one].is-open:after {
  border-color: transparent transparent #333 transparent;
  margin-top: -7.5px;
}

.choices[data-type*=select-one][dir=rtl]:after {
  left: 11.5px;
  right: auto;
}

.choices[data-type*=select-one][dir=rtl] .choices__button {
  right: auto;
  left: 0;
  margin-left: 25px;
  margin-right: 0;
}

.choices[data-type*=select-multiple] .choices__inner,
.choices[data-type*=text] .choices__inner {
  cursor: text;
}

.choices[data-type*=select-multiple] .choices__button,
.choices[data-type*=text] .choices__button {
  position: relative;
  display: inline-block;
  margin-top: 0;
  margin-right: -4px;
  margin-bottom: 0;
  margin-left: 8px;
  padding-left: 16px;
  border-left: 1px solid #008fa1;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjRkZGIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==);
  background-size: 8px;
  width: 8px;
  line-height: 1;
  opacity: 0.75;
  border-radius: 0;
}

.choices[data-type*=select-multiple] .choices__button:focus,
.choices[data-type*=select-multiple] .choices__button:hover,
.choices[data-type*=text] .choices__button:focus,
.choices[data-type*=text] .choices__button:hover {
  opacity: 1;
}

.choices__inner {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  background-color: #f9f9f9;
  padding: 7.5px 7.5px 3.75px;
  border: 1px solid #ddd;
  border-radius: 2.5px;
  font-size: 14px;
  min-height: 44px;
  overflow: hidden;
}

.is-focused .choices__inner,
.is-open .choices__inner {
  border-color: #b7b7b7;
}

.is-open .choices__inner {
  border-radius: 2.5px 2.5px 0 0;
}

.is-flipped.is-open .choices__inner {
  border-radius: 0 0 2.5px 2.5px;
}

.choices__list {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.choices__list--single {
  display: inline-block;
  padding: 2px 16px 4px 4px;
  width: 100%;
}

[dir=rtl] .choices__list--single {
  padding-right: 4px;
  padding-left: 16px;
}

.choices__list--single .choices__item {
  width: 100%;
}

.choices__list--multiple {
  display: inline;
}

.choices__list--multiple .choices__item {
  display: inline-block;
  vertical-align: middle;
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 500;
  margin-right: 3.75px;
  margin-bottom: 3.75px;
  background-color: #00bcd4;
  border: 1px solid #00a5bb;
  color: #fff;
  word-break: break-all;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.choices__list--multiple .choices__item[data-deletable] {
  padding-right: 5px;
}

[dir=rtl] .choices__list--multiple .choices__item {
  margin-right: 0;
  margin-left: 3.75px;
}

.choices__list--multiple .choices__item.is-highlighted {
  background-color: #00a5bb;
  border: 1px solid #008fa1;
}

.is-disabled .choices__list--multiple .choices__item {
  background-color: #aaa;
  border: 1px solid #919191;
}

.choices__list--dropdown {
  visibility: hidden;
  z-index: 1;
  position: absolute;
  width: 100%;
  background-color: #fff;
  border: 1px solid #ddd;
  top: 100%;
  margin-top: -1px;
  border-bottom-left-radius: 2.5px;
  border-bottom-right-radius: 2.5px;
  overflow: hidden;
  word-break: break-all;
  will-change: visibility;
}

.choices__list--dropdown.is-active {
  visibility: visible;
}

.is-open .choices__list--dropdown {
  border-color: #b7b7b7;
}

.is-flipped .choices__list--dropdown {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: -1px;
  border-radius: 0.25rem 0.25rem 0 0;
}

.choices__list--dropdown .choices__list {
  position: relative;
  max-height: 300px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  will-change: scroll-position;
}

.choices__list--dropdown .choices__item {
  position: relative;
  padding: 10px;
  font-size: 14px;
}

[dir=rtl] .choices__list--dropdown .choices__item {
  text-align: right;
}

@media (min-width: 640px) {
  .choices__list--dropdown .choices__item--selectable {
    padding-right: 100px;
  }
  .choices__list--dropdown .choices__item--selectable:after {
    content: attr(data-select-text);
    font-size: 12px;
    opacity: 0;
    position: absolute;
    right: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  [dir=rtl] .choices__list--dropdown .choices__item--selectable {
    text-align: right;
    padding-left: 100px;
    padding-right: 10px;
  }
  [dir=rtl] .choices__list--dropdown .choices__item--selectable:after {
    right: auto;
    left: 10px;
  }
}
.choices__list--dropdown .choices__item--selectable.is-highlighted {
  background-color: #f2f2f2;
}

.choices__list--dropdown .choices__item--selectable.is-highlighted:after {
  opacity: 0.5;
}

.choices__item {
  cursor: default;
}

.choices__item--selectable {
  cursor: pointer;
}

.choices__item--disabled {
  cursor: not-allowed;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  opacity: 0.5;
}

.choices__heading {
  font-weight: 600;
  font-size: 12px;
  padding: 10px;
  border-bottom: 1px solid #f7f7f7;
  color: gray;
}

.choices__button {
  text-indent: -9999px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}

.choices__button:focus {
  outline: 0;
}

.choices__input {
  display: inline-block;
  vertical-align: baseline;
  background-color: #f9f9f9;
  font-size: 14px;
  margin-bottom: 5px;
  border: 0;
  border-radius: 0;
  max-width: 100%;
  padding: 4px 0 4px 2px;
}

.choices__input:focus {
  outline: 0;
}

[dir=rtl] .choices__input {
  padding-right: 2px;
  padding-left: 0;
}

.choices__placeholder {
  opacity: 0.5;
}

.choices {
  position: relative;
}

.choices:last-child {
  margin-bottom: 24px;
}

.choices__inner {
  border: none;
  background-color: transparent;
  padding-left: 0;
  padding: 0 !important;
  min-height: 25px;
}

.choices__inner .choices__list--single {
  padding-right: 25px;
}

.choices__inner .choices__list--single .choices__item--selectable {
  opacity: 1;
  font-weight: 400;
  font-size: 0.875rem;
  color: #595959;
}

.choices .choices__list--dropdown .choices__item--selectable {
  padding-right: 10px !important;
  opacity: 1;
}

.choices .choices__list--dropdown .choices__item--selectable:not(:last-child) {
  border-bottom: 1px solid #d3d3d3;
}

.choices[data-type*=select-one]::after {
  margin-top: -4px;
  border-color: #c1c1c1 transparent transparent transparent;
}

.choices[data-type*=select-one].is-open::after {
  margin-top: -10px;
}

.choices__list--multiple .choices__item {
  background-color: #6f6f6e;
  border-color: #6f6f6e !important;
}

.choices[data-type=select-multiple] input {
  width: 10px !important;
  border: none !important;
  background-color: transparent !important;
}

.choices .choices__list choices__list--dropdown {
  background-color: #6f6f6e;
  border: none !important;
}

select.choices {
  display: none;
}

.archive-home .category-menu,
.page .category-menu,
.tax-product_cat .category-menu,
.tax-product_line .category-menu {
  height: 44px;
}

@media (max-width: 767.98px) {
  .archive-home .category-menu,
  .page .category-menu,
  .tax-product_cat .category-menu,
  .tax-product_line .category-menu {
    height: 50px;
    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;
  }
}
@media (max-width: 767.98px) {
  .archive-home .category-menu .category-menu-nav,
  .archive-home .category-menu .submenu-nav,
  .page .category-menu .category-menu-nav,
  .page .category-menu .submenu-nav,
  .tax-product_cat .category-menu .category-menu-nav,
  .tax-product_cat .category-menu .submenu-nav,
  .tax-product_line .category-menu .category-menu-nav,
  .tax-product_line .category-menu .submenu-nav {
    display: none;
  }
  .choices__list--dropdown {
    right: 0;
    width: 80vw;
  }
}
.archive-home .category-menu h1,
.page .category-menu h1,
.tax-product_cat .category-menu h1,
.tax-product_line .category-menu h1 {
  font-size: 1.25rem;
  font-weight: 700;
  color: inherit;
  margin: 0;
}

@media (min-width: 768px) {
  .archive-home .category-menu h1,
  .page .category-menu h1,
  .tax-product_cat .category-menu h1,
  .tax-product_line .category-menu h1 {
    display: none;
  }
}
.mobile-product-links {
  border-bottom: 6px solid #f6f6f6;
  padding: 20px 0;
}

.mobile-product-links a:first-child {
  margin-right: 20px;
}

.single-product .content {
  padding-top: 50px;
}

.single-product .content > .product {
  margin-bottom: 20px;
}

@media (max-width: 1199.98px) {
  .single-product .content > .product {
    margin-bottom: 80px;
  }
}
.single-product .content .grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
}

@media (min-width: 992px) {
  .single-product .content .grid {
    display: -ms-grid;
    display: grid;
    grid-gap: 15px;
    -ms-grid-columns: 1fr 30px 1fr 30px 1fr 30px 1fr 30px 1fr 30px 1fr 30px 1fr 30px 1fr 30px 1fr 30px 1fr 30px 1fr 30px 1fr 30px 1fr 30px 1fr 30px 1fr 30px 1fr 30px 1fr 30px 1fr 30px 1fr 30px 1fr 30px 1fr 30px 1fr 30px 1fr 30px 1fr;
    grid-template-columns: repeat(24, 1fr);
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    grid-column-gap: 30px;
    grid-row-gap: 20px;
  }
  .single-product .content .grid > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .single-product .content .grid > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .single-product .content .grid > *:nth-child(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
  }
  .single-product .content .grid > *:nth-child(4) {
    -ms-grid-row: 1;
    -ms-grid-column: 7;
  }
  .single-product .content .grid > *:nth-child(5) {
    -ms-grid-row: 1;
    -ms-grid-column: 9;
  }
  .single-product .content .grid > *:nth-child(6) {
    -ms-grid-row: 1;
    -ms-grid-column: 11;
  }
  .single-product .content .grid > *:nth-child(7) {
    -ms-grid-row: 1;
    -ms-grid-column: 13;
  }
  .single-product .content .grid > *:nth-child(8) {
    -ms-grid-row: 1;
    -ms-grid-column: 15;
  }
  .single-product .content .grid > *:nth-child(9) {
    -ms-grid-row: 1;
    -ms-grid-column: 17;
  }
  .single-product .content .grid > *:nth-child(10) {
    -ms-grid-row: 1;
    -ms-grid-column: 19;
  }
  .single-product .content .grid > *:nth-child(11) {
    -ms-grid-row: 1;
    -ms-grid-column: 21;
  }
  .single-product .content .grid > *:nth-child(12) {
    -ms-grid-row: 1;
    -ms-grid-column: 23;
  }
  .single-product .content .grid > *:nth-child(13) {
    -ms-grid-row: 1;
    -ms-grid-column: 25;
  }
  .single-product .content .grid > *:nth-child(14) {
    -ms-grid-row: 1;
    -ms-grid-column: 27;
  }
  .single-product .content .grid > *:nth-child(15) {
    -ms-grid-row: 1;
    -ms-grid-column: 29;
  }
  .single-product .content .grid > *:nth-child(16) {
    -ms-grid-row: 1;
    -ms-grid-column: 31;
  }
  .single-product .content .grid > *:nth-child(17) {
    -ms-grid-row: 1;
    -ms-grid-column: 33;
  }
  .single-product .content .grid > *:nth-child(18) {
    -ms-grid-row: 1;
    -ms-grid-column: 35;
  }
  .single-product .content .grid > *:nth-child(19) {
    -ms-grid-row: 1;
    -ms-grid-column: 37;
  }
  .single-product .content .grid > *:nth-child(20) {
    -ms-grid-row: 1;
    -ms-grid-column: 39;
  }
  .single-product .content .grid > *:nth-child(21) {
    -ms-grid-row: 1;
    -ms-grid-column: 41;
  }
  .single-product .content .grid > *:nth-child(22) {
    -ms-grid-row: 1;
    -ms-grid-column: 43;
  }
  .single-product .content .grid > *:nth-child(23) {
    -ms-grid-row: 1;
    -ms-grid-column: 45;
  }
  .single-product .content .grid > *:nth-child(24) {
    -ms-grid-row: 1;
    -ms-grid-column: 47;
  }
}
.single-product .content .grid--a {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 3;
  -ms-grid-column-span: 10;
  grid-area: 1/3/4/13;
  padding: 0 0;
  max-width: 100%;
  -ms-grid-row-align: start;
      align-self: start;
}

.single-product .content .grid--b {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 13;
  -ms-grid-column-span: 9;
  grid-area: 1/13/2/22;
}

.single-product .content .grid--c {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 13;
  -ms-grid-column-span: 9;
  grid-area: 2/13/3/22;
}

.single-product .content .title-label {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--category-color);
}

.single-product .content .product-symbol {
  font-weight: 700;
  font-size: 1.375rem;
  color: var(--category-color);
}

.single-product .content .product-symbol > div {
  color: #0f90ed !important;
  font-size: 10px;
}

.single-product .content .product_meta {
  display: none;
}

.single-product .content .quantity {
  /*  display: none !important; */
  border: 1px solid #EFEFF0;
  margin-left: 15px;
}
.single-product .content .quantity .minus, .single-product .content .quantity .plus {
  font-size: 1.125rem;
  height: 45px;
}
.single-product .content .quantity .minus:hover, .single-product .content .quantity .plus:hover {
  color: #0f90ed;
}
.single-product .content .quantity .minus {
  padding: 0 0 0 8px;
}
.single-product .content .quantity .plus {
  padding: 0 8px 0 0;
}
.single-product .content .quantity .input-text.qty.text {
  width: 3.5em;
  border: 0px;
}

.single-product .content .single_variation_wrap {
  margin-top: 30px;
}

.single-product .content .single_add_to_cart_button {
  background-color: #0f90ed !important;
  color: #fff !important;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 1.1em 1em;
  border-radius: 4px;
  line-height: 1.125rem;
}
.single-product .content .single_add_to_cart_button:hover {
  -webkit-filter: brightness(1.2);
          filter: brightness(1.2);
}
.single-product .content .single_add_to_cart_button.disabled {
  padding: 1.1em 1em !important;
}

.single-product .content h1 {
  color: var(--category-text-color);
}

.single-product .cat {
  min-height: 48px;
}

.single-product .cat span {
  display: block;
}

.single-product .cat span:first-child {
  font-size: 0.625rem;
  color: #0f90ed;
  line-height: 0.9375rem;
  height: 12px;
}

.single-product .cat span:last-child {
  font-size: 1.375rem;
  line-height: 1.375rem;
  font-weight: 700;
  color: var(--category-color);
}

.single-product .woocommerce-product-details__short-description p {
  font-weight: 700;
}

.single-product .woocommerce-product-details__short-description.product-description p {
  font-size: 1rem;
  margin-bottom: 0;
}

.single-product .woocommerce-product-details__short-description.product-description + p {
  font-size: 1rem;
}

.add-to-whishlist {
  width: 20px;
  height: 20px;
  margin-top: 10px;
}

.add-to-whishlist .cls-heart {
  fill: var(--category-color);
}

.yith-wcwl-add-to-wishlist {
  margin-top: 10px;
}

.yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse i,
.yith-wcwl-add-to-wishlist i {
  font-size: 22px;
  color: var(--category-color);
}

.select-css {
  width: 300px !important;
  min-width: 300px !important;
  display: block;
  font-size: 16px;
  color: #000000;
  line-height: 1.3;
  padding: 0.6em 1.4em 0.5em 0.8em;
  width: 100%;
  max-width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  border: 1px solid #aaa;
  border-radius: 0;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat, repeat;
  background-position: right 0.7em top 50%, 0 0;
  background-size: 0.65em auto, 100%;
}

.select-css:-ms-expand {
  display: none;
}

.select-css:hover {
  border-color: #888;
}

.select-css:focus {
  border-color: #aaa;
  -webkit-box-shadow: 0 0 1px 3px rgba(59, 153, 252, 0.7);
  box-shadow: 0 0 1px 3px rgba(59, 153, 252, 0.7);
  box-shadow: 0 0 0 3px -moz-mac-focusring;
  color: #222;
  outline: 0;
}

.select-css option {
  font-weight: 400;
}

.woocommerce div.product div.images .woocommerce-product-gallery__wrapper:after {
  content: "";
  clear: both;
  display: table;
}

.woocommerce div.product div.images .flex-control-thumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.woocommerce div.product div.images .flex-control-thumbs li {
  float: none !important;
  padding: 3px;
  width: 15%;
}

.woocommerce div.product div.images .flex-control-thumbs li img {
  opacity: 1;
}

.woocommerce div.product div.images .flex-control-thumbs li img .flex-active {
  border: 1px solid #6f6f6e;
}

.woocommerce #content div.product div.images,
.woocommerce div.product div.images,
.woocommerce-page #content div.product div.images,
.woocommerce-page div.product div.images {
  float: none !important;
  width: auto !important;
}

.for-prof {
  color: #0f90ed;
  margin-top: 20px;
}

.woocommerce div.product p.price {
  font-size: 1rem;
  /*  color: var(--category-text-color); */
  color: #0f90ed;
}

.woocommerce div.product p.price > * {
  font-size: 1rem;
  /*  color: var(--category-text-color); */
  color: #0f90ed;
}

.wwp-wholesale-pricing-details {
  display: none !important;
}

.variations_form [for=pa_size] {
  font-weight: 700;
}

.variations_form [for=pa_size]:after {
  content: ":";
  display: inline-block;
}

.variations_form .reset_variations {
  display: none !important;
}

.archive-product .category-menu-nav {
  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;
  position: relative;
}

.archive-product .category-menu-nav h1 {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

@media (min-width: 768px) {
  .archive-product .category-menu-nav h1 {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .archive-product .category-menu-nav ul {
    right: 15px;
    position: absolute;
  }
}
@media (max-width: 767.98px) {
  .archive-product .category-menu-nav ul li:nth-child(2) {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .archive-product .category-menu-nav ul li a span {
    display: none;
  }
}
.archive-product .category-menu-nav ul li a:before {
  content: attr(data-altname);
  width: 10px;
}

@media (min-width: 768px) {
  .archive-product .category-menu-nav ul li a:before {
    display: none;
  }
}
.dummy .background {
  -webkit-animation-name: fade_in;
  animation-name: fade_in;
  -webkit-animation-duration: 0.7s;
  animation-duration: 0.7s;
  background-color: #f6f6f6;
}

.dummy .background * {
  background-color: #eee !important;
}

.dummy .cat {
  width: 40px;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

.dummy figure {
  width: 80%;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.dummy .title {
  width: 100px !important;
  height: 16px;
  margin-bottom: 10px;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.dummy p {
  width: 180px;
  max-width: 120px !important;
  height: 40px !important;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.dummy button {
  width: 97px;
  height: 18px !important;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

@-webkit-keyframes fade_in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade_in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes open_out_cat {
  from {
    width: 30px;
  }
  to {
    width: 40px;
  }
}
@keyframes open_out_cat {
  from {
    width: 30px;
  }
  to {
    width: 40px;
  }
}
@-webkit-keyframes open_out_fig {
  from {
    width: 50%;
  }
  to {
    width: 80%;
  }
}
@keyframes open_out_fig {
  from {
    width: 50%;
  }
  to {
    width: 80%;
  }
}
@-webkit-keyframes open_out_title {
  from {
    width: 80px;
  }
  to {
    width: 100px;
  }
}
@keyframes open_out_title {
  from {
    width: 80px;
  }
  to {
    width: 100px;
  }
}
@-webkit-keyframes open_out_p {
  from {
    width: 130px;
  }
  to {
    width: 180px;
  }
}
@keyframes open_out_p {
  from {
    width: 130px;
  }
  to {
    width: 180px;
  }
}
@-webkit-keyframes open_out_button {
  from {
    width: 60px;
  }
  to {
    width: 97px;
  }
}
@keyframes open_out_button {
  from {
    width: 60px;
  }
  to {
    width: 97px;
  }
}
.single-post main.content,
.category-blog main.content,
.page-template-template-boxed main.content,
.page-template-template-my-account main.content {
  margin-top: 50px;
  margin-bottom: 50px;
}
.single-post main.content header,
.category-blog main.content header,
.page-template-template-boxed main.content header,
.page-template-template-my-account main.content header {
  text-align: center;
  margin-bottom: 20px;
}
.single-post main.content header h1, .single-post main.content header .page-title,
.category-blog main.content header h1,
.category-blog main.content header .page-title,
.page-template-template-boxed main.content header h1,
.page-template-template-boxed main.content header .page-title,
.page-template-template-my-account main.content header h1,
.page-template-template-my-account main.content header .page-title {
  font-size: 3rem;
  font-weight: 700;
}
.single-post main.content header p,
.category-blog main.content header p,
.page-template-template-boxed main.content header p,
.page-template-template-my-account main.content header p {
  font-size: 1rem;
  line-height: 1.875rem;
}
.single-post main.content header h2,
.category-blog main.content header h2,
.page-template-template-boxed main.content header h2,
.page-template-template-my-account main.content header h2 {
  text-align: left;
  font-size: 3rem;
  font-weight: 700;
}
.single-post main.content header h2.post-title,
.category-blog main.content header h2.post-title,
.page-template-template-boxed main.content header h2.post-title,
.page-template-template-my-account main.content header h2.post-title {
  font-size: 1.5rem;
  font-weight: 700;
}

.single-post main.content p {
  font-size: 18px;
}

.single-post main.content .swiper-slide p {
  font-size: 0.875rem;
}

/*.page-template-template-boxed main.content header,
.page-template-template-my-account main.content header {

}
.page-template-template-boxed main.content header h1,
.page-template-template-my-account main.content header h1 {

}*/
@media (max-width: 767.98px) {
  .page-template-template-boxed main.content header h1,
  .page-template-template-my-account main.content header h1,
  .single-post main.content header h1 {
    font-size: 2.375rem;
  }
}
/*.page-template-template-boxed main.content p,
.page-template-template-my-account main.content p {

}
.page-template-template-boxed h2,
.page-template-template-my-account h2 {

}
*/
.wwp_wholesaler_registration .row {
  display: block;
} /*!
* Accordion v2.8.0
* Simple accordion created in pure Javascript.
* https://github.com/michu2k/Accordion
*
* Copyright 2017-2019 Michał Strumpf
* Published under MIT License
*/
.ac {
  margin-top: 10px;
  border: 1px solid #ddd;
  background-color: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.ac > .ac-q {
  font-size: 16px;
  font-weight: 600;
  color: #111;
  padding: 10px 30px 10px 10px;
  margin: 0;
  text-decoration: none;
  display: block;
  cursor: pointer;
  position: relative;
}

.ac > .ac-q::after {
  content: "+";
  text-align: center;
  width: 15px;
  right: 10px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  position: absolute;
}

.ac > .ac-a {
  overflow: hidden;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}

.ac > .ac-a p {
  font: 16px/24px AvertaPE, Arial, sans-serif;
  color: #777;
  margin: 0;
  /* padding: 10px;*/
}

.ac.js-enabled > .ac-a {
  visibility: hidden;
}

.ac.is-active > .ac-a {
  visibility: visible;
}

.ac.is-active > .ac-q::after {
  content: "–";
}

.accordion-container .ac {
  border: none;
  border-top: 1px solid #dadada;
  margin-top: 0;
  padding: 10px 0;
  text-align: left;
  color: #2e2d2c;
}

.accordion-container .ac .wrap {
  padding: 20px 90px 30px;
}

@media (max-width: 831.98px) {
  .accordion-container .ac .wrap {
    padding: 20px 10px 30px;
  }
  .ac > .ac-a p {
    padding: 10px 0;
  }
  .ac > .ac-a p:first-child {
    padding-top: 0px;
  }
}
.accordion-container .ac h2:focus {
  outline: 0;
}

.accordion-container .ac:last-child {
  border-bottom: 1px solid #dadada;
  margin-bottom: 20px;
}

.accordion-container .ac-q {
  font-size: 1.25rem;
  color: #111;
  padding: 10px 10px 10px 10px !important;
}

.accordion-container .ac-a p {
  color: #2e2d2c;
  font-family: AvertaPE !important;
}

.accordion-container .ac-a p:first-child {
  /* margin-top: 10px; */
  margin-top: 0px;
}

.accordion-container .ac-a p:last-child {
  margin-bottom: 5px;
}

.countries {
  padding-top: 70px;
  padding-bottom: 70px;
}

.countries header {
  text-align: center;
  padding-bottom: 60px;
}

.countries header h2 {
  font-size: 1.625rem;
  font-weight: 600;
}

.countries .category:nth-child(n+1) {
  margin-top: 40px;
}

.countries .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.countries .item {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 33%;
  flex: 0 1 33%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  margin-bottom: 40px;
}

@media (max-width: 831.98px) {
  .countries .item {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 50%;
    flex: 1 0 50%;
  }
}
@media (max-width: 575.98px) {
  .countries .item {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
    padding-left: 10px;
    padding-right: 10px;
  }
}
.countries .item .empty,
.countries .item img {
  width: 35px;
  height: 35px;
  margin-right: 10px;
}

.countries .item .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.countries .item .info.push {
  margin-left: 45px;
}

.countries .item .info span {
  font-size: 0.875rem;
}

.countries .item .info span:first-child {
  font-weight: 700;
  font-size: 1.25rem;
}

.findUs.banner-wrap {
  border-bottom: none;
}

.findUs.banner--main header {
  max-width: 460px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  z-index: 2;
}

@media (max-width: 767.98px) {
  .woocommerce span.onsale {
    top: 20vh;
    left: 2vh;
    bottom: unset;
  }
  .findUs.banner--main header {
    color: #2e2d2c;
  }
}
.findUs.banner--main header h2 {
  max-width: 460px;
  text-shadow: 0 2px 20px #000;
}

.findUs .select-css {
  color: #2e2d2c;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%207.3%2016%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3A%23706f6f%3Bfill-rule%3Aevenodd%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Ctitle%3Eicon-double-arrow%3C%2Ftitle%3E%3Cg%20id%3D%22Layer_2%22%20data-name%3D%22Layer%202%22%3E%3Cg%20id%3D%22Layer_1-2%22%20data-name%3D%22Layer%201%22%3E%3Cpolygon%20class%3D%22cls-1%22%20points%3D%223.65%2016%207.3%2011%200%2011%203.65%2016%22%2F%3E%3Cpolygon%20class%3D%22cls-1%22%20points%3D%223.65%200%207.3%205%200%205%203.65%200%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

#find-map {
  width: 100%;
  height: 450px !important;
}

.contact-info {
  margin-top: 60px;
  margin-bottom: 80px;
}

.contact-info h3 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 24px;
  color: #000100;
  display: inline-block;
}

.contact-info h3:after {
  content: "";
  height: 1px;
  width: 100%;
  background-color: #cccccb;
  position: absolute;
  left: 0;
  margin-top: 35px;
}

@media (max-width: 767.98px) {
  .contact-info h3:after {
    margin-left: 15px;
    margin-right: 15px;
    width: 90%;
  }
}
.contact-info .icon-info {
  width: 20px;
  height: 20px;
  color: grey;
  display: inline-block;
  text-align: center;
  border: 1px solid grey;
  border-radius: 10px;
  margin-left: 20px;
  line-height: 19px;
}

.contact-info .list {
  margin-top: 45px;
}

@media (min-width: 768px) {
  .contact-info .list {
    margin-top: 0;
    max-height: 700px;
    overflow-y: auto;
  }
}
.contact-info .marker-list:not(:first-child) {
  margin-top: 45px;
}

.contact-info .marker-info {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  margin-bottom: 20px;
}

.contact-info .marker-info .marker {
  color: #fff;
  text-align: center;
  line-height: 30px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 23 28'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:%23622066;fill-rule:evenodd;%7D%3C/style%3E%3C/defs%3E%3Ctitle%3Eicon-marker%3C/title%3E%3Cg id='Layer_2' data-name='Layer 2'%3E%3Cg id='Layer_1-2' data-name='Layer 1'%3E%3Cpath class='cls-1' d='M3.37,3.44a12,12,0,0,0,0,16.63l7.48,7.65a.9.9,0,0,0,1.3,0l7.48-7.65a12,12,0,0,0,0-16.63A11.32,11.32,0,0,0,3.37,3.44Z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  width: 25px;
  height: 30px;
}

.contact-info .marker-info .info {
  margin-left: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.contact-info .marker-info .info span {
  font-size: 0.875rem;
  line-height: 17px;
  padding: 2px;
}

.contact-info .marker-info .info span:first-child {
  font-weight: 700;
}

.contact-info .dummy h3 {
  width: 105px;
  height: 24px;
  background-color: #f6f6f6;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: fade_in;
  animation-name: fade_in;
}

.contact-info .dummy h3:after {
  background-color: #f6f6f6;
}

.contact-info .dummy .icon-info {
  background-color: #f6f6f6;
  border: none;
}

.contact-info .dummy .icon-info:hover {
  cursor: pointer;
}

.contact-info .dummy .marker-info .marker {
  background-image: none !important;
  background-color: #f6f6f6 !important;
}

.contact-info .dummy .marker-info .info span {
  width: 190px;
  background-color: #f6f6f6;
  height: 16px;
  margin-bottom: 5px;
}

@keyframes fade_in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.tooltip {
  display: inline-block;
  position: relative;
  border-bottom: 1px dotted #666;
  text-align: left;
}

.tooltip:hover {
  cursor: pointer;
}

.tooltip .info-text {
  min-width: 200px;
  left: 50%;
  -webkit-transform: translate(-50%, -100%);
  transform: translate(-50%, -100%);
  padding: 10px 20px;
  color: #444;
  background-color: #eee;
  font-weight: 400;
  font-size: 13px;
  border-radius: 8px;
  position: absolute;
  z-index: 99999999;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
  display: none;
}

.tooltip .top {
  top: -20px;
}

.tooltip .top i::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
  background-color: #eee;
  -webkit-box-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

.tooltip .bottom {
  bottom: -100px;
}

.tooltip .bottom i::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
  background-color: #eee;
  -webkit-box-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

.tooltip:hover .info-text {
  display: block;
}

.tooltip .bottom > i {
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -12px;
  width: 24px;
  height: 12px;
  overflow: hidden;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.tooltip .top > i {
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -12px;
  width: 24px;
  height: 12px;
  overflow: hidden;
}

.milestone.banner--main.center header {
  max-width: 100%;
}

@media (max-width: 767.98px) {
  .milestone.banner--main.center header {
    color: #2e2d2c;
  }
}
.milestone.banner--main.center header h2 {
  max-width: 100%;
}

@media (max-width: 767.98px) {
  .milestone.banner--main.center header h2 {
    font-size: 2.5rem !important;
  }
}
.milestone-grid {
  margin-top: 60px;
}

.milestone-grid .container {
  padding-left: 25px;
  padding-right: 25px;
}

.milestone-grid .milestone-list {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  grid-gap: 40px;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  margin-top: 60px;
}

@media screen and (max-width: 1023px) {
  .milestone-grid .milestone-list {
    -ms-grid-columns: none;
    grid-template-columns: none;
  }
}
.milestone-grid .milestone-list img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.milestone-grid .milestone-list img:first-of-type {
  -ms-grid-column: 1;
      grid-column-start: 1;
  -ms-grid-column-span: 2;
  grid-column-end: 3;
  -ms-grid-row: 1;
  -ms-grid-row-span: 7;
  grid-row: 1/8;
}

@media screen and (max-width: 1023px) {
  .milestone-grid .milestone-list img:first-of-type {
    -ms-grid-column: 1;
    -ms-grid-column-span: 7;
    grid-column: 1/8;
    -ms-grid-row: 8;
    -ms-grid-row-span: 4;
    grid-row: 8/12;
    width: 380px;
    height: 450px;
    margin: 0 auto;
  }
}
.milestone-grid .milestone-list img:nth-of-type(2) {
  -ms-grid-column: 3;
      grid-column-start: 3;
  -ms-grid-column-span: 2;
  grid-column-end: 5;
  -ms-grid-row: 9;
  -ms-grid-row-span: 9;
  grid-row: 9/18;
}

@media screen and (max-width: 1023px) {
  .milestone-grid .milestone-list img:nth-of-type(2) {
    -ms-grid-column: 1;
    -ms-grid-column-span: 7;
    grid-column: 1/8;
    -ms-grid-row: 13;
    -ms-grid-row-span: 2;
    grid-row: 13/15;
    width: 380px;
    height: 450px;
    margin: 0 auto;
  }
}
.milestone-grid .milestone-list img:nth-of-type(3) {
  -ms-grid-column: 1;
      grid-column-start: 1;
  -ms-grid-column-span: 4;
  grid-column-end: 5;
  -ms-grid-row: 18;
  -ms-grid-row-span: 2;
  grid-row: 18/20;
}

@media screen and (max-width: 1023px) {
  .milestone-grid .milestone-list img:nth-of-type(3) {
    -ms-grid-row: 17;
    -ms-grid-row-span: 2;
    grid-row: 17/19;
    -ms-grid-column: 1;
    -ms-grid-column-span: 7;
    grid-column: 1/8;
    width: 380px;
    height: 450px;
    margin: 0 auto;
  }
}
.milestone-grid .milestone-list img:nth-of-type(4) {
  -ms-grid-column: 1;
      grid-column-start: 1;
  -ms-grid-column-span: 2;
  grid-column-end: 3;
  -ms-grid-row: 20;
  -ms-grid-row-span: 2;
  grid-row: 20/22;
  width: 350px;
  height: 340px;
}

@media screen and (max-width: 1023px) {
  .milestone-grid .milestone-list img:nth-of-type(4) {
    -ms-grid-row: 20;
    -ms-grid-row-span: 2;
    grid-row: 20/22;
    -ms-grid-column: 1;
    -ms-grid-column-span: 7;
    grid-column: 1/8;
    width: 380px;
    height: 450px;
    margin: 0 auto;
  }
}
.milestone-grid .milestone-list img:nth-of-type(5) {
  -ms-grid-column: 3;
      grid-column-start: 3;
  -ms-grid-column-span: 2;
  grid-column-end: 5;
  -ms-grid-row: 20;
  -ms-grid-row-span: 10;
  grid-row: 20/30;
}

@media screen and (max-width: 1023px) {
  .milestone-grid .milestone-list img:nth-of-type(5) {
    -ms-grid-row: 24;
    -ms-grid-row-span: 2;
    grid-row: 24/26;
    -ms-grid-column: 1;
    -ms-grid-column-span: 7;
    grid-column: 1/8;
    width: 380px;
    height: 600px;
    margin: 0 auto;
  }
}
.milestone-grid .milestone-list img:nth-of-type(6) {
  -ms-grid-column: 3;
      grid-column-start: 3;
  -ms-grid-column-span: 5;
  grid-column-end: 8;
  -ms-grid-row: 30;
  -ms-grid-row-span: 2;
  grid-row: 30/32;
}

@media screen and (max-width: 1023px) {
  .milestone-grid .milestone-list img:nth-of-type(6) {
    -ms-grid-row: 28;
    -ms-grid-row-span: 2;
    grid-row: 28/30;
    -ms-grid-column: 1;
    -ms-grid-column-span: 7;
    grid-column: 1/8;
    width: 380px;
    height: 600px;
    margin: 0 auto;
  }
}
.milestone-grid .milestone-list span {
  display: block;
}

.milestone-grid .milestone-list ul {
  -ms-grid-column: 3;
      grid-column-start: 3;
  -ms-grid-column-span: 5;
  grid-column-end: 8;
  -ms-grid-row: 1;
      grid-row-start: 1;
  -ms-grid-row-span: 7;
  grid-row-end: 8;
}

@media screen and (max-width: 1023px) {
  .milestone-grid .milestone-list ul {
    -ms-grid-column: 1;
    -ms-grid-column-span: 7;
    grid-column: 1/8;
  }
}
.milestone-grid .milestone-list li {
  margin-bottom: 35px;
}

@media (max-width: 767.98px) {
  .milestone-grid .milestone-list li {
    padding-left: 10px;
    padding-right: 10px;
    margin-left: 0;
  }
}
.milestone-grid .milestone-list .year {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 25px;
}

.milestone-grid .milestone-list .info {
  font-size: 1rem;
  line-height: 29px;
}

.milestone-grid .milestone-list .txt-left {
  -ms-grid-column: 1;
      grid-column-start: 1;
  -ms-grid-column-span: 2;
  grid-column-end: 3;
}

.milestone-grid .milestone-list .txt-left:nth-of-type(1) {
  -ms-grid-row: 9;
  -ms-grid-row-span: 2;
  grid-row: 9/11;
}

@media screen and (max-width: 1023px) {
  .milestone-grid .milestone-list .txt-left:nth-of-type(1) {
    -ms-grid-row: 12;
    -ms-grid-row-span: 1;
    grid-row: 12/13;
    -ms-grid-column: 1;
    -ms-grid-column-span: 7;
    grid-column: 1/8;
    margin: 0 auto;
  }
}
.milestone-grid .milestone-list .txt-left:nth-of-type(7) {
  -ms-grid-row: 22;
  -ms-grid-row-span: 2;
  grid-row: 22/24;
}

@media screen and (max-width: 1023px) {
  .milestone-grid .milestone-list .txt-left:nth-of-type(7) {
    -ms-grid-row: 22;
    -ms-grid-row-span: 1;
    grid-row: 22/23;
    -ms-grid-column: 1;
    -ms-grid-column-span: 7;
    grid-column: 1/8;
    margin: 0 auto;
  }
}
.milestone-grid .milestone-list .txt-right {
  -ms-grid-column: 5;
      grid-column-start: 5;
  -ms-grid-column-span: 3;
  grid-column-end: 8;
  -ms-grid-row: 14;
  -ms-grid-row-span: 3;
  grid-row: 14/17;
}

.milestone-grid .milestone-list .txt-right:nth-of-type(2) {
  -ms-grid-row: 14;
      grid-row-start: 14;
  -ms-grid-row-span: 3;
  grid-row-end: 17;
}

@media screen and (max-width: 1023px) {
  .milestone-grid .milestone-list .txt-right:nth-of-type(2) {
    -ms-grid-row: 15;
    -ms-grid-row-span: 2;
    grid-row: 15/17;
    -ms-grid-column: 1;
    -ms-grid-column-span: 7;
    grid-column: 1/8;
    margin: 0 auto;
  }
}
.milestone-grid .milestone-list .txt-right:nth-of-type(3) {
  -ms-grid-row: 18;
      grid-row-start: 18;
  -ms-grid-row-span: 2;
  grid-row-end: 20;
}

@media screen and (max-width: 1023px) {
  .milestone-grid .milestone-list .txt-right:nth-of-type(3) {
    -ms-grid-row: 19;
    -ms-grid-row-span: 1;
    grid-row: 19/20;
    -ms-grid-column: 1;
    -ms-grid-column-span: 7;
    grid-column: 1/8;
    margin: 0 auto;
  }
}
.milestone-grid .milestone-list .txt-right:nth-of-type(4) {
  -ms-grid-row: 20;
      grid-row-start: 20;
  -ms-grid-row-span: 2;
  grid-row-end: 22;
}

@media screen and (max-width: 1023px) {
  .milestone-grid .milestone-list .txt-right:nth-of-type(4) {
    -ms-grid-row: 23;
    -ms-grid-row-span: 1;
    grid-row: 23/24;
    -ms-grid-column: 1;
    -ms-grid-column-span: 7;
    grid-column: 1/8;
    margin: 0 auto;
  }
}
.milestone-grid .milestone-list .txt-right:nth-of-type(5) {
  -ms-grid-row: 22;
      grid-row-start: 22;
  -ms-grid-row-span: 2;
  grid-row-end: 24;
}

@media screen and (max-width: 1023px) {
  .milestone-grid .milestone-list .txt-right:nth-of-type(5) {
    -ms-grid-row: 26;
    -ms-grid-row-span: 1;
    grid-row: 26/27;
    -ms-grid-column: 1;
    -ms-grid-column-span: 7;
    grid-column: 1/8;
    margin: 0 auto;
  }
}
.milestone-grid .milestone-list .txt-right:nth-of-type(6) {
  -ms-grid-row: 24;
      grid-row-start: 24;
  -ms-grid-row-span: 2;
  grid-row-end: 26;
}

@media screen and (max-width: 1023px) {
  .milestone-grid .milestone-list .txt-right:nth-of-type(6) {
    -ms-grid-row: 27;
    -ms-grid-row-span: 1;
    grid-row: 27/28;
    -ms-grid-column: 1;
    -ms-grid-column-span: 7;
    grid-column: 1/8;
    margin: 0 auto;
  }
}
.milestone-grid .milestone-list .txt-right:nth-of-type(8) {
  -ms-grid-column: 1;
      grid-column-start: 1;
  -ms-grid-column-span: 2;
  grid-column-end: 3;
  -ms-grid-row: 30;
  -ms-grid-row-span: 2;
  grid-row: 30/32;
}

@media screen and (max-width: 1023px) {
  .milestone-grid .milestone-list .txt-right:nth-of-type(8) {
    -ms-grid-row: 30;
    -ms-grid-row-span: 1;
    grid-row: 30/31;
    -ms-grid-column: 1;
    -ms-grid-column-span: 7;
    grid-column: 1/8;
    margin: 0 auto;
    text-align: left !important;
  }
}
.milestone-grid .milestone-list .txt-right:nth-of-type(9) {
  -ms-grid-column: 3;
      grid-column-start: 3;
  -ms-grid-column-span: 2;
  grid-column-end: 5;
  -ms-grid-row: 32;
  -ms-grid-row-span: 2;
  grid-row: 32/34;
}

@media screen and (max-width: 1023px) {
  .milestone-grid .milestone-list .txt-right:nth-of-type(9) {
    -ms-grid-row: 31;
    -ms-grid-row-span: 1;
    grid-row: 31/32;
    -ms-grid-column: 1;
    -ms-grid-column-span: 7;
    grid-column: 1/8;
    margin: 0 auto;
  }
}
.milestone-grid .milestone-list .text-only {
  margin-top: 80px;
  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;
}

.milestone-grid .logo {
  margin-top: 80px;
  margin-bottom: 60px;
  text-align: center;
  width: 100%;
}

.milestone-grid .logo img {
  height: 160px;
  width: 180px;
}

@media (max-width: 831.98px) {
  .submenu {
    border-bottom: 3px solid #f5f5f5;
  }
}
.submenu nav {
  height: 45px;
  background-color: #f5f5f5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row;
  flex-flow: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.submenu nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row;
  flex-flow: row;
  margin-bottom: 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
}

.submenu nav ul li {
  color: #2d2d2b;
  font-size: 0.875rem;
  display: block;
  margin-right: 45px;
}

@media (max-width: 831.98px) {
  .submenu nav ul li {
    font-size: 1.25rem;
    margin-right: 25px;
  }
  .submenu nav ul li:not(.active) {
    display: none;
  }
}
.submenu nav ul li.active {
  font-weight: 700;
}

.submenu .mobile-submenu {
  display: none;
  margin-bottom: 0;
}

@media (max-width: 831.98px) {
  .submenu .mobile-submenu {
    font-size: 0.75rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row;
    flex-flow: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100px;
  }
  .submenu .mobile-submenu li {
    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;
    margin-right: 24px;
    text-align: center;
  }
  .submenu .mobile-submenu li img {
    width: 40px;
    height: 32px;
    margin-bottom: 10px;
  }
  .submenu .mobile-submenu li.active {
    font-weight: 700;
  }
}
.therapeies-grid {
  border-bottom: 6px solid #f6f6f6;
  padding-top: 55px;
  padding-bottom: 50px;
}

.therapeies-grid header {
  color: #2d2d2b;
  padding-bottom: 50px;
}

.therapeies-grid header h2 {
  font-size: 2.25rem;
  line-height: 43px;
  font-weight: 700;
  text-align: center;
}

.therapeies-grid .col-md-4 {
  margin-bottom: 30px;
}

@media (min-width: 992px) {
  .therapeies-grid p {
    padding-left: 45px;
    padding-right: 30px;
  }
}
.therapeies-grid .title {
  font-size: 1.25rem;
  line-height: 24px;
  font-weight: 700;
}

.therapeies-grid .title .color {
  font-weight: 700;
  color: #54c8e8;
}

.therapeies-grid .title .color:after {
  content: "";
  width: 20px;
  height: 2px;
  background: #2e2d2c;
  display: inline-block;
  margin: 5px 8px;
}

.banner-wrap.table-wrap {
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 991.98px) {
  .banner-wrap.table-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}
@media (max-width: 991.98px) {
  .banner-wrap.table-wrap.side-text .periodic-table {
    padding-bottom: 90px;
  }
}
.banner-wrap.table-wrap .banner--main {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: auto;
}

@media (max-width: 991.98px) {
  .banner-wrap.table-wrap .banner--main {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    padding-top: 60px;
  }
}
.banner-wrap.table-wrap .banner--main h2 {
  font-size: 38px;
}

.banner-wrap.table-wrap .banner--main p:last-of-type {
  max-width: unset;
}

.banner-wrap.table-wrap .banner--main header * {
  color: #ececec;
}

.table-wrap {
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
  background-color: #612166;
}

.table-wrap .banner--main header {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.periodic-table {
  color: #fff;
  text-align: center;
  padding-top: 60px;
  padding-bottom: 100px;
  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-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

@media (max-width: 991.98px) {
  .periodic-table {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    padding-top: 30px;
  }
}
@media (max-width: 767.98px) {
  .periodic-table {
    padding-bottom: 170px;
  }
}
.periodic-table.hovered .group {
  background-color: rgba(255, 255, 255, 0.2745098039);
}

.periodic-table .group {
  background-color: #fff;
  padding: 6px;
}

@media (max-width: 767.98px) {
  .periodic-table .group {
    padding: 4px;
  }
}
.periodic-table .group .square {
  background-color: #612166;
  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: 123px;
  height: 123px;
  margin-bottom: 6px;
  position: relative;
}

.periodic-table .group .square:before {
  content: "";
  position: absolute;
  left: -6px;
  top: -6px;
  bottom: -6px;
  right: -6px;
  border: 6px solid #fff;
  display: block;
  z-index: 4;
  opacity: 0;
}

.periodic-table .group .square.active:before {
  content: "";
  opacity: 1;
}

.periodic-table .group .square.dim {
  position: relative;
}

.periodic-table .group .square.dim a {
  opacity: 0.3;
}

@media (max-width: 767.98px) {
  .periodic-table .group .square {
    width: 70px;
    height: 70px;
    margin-bottom: 4px;
  }
}
.periodic-table .group .square a {
  width: 100%;
  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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 5;
  opacity: 1;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

.periodic-table .group .square a .title {
  font-size: 3.9375rem;
  font-weight: 700;
  line-height: 58px;
  margin-bottom: 4px;
  color: #fff;
  margin-top: 20px;
}

@media (max-width: 767.98px) {
  .periodic-table .group .square a .title {
    font-size: 2.25rem;
    line-height: 44px;
    margin-top: 5px;
    margin-bottom: 0;
  }
}
.periodic-table .group .square a .link-title {
  font-size: 0.6875rem;
  line-height: 13px;
  color: #54c8e8;
  font-weight: 700;
}

@media (max-width: 767.98px) {
  .periodic-table .group .square a .link-title {
    font-size: 0.5625rem;
  }
}
.periodic-table .group .square a .categ {
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 36px;
  color: #fff;
}

@media (max-width: 767.98px) {
  .periodic-table .group .square a .categ {
    font-size: 1.0625rem;
    line-height: 21px;
  }
}
.periodic-table .group .square a .categ + .link-title {
  font-size: 0.6875rem;
  line-height: 13px;
}

@media (max-width: 767.98px) {
  .periodic-table .group .square a .categ + .link-title {
    font-size: 0.5625rem;
    line-height: 14px;
  }
}
.periodic-table .group .square:last-child {
  margin-bottom: 0;
}

.periodic-table .group:nth-child(1) {
  height: 50%;
  padding-right: 0;
}

.periodic-table .group:nth-child(2) {
  height: 70%;
  padding-right: 0;
}

.periodic-table .group:nth-child(4) {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
      align-self: center;
  padding-left: 0;
}

.periodic-table .info {
  position: absolute;
  bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 767.98px) {
  .periodic-table .info {
    -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;
  }
}
.periodic-table .info img {
  width: 18px;
  height: 24px;
  margin-right: 10px;
}

@media (max-width: 767.98px) {
  .periodic-table .info img {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.periodic-table .info p {
  margin-bottom: 0;
  font-size: 1rem;
}

@media (max-width: 767.98px) {
  .periodic-table .info p {
    width: 65%;
  }
}
.banner--main {
  height: auto;
  min-height: 600px;
}

.banner--main.booster-kits header {
  max-width: 600px;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 20%;
  flex: 0 1 20%;
}

@media (max-width: 767.98px) {
  .banner--main.booster-kits header {
    color: #1d1d1b;
  }
}
.banner--main.booster-kits header h2 {
  max-width: 600px;
  text-align: center;
}

.banner--main.booster-kits header p {
  max-width: 420px;
  text-align: center;
}

.kits {
  width: 100%;
  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;
  padding-top: 50px;
}

@media (max-width: 767.98px) {
  .kits {
    padding-top: 50px;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    padding-bottom: 50px;
  }
}
.kits .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  padding-left: 15px;
  padding-right: 15px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.kits .item:not(:first-child) {
  margin-top: 35px;
}

.kits .item > div {
  width: 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.kits .item > div:first-child {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.kits .item > div:last-child span {
  color: #8b3c04;
}

@media (max-width: 767.98px) {
  .kits .item > div:last-child span {
    text-align: left;
  }
}
@media (max-width: 767.98px) {
  .kits .item:last-child {
    margin-right: 0;
  }
}
.kits .item span {
  font-size: 1.3125rem;
  font-weight: 700;
  text-align: right;
}

@media (max-width: 767.98px) {
  .kits .item span {
    font-size: 0.875rem;
  }
}
.kits .item .icon {
  width: 100px;
  height: 20px;
  margin: 0 60px;
}

.kits .item .icon svg {
  width: 100%;
  height: auto;
}

@media (max-width: 767.98px) {
  .kits .item .icon {
    width: 70px;
    height: 15px;
    margin: 0 20px;
  }
}
.categ-wrap {
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px;
}

@media (min-width: 1920px) {
  .categ-wrap {
    max-width: 1920px;
  }
}
.targeted-categ {
  border-bottom: 6px solid #f6f6f6;
  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;
  position: relative;
  height: 700px;
}

.targeted-categ:nth-child(odd) {
  border-right: 6px solid #f6f6f6;
}

.targeted-categ header {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 85px 10%;
  text-align: center;
}

@media (max-width: 767.98px) {
  .targeted-categ header {
    padding: 50px 25px;
  }
}
.targeted-categ header h2 {
  font-weight: 700;
}

.targeted-categ header p {
  font-size: 1.3125rem;
}

.targeted-categ header a {
  font-size: 1.125rem;
}

.targeted-categ figure {
  padding-bottom: 50px;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

.wwp_wholesaler_registration {
  color: #6f6f6e !important;
}

.wwp_wholesaler_registration hr {
  margin-top: 60px;
  margin-bottom: 30px;
}

.wwp_wholesaler_registration h2 {
  font-size: 22px;
}

.wwp_wholesaler_registration .form-note {
  font-size: 14px;
  line-height: 19px;
  font-size: 14px;
  line-height: 18px !important;
  display: block;
  margin-top: 10px;
}

.wwp_wholesaler_registration .accept-terms label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.wwp_wholesaler_registration .accept-terms label input {
  width: auto;
  margin-right: 10px;
}

.wwp_wholesaler_registration .accept-terms a {
  color: #00a1df;
}

.wwp_wholesaler_registration p:nth-of-type(10) {
  padding-bottom: 0;
}

.wwp_wholesaler_registration {
  position: relative;
  padding-top: 20px;
}

.wwp_wholesaler_registration p:nth-of-type(10) {
  position: relative;
  padding-bottom: 40px;
}

.wwp_wholesaler_registration h2 {
  max-width: 550px;
  margin: 0 auto;
  margin-bottom: 20px;
}

.wwp_wholesaler_registration p {
  max-width: 550px;
  margin: 0 auto;
  margin-bottom: 20px;
}

.wwp_wholesaler_registration label {
  display: block;
}

.wwp_wholesaler_registration input {
  width: 100%;
}

.wwp_wholesaler_registration input[type=submit] {
  height: 50px;
  border-radius: 5px;
  background-color: #622066 !important;
  color: #fff;
  margin-top: 20px;
  border: none;
}

.wwp_wholesaler_registration form h2 {
  text-align: left;
}

@media (max-width: 767.98px) {
  .search-results.archive .header {
    max-height: none;
    background: 0 0;
    margin-bottom: 0;
  }
}
.search-wrap > .col-12 {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.search-wrap form {
  margin: 80px 0;
  width: 500px;
  position: relative;
}

@media (max-width: 767.98px) {
  .search-wrap form {
    width: 100%;
    margin: 50px 0 0;
  }
}
.search-wrap form input {
  width: 100%;
}

.search-wrap form button {
  position: absolute;
  right: 20px;
  top: 12px;
}

.cc-window {
  opacity: 1;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
}

.cc-window.cc-invisible {
  opacity: 0;
}

.cc-animate.cc-revoke {
  -webkit-transition: transform 1s ease;
  -webkit-transition: -webkit-transform 1s ease;
  transition: -webkit-transform 1s ease;
  transition: transform 1s ease;
  transition: transform 1s ease, -webkit-transform 1s ease;
  transition: transform 1s ease, -webkit-transform 1s ease;
}

.cc-animate.cc-revoke.cc-top {
  -webkit-transform: translateY(-2em);
  transform: translateY(-2em);
}

.cc-animate.cc-revoke.cc-bottom {
  -webkit-transform: translateY(2em);
  transform: translateY(2em);
}

.cc-animate.cc-revoke.cc-active.cc-top {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.cc-animate.cc-revoke.cc-active.cc-bottom {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.cc-revoke:hover {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.cc-grower {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 1s;
  transition: max-height 1s;
}

.cc-revoke,
.cc-window {
  position: fixed;
  overflow: hidden;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: Helvetica, Calibri, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  z-index: 9999;
}

.cc-window.cc-static {
  position: static;
}

.cc-window.cc-floating {
  padding: 2em;
  max-width: 24em;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.cc-window.cc-banner {
  padding: 1em 1.8em;
  width: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.cc-revoke {
  padding: 0.5em;
}

.cc-revoke:hover {
  text-decoration: underline;
}

.cc-header {
  font-size: 18px;
  font-weight: 700;
}

.cc-btn,
.cc-close,
.cc-link,
.cc-revoke {
  cursor: pointer;
}

.cc-link {
  opacity: 0.8;
  display: inline-block;
  padding: 0.2em;
  text-decoration: underline;
}

.cc-link:hover {
  opacity: 1;
}

.cc-link:active,
.cc-link:visited {
  color: initial;
}

.cc-btn {
  display: block;
  padding: 0.4em 0.8em;
  font-size: 0.9em;
  font-weight: 700;
  border-width: 2px;
  border-style: solid;
  text-align: center;
  white-space: nowrap;
}

.cc-highlight .cc-btn:first-child {
  background-color: transparent;
  border-color: transparent;
}

.cc-highlight .cc-btn:first-child:focus,
.cc-highlight .cc-btn:first-child:hover {
  background-color: transparent;
  text-decoration: underline;
}

.cc-close {
  display: block;
  position: absolute;
  top: 0.5em;
  right: 0.5em;
  font-size: 1.6em;
  opacity: 0.9;
  line-height: 0.75;
}

.cc-close:focus,
.cc-close:hover {
  opacity: 1;
}

.cc-revoke.cc-top {
  top: 0;
  left: 3em;
  border-bottom-left-radius: 0.5em;
  border-bottom-right-radius: 0.5em;
}

.cc-revoke.cc-bottom {
  bottom: 0;
  left: 3em;
  border-top-left-radius: 0.5em;
  border-top-right-radius: 0.5em;
}

.cc-revoke.cc-left {
  left: 3em;
  right: unset;
}

.cc-revoke.cc-right {
  right: 3em;
  left: unset;
}

.cc-top {
  top: 1em;
}

.cc-left {
  left: 1em;
}

.cc-right {
  right: 1em;
}

.cc-bottom {
  bottom: 1em;
}

.cc-floating > .cc-link {
  margin-bottom: 1em;
}

.cc-floating .cc-message {
  display: block;
  margin-bottom: 1em;
}

.cc-window.cc-floating .cc-compliance {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

.cc-window.cc-banner {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.cc-banner.cc-top {
  left: 0;
  right: 0;
  top: 0;
}

.cc-banner.cc-bottom {
  left: 0;
  right: 0;
  bottom: 0;
}

.cc-banner .cc-message {
  display: block;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  max-width: 100%;
  margin-right: 1em;
}

.cc-compliance {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-line-pack: justify;
  align-content: space-between;
}

.cc-floating .cc-compliance > .cc-btn {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.cc-btn + .cc-btn {
  margin-left: 0.5em;
}

@media print {
  .cc-revoke,
  .cc-window {
    display: none;
  }
}
@media screen and (max-width: 900px) {
  .cc-btn {
    white-space: normal;
  }
}
@media screen and (max-width: 414px) and (orientation: portrait), screen and (max-width: 736px) and (orientation: landscape) {
  .cc-window.cc-top {
    top: 0;
  }
  .cc-window.cc-bottom {
    bottom: 0;
  }
  .cc-window.cc-banner,
  .cc-window.cc-floating,
  .cc-window.cc-left,
  .cc-window.cc-right {
    left: 0;
    right: 0;
  }
  .cc-window.cc-banner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .cc-window.cc-banner .cc-compliance {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
  }
  .cc-window.cc-floating {
    max-width: none;
  }
  .cc-window .cc-message {
    margin-bottom: 1em;
  }
  .cc-window.cc-banner {
    -webkit-box-align: unset;
    -ms-flex-align: unset;
    align-items: unset;
  }
  .cc-window.cc-banner .cc-message {
    margin-right: 0;
  }
}
.cc-floating.cc-theme-classic {
  padding: 1.2em;
  border-radius: 5px;
}

.cc-floating.cc-type-info.cc-theme-classic .cc-compliance {
  text-align: center;
  display: inline;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
}

.cc-theme-classic .cc-btn {
  border-radius: 5px;
}

.cc-theme-classic .cc-btn:last-child {
  min-width: 140px;
}

.cc-floating.cc-type-info.cc-theme-classic .cc-btn {
  display: inline-block;
}

.cc-theme-edgeless.cc-window {
  padding: 0;
}

.cc-floating.cc-theme-edgeless .cc-message {
  margin: 2em;
  margin-bottom: 1.5em;
}

.cc-banner.cc-theme-edgeless .cc-btn {
  margin: 0;
  padding: 0.8em 1.8em;
  height: 100%;
}

.cc-banner.cc-theme-edgeless .cc-message {
  margin-left: 1em;
}

.cc-floating.cc-theme-edgeless .cc-btn + .cc-btn {
  margin-left: 0;
}

.cookie_modal {
  font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue, helvetica, ubuntu, roboto, noto, segoe ui, arial, sans-serif;
  z-index: 100;
}

.cookie_modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  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;
}

.cookie_modal__container {
  background-color: #fff;
  padding: 20px 0;
  width: 750px;
  min-height: 500px;
  border-radius: 4px;
  overflow-y: hidden;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media screen and (max-width: 767px) {
  .cookie_modal__container {
    height: 100vh;
    overflow: scroll;
  }
}
.cookie_modal__container .cookie_modal__header {
  padding: 0 20px 10px 20px;
  height: auto;
}

.cookie_modal__container .cookie_modal__header:after {
  content: none;
}

@media screen and (max-width: 767px) {
  .cookie_modal__container .cookie_modal__header {
    padding: 0 10px 5px 10px;
  }
}
.cookie_modal__container footer {
  border-top: 1px solid #ccc;
  text-align: right;
  padding: 10px 20px 0 0;
}

.cookie_modal__header {
  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;
  border-bottom: 1px solid #ccc;
}

.modal__title {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.25;
  color: #0b5a9c;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.modal__close {
  background: 0 0;
  border: 0;
}

.modal__close:focus {
  outline: 0;
}

.cookie_modal__header .modal__close:before {
  content: "✕";
  color: #0b5a9c;
  font-weight: 700;
  font-size: 26px;
}

.modal__content {
  margin-top: 2rem;
  margin-bottom: 2rem;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.8);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .modal__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .modal__content h2 {
    font-size: 20px;
  }
}
.modal__content .cookie-modal-tabs-menu {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 30%;
  flex: 1 1 30%;
  max-width: 30%;
  padding: 0 20px;
  background-color: #ebebeb;
  background-clip: content-box;
}

@media screen and (max-width: 767px) {
  .modal__content .cookie-modal-tabs-menu {
    max-width: 100%;
    text-align: center !important;
  }
}
.modal__content .cookie-modal-tabs-menu a {
  white-space: normal;
  color: #000;
  display: block;
  line-height: 20px;
  text-align: left !important;
  padding: 20px 10px;
}

.modal__content .cookie-modal-tabs-menu a.active {
  background-color: silver;
  text-decoration: underline;
}

.modal__content .cookie-modal-tabs-menu a:not(.active):hover {
  background-color: #dadada;
}

@media screen and (max-width: 767px) {
  .modal__content .cookie-modal-tabs-menu a {
    text-align: center !important;
  }
}
.modal__content .cookie-modal-tabs-content {
  -webkit-box-flex: 1;
  -ms-flex: 1 auto;
  flex: 1 auto;
  max-width: 70%;
  min-height: 330px;
  overflow: auto;
  padding: 0 10px;
}

@media screen and (max-width: 767px) {
  .modal__content .cookie-modal-tabs-content {
    max-width: 100%;
  }
}
.modal__content .cookie-modal-tabs-content a {
  color: #0b5a9c;
}

.modal__btn {
  font-size: 1.375rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  background-color: #e6e6e6;
  color: rgba(0, 0, 0, 0.8);
  border-radius: 0.25rem;
  border-style: none;
  border-width: 0;
  cursor: pointer;
  -webkit-appearance: button;
  text-transform: none;
  overflow: visible;
  line-height: 1.15;
  margin: 0;
  will-change: transform;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  transition: -webkit-transform 0.25s ease-out;
  -webkit-transition: -webkit-transform 0.25s ease-out;
  transition: transform 0.25s ease-out;
  transition: transform 0.25s ease-out, -webkit-transform 0.25s ease-out;
  transition: transform 0.25s ease-out, -webkit-transform 0.25s ease-out;
}

.modal__btn:focus,
.modal__btn:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.modal__btn-primary {
  background-color: #0b5a9c;
  color: #fff;
}

.modalCheckBox label {
  position: relative;
  padding: 4px 0 0 50px;
  line-height: 2em;
  cursor: pointer;
  display: inline;
  font-size: 14px;
}

.modalCheckBox label:before {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  width: 40px;
  height: 24px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #d9d9d9;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.modalCheckBox label:after {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #d9d9d9;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.modalCheckBox input[type=checkbox]:checked + label:before {
  background: #66c989;
}

.modalCheckBox input[type=checkbox]:checked + label:after {
  margin-left: 16px;
}

.modalCheckBox input[type=checkbox]:disabled:not(:checked) + label:before {
  background: silver;
}

.modalCheckBox input[type=checkbox]:disabled:not(:checked) + label:after {
  margin-left: 0;
}

.modalCheckBox input[type=checkbox]:disabled + label:before {
  background: silver;
}

.modalCheckBox input[type=checkbox]:disabled + label:after {
  margin-left: 16px;
}

@-webkit-keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes mmslideIn {
  from {
    -webkit-transform: translateY(15%);
    transform: translateY(15%);
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes mmslideIn {
  from {
    -webkit-transform: translateY(15%);
    transform: translateY(15%);
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes mmslideOut {
  from {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-10%);
    transform: translateY(-10%);
  }
}
@keyframes mmslideOut {
  from {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-10%);
    transform: translateY(-10%);
  }
}
.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden=false] .modal__overlay {
  -webkit-animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=false] .modal__container {
  -webkit-animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__overlay {
  -webkit-animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__container {
  -webkit-animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}

.cookie-modal-tabs-content section:not(.active) {
  display: none;
}

@media screen and (max-width: 767px) {
  .cookie-modal-tabs-content section {
    padding: 0 20px;
  }
}
.cc-grower {
  background-color: #6a6a6a;
}

.cc-window {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -ms-flex-flow: row !important;
  flex-flow: row !important;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-family: Roboto, sans-serif;
  max-width: 1140px;
  margin: 0 auto;
}

@media (max-width: 1199.98px) {
  .cc-window {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-flow: column !important;
    flex-flow: column !important;
  }
}
.cc-window.cc-banner {
  padding: 0.6em !important;
}

.cc-window h1 {
  font-size: 24px;
  color: #fff;
  letter-spacing: 0;
}

.cc-window .geo-lang {
  margin-right: 25px;
  position: relative;
}

.cc-window .geo-lang span {
  font-size: 10px;
  position: absolute;
  left: 18px;
}

@media (max-width: 1199.98px) {
  .cc-window .geo-lang {
    margin-right: 0;
  }
}
.cc-window .cc-btn.cc-allow,
.cc-window .cc-btn.cc-deny {
  background-color: #0298d2 !important;
  border-radius: 2px;
}

@media (max-width: 1199.98px) {
  .cc-window .cc-btn.cc-allow,
  .cc-window .cc-btn.cc-deny {
    padding: 0.4em 2.8em;
  }
}
.cc-window .cc-btn.cc-allow:hover,
.cc-window .cc-btn.cc-deny:hover {
  background-color: #797979 !important;
}

.cc-window .cc-btn.cc-deny {
  background-color: #000 !important;
}

.cc-message {
  padding-top: 5px;
  padding-bottom: 5px;
  width: 100%;
  font-size: 14px;
  line-height: 18px;
}

@media (max-width: 1199.98px) {
  .cc-message {
    text-align: center;
    margin-right: 0;
    max-width: 600px !important;
    padding-top: 10px;
    padding-bottom: 10px;
    padding: 10px 10px;
  }
}
@media (max-width: 767.98px) {
  .cc-message {
    max-width: 350px !important;
  }
}
.revoke {
  position: fixed;
  bottom: 0;
  right: 0;
  background-color: #0b5a9c;
  width: 120px;
  text-align: center;
  color: #fff;
  z-index: 1000;
  padding: 2px;
}

.revoke:hover {
  cursor: pointer;
}

.geo-lang {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.geo-lang button {
  background: 0 0;
  color: #fff;
  outline: 0;
  border: none;
  margin: 0 0 0 10px;
  width: 50px;
  background-color: #0298d2;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 700;
}

.geo-lang button:hover {
  cursor: pointer;
  background-color: #797979 !important;
}

.geo-lang select {
  width: 240px !important;
  display: block;
  font-size: 16px;
  font-family: sans-serif;
  font-weight: 400;
  color: #fff;
  line-height: 1.3;
  padding: 1.2em 1.4em 0.3em 0.8em;
  width: 100%;
  max-width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  border: 1px solid #aaa;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg width='1em' height='1em' viewBox='0 0 16 16' class='bi bi-chevron-down' fill='white' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E"), -webkit-gradient(linear, left top, left bottom, color-stop(0, #818181), to(#818181));
  background-image: url("data:image/svg+xml,%3Csvg width='1em' height='1em' viewBox='0 0 16 16' class='bi bi-chevron-down' fill='white' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E"), linear-gradient(to bottom, #818181 0, #818181 100%);
  background-repeat: no-repeat, repeat;
  background-position: right 0.7em top 50%, 0 0;
  background-size: 0.65em auto, 100%;
}

.geo-lang select::-ms-expand {
  display: none;
}

.geo-lang select:hover {
  border-color: #888;
}

.geo-lang select:focus {
  border-color: #aaa;
  -webkit-box-shadow: 0 0 1px 3px #818181;
  box-shadow: 0 0 1px 3px #818181;
  color: #fff;
  outline: 0;
}

.geo-lang select option {
  font-weight: 400;
}

@media (max-width: 1199.98px) {
  .cc-compliance {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media (max-width: 1199.98px) {
  .cc-compliance .settings {
    width: 100%;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
  }
}
@media (max-width: 1199.98px) {
  .cc-compliance .cc-allow {
    margin-left: 0 !important;
    margin-left: 10px !important;
  }
}
.cc-revoke {
  display: none;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  min-height: 100vh;
  position: relative;
  color: #2e2d2c;
}

body.admin-bar {
  padding-top: 32px;
}

body header {
  -webkit-box-flex: 0;
  -ms-flex: 0;
  flex: 0;
}

body a {
  color: #000;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  white-space: nowrap;
}

body.fade-in:after {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 0.4;
  -webkit-transition: opacity 0.4s ease-in;
  transition: opacity 0.4s ease-in;
}

body.fade-out:after {
  -webkit-transition: opacity 0.4s ease-in, -webkit-transform 0.4s ease-in 0.5s;
  transition: opacity 0.4s ease-in, -webkit-transform 0.4s ease-in 0.5s;
  transition: opacity 0.4s ease-in, transform 0.4s ease-in 0.5s;
  transition: opacity 0.4s ease-in, transform 0.4s ease-in 0.5s, -webkit-transform 0.4s ease-in 0.5s;
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

body:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  transform: scale(0);
  z-index: 2;
  background-color: #000;
  opacity: 0;
}

#page {
  min-height: 100vh;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  min-height: 100vh;
  position: relative;
}

#page .main-wrapper {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
  /* z-index: 2; */
}

figure {
  margin: 0;
}

.wpml-ls-statics-shortcode_actions.wpml-ls-legacy-list-horizontal ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 90px;
  padding-bottom: 90px;
}

@media (max-width: 831.98px) {
  .wpml-ls-statics-shortcode_actions.wpml-ls-legacy-list-horizontal ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
  }
}
.wpml-ls-statics-shortcode_actions.wpml-ls-legacy-list-horizontal ul li {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

@media (min-width: 992px) {
  .wpml-ls-statics-shortcode_actions.wpml-ls-legacy-list-horizontal ul li:not(:last-child) {
    border-right: 1px solid rgba(0, 0, 0, 0.2);
  }
}
.wpml-ls-statics-shortcode_actions.wpml-ls-legacy-list-horizontal ul li img {
  display: block;
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
}

.wpml-ls-statics-shortcode_actions.wpml-ls-legacy-list-horizontal ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 140px;
}

.wpml-ls-statics-shortcode_actions.wpml-ls-legacy-list-horizontal ul li a span {
  margin-left: 0;
}

.no-results {
  width: 100%;
  text-align: center;
}

.woocommerce-products-header {
  width: 100%;
  min-height: 350px;
  margin-top: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

h1.woocommerce-products-header__title {
  font-size: 3rem;
  font-weight: 700;
}

.term-description p {
  font-size: 1.2rem;
}

.wpc-filter-chips-list {
  margin-bottom: 0;
}

.widgettitle i {
  float: right;
}

.woocommerce span.onsale {
  z-index: 1 !important;
}

.ofcnv-title {
  margin-bottom: 0;
}

.ingrlink {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  text-underline-offset: 4px;
  text-wrap: wrap;
}
.ingrlink:hover {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  text-underline-offset: 4px;
}

.item .background p,
.swiper-slide p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  /*white-space: pre-wrap;*/
  width: 100%;
  min-height: 45px;
}

div.product .price, .swiper-slide .price {
  text-decoration: none;
}

div.product .price .sep:before,
div.product .price span.price .sep:before,
.sep:before {
  content: "—";
  margin: 0 3px;
}

div.product .price del, .swiper-slide .price del {
  opacity: 1 !important;
  display: inline-block;
}

.swiper-slide .price del > .woocommerce-Size,
.woocommerce div.product .price del > .woocommerce-Size,
.swiper-slide .price del > .sep,
.woocommerce div.product .price del > .sep,
.swiper-slide .price span.price del > .woocommerce-Size,
.woocommerce div.product .price span.price del > .woocommerce-Size,
.swiper-slide .price span.price del > .sep,
.woocommerce div.product .price span.price del > .sep {
  opacity: 1;
  display: inline-block;
  text-decoration: none;
}

.woocommerce div.product .price del > .woocommerce-Price-amount, .woocommerce div.product .price del > .aud,
.swiper-slide .price del > .woocommerce-Price-amount,
.swiper-slide .price del > .aud {
  opacity: 0.5;
  display: inline-block;
  text-decoration: line-through;
}

.woocommerce div.product .price ins,
.swiper-slide .price ins {
  text-decoration: none !important;
}

.woocommerce div.product .price ins > .woocommerce-Size,
.swiper-slide .price ins > .woocommerce-Size {
  display: none;
}

.woocommerce div.product .price ins > .sep:before,
.swiper-slide .price ins > .sep:before {
  content: none;
}

.wp-block-columns.halfbanners {
  gap: 0 !important;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.wp-block-columns.halfbanners .wp-block-column {
  width: 50%;
}

@media (max-width: 767.98px) {
  #mherovideo {
    min-height: 90vh;
  }
  .wp-block-columns.halfbanners {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .wp-block-columns.halfbanners .wp-block-column {
    width: 100%;
  }
  .offcanvas-body {
    overflow-y: scroll;
    height: 90%;
  }
  .minus, .plus {
    display: none;
  }
  .woocommerce div.product form.cart .button {
    display: inline-block;
    width: calc(100% - 65px);
    text-align: center;
  }
}
@media (min-width: 992px) {
  .wp-block-file {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .js-offcanvas.ingr-offcanvas {
    width: 30vw;
  }
  .woocommerce div.product form.cart .button {
    display: inline-block;
    width: calc(100% - 110px);
    text-align: center;
  }
  .input-text.qty.text {
    width: 2.4em;
    -moz-appearance: textfield;
  }
  .input-text.qty.text::-webkit-outer-spin-button, .input-text.qty.text::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
  .single-product .content .grid--a {
    position: sticky !important;
    top: 50px;
  }
  .item .background:hover .prodbtnbox {
    display: block;
    z-index: 3;
  }
  .accordion-container .ac {
    /* text-align: left!important; */
    border: none;
    border-top: 0px solid #dadada;
    border-bottom: 1px solid #dadada;
    padding: 20px 0;
  }
  .accordion-container .ac .wrap {
    padding: 15px 0 0 0 !important;
  }
  .accordion-container .ac-q {
    /*font-size: 1.25rem;*/
    color: #111;
    padding: 0 0 0 0 !important;
  }
  .ac > .ac-a p:not(:last-child) {
    padding: 0px 0 10px 0;
  }
  .ac > .ac-a p:last-child {
    padding-bottom: 0px;
  }
}
.wc-quick-order__contents {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}
.wc-quick-order__contents th {
  font-weight: 700;
  padding: 9px 12px;
  line-height: 1.5em;
}
.wc-quick-order__contents td {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 9px 12px;
  vertical-align: middle;
  line-height: 1.5em;
}
.wc-quick-order__contents .product-price {
  text-align: center;
  width: 275px;
}
.wc-quick-order__contents .product-featured_img {
  width: 80px;
  text-align: center;
}
.wc-quick-order__contents .product-sku {
  width: 100px;
  text-align: center;
}
.wc-quick-order__contents .product-qty, .wc-quick-order__contents .product-quantity {
  text-align: center;
  width: 225px;
}
.wc-quick-order__contents .product-name {
  width: auto !important;
}

.order-collapse {
  padding: 20px 10px;
}

.woosb-total.woosb-text {
  display: none !important;
}

.woocommerce-price-suffix {
  display: none;
}

@media (max-width: 991.98px) {
  .wp-block-columns.halfbanners.is-layout-flex.wp-container-core-columns-is-layout-1.wp-block-columns-is-layout-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #page {
    padding-top: 50px;
  }
  .main-header {
    position: fixed;
    top: 0;
    width: 100%;
  }
}
.cat-responsive-bg {
  background-image: none;
}

.mm-listitem.mnufeatprd {
  color: #17A8E3;
}

.mm-listitem.current-menu-item:not(.mnufeatprd), .mm-listitem.current-menu-parent {
  color: #000;
}

.mm-iconbar__top .icon-product-line:before {
  height: 25px;
  margin-top: 5px;
}

.mm-iconbar__top .icon-product-line.icon-story-values:before {
  background-image: url("https://www.juliettearmand.com/wp-content/themes/juliette/dist/assets/images/logo-badge.svg");
}

body.fade-in .mm-slideout,
body.modal-open .mm-slideout {
  z-index: inherit;
}

.ac-a .wrap ul, .ac-a .wrap ol {
  padding-left: 20px;
  margin-left: -2px;
}
.ac-a .wrap ul li:not(:last-child), .ac-a .wrap ol li:not(:last-child) {
  margin-bottom: 7px;
}

a.cky-banner-element {
  cursor: pointer;
}

/*** /*** SWOOF */
button.button.woof_submit_search_form, button.button.woof_reset_search_form {
  border: 1px solid #000;
  border-radius: 0;
  background: #fff;
  font-weight: 400;
  width: 40%;
}

.woof_products_top_panel {
  z-index: 2 !important;
  padding: 10px 0;
  min-height: 70px;
  margin: unset !important;
}
.woof_products_top_panel ul.woof_products_top_panel_ul {
  font-size: 0.75rem !important;
  margin-left: 30px !important;
  margin-top: 10px !important;
  line-height: 1.875rem;
}
.woof_products_top_panel ul.woof_products_top_panel_ul li .woof_reset_button_2 {
  color: #0f90ed !important;
  padding: unset;
}
.woof_products_top_panel ul.woof_products_top_panel_ul li .woof_reset_button_2:hover {
  color: #000 !important;
}

.woof_container h4 {
  margin-bottom: 11px;
  font-size: 1.12em;
  line-height: 1.12em;
  background: unset !important;
  padding: 8px 7px;
  color: #333;
  text-align: left !important;
  border-top: 1px solid #ccc;
  font-size: 16px !important;
}

.woof_checkbox_label {
  font-size: 14px !important;
}

.woof_front_toggle {
  font-size: 22px !important;
}

a.woof_open_hidden_li_btn {
  font-size: 12px !important;
  color: #0f90ed !important;
}

.woocommerce-products-header.noimg {
  min-height: 160px;
}

.cat-responsive-bg {
  background-image: none;
}

@media only screen and (min-width: 992px) {
  .cat-responsive-bg {
    background-image: var(--desktop-bg);
  }
  .woof_submit_search_form_container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .woof_submit_search_form_container button.button.woof_submit_search_form, .woof_submit_search_form_container button.button.woof_reset_search_form {
    width: 100%;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 991px) {
  .woocommerce-products-header.cat-responsive-bg, .woocommerce-products-header.noimg {
    min-height: 200px;
    text-align: center;
  }
  .wp-block-file {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.type-post.inloop p {
  font-size: 1rem;
  line-height: 1.875rem;
}
.type-post.inloop a.continue_reading {
  font-size: 14px !important;
  color: #0f90ed !important;
}

.single-post article {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 2px solid #000;
}

del .woocommerce-Price-amount.amount {
  text-decoration: line-through;
}

.country_to_state.country_select, .state_select, .wwp_select {
  padding: 0.618047em;
  font-size: 1rem;
  height: 45px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  /* -webkit-appearance: menulist-button; */
  /* -webkit-box-sizing: border-box; */
  /* box-sizing: border-box; */
  /* font-weight: 400; */
  width: 100%;
}

#pwgc-redeem-button {
  font-size: 1em;
  background-color: #622066 !important;
  padding: 15px;
  color: #fff;
  border-radius: 3px;
}

.woocommerce-checkout .woocommerce-form-login label {
  display: block !important;
}

.wp-block-column {
  max-width: 100%;
}
.wp-block-column .wp-block-image img {
  height: auto;
  width: 100%;
}
.wp-block-column .wp-element-caption {
  text-align: center;
}

.wp-container-core-columns-is-layout-2 {
  -ms-flex-wrap: wrap !important;
      flex-wrap: wrap !important;
}

.wp-block-file {
  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;
  padding: 35px 15px;
  background: #efefef;
  border: 1px solid #ccc;
  margin-bottom: 25px;
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.wp-block-file .wp-block-file__button {
  cursor: pointer;
  border: solid rgb(0, 0, 0);
  text-align: center;
  margin: 15px 0;
  font-size: 14px;
  color: rgb(255, 255, 255);
  padding: 10px 30px;
  -webkit-transition: all;
  transition: all;
  min-width: 160px;
  -webkit-box-shadow: rgb(0, 0, 0) 0px 0px 0px 0px;
          box-shadow: rgb(0, 0, 0) 0px 0px 0px 0px;
  border-radius: 2px;
  background: rgb(0, 0, 0);
  --hover-bgc: #3b3b3b;
  --hover-borderc: #3b3b3b;
  --hover-color: #d1d1d1;
}
.wp-block-file .wp-block-file__button :hover {
  color: rgb(209, 209, 209);
  background: rgb(59, 59, 59) none repeat scroll 0% 0%/auto padding-box border-box;
  border-color: rgb(59, 59, 59);
  border-width: 2px;
  border-style: solid;
}
.wp-block-file a {
  text-wrap: wrap;
}

.wp-block-image a img {
  width: 100%;
  height: auto;
}
.wp-block-image figure.aligncenter figcaption {
  text-align: center;
}

.langau a:before {
  content: "";
  display: block;
  background: url(https://www.juliettearmand.com.au/wp-content/uploads/2020/07/Flags_Australia.png) no-repeat;
  width: 15px;
  height: 15px;
  float: left;
  margin: 6px 5px 0 0;
  background-size: 15px 15px;
}

.wp-block-video video {
  width: 100%;
}

.videodiv {
  margin-bottom: 40px;
}

.sidecart {
  overflow-y: auto;
}

.product--list .item square-placement {
  display: none;
}

.woocommerce .product--list .item span.onsale {
  width: 4.236em !important;
  height: 4.236em !important;
  line-height: 4.236em !important;
  padding: 0 !important;
  background-color: #0f90ed !important;
  bottom: -105px;
  right: 20px;
  left: unset;
  top: unset;
}

.woof_seo_text {
  clear: both;
  width: 100%;
  text-align: center;
  font-size: 12px;
  color: #8e8e8e;
  display: block;
}

.prodbtnbox {
  display: none;
  position: absolute;
  width: 75%;
  bottom: 140px;
}
.prodbtnbox > a.button.add_to_cart_button {
  color: #fff;
  background-color: #0f90ed;
  display: block;
  text-align: center;
  width: 100%;
  margin-bottom: 5px;
  -webkit-transition: 0.1s;
  transition: 0.1s;
  -webkit-box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.3);
          box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.3);
}
.prodbtnbox > a.button.add_to_cart_button:hover {
  background: #fff;
  color: #0f90ed;
}
.prodbtnbox > #myBtn {
  display: block;
  text-align: center;
  width: 100%;
}

.prodbtnbox a.added_to_cart .wc-forward {
  display: none;
}

.prodbtnbox a + a {
  margin-top: 10px !important;
}

.wooac-popup .wooac-text a, .wooac-popup .wooac-text span {
  font-weight: 700;
  display: block;
}

.wooac-popup .wooac-action a {
  font-weight: 400;
}

.archive .header .filters, .archive .header .sort-by {
  margin-top: unset;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt {
  color: #fff;
  -webkit-font-smoothing: antialiased;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button {
  font-size: 100%;
  margin: 0;
  line-height: 1;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  overflow: visible;
  padding: 0.618em 1em;
  font-weight: 700;
  border-radius: 3px;
  left: auto;
  border: 0;
  display: inline-block;
  background-image: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  text-shadow: none;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button {
  background-color: #e9e6ed;
}

@media only screen and (min-width: 992px) {
  #mherovideo {
    display: none;
  }
  .ml-30 {
    margin-left: 30px;
  }
  #wpsl-wrap #wpsl-result-list {
    float: right !important;
    margin-right: 0 !important;
    width: 33.5% !important;
  }
  #wpsl-wrap #wpsl-result-list li {
    margin-bottom: 50px;
    margin-left: 40px;
    padding-left: 0px;
  }
}
@media only screen and (max-width: 991px) {
  #herovideo {
    display: none;
  }
  .woocommerce-products-header.cat-responsive-bg {
    min-height: 200px;
    text-align: center;
  }
}
@media only screen and (min-width: 1367px) {
  #herovideo .vimeo_player_wrapper iframe {
    width: 100% !important;
  }
}
.plyr, .plyr__video-wrapper, .plyr__video-embed__container, .plyr__poster, .plyr__video-embed__container iframe {
  background-color: #fff !important;
}

.startbtn {
  width: 25%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.startbtn img {
  opacity: 0.5;
}

#mherovideo {
  background-image: url("/wp-content/uploads/2020/05/ameson-cover-portrait.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

#mvideoplayer {
  background-image: url();
}

table.gentable, .gentable table {
  border: 1px solid #dee2e6;
  margin-top: 1rem;
  margin-bottom: 1rem;
  background-color: transparent;
  border-collapse: collapse;
  width: 100%;
}
table.gentable td, .gentable table td {
  padding: 0.75rem;
  vertical-align: top;
  border: 1px solid #dee2e6;
  min-width: 25%;
}

.page-template-template-boxed main.content p, .page-template-template-my-account main.content p {
  font-size: 1rem;
  line-height: 1.875rem;
}

h2.localtitle-label {
  font-size: 1.2rem;
  color: var(--category-text-color);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  #mherovideo {
    min-height: 50vh;
  }
}
@media only screen and (min-width: 1367px) {
  #herovideo .vimeo_player_wrapper iframe {
    width: 100% !important;
  }
}
.plyr, .plyr__video-wrapper, .plyr__video-embed__container, .plyr__poster, .plyr__video-embed__container iframe {
  background-color: #fff !important;
}

.startbtn {
  width: 25%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.startbtn img {
  opacity: 0.5;
}

#mherovideo {
  background-image: url("/wp-content/themes/juliette/dist/assets/images/ameson-cover-portrait.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

#mvideoplayer {
  background-image: url();
}

.sidecart {
  font-size: 0.875rem;
  padding: 0 25px;
}

@media (max-width: 1279px) {
  .sidecart .mini-cart-wrapper {
    right: -20px;
    left: unset;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.sidecart .mini-cart-wrapper ul.woocommerce-mini-cart {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  margin-bottom: 1rem;
}

.sidecart .mini-cart-wrapper .woocommerce-mini-cart-item {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid #dadada;
  padding: 15px 0 !important;
}

.sidecart .mini-cart-wrapper .woocommerce-mini-cart-item > * {
  display: block;
}

.sidecart .mini-cart-wrapper .woocommerce-mini-cart-item span {
  margin-left: auto;
}

.sidecart .mini-cart-wrapper .woocommerce-mini-cart-item a {
  font-weight: 400 !important;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.sidecart .mini-cart-wrapper .woocommerce-mini-cart-item a:nth-of-type(2) {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 260px;
}

.sidecart .mini-cart-wrapper .woocommerce-mini-cart-item a img {
  width: 35px;
  height: 35px;
  float: none !important;
  -webkit-box-flex: 1 !important;
  -ms-flex: 1 0 32px !important;
  flex: 1 0 32px !important;
}

.sidecart .mini-cart-wrapper .woocommerce-mini-cart-item a.remove {
  font-size: 1.5em;
  height: 1em;
  width: 1em;
  text-align: center;
  line-height: 1;
  border-radius: 100%;
  color: #000 !important;
  text-decoration: none;
  font-weight: 700;
  border: 0;
  position: static !important;
}

.sidecart .mini-cart-wrapper .woocommerce-mini-cart-item a.remove:hover {
  background-color: #000 !important;
  color: #fff !important;
}

.sidecart .mini-cart-wrapper .woocommerce-mini-cart-item .quantity {
  white-space: nowrap;
}

.sidecart .mini-cart-wrapper .woocommerce-mini-cart__empty-message {
  text-align: center;
  margin-top: 20px;
}

.sidecart .mini-cart-wrapper .woocommerce-mini-cart__total {
  text-align: center;
  border-top: none !important;
}

.sidecart .mini-cart-wrapper .woocommerce-mini-cart__buttons {
  text-align: center;
  margin-bottom: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
}

.sidecart .mini-cart-wrapper .woocommerce-mini-cart__buttons a:first-child {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  padding-bottom: 0;
  padding-top: 20px;
}

.sidecart .mini-cart-wrapper .woocommerce-mini-cart__buttons a.checkout {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

.sidecart .mini-cart-wrapper .woocommerce-mini-cart__buttons a {
  margin: 0;
  line-height: 1;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  overflow: visible;
  padding: 0;
  padding-bottom: 0;
  font-weight: 400;
  border-radius: 0;
  left: auto;
  color: inherit;
  background-color: transparent;
  border: 0;
  display: block;
  background-image: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  text-shadow: none;
  text-align: center;
  padding-bottom: 10px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 100%;
}

.sidecart .mini-cart-wrapper .woocommerce-mini-cart__buttons a:first-child {
  background-color: transparent !important;
  color: #2e2d2c !important;
  font-weight: 700;
}

.sidecart .mini-cart-wrapper .woocommerce-mini-cart__buttons a:first-child:hover {
  text-decoration: underline;
  color: #000;
}

.sidecart .mini-cart-wrapper .woocommerce-mini-cart__buttons a.checkout {
  padding: 10px 70px;
  background-color: #00a1df;
  color: #fff;
  display: inline-block;
}

.sidecart .mini-cart-wrapper .woocommerce-mini-cart__buttons a.checkout:hover {
  background-color: #3cc9ff;
}

.sidecart .mini-cart-wrapper .account a {
  display: block;
  text-align: center;
  border-bottom: 1px solid #dadada;
  padding: 10px 0;
  color: #00a1df;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.sidecart .mini-cart-wrapper .account a .icon {
  width: 20px !important;
  height: 20px !important;
  display: inline-block !important;
  position: relative;
  margin-right: 10px;
}

.sidecart .mini-cart-wrapper .account a .icon.icon-profile {
  width: 24px !important;
  height: 24px !important;
}

.sidecart .mini-cart-wrapper .account a span {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.sidecart .mini-cart-wrapper .account a:hover span {
  display: block;
}

.sidecart .mini-cart-wrapper .account a:hover span:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #0f90ed;
  margin-top: -2px;
}

.sidecart .mini-cart-wrapper .account a:first-child {
  border-top: 1px solid #dadada;
}

.sidecart .mini-cart-wrapper .account a:last-child {
  border-bottom: none;
}

.ubermenu-skin-minimal .ubermenu-item-level-0 > .ubermenu-target {
  display: inline-block;
  position: relative;
  padding: 20px 20px;
}

.ubermenu-skin-minimal .ubermenu-item-level-0 > .ubermenu-target::after {
  content: "";
  position: absolute;
  width: calc(100% - 40px);
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  height: 3px;
  bottom: 0;
  left: 20px;
  -webkit-transform-origin: bottom center;
          transform-origin: bottom center;
  -webkit-transition: -webkit-transform 0.25s ease-out;
  transition: -webkit-transform 0.25s ease-out;
  transition: transform 0.25s ease-out;
  transition: transform 0.25s ease-out, -webkit-transform 0.25s ease-out;
}

.ubermenu-skin-minimal .ubermenu-item-level-0:not(.ubermenu-item-38826) > .ubermenu-target:hover::after {
  background-color: #636363;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: bottom center;
          transform-origin: bottom center;
}

.ubermenu-skin-minimal .ubermenu-item-level-0.ubermenu-current-menu-item > .ubermenu-target::after, .ubermenu-skin-minimal .ubermenu-item-level-0.ubermenu-current-menu-ancestor > .ubermenu-target::after {
  background-color: #000000;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: bottom center;
          transform-origin: bottom center;
}

.ubermenu-submenu.ubermenu-submenu-type-mega {
  border-top: 1px solid #e2e2e2 !important;
}

.ubermenu-main .ubermenu-item-normal > .ubermenu-target {
  font-weight: 400;
  text-transform: none;
}

#menu-item-52530 .ubermenu-item-level-2.ubermenu-column:not(:last-child) {
  border-right: 1px solid #ccc;
}

.ubermenu-icon.fas.fa-search {
  font-size: 16px !important;
}

.ubermenu-submenu-type-flyout {
  padding: 20px 15px !important;
}

.ubermenu-target-description.ubermenu-target-text {
  white-space: normal;
}

#menu-item-38772 .ubermenu-item-level-2.ubermenu-column:not(:last-child) {
  border-right: 1px solid #ccc;
}

li.ubermenu-current-menu-item > a,
li.ubermenu-current-menu-ancestor > a {
  -webkit-text-stroke: 0.5px #000;
}

.site-header.main-header {
  border-bottom: 1px solid #e9ecef;
}

div.footer-payment-logos {
  padding: 10px 10px !important;
  -ms-flex-preferred-size: 100% !important;
      flex-basis: 100% !important;
}
div.footer-payment-logos img {
  width: 600px;
  max-width: 100%;
  display: block;
  height: auto;
  margin: 0 auto;
}

p.madeby {
  font-size: 0.85rem !important;
  margin-top: 10px !important;
  line-height: 1rem !important;
}

.product--list .item.byproditem, .banner--carousel .swiper-slide.byproditem {
  height: 515px !important;
}

p.localtitle {
  margin-bottom: 0px !important;
  min-height: 5px !important;
  font-weight: 400 !important;
  color: #000;
}

/*fix for bePAid */
.woocommerce table.cart img {
  height: auto;
  width: 32px;
}

.woocommerce-order-pay a.button.checkout-button, .woocommerce-order-pay a.button.wc_quick_order_add_row, .woocommerce-order-pay a.button.wc_quick_order_add_to_cart {
  color: #fff !important;
  font-size: 100%;
  line-height: 1;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  overflow: visible;
  padding: 0.618em 1em !important;
  font-weight: 700;
  border-radius: 3px;
  left: auto;
  border: 0;
  display: inline-block;
  background-image: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  text-shadow: none;
  margin-right: 10px;
}
.woocommerce-order-pay a.cancel {
  background-color: #e9e6ed;
  color: #000000;
  padding: 0.618em 1em !important;
  font-weight: 700 !important;
  border-radius: 3px !important;
}
/*# sourceMappingURL=main.min.css.map */