/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
@import '../css/bootstrap-grid.css';
@import '../css/hamburgers.css';
@import '../css/slick.css';
@import '../css/jquery.fancybox.css';
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

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

/*Colors*/
/*Classes*/
@media only screen and (min-width: 768px) {
  .desktopHide {
    display: none !important;
  }
}

.clearfix {
  overflow: visible;
}
.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

.overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(58, 58, 58, 0.65);
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
* {
  scroll-behavior: smooth;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  padding-top: 155px;
  /*@include devices(biggest){
    padding-top: 220px;
  }*/
}
@media only screen and (min-width: 992px) {
  body {
    padding-top: 120px;
  }
}
@media only screen and (min-width: 1200px) {
  body {
    padding-top: 200px;
  }
}

body, html {
  line-height: 0;
  overflow-x: hidden;
  font-size: 16px;
  line-height: 16px;
}

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

h1 {
  font-size: 2rem;
  line-height: 2.25rem;
  font-weight: 700;
  letter-spacing: -2%;
  margin-bottom: 12px;
}
@media only screen and (min-width: 768px) {
  h1 {
    margin-bottom: 20px;
    font-size: 2.5rem;
    line-height: 3rem;
  }
}

h2 {
  font-size: 1.8125rem;
  line-height: 2.0625rem;
  font-weight: 500;
  letter-spacing: -2%;
  margin-bottom: 12px;
}
@media only screen and (min-width: 768px) {
  h2 {
    margin-bottom: 20px;
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}
@media only screen and (min-width: 992px) {
  h2 {
    font-size: 2.25rem;
    line-height: 2.75rem;
  }
}

h3 {
  font-size: 1.625rem;
  line-height: 1.875rem;
  font-weight: 500;
  letter-spacing: -2%;
  margin-bottom: 12px;
}
@media only screen and (min-width: 768px) {
  h3 {
    margin-bottom: 20px;
    font-size: 2rem;
    line-height: 2.5rem;
  }
}

h4 {
  font-size: 1.4375rem;
  line-height: 1.6875rem;
  font-weight: 500;
  letter-spacing: -2%;
  margin-bottom: 12px;
}
@media only screen and (min-width: 768px) {
  h4 {
    margin-bottom: 20px;
    font-size: 1.75rem;
    line-height: 2.25rem;
  }
}

h5 {
  font-size: 1rem;
  line-height: 1.375rem;
  font-weight: 500;
  letter-spacing: -2%;
  margin-bottom: 20px;
}

h6 {
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  letter-spacing: -2%;
  margin-bottom: 20px;
}

a, a:link, a:focus, a:visited {
  color: #3B82F6;
  text-decoration: underline;
}
a:hover, a:link:hover, a:focus:hover, a:visited:hover {
  text-decoration: none;
}

p {
  font-size: 0.8125rem;
  line-height: 1.25rem;
  margin-bottom: 12px;
}
@media only screen and (min-width: 992px) {
  p {
    font-size: 1rem;
    line-height: 1.375rem;
    margin-bottom: 40px;
  }
}
p strong {
  font-weight: 600;
}
p em {
  font-style: italic;
}

ul {
  margin-bottom: 12px;
  padding-left: 25px;
}
@media only screen and (min-width: 992px) {
  ul {
    margin-bottom: 40px;
  }
}
ul li {
  font-size: 0.8125rem;
  line-height: 1.25rem;
  margin-bottom: 6px;
  position: relative;
}
@media only screen and (min-width: 992px) {
  ul li {
    font-size: 1rem;
    line-height: 1.375rem;
  }
}
ul li::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  background-color: #27272A;
  position: absolute;
  top: 8px;
  left: -16px;
  border-radius: 100%;
}
ul li strong {
  font-weight: 700;
}
ul ul {
  margin-bottom: 0;
}
ul ul li::before {
  display: none;
}

ol {
  list-style: decimal;
  margin-bottom: 40px;
  padding-left: 25px;
}
ol li {
  font-size: 1rem;
  line-height: 1.375rem;
  margin-bottom: 6px;
}
ol li::marker {
  margin-right: 10px;
  font-weight: 700;
}
ol li strong {
  font-weight: 700;
}
ol ol {
  margin-bottom: 0;
}

.container {
  width: 100%;
  margin: 0 auto;
  max-width: 1420px;
  padding-left: 16px;
  padding-right: 16px;
}
@media only screen and (min-width: 1200px) {
  .container {
    width: 95%;
  }
}
.container.container-thin {
  max-width: 940px;
}

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

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

.bottom-line {
  margin-bottom: 40px;
  border-bottom: 1px solid #E4E4E7;
}
@media only screen and (min-width: 768px) {
  .bottom-line {
    margin-bottom: 80px;
  }
}
.bottom-line.small-margin {
  margin-bottom: 40px;
}

.wp-block-buttons .wp-block-button__link {
  position: relative;
  display: inline-block;
  background-color: transparent;
  border: 1px solid #E4E4E7;
  color: #27272A;
  padding: 9px 30px;
  border-radius: 5px;
  font-size: 0.8125rem;
  line-height: 1.25rem;
  font-weight: 700;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-transform: uppercase;
  overflow: hidden;
  text-decoration: none;
  margin-bottom: 10px;
  margin-right: 10px;
}
.wp-block-buttons .wp-block-button__link:hover {
  border: 1px solid #3B82F6;
}

.loading {
  filter: blur(10px);
  -webkit-filter: blur(10px);
}

.fixed-button, .fixed-button:link, .fixed-button:focus, .fixed-button:visited {
  display: none;
  width: 116px;
  height: auto;
  background-color: #3B82F6;
  color: #fff;
  text-decoration: none;
  border-radius: 20px;
  padding: 14px;
  text-align: center;
  position: fixed;
  top: 130px;
  right: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 9999;
}
@media only screen and (min-width: 768px) {
  .fixed-button, .fixed-button:link, .fixed-button:focus, .fixed-button:visited {
    top: 190px;
    display: block;
  }
}
@media only screen and (min-width: 1600px) {
  .fixed-button, .fixed-button:link, .fixed-button:focus, .fixed-button:visited {
    top: 348px;
  }
}
.fixed-button.promo, .fixed-button:link.promo, .fixed-button:focus.promo, .fixed-button:visited.promo {
  top: 295px !important;
}
.fixed-button:hover, .fixed-button:link:hover, .fixed-button:focus:hover, .fixed-button:visited:hover {
  background-color: #E4E4E7;
}
.fixed-button:hover svg path, .fixed-button:link:hover svg path, .fixed-button:focus:hover svg path, .fixed-button:visited:hover svg path {
  stroke: #27272A;
}
.fixed-button:hover p, .fixed-button:link:hover p, .fixed-button:focus:hover p, .fixed-button:visited:hover p {
  color: #27272A;
}
.fixed-button svg, .fixed-button:link svg, .fixed-button:focus svg, .fixed-button:visited svg {
  width: 28px;
  height: 28px;
  margin-bottom: 12px;
}
.fixed-button svg path, .fixed-button:link svg path, .fixed-button:focus svg path, .fixed-button:visited svg path {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.fixed-button p, .fixed-button:link p, .fixed-button:focus p, .fixed-button:visited p {
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
  letter-spacing: 0%;
  color: #fff;
  display: block;
  margin-bottom: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.order-product-popup {
  display: none;
  border-radius: 10px;
  padding: 20px 25px;
  background-color: #fff;
  margin: 12px 0 12px;
}
@media only screen and (min-width: 768px) {
  .order-product-popup {
    padding: 30px 50px;
    max-width: 700px;
    margin: 44px 0 44px;
  }
}
.order-product-popup .popup-header {
  font-size: 2rem;
  line-height: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}
@media only screen and (min-width: 768px) {
  .order-product-popup .popup-header {
    margin-bottom: 30px;
  }
}
.order-product-popup .wpcf7, .order-product-popup .custom-form {
  margin-bottom: 0;
}
.order-product-popup .wpcf7 input[type=text], .order-product-popup .wpcf7 input[type=email], .order-product-popup .wpcf7 input[type=tel], .order-product-popup .wpcf7 textarea {
  margin-bottom: 10px;
  padding: 6px 14px;
}
@media only screen and (min-width: 768px) {
  .order-product-popup .wpcf7 input[type=text], .order-product-popup .wpcf7 input[type=email], .order-product-popup .wpcf7 input[type=tel], .order-product-popup .wpcf7 textarea {
    margin-bottom: 15px;
    padding: 11px 14px;
  }
}
.order-product-popup .wpcf7 textarea {
  height: 180px;
}
@media only screen and (min-width: 768px) {
  .order-product-popup .wpcf7 textarea {
    height: auto;
  }
}
.order-product-popup .wpcf7 .checkbox .text-wrap label {
  font-size: 0.875rem;
  line-height: 0.875rem;
}
@media only screen and (min-width: 768px) {
  .order-product-popup .wpcf7 .checkbox .text-wrap label {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

.promo-title {
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.625rem;
  color: #3B82F6;
  font-weight: 700;
}

.counter {
  text-align: center;
}
.counter big {
  font-size: 2.5rem;
  line-height: 2.625rem;
  color: #3B82F6;
  font-weight: 900;
  padding-right: 5px;
}
.counter span {
  font-size: 1.25rem;
  line-height: 1.375rem;
  font-weight: 700;
  padding-right: 20px;
}

.bubble-small-wrap {
  pointer-events: none;
  position: absolute;
}

.bubble-big-wrap {
  pointer-events: none;
  position: absolute;
}

.bubble-small, .bubble-big {
  width: 238px;
  height: 238px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  color: #222;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.05) 70%, rgba(255, 255, 255, 0) 100%);
  backdrop-filter: blur(4px) saturate(120%);
  -webkit-backdrop-filter: blur(4px) saturate(120%);
  box-shadow: inset 0 0 25px rgba(255, 255, 255, 0.25), inset 0 0 40px rgba(255, 255, 255, 0.08), 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  isolation: isolate;
  z-index: 2;
}
.bubble-small::before, .bubble-big::before {
  content: "";
  position: absolute;
  top: 10%;
  left: 15%;
  width: 60%;
  height: 40%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.5), transparent 70%);
  transform: rotate(-20deg);
  opacity: 0.6;
  pointer-events: none;
}
.bubble-small::after, .bubble-big::after {
  content: "";
  position: absolute;
  bottom: 15%;
  right: 20%;
  width: 40%;
  height: 30%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.2), transparent 80%);
  opacity: 0.3;
  filter: blur(2px);
  pointer-events: none;
}
.bubble-small::part(edge), .bubble-big::part(edge) {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.15), 0 0 15px rgba(255, 255, 255, 0.05);
}

.bubble-big {
  width: 412px;
  height: 412px;
}

.wp-block-image {
  margin-bottom: 40px;
}
@media only screen and (min-width: 768px) {
  .wp-block-image {
    margin-bottom: 80px;
  }
}
.wp-block-image img {
  border-radius: 40px;
}
@media only screen and (min-width: 992px) {
  .wp-block-image img {
    border-radius: 60px;
  }
}

.custom-button-wrap {
  margin-bottom: 40px;
}

.btn, .btn:link, .btn:focus, .btn:visited {
  position: relative;
  display: inline-block;
  background-color: transparent;
  border: 1px solid #27272A;
  color: #27272A;
  padding: 13px 24px;
  font-size: 0.875rem;
  line-height: 1.25rem;
  border-radius: 60px;
  font-weight: 700;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  text-decoration: none;
  margin-bottom: 10px;
  margin-right: 10px;
}
.btn:hover, .btn:link:hover, .btn:focus:hover, .btn:visited:hover {
  border: 1px solid #3B82F6;
}
.btn.glossy, .btn:link.glossy, .btn:focus.glossy, .btn:visited.glossy {
  border: 1px solid #fff;
  margin-bottom: 0;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 20px;
  border: 1px solid #fff;
  position: relative;
  /*&:first-of-type{
      margin-bottom: 10px;
      @include devices(large){
          margin-bottom: 0;
      }
  }*/
}
.btn.glossy:hover::before, .btn:link.glossy:hover::before, .btn:focus.glossy:hover::before, .btn:visited.glossy:hover::before {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
}
.btn.glossy:hover::after, .btn:link.glossy:hover::after, .btn:focus.glossy:hover::after, .btn:visited.glossy:hover::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.4), transparent, rgba(255, 255, 255, 0.5));
}
.btn.glossy::before, .btn:link.glossy::before, .btn:focus.glossy::before, .btn:visited.glossy::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
  width: 30%;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.btn.glossy::after, .btn:link.glossy::after, .btn:focus.glossy::after, .btn:visited.glossy::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent, rgba(255, 255, 255, 0.7));
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.btn.glossy span, .btn.glossy svg, .btn:link.glossy span, .btn:link.glossy svg, .btn:focus.glossy span, .btn:focus.glossy svg, .btn:visited.glossy span, .btn:visited.glossy svg {
  position: relative;
  z-index: 2;
}
.btn.square, .btn:link.square, .btn:focus.square, .btn:visited.square {
  padding: 9px 30px;
  border-radius: 5px;
}
.btn.blue, .btn:link.blue, .btn:focus.blue, .btn:visited.blue {
  border: 1px solid #3B82F6;
  color: #fff;
  background-color: #3B82F6;
}
.btn.blue:hover, .btn:link.blue:hover, .btn:focus.blue:hover, .btn:visited.blue:hover {
  border: 1px solid #E4E4E7;
  color: #fff;
  background-color: #cccccc;
}
.btn.gray, .btn:link.gray, .btn:focus.gray, .btn:visited.gray {
  border: 1px solid #F4F4F5;
  color: #27272A;
  background-color: #F4F4F5;
}
.btn.gray:hover, .btn:link.gray:hover, .btn:focus.gray:hover, .btn:visited.gray:hover {
  border: 1px solid #3B82F6;
  color: #fff;
  background-color: #3B82F6;
}
.btn.white-bg, .btn:link.white-bg, .btn:focus.white-bg, .btn:visited.white-bg {
  border: 1px solid #fff;
  color: #27272A;
  background-color: #fff;
}
.btn.white-bg:hover, .btn:link.white-bg:hover, .btn:focus.white-bg:hover, .btn:visited.white-bg:hover {
  border: 1px solid #3B82F6;
  color: #fff;
  background-color: #3B82F6;
}
.btn.white-bg-alt, .btn:link.white-bg-alt, .btn:focus.white-bg-alt, .btn:visited.white-bg-alt {
  border: 1px solid #fff;
  color: #3B82F6;
  background-color: #fff;
}
.btn.white-bg-alt:hover, .btn:link.white-bg-alt:hover, .btn:focus.white-bg-alt:hover, .btn:visited.white-bg-alt:hover {
  border: 1px solid #fff;
  color: #fff;
  background-color: #3B82F6;
}
.btn.white-bg-alt:hover svg path, .btn:link.white-bg-alt:hover svg path, .btn:focus.white-bg-alt:hover svg path, .btn:visited.white-bg-alt:hover svg path {
  stroke: #fff;
}
.btn.white-bg-alt svg path, .btn:link.white-bg-alt svg path, .btn:focus.white-bg-alt svg path, .btn:visited.white-bg-alt svg path {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.btn.black-border, .btn:link.black-border, .btn:focus.black-border, .btn:visited.black-border {
  border: 1px solid #27272A;
  color: #27272A;
  background-color: transparent;
}
.btn.black-border:hover, .btn:link.black-border:hover, .btn:focus.black-border:hover, .btn:visited.black-border:hover {
  border: 1px solid #3B82F6;
  color: #27272A;
  background-color: transparent;
}
.btn.white-border, .btn:link.white-border, .btn:focus.white-border, .btn:visited.white-border {
  border: 1px solid #fff;
  color: #fff;
  background-color: transparent;
}
.btn.white-border:hover, .btn:link.white-border:hover, .btn:focus.white-border:hover, .btn:visited.white-border:hover {
  border: 1px solid #3B82F6;
  color: #fff;
  background-color: transparent;
}
.btn.white-border-alt, .btn:link.white-border-alt, .btn:focus.white-border-alt, .btn:visited.white-border-alt {
  border: 1px solid #fff;
  color: #fff;
  background-color: transparent;
}
.btn.white-border-alt:hover, .btn:link.white-border-alt:hover, .btn:focus.white-border-alt:hover, .btn:visited.white-border-alt:hover {
  border: 1px solid #fff;
  color: #3B82F6;
  background-color: #fff;
}
.btn.white-border-alt:hover svg path, .btn:link.white-border-alt:hover svg path, .btn:focus.white-border-alt:hover svg path, .btn:visited.white-border-alt:hover svg path {
  stroke: #3B82F6;
}
.btn.white-border-alt svg path, .btn:link.white-border-alt svg path, .btn:focus.white-border-alt svg path, .btn:visited.white-border-alt svg path {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.btn span, .btn:link span, .btn:focus span, .btn:visited span {
  vertical-align: middle;
}
.btn svg, .btn:link svg, .btn:focus svg, .btn:visited svg {
  margin-left: 10px;
  vertical-align: middle;
  width: 20px;
  height: 20px;
}

.main-nav {
  width: 100%;
  position: fixed;
  z-index: 999;
  background-color: #fff;
  top: 0;
  left: 0;
  padding: 16px 0 16px 0;
}
@media only screen and (min-width: 1200px) {
  .main-nav {
    padding: 40px 0 20px 0;
    position: absolute;
  }
}
.main-nav.sticky {
  padding: 10px 0 10px 0;
  position: fixed;
  border-bottom: 1px solid #e0e0e0;
}
.main-nav.sticky .right-icons-wrap .right-icon-single p {
  margin-bottom: 13px;
}
.main-nav .row {
  margin-left: 0;
  margin-right: 0;
}
.main-nav .row .col {
  padding-left: 0;
  padding-right: 0;
}
.main-nav .logo-wrap {
  margin-right: 10px;
  float: left;
}
@media only screen and (min-width: 992px) {
  .main-nav .logo-wrap {
    margin-right: 30px;
  }
}
@media only screen and (min-width: 1200px) {
  .main-nav .logo-wrap {
    margin-right: 2px;
  }
}
@media only screen and (min-width: 1600px) {
  .main-nav .logo-wrap {
    margin-right: 30px;
  }
}
.main-nav .logo-wrap img {
  max-height: 52px;
  object-fit: contain;
}
.main-nav .float-right-wrap {
  float: right;
}
.main-nav .search-wrap, .main-nav .search-wrap-mobile {
  float: left;
  display: none;
}
@media only screen and (min-width: 1200px) {
  .main-nav .search-wrap, .main-nav .search-wrap-mobile {
    padding-top: 2px;
    display: block;
    margin-right: 40px;
  }
}
.main-nav .search-wrap form, .main-nav .search-wrap-mobile form {
  position: relative;
}
.main-nav .search-wrap form input[type=text], .main-nav .search-wrap-mobile form input[type=text] {
  height: 48px;
  padding: 14px 125px 14px 25px;
  min-width: 300px;
  border: 1px solid #E4E4E7;
  border-radius: 60px;
}
@media only screen and (min-width: 992px) {
  .main-nav .search-wrap form input[type=text], .main-nav .search-wrap-mobile form input[type=text] {
    min-width: 605px;
  }
}
@media only screen and (min-width: 1200px) {
  .main-nav .search-wrap form input[type=text], .main-nav .search-wrap-mobile form input[type=text] {
    min-width: 355px;
  }
}
@media only screen and (min-width: 1600px) {
  .main-nav .search-wrap form input[type=text], .main-nav .search-wrap-mobile form input[type=text] {
    min-width: 580px;
  }
}
@media only screen and (min-width: 1920px) {
  .main-nav .search-wrap form input[type=text], .main-nav .search-wrap-mobile form input[type=text] {
    min-width: 720px;
  }
}
.main-nav .search-wrap form input[type=text]::placeholder, .main-nav .search-wrap-mobile form input[type=text]::placeholder {
  color: #cccccc;
  opacity: 1;
}
.main-nav .search-wrap form input[type=submit], .main-nav .search-wrap-mobile form input[type=submit] {
  position: absolute;
  right: 0;
  top: 0;
  margin: 0;
  cursor: pointer;
}
.main-nav .search-wrap-mobile {
  width: 100%;
  display: none;
  padding: 10px 0;
}
@media only screen and (min-width: 992px) {
  .main-nav .search-wrap-mobile {
    display: none;
  }
}
.main-nav .search-wrap-mobile form {
  float: left;
}
.main-nav .search-wrap-mobile .close-search-mobile {
  display: block;
  float: left;
  width: 32px;
  height: 32px;
  margin-left: 10px;
  margin-top: 4px;
}
@media only screen and (min-width: 992px) {
  .main-nav .search-wrap-mobile .close-search-mobile {
    display: none;
  }
}
.main-nav .search-wrap-mobile .close-search-mobile svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.main-nav .call-now-button {
  border-radius: 60px;
  background-color: #3B82F6;
  padding: 10px 14px;
  vertical-align: middle;
  text-decoration: none;
  margin-right: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  float: right;
}
@media only screen and (min-width: 768px) {
  .main-nav .call-now-button {
    padding: 14px 8px;
  }
}
@media only screen and (min-width: 1200px) {
  .main-nav .call-now-button {
    display: inline-block;
    margin-right: 10px;
    padding: 14px 8px;
    float: left;
  }
}
@media only screen and (min-width: 1600px) {
  .main-nav .call-now-button {
    padding: 14px 26px;
    margin-left: 15px;
  }
}
@media only screen and (min-width: 1920px) {
  .main-nav .call-now-button {
    margin-left: 0;
    margin-right: 40px;
    padding: 14px 30px;
  }
}
.main-nav .call-now-button:hover {
  background-color: #F4F4F5;
}
.main-nav .call-now-button:hover svg, .main-nav .call-now-button:hover span {
  color: #27272A;
}
.main-nav .call-now-button svg {
  width: 14px;
  height: 14px;
  vertical-align: middle;
  color: #fff;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.main-nav .call-now-button span {
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
  vertical-align: middle;
  color: #fff;
  margin-right: 8px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.main-nav .right-icons-wrap {
  float: left;
  padding-top: 16px;
}
@media only screen and (min-width: 768px) {
  .main-nav .right-icons-wrap {
    padding-top: 0;
    margin-right: 10px;
  }
}
@media only screen and (min-width: 1200px) {
  .main-nav .right-icons-wrap {
    margin-right: 0;
  }
}
.main-nav .right-icons-wrap .right-icon-single {
  display: inline-block;
  margin-right: 8px;
  text-align: center;
  text-decoration: none;
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 100%;
  background-color: #F4F4F5;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media only screen and (min-width: 992px) {
  .main-nav .right-icons-wrap .right-icon-single {
    width: 48px;
    height: 48px;
    margin-right: 6px;
  }
}
@media only screen and (min-width: 1600px) {
  .main-nav .right-icons-wrap .right-icon-single {
    margin-right: 20px;
  }
}
@media only screen and (min-width: 1920px) {
  .main-nav .right-icons-wrap .right-icon-single {
    margin-right: 40px;
  }
}
.main-nav .right-icons-wrap .right-icon-single:hover {
  background-color: #3B82F6;
}
.main-nav .right-icons-wrap .right-icon-single:hover svg {
  color: #fff;
}
.main-nav .right-icons-wrap .right-icon-single:last-of-type {
  margin-right: 0;
}
.main-nav .right-icons-wrap .right-icon-single.search-mobile {
  display: inline-block;
}
@media only screen and (min-width: 992px) {
  .main-nav .right-icons-wrap .right-icon-single.search-mobile {
    display: none;
  }
}
.main-nav .right-icons-wrap .right-icon-single svg {
  width: 100%;
  height: 100%;
  color: #27272A;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 8px;
}
.main-nav .home-button {
  float: left;
  width: 48px;
  height: 48px;
  margin-right: 20px;
  background-color: #F4F4F5;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 100%;
}
.main-nav .home-button:hover {
  background-color: #3B82F6;
}
.main-nav .home-button:hover svg path {
  stroke: #fff;
}
.main-nav .home-button svg {
  width: 100%;
  height: 100%;
  padding: 10px;
  color: #27272A;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.main-nav .home-button svg path {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.main-nav .menu:not(.mobile-menu) {
  list-style: none;
  float: left;
  padding: 0;
  margin: 0;
}
.main-nav .menu:not(.mobile-menu) li {
  float: left;
  padding: 0 20px;
  margin-bottom: 0;
  line-height: 1.5rem;
  min-height: 48px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 1200px) {
  .main-nav .menu:not(.mobile-menu) li {
    padding: 0 10px;
  }
}
@media only screen and (min-width: 1600px) {
  .main-nav .menu:not(.mobile-menu) li {
    padding: 0 20px;
  }
}
.main-nav .menu:not(.mobile-menu) li a {
  font-size: 1rem;
  font-weight: 700;
  color: #27272A;
  text-decoration: none;
}
@media only screen and (min-width: 1200px) {
  .main-nav .menu:not(.mobile-menu) li a {
    font-size: 0.875rem;
  }
}
@media only screen and (min-width: 1600px) {
  .main-nav .menu:not(.mobile-menu) li a {
    font-size: 1rem;
  }
}
.main-nav .menu:not(.mobile-menu) li.menu-item-has-children {
  position: relative;
  /*&::after{
      content: "";
      display: block;
      width: 16px;
      height: 16px;
      background-image: url(../images/chevron-down.svg);
      background-size: contain;
      background-position: center;
      background-repeat: no-repeat;
      position: absolute;
      right: 15px;
      top: 0;
      bottom: 0;
      margin: auto;
  }*/
}
.main-nav .menu:not(.mobile-menu) li.menu-item-has-children:hover > .sub-menu {
  display: block;
}
.main-nav .menu:not(.mobile-menu) li.current-menu-item > a {
  color: #3B82F6;
}
.main-nav .menu:not(.mobile-menu) li::before {
  display: none;
}
.main-nav .menu:not(.mobile-menu) .sub-menu {
  display: none;
  position: absolute;
  z-index: 9;
  top: 100%;
  left: 0;
  background-color: #fff;
  padding: 0;
  -webkit-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.15);
  min-width: 200px;
  border-radius: 5px;
  padding: 10px 0;
}
.main-nav .menu:not(.mobile-menu) .sub-menu li {
  display: block;
  padding: 5px 20px;
  width: 100%;
}
.main-nav .menu:not(.mobile-menu) .sub-menu li.menu-item-has-children::after {
  transform: rotate(-90deg);
}
.main-nav .menu:not(.mobile-menu) .sub-menu li.current-menu-item > a {
  color: #3B82F6;
}
.main-nav .menu:not(.mobile-menu) .sub-menu li a {
  color: #27272A;
  font-weight: 400;
}
.main-nav .menu:not(.mobile-menu) .sub-menu li .sub-menu {
  top: 0;
  left: 100%;
  min-width: 200px;
}
.main-nav .menu:not(.mobile-menu) .sub-menu li .sub-menu li.current-menu-item > a {
  color: #3B82F6;
}
.main-nav .hamburger {
  padding: 0;
  padding-top: 11px;
}
@media only screen and (min-width: 768px) {
  .main-nav .hamburger {
    padding-top: 0;
    margin-left: 10px;
  }
}
.main-nav .hamburger .hamburger-box {
  width: 48px;
  height: 48px;
  background-color: #F4F4F5;
  border-radius: 100%;
  padding: 16px;
}
.main-nav .hamburger-inner::after {
  bottom: -6px;
}
.main-nav .hamburger-inner::before {
  top: -6px;
}
.main-nav .hamburger-inner, .main-nav .hamburger-inner::after, .main-nav .hamburger-inner::before {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  width: 16px;
  height: 2px;
  color: #27272A;
}
.main-nav .bottom-wrap {
  display: none;
}
@media only screen and (min-width: 1200px) {
  .main-nav .bottom-wrap {
    display: block;
    padding-top: 20px;
  }
}

.social-media-wrap {
  float: right;
}
.social-media-wrap span {
  font-size: 0.6875rem;
  line-height: 1rem;
  margin-right: 20px;
  vertical-align: middle;
}
@media only screen and (min-width: 1200px) {
  .social-media-wrap span {
    display: none;
  }
}
@media only screen and (min-width: 1600px) {
  .social-media-wrap span {
    display: inline;
    margin-right: 8px;
  }
}
@media only screen and (min-width: 1920px) {
  .social-media-wrap span {
    margin-right: 20px;
  }
}
.social-media-wrap .social-media-icon {
  width: 24px;
  height: 24px;
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
}
.social-media-wrap .social-media-icon:hover svg {
  color: #3B82F6;
}
.social-media-wrap .social-media-icon:last-of-type {
  margin-right: 0;
}
.social-media-wrap .social-media-icon svg {
  width: 100%;
  height: 100%;
  color: #27272A;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.sidenav {
  position: fixed;
  background-color: #fff;
  height: 100vh;
  width: 100%;
  top: 0;
  left: -100%;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 9999;
}
.sidenav.open {
  left: 0px;
}
.sidenav .hamburger {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 10px 5px;
  /*.hamburger-inner::after{
      bottom: -8px;
  } 
  .hamburger-inner::before{
      top: -8px;
  }*/
}
.sidenav .hamburger .hamburger-box {
  width: 22px;
  height: 22px;
}
.sidenav .hamburger .hamburger-inner, .sidenav .hamburger .hamburger-inner::after, .sidenav .hamburger .hamburger-inner::before {
  background-color: #27272A;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  width: 22px;
  height: 1px;
}
.sidenav .top-wrap {
  overflow: hidden;
  border-bottom: 1px solid #E4E4E7;
}
.sidenav .top-wrap a.logo-wrap {
  display: block;
  float: left;
  height: 45px;
  width: 100px;
  margin-top: 25px;
  margin-bottom: 25px;
  margin-left: 40px;
}
.sidenav .top-wrap a.logo-wrap img, .sidenav .top-wrap a.logo-wrap svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  fill: #fff;
}
.sidenav .menu-bg-wrap {
  background-position: left bottom;
  background-size: contain;
  background-repeat: no-repeat;
  height: calc(100% - 67px);
  overflow: scroll;
  padding-top: 60px;
}
.sidenav .menu-bg-wrap.background-sub-menu {
  background-color: #fff;
}
.sidenav .menu-bg-wrap.background-sub-menu .extra-menu-items {
  display: none;
}
.sidenav .menu-bg-wrap .mobile-menu {
  float: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  list-style: none;
  padding-left: 0;
  border-top: 1px solid #E4E4E7;
}
.sidenav .menu-bg-wrap .mobile-menu li {
  float: none;
  display: block;
  border-bottom: 1px solid #E4E4E7;
  padding: 0;
  margin-bottom: 0;
  /*&.menu-item-has-children{
      position: relative;
      >a{
          padding-right: 90px;
      }
  }*/
}
.sidenav .menu-bg-wrap .mobile-menu li a {
  text-align: left;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
  color: #27272A;
  padding: 10px 24px 10px 40px;
  display: block;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.sidenav .menu-bg-wrap .mobile-menu li a:hover {
  background-color: #fff;
}
.sidenav .menu-bg-wrap .mobile-menu li a .arrow {
  height: 100%;
  width: 90px;
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  background-image: url(../images/chevron-right.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 18px;
  background-color: #fff;
  border-left: 1px solid #E4E4E7;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.sidenav .menu-bg-wrap .mobile-menu li a .arrow:hover {
  background-color: #27272A;
}
.sidenav .menu-bg-wrap .mobile-menu li a .back-arrow {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 90px;
  background-image: url(../images/chevron-left.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 18px;
  background-color: #fff;
  display: none;
  border-right: 1px solid #E4E4E7;
}
.sidenav .menu-bg-wrap .mobile-menu li a.menu-item-going-back {
  margin-left: 0;
  font-weight: 400;
  color: #27272A;
  background-color: #fff;
  position: relative;
  padding-left: 130px;
  padding-right: 40px;
  border-bottom: 1px solid #E4E4E7;
  border-top: 1px solid #E4E4E7;
}
.sidenav .menu-bg-wrap .mobile-menu li .sub-menu {
  display: none;
  padding-left: 0;
}
.sidenav .menu-bg-wrap .mobile-menu li .sub-menu li:last-of-type {
  border-bottom: none;
}
.sidenav .menu-bg-wrap .mobile-menu li .sub-menu li a .arrow {
  background-image: url(../images/chevron-right.svg);
}
.sidenav .menu-bg-wrap .mobile-menu li .sub-menu li a.menu-item-going-back {
  margin-left: 0;
  font-weight: 400;
  color: #27272A;
}
.sidenav .menu-bg-wrap .mobile-menu li .sub-menu li .sub-menu li:last-of-type {
  border-bottom: none;
}
.sidenav .social-media-wrap {
  padding: 0 40px;
}

.item-count {
  position: absolute;
  opacity: 1;
  font-size: 0.8125rem;
  line-height: 1rem;
  font-weight: 700;
  background-color: #3B82F6;
  color: #fff;
  padding: 2px 5px;
  border-radius: 5px;
}
.item-count.hidden {
  opacity: 0;
}

.top-lang {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 9999;
  transform: scale(0.6);
}

footer {
  padding: 0 0 16px 0;
}
@media only screen and (min-width: 768px) {
  footer {
    padding: 0 0 40px 0;
  }
}
footer .widget-title {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}
footer ul {
  padding-left: 0;
  margin-bottom: 24px;
}
footer ul li {
  margin-bottom: 8px;
}
footer ul li::before {
  display: none;
}
footer ul li a, footer ul li a:link, footer ul li a:focus, footer ul li a:visited {
  font-size: 0.875rem;
  line-height: 1.25rem;
  text-decoration: none;
  color: #27272A;
}
footer .contact-wrap {
  margin-bottom: 24px;
}
footer .footer-link-icon-wrap {
  margin-bottom: 15px;
}
footer .footer-link-icon {
  text-decoration: none;
  color: #27272A;
  position: relative;
  padding-left: 28px;
  display: block;
}
footer .footer-link-icon svg {
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 1px;
}
footer .footer-link-icon span {
  font-size: 0.875rem;
  line-height: 1.25rem;
  vertical-align: middle;
}
footer .social-media-icon {
  margin-right: 8px;
  width: 48px;
  height: 48px;
  background-color: #F4F4F5;
  border-radius: 100%;
  float: left;
  color: #27272A;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media only screen and (min-width: 768px) {
  footer .social-media-icon {
    margin-right: 5px;
  }
}
@media only screen and (min-width: 992px) {
  footer .social-media-icon {
    margin-right: 8px;
  }
}
footer .social-media-icon:hover {
  color: #fff;
  background-color: #3B82F6;
}
footer .social-media-icon svg {
  width: 100%;
  height: 100%;
  padding: 10px;
}
footer p {
  font-size: 0.8125rem;
  line-height: 1.25rem;
  margin-bottom: 10px;
}
footer .logo-wrap {
  max-height: 52px;
  display: block;
  margin-bottom: 12px;
}
@media only screen and (min-width: 768px) {
  footer .logo-wrap {
    margin-bottom: 0;
  }
}
footer .footer-top {
  padding-bottom: 16px;
}
footer .footer-bottom {
  padding: 16px;
  border-radius: 40px;
  background-color: #F4F4F5;
}
@media only screen and (min-width: 768px) {
  footer .footer-bottom {
    padding: 24px 60px;
    border-radius: 60px;
  }
}
footer .footer-bottom .col {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media only screen and (min-width: 768px) {
  footer .footer-bottom .col.align-right {
    justify-content: end;
    text-align: center;
  }
}
@media only screen and (min-width: 992px) {
  footer .footer-bottom .col.align-right {
    text-align: right;
  }
}
footer .footer-bottom .col.align-center {
  text-align: left;
}
@media only screen and (min-width: 768px) {
  footer .footer-bottom .col.align-center {
    text-align: center;
  }
}
footer .footer-bottom p {
  font-size: 0.875rem;
  line-height: 1.5rem;
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
  footer .footer-bottom p {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
footer .footer-bottom p strong, footer .footer-bottom p a {
  font-weight: 700;
}
footer .footer-bottom a {
  color: #27272A;
  text-decoration: none;
}
footer .footer-bottom-menu {
  float: right;
  padding-right: 0;
}
@media only screen and (min-width: 992px) {
  footer .footer-bottom-menu {
    padding-right: 20px;
    float: left;
  }
}
footer .footer-bottom-menu li {
  float: right;
  margin: 0 5px;
}
@media only screen and (min-width: 768px) {
  footer .footer-bottom-menu li {
    float: left;
  }
}
footer .footer-bottom-menu li:first-of-type {
  margin-left: 0;
}

.cookie-popup {
  display: none;
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 999999999;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.cookie-popup .overlay {
  background-color: rgbargba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.cookie-popup .cookie-banner {
  background-color: #fff;
  padding: 25px 20px;
  border-radius: 15px;
  text-align: center;
  width: 90%;
  bottom: 0;
  left: 0;
  z-index: 999;
}
@media only screen and (min-width: 768px) {
  .cookie-popup .cookie-banner {
    width: 70%;
    padding: 25px 20px;
  }
}
@media only screen and (min-width: 1200px) {
  .cookie-popup .cookie-banner {
    padding: 30px 25px;
    width: 60%;
  }
}
@media only screen and (min-width: 1600px) {
  .cookie-popup .cookie-banner {
    width: 50%;
  }
}
.cookie-popup .cookie-banner span {
  font-size: 1rem;
  line-height: 1.5rem;
}
.cookie-popup .cookie-banner a {
  font-size: 1rem;
  line-height: 1.5rem;
  color: #3B82F6;
  text-decoration: underline;
}
.cookie-popup .cookie-banner a:hover {
  text-decoration: none;
}
.cookie-popup .cookie-banner .buttons-wrap {
  display: inline-block;
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media only screen and (min-width: 768px) {
  .cookie-popup .cookie-banner .buttons-wrap {
    padding-top: 25px;
    flex-direction: row;
  }
}
.cookie-popup .cookie-banner .btn, .cookie-popup .cookie-banner .btn:link, .cookie-popup .cookie-banner .btn:focus, .cookie-popup .cookie-banner .btn:visited {
  text-decoration: none;
  margin-left: 0;
  margin-bottom: 10px;
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  .cookie-popup .cookie-banner .btn, .cookie-popup .cookie-banner .btn:link, .cookie-popup .cookie-banner .btn:focus, .cookie-popup .cookie-banner .btn:visited {
    margin-left: 10px;
    margin-bottom: 0;
  }
}
.cookie-popup .cookie-banner .reject, .cookie-popup .cookie-banner .reject:link, .cookie-popup .cookie-banner .reject:focus, .cookie-popup .cookie-banner .reject:visited {
  vertical-align: middle;
  padding: 2px 15px;
  margin-right: 0;
  color: #27272A;
}

.login-wrap {
  text-align: center;
  padding-bottom: 40px;
  border-bottom: 1px solid #E4E4E7;
  margin-bottom: 40px;
}
@media only screen and (min-width: 768px) {
  .login-wrap {
    padding-bottom: 80px;
    margin-bottom: 80px;
  }
}

.login-form-wrap {
  text-align: left;
  max-width: 600px;
  display: inline-block;
}
.login-form-wrap h1 {
  margin-bottom: 40px;
}
.login-form-wrap label {
  display: block;
  width: 100%;
  font-weight: 400;
}
.login-form-wrap input[type=text], .login-form-wrap input[type=password] {
  width: 100%;
  display: block;
  border: 1px solid #E4E4E7;
  padding: 11px 14px;
  border-radius: 5px;
  margin-bottom: 15px;
}
@media only screen and (min-width: 768px) {
  .login-form-wrap input[type=text], .login-form-wrap input[type=password] {
    min-width: 400px;
  }
}
.login-form-wrap input[type=submit] {
  position: relative;
  display: inline-block;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-transform: uppercase;
  overflow: hidden;
  text-decoration: none;
  margin-bottom: 10px;
  margin-right: 10px;
  border: 1px solid #3B82F6;
  color: #fff;
  background-color: #3B82F6;
  padding: 14px 30px;
  border-radius: 60px;
  cursor: pointer;
}
.login-form-wrap input[type=submit]:hover {
  border: 1px solid #E4E4E7;
  color: #27272A;
  background-color: #E4E4E7;
}

.form-errors {
  border-left: 4px solid #d63638;
  background-color: #f2f2f2;
  padding: 10px 20px;
  margin-bottom: 20px;
}

.login-page-buttons-wrap .btn {
  margin-bottom: 15px;
}
.login-page-buttons-wrap .btn:first-of-type {
  margin-right: 15px;
}

/*.login-text-wrap{
    text-align: left;
    padding-top: 60px;
    @include devices(medium){
        padding-top: 100px;
    }
}*/
.page-not-found {
  padding: 20px 0;
}
.page-not-found .text-wrap {
  text-align: center;
}
.page-not-found .text-wrap .number-big {
  font-size: 6.25rem;
  line-height: 6.25rem;
  font-weight: 700;
  color: #3B82F6;
}
.page-not-found .text-wrap .front-page-tiles {
  text-align: left;
}
.page-not-found .text-wrap .front-page-tiles .text-wrap {
  text-align: left;
}

.front-page-slider {
  margin-bottom: 70px;
}
.front-page-slider .slide-wrap {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  height: 520px;
}
@media only screen and (min-width: 768px) {
  .front-page-slider .slide-wrap {
    height: 400px;
  }
}
@media only screen and (min-width: 992px) {
  .front-page-slider .slide-wrap {
    height: 315px;
  }
}
.front-page-slider .slide-wrap img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.front-page-slider .slide-wrap .row {
  padding: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin-left: 0;
  margin-right: 0;
}
@media only screen and (min-width: 992px) {
  .front-page-slider .slide-wrap .row {
    padding: 50px;
  }
}
.front-page-slider .slide-wrap .row .col {
  padding-left: 0;
  padding-right: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.front-page-slider .slide-wrap .row .col.icon-column {
  position: absolute;
  display: block;
  left: 0;
  top: 0;
}
@media only screen and (min-width: 992px) {
  .front-page-slider .slide-wrap .row .col.icon-column {
    position: static;
    display: flex;
    left: auto;
    top: auto;
  }
}
.front-page-slider .slide-wrap .row .col.icon-column .img-wrap {
  max-width: 210px;
  float: right;
}
@media only screen and (min-width: 992px) {
  .front-page-slider .slide-wrap .row .col.icon-column .img-wrap {
    max-width: none;
    float: none;
  }
}
.front-page-slider .slide-wrap .slide-header-wrap p {
  font-family: "Montserrat", sans-serif;
  font-size: 2.25rem;
  line-height: 3.125rem;
  color: #fff;
  margin-bottom: 20px;
}
@media only screen and (min-width: 992px) {
  .front-page-slider .slide-wrap .slide-header-wrap p {
    font-size: 2.625rem;
    line-height: 3.125rem;
  }
}
.front-page-slider .slide-wrap .slide-header-wrap a {
  font-size: 2.25rem;
  line-height: 3.125rem;
  color: #fff;
  text-decoration: underline;
}
@media only screen and (min-width: 992px) {
  .front-page-slider .slide-wrap .slide-header-wrap a {
    font-size: 2.625rem;
    line-height: 3.125rem;
  }
}
.front-page-slider .slide-wrap .slide-header-wrap a:hover {
  text-decoration: none;
}
.front-page-slider .slide-wrap .buttons-wrap {
  z-index: 2;
}

.slick-dots {
  text-align: center;
  padding-bottom: 0;
  padding-top: 20px;
  padding-left: 0;
  width: 100%;
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
  .slick-dots {
    padding-top: 40px;
  }
}
.slick-dots li {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  vertical-align: middle;
  display: inline-block;
  background-color: transparent;
  width: 45px;
  height: 8px;
  margin-left: 6px;
  margin-right: 6px;
  margin-bottom: 0;
  background-image: url(../images/slider-dot-custom.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
}
.slick-dots li::before {
  display: none;
}
.slick-dots li button {
  opacity: 0;
  font-size: 0;
  line-height: 0;
}
.slick-dots li.slick-active {
  background-image: url(../images/slider-dot-custom-active.svg);
}

@media only screen and (min-width: 992px) {
  .front-page-tiles {
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 1200px) {
  .front-page-tiles {
    margin-bottom: 80px;
  }
}
.front-page-tiles .row {
  margin-left: -10px;
  margin-right: -10px;
}
.front-page-tiles .row .col {
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 40px;
}
@media only screen and (min-width: 992px) {
  .front-page-tiles .row .col {
    margin-bottom: 20px;
  }
}
.front-page-tiles .row .col.col-md-8, .front-page-tiles .row .col.col-md-6 {
  min-height: 375px;
}
@media only screen and (min-width: 992px) {
  .front-page-tiles .row .col.col-md-8, .front-page-tiles .row .col.col-md-6 {
    min-height: none;
  }
}
.front-page-tiles .row .col.col-md-4 {
  max-height: 170px;
}
@media only screen and (min-width: 992px) {
  .front-page-tiles .row .col.col-md-4 {
    max-height: none;
  }
}
.front-page-tiles .row .col.col-md-4 .front-page-tile-wrap .text-wrap {
  padding: 20px;
}
@media only screen and (min-width: 992px) {
  .front-page-tiles .row .col.col-md-4 .front-page-tile-wrap .text-wrap {
    padding: 50px;
  }
}

.front-page-tile-wrap {
  width: 100%;
  height: 100%;
  border-radius: 40px;
  position: relative;
  background-color: #fff;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .front-page-tile-wrap {
    border-radius: 60px;
  }
}
@media only screen and (min-width: 992px) {
  .front-page-tile-wrap {
    max-height: 350px;
  }
}
@media only screen and (min-width: 1200px) {
  .front-page-tile-wrap {
    max-height: 350px;
  }
}
@media only screen and (min-width: 1600px) {
  .front-page-tile-wrap {
    max-height: 460px;
  }
}
.front-page-tile-wrap img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  background-color: #fff;
  display: block;
  border-radius: 42px;
}
@media only screen and (min-width: 768px) {
  .front-page-tile-wrap img {
    border-radius: 62px;
  }
}
.front-page-tile-wrap::before {
  content: "";
  display: block;
  background: linear-gradient(90deg, #F4F4F5 0%, rgba(244, 244, 245, 0.2) 100%);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.front-page-tile-wrap .text-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  position: relative;
  z-index: 2;
}
@media only screen and (min-width: 768px) {
  .front-page-tile-wrap .text-wrap {
    padding: 40px;
  }
}
@media only screen and (min-width: 992px) {
  .front-page-tile-wrap .text-wrap {
    padding: 60px;
  }
}
@media only screen and (min-width: 768px) {
  .front-page-tile-wrap .buttons-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: start;
  }
}
.front-page-tile-wrap .buttons-wrap .btn {
  margin-bottom: 0;
}
.front-page-tile-wrap .tile-header {
  font-weight: 700;
  margin-bottom: 24px;
  font-size: 2rem;
  line-height: 2.25rem;
  letter-spacing: -2%;
}
@media only screen and (min-width: 768px) {
  .front-page-tile-wrap .tile-header {
    margin-bottom: 10px;
  }
}
@media only screen and (min-width: 1600px) {
  .front-page-tile-wrap .tile-header {
    font-size: 2.5rem;
    line-height: 3rem;
  }
}
.front-page-tile-wrap .tile-header.small {
  font-size: 1.5rem;
  line-height: 2rem;
}
@media only screen and (min-width: 1600px) {
  .front-page-tile-wrap .tile-header.small {
    font-size: 2.25rem;
    line-height: 2.75rem;
  }
}
.front-page-tile-wrap .text {
  font-size: 0.875rem;
  line-height: 1.5rem;
  font-weight: 400;
  margin-bottom: 24px;
}
@media only screen and (min-width: 768px) {
  .front-page-tile-wrap .text {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

.recommended-products {
  margin-bottom: 40px;
}
@media only screen and (min-width: 768px) {
  .recommended-products {
    margin-bottom: 60px;
  }
}
@media only screen and (min-width: 992px) {
  .recommended-products {
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 1200px) {
  .recommended-products {
    margin-bottom: 60px;
  }
}
.recommended-products .row {
  margin-left: -20px;
  margin-right: -20px;
}
.recommended-products .row .col {
  padding-left: 20px;
  padding-right: 20px;
  /*@include devices(large){
      margin-bottom: 40px;
  }*/
}
.recommended-products .recommended-header {
  font-size: 2.5rem;
  line-height: 3rem;
  letter-spacing: -2%;
  font-weight: 500;
  margin-bottom: 20px;
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid #E4E4E7;
}
@media only screen and (min-width: 1200px) {
  .recommended-products .recommended-header {
    padding-top: 80px;
    margin-bottom: 20px;
  }
}

.first-column-header-wrap {
  height: 100%;
  width: 100%;
  position: relative;
  max-height: 374px;
  margin-bottom: 20px;
  background-color: #fff;
}
@media only screen and (min-width: 768px) {
  .first-column-header-wrap {
    max-height: 274px;
  }
}
@media only screen and (min-width: 992px) {
  .first-column-header-wrap {
    max-height: 374px;
    max-height: none;
    margin-bottom: 0;
  }
}
.first-column-header-wrap > img {
  border-radius: 5px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}
.first-column-header-wrap .text-wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 40px 20px;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media only screen and (min-width: 992px) {
  .first-column-header-wrap .text-wrap {
    padding: 18px;
  }
}
@media only screen and (min-width: 1200px) {
  .first-column-header-wrap .text-wrap {
    padding: 15px;
  }
}
@media only screen and (min-width: 1600px) {
  .first-column-header-wrap .text-wrap {
    padding: 50px;
  }
}
.first-column-header-wrap .btn, .first-column-header-wrap .btn:link, .first-column-header-wrap .btn:focus, .first-column-header-wrap .btn:visited {
  margin-bottom: 0;
}
@media only screen and (min-width: 992px) {
  .first-column-header-wrap .btn, .first-column-header-wrap .btn:link, .first-column-header-wrap .btn:focus, .first-column-header-wrap .btn:visited {
    padding: 8px 15px;
    margin-right: 0;
  }
}
@media only screen and (min-width: 1200px) {
  .first-column-header-wrap .btn, .first-column-header-wrap .btn:link, .first-column-header-wrap .btn:focus, .first-column-header-wrap .btn:visited {
    padding: 9px 30px;
    margin-right: 0;
  }
}
.first-column-header-wrap .img-wrap {
  margin-bottom: 10px;
}
.first-column-header-wrap .img-wrap img {
  width: 50px;
  height: 50px;
}
.first-column-header-wrap .column-header {
  font-size: 2.25rem;
  line-height: 2.75rem;
  font-weight: 700;
  margin-bottom: 10px;
}
@media only screen and (min-width: 992px) {
  .first-column-header-wrap .column-header {
    margin-bottom: 40px;
  }
}

@media only screen and (min-width: 992px) {
  .products-slider {
    padding: 20px 0;
  }
}
.products-slider .row .col {
  max-width: none;
}

.front-page-about-us {
  margin-bottom: 70px;
}
.front-page-about-us .images-wrap {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}
.front-page-about-us .images-wrap .row {
  margin-left: 0;
  margin-right: 0;
  display: block;
}
.front-page-about-us .images-wrap .row .col {
  padding-left: 0;
  padding-right: 0;
  float: left;
  /*&:last-of-type{
      display: flex;
      flex-direction: column;
  }*/
}
.front-page-about-us .images-wrap .btn {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 2;
  width: 140px;
  height: 40px;
  padding: 8px 15px;
  display: none;
  pointer-events: none;
}
@media only screen and (min-width: 992px) {
  .front-page-about-us .images-wrap .btn {
    display: block;
  }
}
.front-page-about-us .images-wrap .btn:hover svg rect {
  stroke: #fff !important;
}
.front-page-about-us .images-wrap .btn:hover svg path[data-name="Path 146"] {
  stroke: #fff !important;
}
.front-page-about-us .images-wrap .btn svg rect {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.front-page-about-us .images-wrap .btn svg path[data-name="Path 146"] {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.front-page-about-us .img-wrap {
  width: 100%;
  height: 100%;
  display: block;
  width: 100%;
  padding-top: 75%; /* 4:3 Aspect Ratio (divide 3 by 4 = 0.75) */
  position: relative; /* If you want text inside of it */
}
.front-page-about-us .img-wrap img, .front-page-about-us .img-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.front-page-about-us .text-wrap {
  padding-top: 50px;
}
@media only screen and (min-width: 1200px) {
  .front-page-about-us .text-wrap {
    padding-top: 0;
  }
}
@media only screen and (min-width: 1600px) {
  .front-page-about-us .text-wrap {
    padding-top: 50px;
  }
}

.front-page-columns-with-icons {
  margin-bottom: 40px;
}
@media only screen and (min-width: 992px) {
  .front-page-columns-with-icons {
    margin-bottom: 50px;
  }
}
@media only screen and (min-width: 1200px) {
  .front-page-columns-with-icons {
    margin-bottom: 80px;
  }
}

.columns-with-icons-wrap {
  padding: 40px;
  background-color: #fff;
  border: 1px solid #E4E4E7;
  border-radius: 40px;
}
@media only screen and (min-width: 992px) {
  .columns-with-icons-wrap {
    padding: 52px 40px;
    border-radius: 60px;
  }
}
.columns-with-icons-wrap .row {
  margin-left: -10px;
  margin-right: -10px;
}
@media only screen and (min-width: 992px) {
  .columns-with-icons-wrap .row {
    margin-left: -20px;
    margin-right: -20px;
  }
}
.columns-with-icons-wrap .row .col {
  padding-left: 10px;
  padding-right: 10px;
}
@media only screen and (min-width: 992px) {
  .columns-with-icons-wrap .row .col {
    padding-left: 38px;
    padding-right: 38px;
  }
}
@media only screen and (min-width: 992px) {
  .columns-with-icons-wrap .row .col:last-of-type {
    border-right: none;
  }
}
.columns-with-icons-wrap .row .col:last-of-type::after {
  display: none;
}
.columns-with-icons-wrap .row .col:nth-of-type(1), .columns-with-icons-wrap .row .col:nth-of-type(2), .columns-with-icons-wrap .row .col:nth-of-type(3) {
  position: relative;
  padding-bottom: 50px;
  /*border-bottom: 2px solid #5a5a5a;
  padding-bottom: 40px;
  margin-bottom: 40px;
  @include devices(large){
      border-bottom: none;
      padding-bottom: 0;
      margin-bottom: 0;
  }*/
}
@media only screen and (min-width: 992px) {
  .columns-with-icons-wrap .row .col:nth-of-type(1), .columns-with-icons-wrap .row .col:nth-of-type(2), .columns-with-icons-wrap .row .col:nth-of-type(3) {
    padding-bottom: 20px;
    padding-right: 50px;
  }
}
@media only screen and (min-width: 1200px) {
  .columns-with-icons-wrap .row .col:nth-of-type(1), .columns-with-icons-wrap .row .col:nth-of-type(2), .columns-with-icons-wrap .row .col:nth-of-type(3) {
    padding-bottom: 0;
  }
}
.columns-with-icons-wrap .row .col:nth-of-type(1)::after, .columns-with-icons-wrap .row .col:nth-of-type(2)::after, .columns-with-icons-wrap .row .col:nth-of-type(3)::after {
  content: "";
  display: block;
  width: 200px;
  height: 21px;
  background-color: transparent;
  background-image: url(../images/wave-horizontal.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
  bottom: 16px;
  left: 0;
  margin: auto;
}
@media only screen and (min-width: 992px) {
  .columns-with-icons-wrap .row .col:nth-of-type(1)::after, .columns-with-icons-wrap .row .col:nth-of-type(2)::after, .columns-with-icons-wrap .row .col:nth-of-type(3)::after {
    display: none;
  }
}
@media only screen and (min-width: 1200px) {
  .columns-with-icons-wrap .row .col:nth-of-type(1)::after, .columns-with-icons-wrap .row .col:nth-of-type(2)::after, .columns-with-icons-wrap .row .col:nth-of-type(3)::after {
    display: block;
    right: 5px;
    top: 0;
    bottom: auto;
    left: auto;
    width: 21px;
    height: 100%;
    background-image: url(../images/wave-vertical.svg);
  }
}
.columns-with-icons-wrap .col-wrap {
  text-align: center;
}
.columns-with-icons-wrap .col-wrap .img-wrap {
  margin-bottom: 20px;
}
.columns-with-icons-wrap .col-wrap .img-wrap img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}
.columns-with-icons-wrap .col-wrap .column-header {
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: -2%;
}
.columns-with-icons-wrap .col-wrap .text {
  font-size: 1rem;
  line-height: 1.5rem;
  margin-bottom: 0;
}
.columns-with-icons-wrap .col-wrap .link-wrap {
  padding-top: 10px;
}
.columns-with-icons-wrap .col-wrap .know-more {
  font-size: 0.6875rem;
  line-height: 1rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: #27272A;
}

.posts-slider {
  padding: 20px 0;
}
.posts-slider .row .col {
  max-width: none;
}

.six-tiles-and-text p {
  font-size: 0.8125rem;
  line-height: 1.25rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.one-of-six-tile, .one-of-six-tile:link, .one-of-six-tile:focus, .one-of-six-tile:visited {
  display: block;
  text-decoration: none;
}
.one-of-six-tile .img-wrap, .one-of-six-tile:link .img-wrap, .one-of-six-tile:focus .img-wrap, .one-of-six-tile:visited .img-wrap {
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
  position: relative; /* If you want text inside of it */
  margin-bottom: 10px;
}
.one-of-six-tile .img-wrap img, .one-of-six-tile:link .img-wrap img, .one-of-six-tile:focus .img-wrap img, .one-of-six-tile:visited .img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}
.one-of-six-tile p, .one-of-six-tile:link p, .one-of-six-tile:focus p, .one-of-six-tile:visited p {
  font-size: 1rem;
  line-height: 1.375rem;
  font-weight: 600;
  color: #27272A;
  text-decoration: none;
}

.front-page-opinions .opinions.mobile {
  display: block;
}
@media only screen and (min-width: 992px) {
  .front-page-opinions .opinions.mobile {
    display: none;
  }
}
.front-page-opinions .opinions.desktop {
  display: none;
}
@media only screen and (min-width: 992px) {
  .front-page-opinions .opinions.desktop {
    display: block;
  }
}

.cta-section {
  margin-bottom: 40px;
}
@media only screen and (min-width: 992px) {
  .cta-section {
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 1200px) {
  .cta-section {
    margin-bottom: 80px;
  }
}
.cta-section.cta-section-sidebar {
  position: relative;
  z-index: 3;
}
.cta-section.cta-section-sidebar .cta-wrap {
  padding: 40px 40px;
  border-radius: 40px;
}
@media only screen and (min-width: 992px) {
  .cta-section.cta-section-sidebar .cta-wrap {
    border-radius: 24px;
    padding: 60px;
  }
}
.cta-section.cta-section-sidebar .cta-wrap .buttons-wrap {
  justify-content: center;
}
.cta-section.cta-section-sidebar .cta-wrap .buttons-wrap .btn:first-of-type {
  margin-bottom: 24px;
}

.cta-wrap {
  background-color: #3B82F6;
  padding: 40px 40px 24px 40px;
  border-radius: 40px;
}
@media only screen and (min-width: 992px) {
  .cta-wrap {
    border-radius: 60px;
    padding: 60px 0;
  }
}
.cta-wrap .text-wrap {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
@media only screen and (min-width: 992px) {
  .cta-wrap .text-wrap {
    text-align: center;
  }
}
.cta-wrap .header {
  font-size: 1.625rem;
  line-height: 1.875rem;
  font-weight: 500;
  letter-spacing: -2%;
  color: #fff;
  margin-bottom: 16px;
}
@media only screen and (min-width: 992px) {
  .cta-wrap .header {
    font-size: 2rem;
    line-height: 2.5rem;
    margin-bottom: 24px;
  }
}
.cta-wrap .text {
  font-size: 0.875rem;
  line-height: 1.5rem;
  color: #fff;
  margin-bottom: 16px;
}
@media only screen and (min-width: 992px) {
  .cta-wrap .text {
    font-size: 1rem;
    line-height: 1.5rem;
    margin-bottom: 24px;
  }
}
.cta-wrap .buttons-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  margin-left: -20px;
  margin-right: -20px;
}
@media only screen and (min-width: 768px) {
  .cta-wrap .buttons-wrap {
    margin-left: 0;
    margin-right: 0;
    justify-content: center;
  }
}
.cta-wrap .btn {
  margin-bottom: 16px;
  padding: 13px 14px;
  margin-right: 7px;
  /*&:first-of-type{
      margin-bottom: 0;
  }
  &:last-of-type{
      margin-right: 0;
  }*/
}
@media only screen and (min-width: 768px) {
  .cta-wrap .btn {
    padding: 13px 24px;
    margin-right: 10px;
  }
}

.text-section {
  margin-bottom: 80px;
}
.text-section p {
  font-size: 1rem;
  line-height: 1.5rem;
}
.text-section .button-wrap {
  margin-bottom: 40px;
}

.single-page-header-creator {
  margin-bottom: 21px;
}

.single-page-header-creator-wrap {
  position: relative;
  max-height: 177px;
  overflow: hidden;
  border-radius: 5px;
}
@media only screen and (min-width: 768px) {
  .single-page-header-creator-wrap {
    max-height: 325px;
  }
}
.single-page-header-creator-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.single-page-header-creator-wrap .row {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 16px;
  margin-left: 0;
  margin-right: 0;
  flex-direction: column;
}
@media only screen and (min-width: 768px) {
  .single-page-header-creator-wrap .row {
    padding: 28px 50px;
    flex-direction: row;
    padding: 20px;
  }
}
.single-page-header-creator-wrap .row .col {
  padding-left: 0;
  padding-right: 0;
}
.single-page-header-creator-wrap .creator-title {
  font-size: 2.25rem;
  line-height: 2.75rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .single-page-header-creator-wrap .creator-title {
    text-align: left;
    font-size: 2.625rem;
    line-height: 3.125rem;
  }
}
.single-page-header-creator-wrap p {
  font-size: 0.8125rem;
  line-height: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .single-page-header-creator-wrap p {
    text-align: left;
    margin-bottom: 0;
  }
}
.single-page-header-creator-wrap .buttons-wrap {
  float: none;
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 768px) {
  .single-page-header-creator-wrap .buttons-wrap {
    float: right;
  }
}
.single-page-header-creator-wrap .buttons-wrap .btn.square, .single-page-header-creator-wrap .buttons-wrap .btn:link.square, .single-page-header-creator-wrap .buttons-wrap .btn:focus.square, .single-page-header-creator-wrap .buttons-wrap .btn:visited.square {
  margin-bottom: 0;
  padding: 9px 6px;
}
@media only screen and (min-width: 992px) {
  .single-page-header-creator-wrap .buttons-wrap .btn.square, .single-page-header-creator-wrap .buttons-wrap .btn:link.square, .single-page-header-creator-wrap .buttons-wrap .btn:focus.square, .single-page-header-creator-wrap .buttons-wrap .btn:visited.square {
    padding: 9px 30px;
  }
}
.single-page-header-creator-wrap .buttons-wrap .btn.square:last-of-type, .single-page-header-creator-wrap .buttons-wrap .btn:link.square:last-of-type, .single-page-header-creator-wrap .buttons-wrap .btn:focus.square:last-of-type, .single-page-header-creator-wrap .buttons-wrap .btn:visited.square:last-of-type {
  margin-right: 0;
}

.specification-block {
  margin-bottom: 40px;
}
.specification-block .row {
  margin-left: 0;
  margin-right: 0;
  background-color: #fff;
}
.specification-block .row:nth-of-type(even) {
  background-color: #F4F4F5;
}
.specification-block .row .col {
  padding: 8px 16px;
  font-size: 0.75rem;
  line-height: 1.25rem;
  vertical-align: middle;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media only screen and (min-width: 768px) {
  .specification-block .row .col {
    padding: 12px 24px;
    font-size: 0.8125rem;
    line-height: 1.5rem;
  }
}
.specification-block .row .col strong {
  font-weight: 600;
}
.specification-block .row .col img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  vertical-align: middle;
}

.opinions-block {
  margin-bottom: 30px;
}
@media only screen and (min-width: 768px) {
  .opinions-block {
    margin-bottom: 70px;
  }
}
.opinions-block .opinions-header {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e0e0e0;
}
.opinions-block .opinions-header .header {
  float: left;
  font-size: 1.5rem;
  line-height: 2.5rem;
  font-weight: 700;
  margin-right: 20px;
  margin-bottom: 0;
}
.opinions-block .opinions-header .btn {
  float: left;
  margin-bottom: 0;
}
.opinions-block .opinion-single {
  margin-bottom: 22px;
  border-bottom: 1px solid #e0e0e0;
}
.opinions-block .opinion-single:last-of-type {
  border-bottom: none;
}
.opinions-block .opinion-single .author-date-stars {
  margin-bottom: 10px;
}
.opinions-block .opinion-single .author-date-stars span {
  float: left;
  font-size: 0.8125rem;
  line-height: 0.8125rem;
  font-weight: 700;
  margin-right: 10px;
}
.opinions-block .opinion-single .author-date-stars .rating-stars {
  float: left;
  margin-bottom: 0;
  /*svg{
      @include line-height(20);
      vertical-align: middle;
  }*/
}
.opinions-block .opinion-single .opinion-text {
  font-size: 0.8125rem;
  line-height: 1.25rem;
  margin-bottom: 10px;
}
.opinions-block .opinion-single .opinion-gallery .row {
  margin-left: -10px;
  margin-right: -10px;
}
.opinions-block .opinion-single .opinion-gallery .row .col {
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 20px;
}
.opinions-block .opinion-single .opinion-gallery .gallery-single {
  display: block;
  width: 100%;
  padding-top: 100%; /* 1:1 Aspect Ratio */
  position: relative; /* If you want text inside of it */
}
.opinions-block .opinion-single .opinion-gallery .gallery-single img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  object-fit: cover;
}
.opinions-block .opinion-single .comments-answer-wrap {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e0e0e0;
}
.opinions-block .opinion-single .comments-answer-wrap .comments, .opinions-block .opinion-single .comments-answer-wrap .answer {
  float: left;
  margin-right: 25px;
}
.opinions-block .opinion-single .comments-answer-wrap .comments svg, .opinions-block .opinion-single .comments-answer-wrap .answer svg {
  margin-right: 10px;
}
.opinions-block .opinion-single .comments-answer-wrap .comments span, .opinions-block .opinion-single .comments-answer-wrap .answer span {
  font-size: 0.8125rem;
  line-height: 1.5rem;
  vertical-align: top;
}
.opinions-block .opinions-buttons .btn.square, .opinions-block .opinions-buttons .btn:link.square, .opinions-block .opinions-buttons .btn:focus.square, .opinions-block .opinions-buttons .btn:visited.square {
  margin-bottom: 0;
  padding: 9px 12px;
}
@media only screen and (min-width: 768px) {
  .opinions-block .opinions-buttons .btn.square, .opinions-block .opinions-buttons .btn:link.square, .opinions-block .opinions-buttons .btn:focus.square, .opinions-block .opinions-buttons .btn:visited.square {
    padding: 9px 30px;
  }
}

.single-page-header-block {
  padding-top: 20px;
  border-top: 1px solid #E4E4E7;
}
.single-page-header-block h1 {
  margin-bottom: 20px;
}

.contact-block {
  margin-bottom: 70px;
}
.contact-block .row {
  margin-left: -50px;
  margin-right: -50px;
}
@media only screen and (min-width: 1200px) {
  .contact-block .row {
    margin-left: -10px;
    margin-right: -10px;
  }
}
@media only screen and (min-width: 1600px) {
  .contact-block .row {
    margin-left: -50px;
    margin-right: -50px;
  }
}
.contact-block .row .col {
  padding-left: 50px;
  padding-right: 50px;
}
@media only screen and (min-width: 1200px) {
  .contact-block .row .col {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media only screen and (min-width: 1600px) {
  .contact-block .row .col {
    padding-left: 50px;
    padding-right: 50px;
  }
}
.contact-block .left-column-wrap .wpcf7, .contact-block .left-column-wrap .custom-form {
  max-width: 580px;
}
.contact-block .left-column-wrap p {
  font-size: 0.8125rem;
  line-height: 1.25rem;
  margin-bottom: 20px;
}
.contact-block .left-column-wrap p strong {
  font-weight: 700;
}
.contact-block .form-simple-wrap {
  text-align: left;
  max-width: 100%;
}
@media only screen and (min-width: 768px) {
  .contact-block .form-simple-wrap {
    max-width: 630px;
    margin: 0 auto;
  }
}

.pink-box-wrap {
  background-color: #3B82F6;
  border-radius: 5px;
  padding: 27px 40px 40px 40px;
  margin-left: -15px;
  margin-right: -15px;
}
@media only screen and (min-width: 768px) {
  .pink-box-wrap {
    margin-left: 0;
    margin-right: 0;
    padding: 27px 56px 40px 56px;
  }
}
@media only screen and (min-width: 1200px) {
  .pink-box-wrap {
    padding: 27px 25px 40px 25px;
  }
}
@media only screen and (min-width: 1600px) {
  .pink-box-wrap {
    padding: 27px 40px 40px 40px;
  }
}
.pink-box-wrap .header {
  font-size: 2.25rem;
  line-height: 2.75rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #fff;
  text-align: center;
}
.pink-box-wrap .single-link-wrap {
  padding-left: 35px;
  position: relative;
  padding-bottom: 21px;
  padding-top: 40px;
  border-bottom: 1px solid #E4E4E7;
}
.pink-box-wrap .single-link-wrap:first-of-type {
  padding-top: 0;
}
.pink-box-wrap .single-link-wrap:first-of-type img {
  top: 0;
}
.pink-box-wrap .single-link-wrap img {
  position: absolute;
  left: 0;
  top: 40px;
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.pink-box-wrap .single-link-wrap .row {
  margin-left: -5px;
  margin-right: -5px;
}
.pink-box-wrap .single-link-wrap .row .col {
  padding-left: 5px;
  padding-right: 5px;
}
.pink-box-wrap .single-link-wrap .row .col:nth-of-type(2) {
  display: flex;
  align-items: flex-end;
}
.pink-box-wrap .single-link-wrap p {
  color: #fff;
  font-size: 0.8125rem;
  line-height: 1.5rem;
  font-weight: 700;
  margin-bottom: 0;
}
.pink-box-wrap .single-link-wrap a {
  color: #fff;
  font-size: 0.8125rem;
  line-height: 1.5rem;
  font-weight: 700;
  margin-bottom: 0;
}

.contact-block-with-form {
  margin-bottom: 40px;
}
@media only screen and (min-width: 992px) {
  .contact-block-with-form {
    margin-bottom: 80px;
  }
}
.contact-block-with-form .row {
  margin-left: -20px;
  margin-right: -20px;
}
.contact-block-with-form .row > .col {
  padding-left: 20px;
  padding-right: 20px;
}
.contact-block-with-form .left-column-wrap {
  position: relative;
  padding: 225px 40px 92px 40px;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
@media only screen and (min-width: 992px) {
  .contact-block-with-form .left-column-wrap {
    padding: 60px 60px 60px 60px;
  }
}
@media only screen and (min-width: 1200px) {
  .contact-block-with-form .left-column-wrap {
    padding: 60px 160px 60px 60px;
  }
}
.contact-block-with-form .left-column-wrap::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(244, 244, 245, 0.2) 0%, #F4F4F5 100%);
  z-index: 2;
  border-radius: 35px;
}
@media only screen and (min-width: 992px) {
  .contact-block-with-form .left-column-wrap::before {
    border-radius: 55px;
  }
}
.contact-block-with-form .left-column-wrap img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  border-radius: 40px;
}
@media only screen and (min-width: 992px) {
  .contact-block-with-form .left-column-wrap img {
    border-radius: 60px;
  }
}
.contact-block-with-form .left-column-wrap .bubble-small-wrap {
  position: absolute;
  left: -14%;
  top: 28%;
}
@media only screen and (min-width: 992px) {
  .contact-block-with-form .left-column-wrap .bubble-small-wrap {
    left: -5%;
    top: 30%;
  }
}
.contact-block-with-form .left-column-wrap .bubble-big-wrap {
  position: absolute;
  right: -19%;
  bottom: -10%;
  display: none;
}
@media only screen and (min-width: 992px) {
  .contact-block-with-form .left-column-wrap .bubble-big-wrap {
    display: block;
  }
}
.contact-block-with-form .left-column-wrap .content-wrap {
  position: relative;
  z-index: 2;
  margin-top: auto;
}
.contact-block-with-form .left-column-wrap .icon-wrap {
  margin-bottom: 24px;
}
.contact-block-with-form .left-column-wrap .header {
  font-size: 1.8125rem;
  line-height: 2.0625rem;
  font-weight: 500;
  letter-spacing: -2%;
  margin-bottom: 12px;
}
@media only screen and (min-width: 768px) {
  .contact-block-with-form .left-column-wrap .header {
    font-size: 2.25rem;
    line-height: 2.75rem;
    margin-bottom: 24px;
  }
}
.contact-block-with-form .left-column-wrap .text-wrap p {
  font-size: 0.875rem;
  line-height: 1.5rem;
  letter-spacing: 0%;
  margin-bottom: 12px;
}
@media only screen and (min-width: 768px) {
  .contact-block-with-form .left-column-wrap .text-wrap p {
    font-size: 1.125rem;
    line-height: 1.75rem;
    margin-bottom: 24px;
  }
}
.contact-block-with-form .left-column-wrap .text-wrap p:last-of-type {
  margin-bottom: 0;
}
.contact-block-with-form .left-column-wrap .text-wrap p strong {
  font-weight: 700;
}
.contact-block-with-form .form-wrap {
  margin-top: -52px;
  position: relative;
  z-index: 4;
}
@media only screen and (min-width: 992px) {
  .contact-block-with-form .form-wrap {
    margin-top: 0;
  }
}
.contact-block-with-form .form-wrap .mobile-only-form-switch {
  display: block;
  border-radius: 24px;
  background-color: #F4F4F5;
  padding: 12px 32px;
  margin-bottom: 16px;
  color: #27272A;
}
.contact-block-with-form .form-wrap .mobile-only-form-switch.active .hide-more {
  display: inline;
}
.contact-block-with-form .form-wrap .mobile-only-form-switch.active .show-more {
  display: none;
}
.contact-block-with-form .form-wrap .mobile-only-form-switch svg {
  vertical-align: middle;
  margin-left: 16px;
  float: right;
}
.contact-block-with-form .form-wrap .mobile-only-form-switch span {
  vertical-align: middle;
  float: left;
  color: #27272A;
  font-size: 1.0625rem;
  line-height: 1.75rem;
  letter-spacing: -2%;
  font-weight: 700;
}
.contact-block-with-form .form-wrap .mobile-only-form-switch .hide-more {
  display: none;
}
.contact-block-with-form .form-wrap .mobile-only-form-switch .show-more {
  display: inline;
}
.contact-block-with-form .form-wrap .form-wrap-inside {
  display: none;
  padding: 0 10px;
}
@media only screen and (min-width: 992px) {
  .contact-block-with-form .form-wrap .form-wrap-inside {
    display: block;
    padding: 0;
  }
}
.contact-block-with-form .wpcf7 {
  position: relative;
  z-index: 2;
}

.accordions-wrap {
  margin-bottom: 40px;
}

.accordion-wrap {
  margin-bottom: 10px;
  background-color: #F4F4F5;
  border-radius: 5px;
}
.accordion-wrap .accordion-header {
  padding: 20px 30px;
  padding-right: 60px;
  margin-bottom: 0;
  display: block;
  text-decoration: none;
  color: #27272A;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 600;
  position: relative;
}
.accordion-wrap .accordion-header::after {
  content: "";
  position: absolute;
  right: 30px;
  top: 20px;
  display: block;
  width: 24px;
  height: 24px;
  background-image: url(../images/chevron-down-pink.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.accordion-wrap .accordion-header.active::after {
  transform: rotate(180deg);
}
.accordion-wrap .accordion-content {
  padding: 20px 30px;
  display: none;
}
.accordion-wrap .accordion-content p {
  margin-bottom: 20px;
}
.accordion-wrap .accordion-content ul, .accordion-wrap .accordion-content ol {
  margin-bottom: 20px;
}

.map-section {
  margin-bottom: 40px;
}
@media only screen and (min-width: 992px) {
  .map-section {
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 1200px) {
  .map-section {
    margin-bottom: 80px;
  }
}
.map-section .map-wrap {
  border-radius: 40px;
  overflow: hidden;
}
@media only screen and (min-width: 992px) {
  .map-section .map-wrap {
    border-radius: 60px;
  }
}
.map-section iframe {
  width: 100%;
  min-height: 600px;
}
@media only screen and (min-width: 992px) {
  .map-section iframe {
    min-height: 560px;
  }
}

@media only screen and (min-width: 992px) {
  .categories-tiles {
    margin-bottom: 15px;
  }
}
@media only screen and (min-width: 1200px) {
  .categories-tiles {
    margin-bottom: 40px;
  }
}
.categories-tiles .row {
  margin-left: -20px;
  margin-right: -20px;
}
@media only screen and (min-width: 1200px) {
  .categories-tiles .row {
    margin-left: -10px;
    margin-right: -10px;
  }
}
@media only screen and (min-width: 1600px) {
  .categories-tiles .row {
    margin-left: -20px;
    margin-right: -20px;
  }
}
.categories-tiles .row .col {
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 40px;
}
@media only screen and (min-width: 1200px) {
  .categories-tiles .row .col {
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 1600px) {
  .categories-tiles .row .col {
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 40px;
  }
}
.categories-tiles .cat-tile-wrap {
  border-radius: 40px;
  background-color: #F4F4F5;
  padding: 50px 105px 50px 40px;
  height: 100%;
  position: relative;
}
@media only screen and (min-width: 992px) {
  .categories-tiles .cat-tile-wrap {
    padding: 60px;
    border-radius: 60px;
  }
}
@media only screen and (min-width: 1200px) {
  .categories-tiles .cat-tile-wrap {
    padding: 34px;
    border-radius: 40px;
  }
}
@media only screen and (min-width: 1600px) {
  .categories-tiles .cat-tile-wrap {
    padding: 60px;
    border-radius: 60px;
  }
}
.categories-tiles .cat-tile-wrap .cat-name {
  font-size: 1.4375rem;
  line-height: 1.6875rem;
  font-weight: 600;
  letter-spacing: -2%;
  margin-bottom: 0;
}
@media only screen and (min-width: 992px) {
  .categories-tiles .cat-tile-wrap .cat-name {
    font-size: 1.75rem;
    line-height: 2.25rem;
    margin-bottom: 24px;
  }
}
.categories-tiles .cat-tile-wrap .button-wrap {
  position: absolute;
  right: 40px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 48px;
  height: 48px;
}
@media only screen and (min-width: 992px) {
  .categories-tiles .cat-tile-wrap .button-wrap {
    position: static;
    width: 100%;
    height: auto;
    margin: 0;
  }
}
.categories-tiles .cat-tile-wrap .btn, .categories-tiles .cat-tile-wrap .btn:link, .categories-tiles .cat-tile-wrap .btn:focus, .categories-tiles .cat-tile-wrap .btn:visited {
  padding: 13px 16px;
  margin-bottom: 0;
  width: 100%;
  height: 100%;
  padding: 12px 13px;
}
@media only screen and (min-width: 992px) {
  .categories-tiles .cat-tile-wrap .btn, .categories-tiles .cat-tile-wrap .btn:link, .categories-tiles .cat-tile-wrap .btn:focus, .categories-tiles .cat-tile-wrap .btn:visited {
    width: auto;
    padding: 13px 16px;
  }
}
.categories-tiles .cat-tile-wrap .btn span, .categories-tiles .cat-tile-wrap .btn:link span, .categories-tiles .cat-tile-wrap .btn:focus span, .categories-tiles .cat-tile-wrap .btn:visited span {
  display: none;
}
@media only screen and (min-width: 992px) {
  .categories-tiles .cat-tile-wrap .btn span, .categories-tiles .cat-tile-wrap .btn:link span, .categories-tiles .cat-tile-wrap .btn:focus span, .categories-tiles .cat-tile-wrap .btn:visited span {
    display: inline;
  }
}
.categories-tiles .cat-tile-wrap .btn svg, .categories-tiles .cat-tile-wrap .btn:link svg, .categories-tiles .cat-tile-wrap .btn:focus svg, .categories-tiles .cat-tile-wrap .btn:visited svg {
  margin-left: 0;
}
@media only screen and (min-width: 992px) {
  .categories-tiles .cat-tile-wrap .btn svg, .categories-tiles .cat-tile-wrap .btn:link svg, .categories-tiles .cat-tile-wrap .btn:focus svg, .categories-tiles .cat-tile-wrap .btn:visited svg {
    margin-left: 10px;
  }
}

.about-us-wrap.about-us-wrap-product .about-us-text-wrap {
  margin-bottom: -24px;
}
.about-us-wrap.about-us-wrap-product .about-us-text-wrap p {
  margin-bottom: 24px;
}
.about-us-wrap .about-us-tile {
  position: relative;
  margin-bottom: 40px;
  padding: 280px 40px 40px 40px;
}
@media only screen and (min-width: 992px) {
  .about-us-wrap .about-us-tile {
    margin-bottom: 40px;
    padding: 425px 60px 60px 60px;
  }
}
@media only screen and (min-width: 1200px) {
  .about-us-wrap .about-us-tile {
    margin-bottom: 80px;
  }
}
.about-us-wrap .about-us-tile::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(244, 244, 245, 0.2) 0%, #F4F4F5 100%);
  z-index: 2;
  border-radius: 35px;
}
@media only screen and (min-width: 992px) {
  .about-us-wrap .about-us-tile::before {
    border-radius: 55px;
  }
}
.about-us-wrap .about-us-tile img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  border-radius: 40px;
}
@media only screen and (min-width: 992px) {
  .about-us-wrap .about-us-tile img {
    border-radius: 60px;
  }
}
.about-us-wrap .about-us-tile .bubble-small-wrap {
  left: auto;
  right: -20%;
  top: 10%;
}
@media only screen and (min-width: 992px) {
  .about-us-wrap .about-us-tile .bubble-small-wrap {
    left: -2%;
    right: auto;
    top: 45%;
    bottom: auto;
  }
}
.about-us-wrap .about-us-tile .bubble-big-wrap {
  right: -5%;
  bottom: -20%;
  display: none;
}
@media only screen and (min-width: 992px) {
  .about-us-wrap .about-us-tile .bubble-big-wrap {
    display: block;
  }
}
.about-us-wrap .about-us-header {
  font-size: 1.8125rem;
  line-height: 2.0625rem;
  font-weight: 700;
  letter-spacing: -2%;
  margin-bottom: 12px;
  position: relative;
  z-index: 3;
}
@media only screen and (min-width: 992px) {
  .about-us-wrap .about-us-header {
    font-size: 2.25rem;
    line-height: 2.75rem;
    margin-bottom: 24px;
  }
}
.about-us-wrap .about-us-text-wrap {
  position: relative;
  z-index: 2;
  margin-bottom: 16px;
}
@media only screen and (min-width: 992px) {
  .about-us-wrap .about-us-text-wrap {
    margin-bottom: 0;
  }
}
.about-us-wrap .about-us-text-wrap p {
  font-size: 0.875rem;
  line-height: 1.5rem;
  letter-spacing: 0%;
  margin-bottom: 0;
}
@media only screen and (min-width: 992px) {
  .about-us-wrap .about-us-text-wrap p {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}
.about-us-wrap .about-us-text-wrap p strong {
  font-weight: 700;
}
.about-us-wrap .button-wrap {
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  align-items: end;
  position: relative;
}
@media only screen and (min-width: 992px) {
  .about-us-wrap .button-wrap {
    justify-content: end;
  }
}
.about-us-wrap .button-wrap .btn {
  margin-top: auto;
  margin-bottom: 0;
  margin-right: 0;
}
.about-us-wrap .row {
  position: relative;
  z-index: 3;
}
.about-us-wrap .container > .row {
  margin-left: -20px;
  margin-right: -20px;
}
.about-us-wrap .container > .row > .col {
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 40px;
}
@media only screen and (min-width: 992px) {
  .about-us-wrap .container > .row > .col {
    margin-bottom: 50px;
  }
}
@media only screen and (min-width: 1200px) {
  .about-us-wrap .container > .row > .col {
    margin-bottom: 80px;
  }
}
.about-us-wrap .tile-wrap {
  padding: 40px;
  border-radius: 40px;
  position: relative;
}
@media only screen and (min-width: 992px) {
  .about-us-wrap .tile-wrap {
    border-radius: 60px;
    padding: 60px 185px 60px 60px;
  }
}
.about-us-wrap .tile-wrap::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #F4F4F5 19.71%, rgba(244, 244, 245, 0.5) 100%);
  z-index: 2;
  left: 0;
  top: 0;
  border-radius: 35px;
}
@media only screen and (min-width: 992px) {
  .about-us-wrap .tile-wrap::before {
    border-radius: 55px;
  }
}
.about-us-wrap .tile-wrap > img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  left: 0;
  top: 0;
  border-radius: 40px;
}
@media only screen and (min-width: 992px) {
  .about-us-wrap .tile-wrap > img {
    border-radius: 60px;
  }
}
.about-us-wrap .tile-wrap .about-us-header {
  font-size: 1.8125rem;
  line-height: 2.0625rem;
  font-weight: 600;
  letter-spacing: -2%;
  margin-bottom: 24px;
  position: relative;
  z-index: 3;
}
@media only screen and (min-width: 992px) {
  .about-us-wrap .tile-wrap .about-us-header {
    font-size: 2rem;
    line-height: 2.5rem;
  }
}
.about-us-wrap .tile-wrap .about-us-text-wrap {
  position: relative;
  z-index: 3;
  display: none;
}
@media only screen and (min-width: 992px) {
  .about-us-wrap .tile-wrap .about-us-text-wrap {
    display: block;
  }
}
.about-us-wrap .tile-wrap .about-us-text-wrap p {
  font-size: 1rem;
  line-height: 1.5rem;
  letter-spacing: 0%;
  margin-bottom: 24px;
}
.about-us-wrap .tile-wrap .button-wrap {
  display: block;
  position: relative;
  z-index: 3;
}
.about-us-wrap .tile-wrap .button-wrap .btn {
  margin: 0;
}

.categories-archive-block .category-main-wrap {
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
  .categories-archive-block .category-main-wrap {
    margin-bottom: 64px;
  }
}
.categories-archive-block .category-main-wrap > .row {
  margin-left: -20px;
  margin-right: -20px;
}
@media only screen and (min-width: 768px) {
  .categories-archive-block .category-main-wrap > .row {
    margin-left: -10px;
    margin-right: -10px;
  }
}
@media only screen and (min-width: 992px) {
  .categories-archive-block .category-main-wrap > .row {
    margin-left: -20px;
    margin-right: -20px;
  }
}
.categories-archive-block .category-main-wrap > .row > .col {
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 16px;
}
@media only screen and (min-width: 768px) {
  .categories-archive-block .category-main-wrap > .row > .col {
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 16px;
  }
}
@media only screen and (min-width: 992px) {
  .categories-archive-block .category-main-wrap > .row > .col {
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 16px;
  }
}
.categories-archive-block .category-main-wrap > .row > .col > .row {
  margin-left: -8px;
  margin-right: -8px;
}
@media only screen and (min-width: 768px) {
  .categories-archive-block .category-main-wrap > .row > .col > .row {
    margin-left: -12px;
    margin-right: -12px;
  }
}
.categories-archive-block .category-main-wrap > .row > .col > .row > .col {
  padding-left: 8px;
  padding-right: 8px;
}
@media only screen and (min-width: 768px) {
  .categories-archive-block .category-main-wrap > .row > .col > .row > .col {
    padding-left: 12px;
    padding-right: 12px;
  }
}
.categories-archive-block .cat-main-tile-wrap {
  border-radius: 40px;
  position: relative;
  padding: 40px;
}
@media only screen and (min-width: 768px) {
  .categories-archive-block .cat-main-tile-wrap {
    border-radius: 60px;
    padding: 64px 60px;
  }
}
.categories-archive-block .cat-main-tile-wrap::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 35px;
  background: linear-gradient(90deg, #F4F4F5 0%, rgba(244, 244, 245, 0.2) 100%);
  z-index: 1;
}
@media only screen and (min-width: 768px) {
  .categories-archive-block .cat-main-tile-wrap::before {
    border-radius: 55px;
  }
}
.categories-archive-block .cat-main-tile-wrap img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 40px;
}
@media only screen and (min-width: 768px) {
  .categories-archive-block .cat-main-tile-wrap img {
    border-radius: 60px;
  }
}
.categories-archive-block .cat-main-tile-wrap .cat-name {
  position: relative;
  z-index: 4;
  font-size: 2.25rem;
  line-height: 2.75rem;
  font-weight: 600;
  letter-spacing: -2%;
  margin-bottom: 24px;
}
.categories-archive-block .cat-main-tile-wrap .description {
  position: relative;
  z-index: 4;
}
.categories-archive-block .cat-main-tile-wrap .description p {
  font-size: 1rem;
  line-height: 1.5rem;
  letter-spacing: 0%;
  margin-bottom: 24px;
}
.categories-archive-block .cat-main-tile-wrap .button-wrap {
  position: relative;
  z-index: 4;
}
.categories-archive-block .sub-category-wrap {
  margin-bottom: 24px;
}
.categories-archive-block .sub-category-wrap .img-wrap {
  display: block;
  width: 100%;
  padding-top: 45.25%;
  position: relative; /* If you want text inside of it */
  margin-bottom: 10px;
}
.categories-archive-block .sub-category-wrap .img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}
.categories-archive-block .sub-category-wrap .name {
  text-align: center;
  margin-bottom: 0;
}
.categories-archive-block .sub-category-wrap .name > a {
  font-size: 0.875rem;
  line-height: 1.5rem;
  font-weight: 700;
  letter-spacing: -1%;
  color: #27272A;
  text-decoration: none;
}
@media only screen and (min-width: 768px) {
  .categories-archive-block .sub-category-wrap .name > a {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

.faq {
  margin-bottom: 40px;
}
@media only screen and (min-width: 768px) {
  .faq {
    margin-bottom: 80px;
  }
}
.faq .faq-wrap {
  background-color: #F4F4F5;
  padding: 40px 16px 24px 16px;
  border-radius: 40px;
}
@media only screen and (min-width: 768px) {
  .faq .faq-wrap {
    padding: 60px 60px 36px 60px;
    border-radius: 60px;
  }
}
.faq .faq-header {
  margin-bottom: 16px;
  font-size: 2.25rem;
  line-height: 2.75rem;
  font-weight: 500;
  letter-spacing: -2%;
}
@media only screen and (min-width: 768px) {
  .faq .faq-header {
    margin-bottom: 60px;
  }
}
.faq .faq-accordions-wrap {
  max-width: 800px;
  margin: auto;
}
.faq .accordion-item {
  background-color: #fff;
  border-radius: 24px;
  margin-bottom: 16px;
}
@media only screen and (min-width: 768px) {
  .faq .accordion-item {
    margin-bottom: 24px;
  }
}
.faq .accordion-item .accordion-header {
  font-size: 1.0625rem;
  line-height: 1.3125rem;
  font-weight: 700;
  letter-spacing: -2%;
  color: #27272A;
  text-decoration: none;
  padding: 16px 56px 16px 16px;
  display: block;
  position: relative;
  cursor: pointer;
}
@media only screen and (min-width: 768px) {
  .faq .accordion-item .accordion-header {
    font-size: 1.25rem;
    line-height: 1.75rem;
    padding: 24px 60px;
  }
}
.faq .accordion-item .accordion-header.active::before {
  background-image: url("../images/accordion-minus.svg");
}
.faq .accordion-item .accordion-header::before {
  content: "";
  position: absolute;
  top: 18px;
  right: 16px;
  width: 40px;
  height: 40px;
  background-image: url("../images/accordion-plus.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media only screen and (min-width: 768px) {
  .faq .accordion-item .accordion-header::before {
    right: 30px;
  }
}
.faq .accordion-item .accordion-content {
  padding: 0 16px 10px 16px;
  display: none;
}
@media only screen and (min-width: 768px) {
  .faq .accordion-item .accordion-content {
    padding: 0 60px 24px 60px;
  }
}
.faq .accordion-item .accordion-content p, .faq .accordion-item .accordion-content li {
  font-size: 0.75rem;
  line-height: 1.25rem;
  margin-bottom: 8px;
}
@media only screen and (min-width: 768px) {
  .faq .accordion-item .accordion-content p, .faq .accordion-item .accordion-content li {
    font-size: 0.875rem;
  }
}

.typ-order-wrap {
  padding: 40px 16px;
  overflow: hidden;
  position: relative;
  margin-bottom: 40px;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .typ-order-wrap {
    padding: 60px;
    margin-bottom: 80px;
  }
}
.typ-order-wrap::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(244, 244, 245, 0.2) 0%, #F4F4F5 100%);
  z-index: 1;
  border-radius: 35px;
}
@media only screen and (min-width: 768px) {
  .typ-order-wrap::before {
    border-radius: 55px;
  }
}
.typ-order-wrap img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  border-radius: 40px;
}
@media only screen and (min-width: 768px) {
  .typ-order-wrap img {
    border-radius: 60px;
  }
}
.typ-order-wrap .bubble-small-wrap {
  right: -5%;
  bottom: 20%;
}
.typ-order-wrap .woocommerce-notice {
  position: relative;
  z-index: 2;
  font-size: 2rem;
  line-height: 2.25rem;
  font-weight: 700;
  color: #3B82F6;
  letter-spacing: -2%;
  margin-bottom: 24px;
}
@media only screen and (min-width: 992px) {
  .typ-order-wrap .woocommerce-notice {
    font-size: 2.5rem;
    line-height: 3rem;
  }
}
.typ-order-wrap .extra-texts {
  position: relative;
  z-index: 2;
  margin-bottom: 24px;
}
.typ-order-wrap .extra-texts p {
  margin-bottom: 16px;
}
.typ-order-wrap ul.order_details.woocommerce-order-overview {
  position: relative;
  z-index: 2;
  padding: 36px;
  display: inline-block;
  min-width: 300px;
  max-width: 100%;
  background-color: #fff;
  border-radius: 24px;
  background-image: url("../images/typ-bg.svg");
  background-position: right bottom;
  background-size: contain;
  background-repeat: no-repeat;
  text-align: center;
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
  .typ-order-wrap ul.order_details.woocommerce-order-overview {
    min-width: 395px;
    max-width: 395px;
  }
}
.typ-order-wrap ul.order_details.woocommerce-order-overview li {
  float: none;
  width: 100%;
  margin-right: 0;
  border-right: none;
  padding-right: 0;
  text-transform: none;
  font-size: 1rem;
  line-height: 1.625rem;
}
.typ-order-wrap ul.order_details.woocommerce-order-overview li strong {
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 700;
  color: #3B82F6;
}
@media only screen and (min-width: 768px) {
  .typ-order-wrap ul.order_details.woocommerce-order-overview li strong {
    display: inline;
  }
}

.free-delivery, .sale-icon, .new-icon {
  display: inline-block;
  padding: 5px 15px;
  background-color: #3B82F6;
  z-index: 2;
  border-radius: 60px;
}
@media only screen and (min-width: 1200px) {
  .free-delivery, .sale-icon, .new-icon {
    padding: 4px 8px;
  }
}
@media only screen and (min-width: 1600px) {
  .free-delivery, .sale-icon, .new-icon {
    padding: 5px 15px;
  }
}
.free-delivery span, .sale-icon span, .new-icon span {
  color: #fff;
  font-size: 0.75rem;
  vertical-align: middle;
}
.free-delivery svg, .free-delivery img, .sale-icon svg, .sale-icon img, .new-icon svg, .new-icon img {
  color: #fff;
  margin-right: 5px;
  vertical-align: middle;
  display: inline-block;
}

.free-delivery {
  position: absolute;
  left: 8px;
  top: 8px;
  -webkit-box-shadow: 0px 10px 26px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 10px 26px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 10px 26px 0px rgba(0, 0, 0, 0.15);
}

.sale-icon {
  position: absolute;
  right: 8px;
  top: 8px;
  -webkit-box-shadow: 0px 10px 26px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 10px 26px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 10px 26px 0px rgba(0, 0, 0, 0.15);
}

.new-icon {
  position: absolute;
  left: 8px;
  top: 50px;
  -webkit-box-shadow: 0px 10px 26px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 10px 26px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 10px 26px 0px rgba(0, 0, 0, 0.15);
}

.product .img-wrap-outside {
  position: relative;
}
.product .img-wrap-outside .bottom-buttons-wrap {
  position: absolute;
  bottom: 0;
  left: 8px;
}
.product .img-wrap-outside .bottom-buttons-wrap .add_to_cart_button {
  margin-bottom: 8px;
  width: 48px;
  height: 48px;
  padding: 8px;
  border-radius: 100%;
  background-color: #3B82F6;
  border: 1px solid #3B82F6;
  text-decoration: none;
  display: inline-block;
  margin-right: 20px;
  vertical-align: top;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.product .img-wrap-outside .bottom-buttons-wrap .add_to_cart_button:hover {
  background-color: #E4E4E7;
  border: 1px solid #E4E4E7;
}
.product .img-wrap-outside .bottom-buttons-wrap .add_to_cart_button:hover svg path {
  stroke: #27272A;
}
.product .img-wrap-outside .bottom-buttons-wrap .add_to_cart_button.added {
  border: 1px solid #3B82F6;
}
.product .img-wrap-outside .bottom-buttons-wrap .add_to_cart_button.added:hover svg path {
  stroke: transparent;
}
.product .img-wrap-outside .bottom-buttons-wrap .add_to_cart_button.added .not-added {
  display: none;
}
.product .img-wrap-outside .bottom-buttons-wrap .add_to_cart_button.added .added-to-cart {
  display: block;
}
.product .img-wrap-outside .bottom-buttons-wrap .add_to_cart_button svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  margin: 0;
}
.product .img-wrap-outside .bottom-buttons-wrap .add_to_cart_button svg.not-added {
  display: block;
}
.product .img-wrap-outside .bottom-buttons-wrap .add_to_cart_button svg.added-to-cart {
  display: none;
}
.product .img-wrap-outside .bottom-buttons-wrap .add_to_cart_button svg path {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.product .img-wrap-outside .bottom-buttons-wrap .open-contact-form-product {
  margin-bottom: 8px;
}
.product .img-wrap-outside .bottom-buttons-wrap .added_to_cart {
  position: relative;
  display: inline-block;
  font-size: 0.875rem;
  line-height: 1.25rem;
  padding: 13px 24px;
  border-radius: 60px;
  font-weight: 700;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-transform: uppercase;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid #3B82F6;
  color: #fff;
  background-color: #3B82F6;
}
.product .img-wrap-outside .bottom-buttons-wrap .added_to_cart:hover {
  border: 1px solid #ee0030;
  color: #fff;
  background-color: #ee0030;
}
.product .img-wrap {
  width: 100%;
  padding-top: 100%; /* 1:1 Aspect Ratio */
  position: relative; /* If you want text inside of it */
  margin-bottom: 20px;
  border-radius: 20px;
  overflow: hidden;
  display: block;
}
.product .img-wrap > img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product .text-wrap a {
  font-size: 0.8125rem;
  line-height: 1.25rem;
  color: #27272A;
  text-decoration: none;
}
.product .text-wrap a:hover p, .product .text-wrap a:hover h2 {
  text-decoration: underline;
}
.product .text-wrap a h2, .product .text-wrap a p {
  font-size: 0.8125rem;
  line-height: 1.25rem;
  font-weight: 700;
  margin-bottom: 5px;
}
.product .text-wrap .cat-header {
  font-size: 0.8125rem;
  line-height: 1.25rem;
  margin-bottom: 5px;
}
.product .text-wrap .more-info-wrap {
  margin-bottom: 20px;
}
.product .text-wrap .more-info-wrap a {
  font-size: 0.6875rem;
  line-height: 1rem;
}
.product .text-wrap .more-info-wrap a:hover {
  text-decoration: underline;
}

.price {
  display: block;
  margin-bottom: 5px;
  color: #27272A;
}
.price .highlight {
  color: #27272A;
}
.price del {
  color: #27272A;
}
.price ins {
  text-decoration: none;
}
.price .woocommerce-Price-amount {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 700;
  color: #27272A;
}
.price .woocommerce-Price-amount bdi {
  font-size: inherit;
  line-height: inherit;
}
.price .woocommerce-Price-amount .quantity {
  font-size: 0.6875rem;
  line-height: 1rem;
  font-weight: 600;
}

.rating-stars {
  display: block;
  margin-bottom: 8px;
}
.rating-stars svg {
  width: 13px;
  height: 13px;
  color: #3B82F6;
  stroke: #3B82F6;
  vertical-align: middle;
}
.rating-stars svg.active {
  fill: #3B82F6;
}
.rating-stars span {
  font-size: 0.8125rem;
  line-height: 1.25rem;
  margin-left: 5px;
  vertical-align: middle;
}

.single-product-wrap .product-wrap {
  padding-top: 40px;
  border-top: 1px solid #E4E4E7;
  padding-bottom: 40px;
}
@media only screen and (min-width: 768px) {
  .single-product-wrap .product-wrap {
    padding-top: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid #E4E4E7;
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 992px) {
  .single-product-wrap .product-wrap {
    margin-bottom: 80px;
  }
}
.single-product-wrap .product-wrap > .row {
  margin-left: -35px;
  margin-right: -35px;
}
.single-product-wrap .product-wrap > .row > .col {
  padding-left: 35px;
  padding-right: 35px;
}
.single-product-wrap .product-wrap .product > .row {
  margin-left: -20px;
  margin-right: -20px;
}
.single-product-wrap .product-wrap .product > .row > .col {
  padding-left: 20px;
  padding-right: 20px;
}
.single-product-wrap .product-wrap .product_title.entry-title {
  font-size: 1.625rem;
  line-height: 1.875rem;
  letter-spacing: -2%;
  font-weight: 700;
  margin-bottom: 16px;
}
@media only screen and (min-width: 768px) {
  .single-product-wrap .product-wrap .product_title.entry-title {
    font-size: 2rem;
    line-height: 2.5rem;
    margin-bottom: 20px;
  }
}
.single-product-wrap .product-wrap .rating-stars {
  margin-bottom: 20px;
}
.single-product-wrap .product-wrap .price {
  margin-bottom: 16px;
}
@media only screen and (min-width: 768px) {
  .single-product-wrap .product-wrap .price {
    margin-bottom: 20px;
  }
}
.single-product-wrap .product-wrap .button-wrap {
  margin-bottom: 20px;
}
.single-product-wrap .product-wrap .button-wrap .btn {
  margin-left: 0px;
}
.single-product-wrap .product-wrap .quantity-wrap {
  float: left;
  margin-right: 0;
  position: relative;
}
.single-product-wrap .product-wrap .quantity-wrap .plus, .single-product-wrap .product-wrap .quantity-wrap .minus {
  position: absolute;
  width: 20px;
  height: 20px;
  right: 70px;
}
.single-product-wrap .product-wrap .quantity-wrap .plus svg, .single-product-wrap .product-wrap .quantity-wrap .minus svg {
  width: 100%;
  height: 100%;
}
.single-product-wrap .product-wrap .quantity-wrap .plus {
  top: 4px;
}
.single-product-wrap .product-wrap .quantity-wrap .minus {
  top: 24px;
}
.single-product-wrap .product-wrap .quantity {
  float: none;
  margin: 0;
}
.single-product-wrap .product-wrap .quantity .qty {
  height: 48px;
  width: 160px;
  margin-right: 0;
  border-radius: 60px;
  padding-right: 60px;
  border: 1px solid #E4E4E7;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-family: "Inter", sans-serif;
  -webkit-appearance: none;
  -moz-appearance: textfield;
}
.single-product-wrap .product-wrap .btn[name=add-to-cart] {
  margin-left: -55px;
  padding: 12px 24px;
}
.single-product-wrap .product-wrap .comfino-wrapper {
  margin-top: 10px;
}
@media only screen and (min-width: 1200px) {
  .single-product-wrap .product-wrap .comfino-wrapper {
    margin-top: 20px;
  }
}
@media only screen and (min-width: 1600px) {
  .single-product-wrap .product-wrap .comfino-wrapper {
    margin-top: 230px;
  }
}
.single-product-wrap .product-wrap .comfino-widget {
  display: block;
}
.single-product-wrap .product-wrap .comfino-widget > a {
  border-radius: 60px;
  overflow: hidden;
  display: block;
}
.single-product-wrap .product-wrap .comfino-widget > a img {
  display: block;
}
.single-product-wrap .product-wrap .comfino-widget-panel {
  margin-top: 8px;
  border: 1px solid #93C121;
  border-radius: 60px;
  display: inline-block;
  padding: 11px 44px 11px 24px;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .single-product-wrap .product-wrap .comfino-widget-panel {
    margin-top: 24px;
  }
}
.single-product-wrap .product-wrap .comfino-widget-panel .comfino-widget-panel {
  border: none;
  margin-top: 0;
  padding: 0;
  display: inline-block;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.single-product-wrap .product-wrap .comfino-widget-panel .comfino-widget-panel .comfino-widget-panel__value {
  display: inline-block;
}
.single-product-wrap .product-wrap .comfino-widget-panel .comfino-widget-panel .comfino-widget-panel__period {
  display: inline-block;
}
.single-product-wrap .product-wrap .comfino-widget-panel .comfino-widget-panel__button {
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  left: 0;
  top: 0;
  border-radius: 60px;
  padding: 0;
  mask-image: none;
  -webkit-mask-image: none;
  background-image: url(../images/arrow-green.svg);
  background-size: 20px;
  background-position: 158px 14px;
  background-repeat: no-repeat;
  background-color: transparent;
}
.single-product-wrap .product-wrap .posted_in {
  display: block;
  margin-bottom: 16px;
}
@media only screen and (min-width: 768px) {
  .single-product-wrap .product-wrap .posted_in {
    margin-bottom: 24px;
  }
}
.single-product-wrap .product-wrap .posted_in > a {
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
  color: #27272A;
  background-color: #F4F4F5;
  text-decoration: none;
  display: inline-block;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 14px 24px;
  border-radius: 60px;
}
.single-product-wrap .product-wrap .posted_in > a:hover {
  background-color: #3B82F6;
  color: #fff;
}
.single-product-wrap .product-gallery-wrap {
  margin-bottom: 24px;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .single-product-wrap .product-gallery-wrap {
    margin-bottom: 40px;
  }
}
.single-product-wrap .product-gallery-wrap .row {
  margin-left: -12px;
  margin-right: -12px;
  flex-direction: column-reverse;
}
@media only screen and (min-width: 768px) {
  .single-product-wrap .product-gallery-wrap .row {
    flex-direction: row;
  }
}
.single-product-wrap .product-gallery-wrap .row .col {
  padding-left: 12px;
  padding-right: 12px;
}
@media only screen and (min-width: 768px) {
  .single-product-wrap .product-gallery-wrap .row .col.col-md-3 {
    -ms-flex: 0 0 21%;
    flex: 0 0 21%;
    max-width: 21%;
  }
}
@media only screen and (min-width: 768px) {
  .single-product-wrap .product-gallery-wrap .row .col.col-md-9 {
    -ms-flex: 0 0 79%;
    flex: 0 0 79%;
    max-width: 79%;
  }
}
.single-product-wrap .product-gallery-wrap .product-gallery-slider-wrap .single-gallery-item-wrap {
  width: 100%;
  padding-top: 95%; /* Aspect Ratio */
  position: relative; /* If you want text inside of it */
  display: block;
}
.single-product-wrap .product-gallery-wrap .product-gallery-slider-wrap .single-gallery-item-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single-product-wrap .product-gallery-wrap .slider-nav-and-arrows {
  padding-top: 16px;
  padding-bottom: 16px;
  margin-left: -5px;
  margin-right: -5px;
  position: relative;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-left: 28px;
  padding-right: 28px;
}
@media only screen and (min-width: 768px) {
  .single-product-wrap .product-gallery-wrap .slider-nav-and-arrows {
    margin-left: 0;
    margin-right: 0;
    padding-top: 35px;
    padding-bottom: 20px;
    padding-left: 0;
    padding-right: 0;
  }
}
.single-product-wrap .product-gallery-wrap .slider-nav-and-arrows .slick-arrow {
  position: absolute;
  margin: auto;
  width: 20px;
  height: 20px;
  top: 0;
  bottom: 0;
}
@media only screen and (min-width: 768px) {
  .single-product-wrap .product-gallery-wrap .slider-nav-and-arrows .slick-arrow {
    left: 0;
    right: 0;
    top: auto;
    bottom: auto;
  }
}
.single-product-wrap .product-gallery-wrap .slider-nav-and-arrows .slick-arrow.up {
  left: 0;
}
@media only screen and (min-width: 768px) {
  .single-product-wrap .product-gallery-wrap .slider-nav-and-arrows .slick-arrow.up {
    top: 0;
  }
}
.single-product-wrap .product-gallery-wrap .slider-nav-and-arrows .slick-arrow.up .mobile {
  display: inline;
}
.single-product-wrap .product-gallery-wrap .slider-nav-and-arrows .slick-arrow.up .desktop {
  display: none;
}
@media only screen and (min-width: 768px) {
  .single-product-wrap .product-gallery-wrap .slider-nav-and-arrows .slick-arrow.up .mobile {
    display: none;
  }
  .single-product-wrap .product-gallery-wrap .slider-nav-and-arrows .slick-arrow.up .desktop {
    display: inline;
  }
}
.single-product-wrap .product-gallery-wrap .slider-nav-and-arrows .slick-arrow.down {
  right: 0;
}
@media only screen and (min-width: 768px) {
  .single-product-wrap .product-gallery-wrap .slider-nav-and-arrows .slick-arrow.down {
    bottom: 0;
  }
}
.single-product-wrap .product-gallery-wrap .slider-nav-and-arrows .slick-arrow.down .mobile {
  display: inline;
}
.single-product-wrap .product-gallery-wrap .slider-nav-and-arrows .slick-arrow.down .desktop {
  display: none;
}
@media only screen and (min-width: 768px) {
  .single-product-wrap .product-gallery-wrap .slider-nav-and-arrows .slick-arrow.down .mobile {
    display: none;
  }
  .single-product-wrap .product-gallery-wrap .slider-nav-and-arrows .slick-arrow.down .desktop {
    display: inline;
  }
}
.single-product-wrap .product-gallery-wrap .slider-nav-and-arrows .slick-arrow svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.single-product-wrap .product-gallery-wrap .slider-nav-and-arrows .slider-nav-wrap {
  float: left;
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
}
@media only screen and (min-width: 768px) {
  .single-product-wrap .product-gallery-wrap .slider-nav-and-arrows .slider-nav-wrap {
    float: none;
    width: auto;
    padding-left: 0;
    padding-right: 0;
  }
}
.single-product-wrap .product-gallery-wrap .slider-nav-and-arrows .slider-nav-wrap .slick-slide {
  padding-left: 5px;
  padding-right: 5px;
}
@media only screen and (min-width: 768px) {
  .single-product-wrap .product-gallery-wrap .slider-nav-and-arrows .slider-nav-wrap .slick-slide {
    padding-left: 0;
    padding-right: 0;
  }
}
.single-product-wrap .product-gallery-wrap .slider-nav-and-arrows .slider-nav-wrap .single-nav-item {
  width: 100%;
  padding-top: 100%; /* 1:1 Aspect Ratio */
  position: relative; /* If you want text inside of it */
  display: block;
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
  .single-product-wrap .product-gallery-wrap .slider-nav-and-arrows .slider-nav-wrap .single-nav-item {
    margin-bottom: 20px;
  }
}
.single-product-wrap .product-gallery-wrap .slider-nav-and-arrows .slider-nav-wrap .single-nav-item img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single-product-wrap .mobile-only-marg {
  margin-bottom: 30px;
}
@media only screen and (min-width: 768px) {
  .single-product-wrap .mobile-only-marg {
    margin-bottom: 0;
  }
}

.product-content-wrap {
  padding-top: 0;
}
@media only screen and (min-width: 768px) {
  .product-content-wrap {
    padding-top: 80px;
  }
}
@media only screen and (min-width: 768px) {
  .product-content-wrap p {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}
.product-content-wrap ul li ul {
  padding-top: 20px;
}
.product-content-wrap ul li ul li {
  font-size: 1rem;
  line-height: 1.375rem;
  margin-bottom: 20px;
  position: relative;
}
.product-content-wrap ul li ul li::before {
  content: "";
  display: block;
  width: 9px;
  height: 1px;
  background-color: #27272A;
  position: absolute;
  top: 12px;
  left: -25px;
}
.product-content-wrap ul li ul li strong {
  font-weight: 700;
}
.product-content-wrap table {
  max-width: 100%;
}

.products-not-found {
  padding: 40px 0;
}

.delivery-time-info-wrap {
  padding-top: 50px;
}

.info-tiles-wrap {
  padding-top: 40px;
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
  .info-tiles-wrap {
    padding-top: 80px;
    margin-bottom: 80px;
  }
}
.info-tiles-wrap .row {
  margin-left: -12px;
  margin-right: -12px;
}
@media only screen and (min-width: 1200px) {
  .info-tiles-wrap .row {
    margin-left: -6px;
    margin-right: -6px;
  }
}
@media only screen and (min-width: 1600px) {
  .info-tiles-wrap .row {
    margin-left: -12px;
    margin-right: -12px;
  }
}
.info-tiles-wrap .row .col {
  padding-left: 12px;
  padding-right: 12px;
  margin-bottom: 40px;
}
@media only screen and (min-width: 768px) {
  .info-tiles-wrap .row .col {
    margin-bottom: 24px;
  }
}
@media only screen and (min-width: 1200px) {
  .info-tiles-wrap .row .col {
    padding-left: 6px;
    padding-right: 6px;
    margin-bottom: 12px;
  }
}
@media only screen and (min-width: 1600px) {
  .info-tiles-wrap .row .col {
    padding-left: 12px;
    padding-right: 12px;
    margin-bottom: 24px;
  }
}
.info-tiles-wrap .info-tile-wrap {
  background-color: #F4F4F5;
  border-radius: 24px;
  padding: 24px;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .info-tiles-wrap .info-tile-wrap {
    padding: 40px 20px;
  }
}
@media only screen and (min-width: 1200px) {
  .info-tiles-wrap .info-tile-wrap {
    padding: 20px 10px;
  }
}
@media only screen and (min-width: 1600px) {
  .info-tiles-wrap .info-tile-wrap {
    padding: 40px 20px;
  }
}
.info-tiles-wrap .info-tile-wrap .icon-wrap {
  text-align: center;
  margin-bottom: 16px;
}
@media only screen and (min-width: 768px) {
  .info-tiles-wrap .info-tile-wrap .icon-wrap {
    margin-bottom: 8px;
  }
}
.info-tiles-wrap .info-tile-wrap .icon-wrap img {
  display: inline-block;
  max-width: 80px;
}
@media only screen and (min-width: 768px) {
  .info-tiles-wrap .info-tile-wrap .icon-wrap img {
    max-width: 60px;
  }
}
.info-tiles-wrap .info-tile-wrap .header {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}
@media only screen and (min-width: 768px) {
  .info-tiles-wrap .info-tile-wrap .header {
    font-size: 0.75rem;
    line-height: 1.25rem;
    margin-bottom: 8px;
  }
}
.info-tiles-wrap .info-tile-wrap .text {
  font-size: 0.875rem;
  line-height: 1.5rem;
  font-weight: 400;
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
  .info-tiles-wrap .info-tile-wrap .text {
    font-size: 0.75rem;
    line-height: 1.25rem;
  }
}

.related-products-wrap, .upsells-products-wrap {
  margin-bottom: 40px;
}
@media only screen and (min-width: 768px) {
  .related-products-wrap, .upsells-products-wrap {
    margin-bottom: 80px;
  }
}
.related-products-wrap .related-header, .upsells-products-wrap .related-header {
  font-size: 2rem;
  line-height: 2.25rem;
  letter-spacing: -2%;
  font-weight: 500;
  margin-bottom: 16px;
}
@media only screen and (min-width: 768px) {
  .related-products-wrap .related-header, .upsells-products-wrap .related-header {
    font-size: 2.5rem;
    line-height: 3rem;
    margin-bottom: 20px;
  }
}

.woocommerce div.product form.cart {
  margin-bottom: 6px;
}
@media only screen and (min-width: 768px) {
  .woocommerce div.product form.cart {
    margin-bottom: 2em;
  }
}

.post-single {
  padding-bottom: 30px;
}
.post-single .img-wrap {
  width: 100%;
  padding-top: 75%; /* 4:3 Aspect Ratio (divide 3 by 4 = 0.75) */
  position: relative; /* If you want text inside of it */
  margin-bottom: 20px;
  display: block;
}
@media only screen and (min-width: 768px) {
  .post-single .img-wrap {
    padding-top: 100%; /* 1:1 Aspect Ratio */
  }
}
.post-single .img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}
.post-single .cat-date {
  font-size: 0.8125rem;
  line-height: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.post-single .cat-date .date {
  margin-left: 10px;
}
.post-single .title {
  margin-bottom: 5px;
}
.post-single .title a {
  font-size: 1.25rem;
  line-height: 1.625rem;
  font-weight: 700;
  color: #27272A;
  text-decoration: none;
}
.post-single .title a:hover {
  text-decoration: underline;
}
.post-single .text {
  font-size: 0.8125rem;
  line-height: 1.25rem;
  margin-bottom: 5px;
}
.post-single .more {
  font-size: 0.6875rem;
  line-height: 1rem;
  color: #cccccc;
  text-transform: uppercase;
}

.opinion-wrap {
  padding: 20px;
  border: 1px solid #E4E4E7;
  margin-bottom: 20px;
  border-radius: 5px;
}
.opinion-wrap .author-date-icon {
  margin-bottom: 5px;
}
.opinion-wrap .author-date-icon svg {
  width: 18px;
  height: 18px;
  margin-right: 10px;
  vertical-align: middle;
}
.opinion-wrap .author-date-icon span {
  font-size: 0.8125rem;
  line-height: 1.25rem;
  font-weight: 700;
  vertical-align: middle;
}
.opinion-wrap p {
  font-size: 0.8125rem;
  line-height: 1.25rem;
  margin-bottom: 10px;
}
.opinion-wrap .gallery {
  margin-left: -10px;
  margin-right: -10px;
  margin-bottom: -20px;
}
.opinion-wrap .gallery .col {
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 20px;
}
.opinion-wrap .gallery .col a {
  width: 100%;
  padding-top: 100%; /* 1:1 Aspect Ratio */
  position: relative; /* If you want text inside of it */
  display: block;
}
.opinion-wrap .gallery .col img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.breadcrumb-wrap, .breadcrumbs-class {
  margin-bottom: 40px;
  font-size: 0;
}
@media only screen and (min-width: 1600px) {
  .breadcrumb-wrap, .breadcrumbs-class {
    margin-bottom: 80px;
  }
}
.breadcrumb-wrap span.breadcrumb_last, .breadcrumb-wrap a, .breadcrumbs-class span.breadcrumb_last, .breadcrumbs-class a {
  color: #A1A1AA;
  background-color: #F4F4F5;
  font-size: 0.75rem;
  line-height: 1.25rem;
  padding: 4px 12px;
  border-radius: 60px;
  margin-right: 4px;
  display: inline-block;
  text-decoration: none;
  vertical-align: middle;
  margin-bottom: 4px;
}
.breadcrumb-wrap .separator, .breadcrumbs-class .separator {
  line-height: 1.25rem;
  display: inline-block;
  height: 28px;
  width: 28px;
  background-image: url(../images/breadcrumb-separator.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}

.wp-block-embed {
  margin-bottom: 40px;
}

.wp-block-gallery.has-nested-images figure.wp-block-image figcaption {
  padding: 25px 8px 12px 8px;
  background: linear-gradient(0deg, rgba(255, 99, 136, 0.7), rgba(255, 99, 136, 0.3) 70%, transparent);
  font-weight: 600;
}

.page-single-top-wrap {
  position: relative;
  padding: 40px;
  border-radius: 40px;
  margin-bottom: 40px;
  min-height: 384px;
  display: flex;
  flex-wrap: wrap;
  align-content: end;
}
@media only screen and (min-width: 768px) {
  .page-single-top-wrap {
    padding: 60px;
    border-radius: 60px;
    margin-bottom: 80px;
  }
}
.page-single-top-wrap.page-single-top-wrap-contact {
  display: block;
}
.page-single-top-wrap.page-single-top-wrap-contact .bubble-small-wrap {
  right: -16%;
  top: 34%;
}
@media only screen and (min-width: 768px) {
  .page-single-top-wrap.page-single-top-wrap-contact .bubble-small-wrap {
    left: -3%;
    right: auto;
    top: 16%;
  }
}
.page-single-top-wrap.page-single-top-wrap-contact .bubble-big-wrap {
  right: -9%;
  top: 4%;
  z-index: 3;
  display: none;
}
@media only screen and (min-width: 768px) {
  .page-single-top-wrap.page-single-top-wrap-contact .bubble-big-wrap {
    display: block;
  }
}
.page-single-top-wrap.page-single-top-wrap-contact .row {
  position: relative;
  z-index: 3;
}
.page-single-top-wrap.page-single-top-wrap-contact .left-column-wrap {
  height: 100%;
  flex-wrap: wrap;
  align-items: end;
  margin-bottom: 40px;
}
@media only screen and (min-width: 768px) {
  .page-single-top-wrap.page-single-top-wrap-contact .left-column-wrap {
    display: flex;
    margin-bottom: 0;
  }
}
.page-single-top-wrap.page-single-top-wrap-contact .left-column-wrap .page-title {
  margin-bottom: 12px;
}
@media only screen and (min-width: 768px) {
  .page-single-top-wrap.page-single-top-wrap-contact .left-column-wrap .page-title {
    margin-bottom: 24px;
  }
}
.page-single-top-wrap.page-single-top-wrap-contact .left-column-wrap p {
  font-size: 1rem;
  line-height: 1.625rem;
  margin-bottom: 12px;
}
@media only screen and (min-width: 768px) {
  .page-single-top-wrap.page-single-top-wrap-contact .left-column-wrap p {
    font-size: 1.125rem;
    line-height: 1.75rem;
    margin-bottom: 24px;
  }
}
.page-single-top-wrap.page-single-top-wrap-contact .left-column-wrap p:last-of-type {
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
  .page-single-top-wrap.page-single-top-wrap-contact .left-column-wrap p:last-of-type {
    margin-bottom: 0;
  }
}
.page-single-top-wrap.page-single-top-wrap-contact .right-column-wrap {
  background-color: #fff;
  border-radius: 24px;
  padding: 16px;
}
@media only screen and (min-width: 768px) {
  .page-single-top-wrap.page-single-top-wrap-contact .right-column-wrap {
    border-radius: 60px;
    padding: 36px 40px;
  }
}
@media only screen and (min-width: 768px) {
  .page-single-top-wrap.page-single-top-wrap-contact .right-column-wrap {
    padding: 36px 60px;
  }
}
.page-single-top-wrap.page-single-top-wrap-contact .right-column-wrap .contact-info-wrap {
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
  z-index: 2;
}
@media only screen and (min-width: 768px) {
  .page-single-top-wrap.page-single-top-wrap-contact .right-column-wrap .contact-info-wrap {
    margin-bottom: 24px;
  }
}
.page-single-top-wrap.page-single-top-wrap-contact .right-column-wrap .contact-info-wrap:last-of-type {
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
  .page-single-top-wrap.page-single-top-wrap-contact .right-column-wrap .contact-info-wrap:last-of-type {
    margin-bottom: 0;
  }
}
.page-single-top-wrap.page-single-top-wrap-contact .right-column-wrap .contact-info-wrap svg {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.page-single-top-wrap.page-single-top-wrap-contact .right-column-wrap .contact-info-wrap p {
  font-size: 0.75rem;
  line-height: 1.25rem;
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
  .page-single-top-wrap.page-single-top-wrap-contact .right-column-wrap .contact-info-wrap p {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}
.page-single-top-wrap.page-single-top-wrap-contact .right-column-wrap .contact-info-wrap p > a {
  color: #27272A;
  text-decoration: none;
}
.page-single-top-wrap.page-single-top-wrap-about .glass-decor-wrap {
  width: 156px;
  height: 156px;
  position: absolute;
  z-index: 2;
}
@media only screen and (min-width: 768px) {
  .page-single-top-wrap.page-single-top-wrap-about .glass-decor-wrap {
    width: 263px;
    height: 263px;
  }
}
.page-single-top-wrap.page-single-top-wrap-about .glass-decor-wrap:nth-of-type(1) {
  left: -17%;
  top: 43%;
  transform: rotate(24deg);
}
@media only screen and (min-width: 768px) {
  .page-single-top-wrap.page-single-top-wrap-about .glass-decor-wrap:nth-of-type(1) {
    left: -9%;
    top: 14%;
  }
}
.page-single-top-wrap.page-single-top-wrap-about .glass-decor-wrap:nth-of-type(2) {
  width: 110px;
  height: 300px;
  right: 0;
  top: -5%;
  transform: rotate(24deg);
}
@media only screen and (min-width: 768px) {
  .page-single-top-wrap.page-single-top-wrap-about .glass-decor-wrap:nth-of-type(2) {
    width: 273px;
    height: 379px;
    right: 12%;
    top: -4%;
  }
}
@media only screen and (min-width: 992px) {
  .page-single-top-wrap.page-single-top-wrap-about .glass-decor-wrap:nth-of-type(2) {
    width: 313px;
    height: 451px;
    right: 12%;
    top: -13%;
  }
}
.page-single-top-wrap.page-single-top-wrap-about .glass-decor {
  width: 100%;
  height: 100%;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.05) 70%, rgba(255, 255, 255, 0) 100%);
  backdrop-filter: blur(4px) saturate(120%);
  -webkit-backdrop-filter: blur(4px) saturate(120%);
  box-shadow: inset 0 0 25px rgba(255, 255, 255, 0.25), inset 0 0 40px rgba(255, 255, 255, 0.08), 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  isolation: isolate;
  z-index: 2;
}
.page-single-top-wrap.page-single-top-wrap-about .glass-decor::before {
  content: "";
  position: absolute;
  top: 10%;
  left: 15%;
  width: 60%;
  height: 40%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.5), transparent 70%);
  transform: rotate(-20deg);
  opacity: 0.6;
  pointer-events: none;
}
.page-single-top-wrap.page-single-top-wrap-about .glass-decor::after {
  content: "";
  position: absolute;
  bottom: 15%;
  right: 20%;
  width: 40%;
  height: 30%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.2), transparent 80%);
  opacity: 0.3;
  filter: blur(2px);
  pointer-events: none;
}
.page-single-top-wrap.page-single-top-wrap-about .glass-decor::part(edge) {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.15), 0 0 15px rgba(255, 255, 255, 0.05);
}
.page-single-top-wrap.page-single-top-wrap-cooperation .glass-decor-wrap {
  width: 90px;
  height: 250px;
  position: absolute;
  z-index: 2;
}
@media only screen and (min-width: 768px) {
  .page-single-top-wrap.page-single-top-wrap-cooperation .glass-decor-wrap {
    width: 125px;
    height: 327px;
  }
}
.page-single-top-wrap.page-single-top-wrap-cooperation .glass-decor-wrap:nth-of-type(1) {
  left: 18%;
  top: 44%;
}
@media only screen and (min-width: 768px) {
  .page-single-top-wrap.page-single-top-wrap-cooperation .glass-decor-wrap:nth-of-type(1) {
    left: 6%;
    top: 25%;
  }
}
.page-single-top-wrap.page-single-top-wrap-cooperation .glass-decor-wrap:nth-of-type(2) {
  right: 0;
  top: -5%;
  display: none;
}
@media only screen and (min-width: 768px) {
  .page-single-top-wrap.page-single-top-wrap-cooperation .glass-decor-wrap:nth-of-type(2) {
    display: block;
    height: 259px;
    right: 20%;
    top: 48%;
  }
}
@media only screen and (min-width: 992px) {
  .page-single-top-wrap.page-single-top-wrap-cooperation .glass-decor-wrap:nth-of-type(2) {
    right: 20%;
    top: 48%;
  }
}
.page-single-top-wrap.page-single-top-wrap-cooperation .glass-decor-wrap:nth-of-type(3) {
  right: -9%;
  top: -5%;
  height: 233px;
}
@media only screen and (min-width: 768px) {
  .page-single-top-wrap.page-single-top-wrap-cooperation .glass-decor-wrap:nth-of-type(3) {
    right: -4%;
    top: -13%;
  }
}
@media only screen and (min-width: 1200px) {
  .page-single-top-wrap.page-single-top-wrap-cooperation .glass-decor-wrap:nth-of-type(3) {
    right: 3%;
    top: -13%;
  }
}
@media only screen and (min-width: 1600px) {
  .page-single-top-wrap.page-single-top-wrap-cooperation .glass-decor-wrap:nth-of-type(3) {
    right: 8%;
    top: -13%;
  }
}
.page-single-top-wrap.page-single-top-wrap-cooperation .glass-decor {
  width: 100%;
  height: 100%;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.05) 70%, rgba(255, 255, 255, 0) 100%);
  backdrop-filter: blur(4px) saturate(120%);
  -webkit-backdrop-filter: blur(4px) saturate(120%);
  box-shadow: inset 0 0 25px rgba(255, 255, 255, 0.25), inset 0 0 40px rgba(255, 255, 255, 0.08), 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  isolation: isolate;
  z-index: 2;
}
.page-single-top-wrap.page-single-top-wrap-cooperation .glass-decor::before {
  content: "";
  position: absolute;
  top: 10%;
  left: 15%;
  width: 60%;
  height: 40%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.5), transparent 70%);
  transform: rotate(-20deg);
  opacity: 0.6;
  pointer-events: none;
}
.page-single-top-wrap.page-single-top-wrap-cooperation .glass-decor::after {
  content: "";
  position: absolute;
  bottom: 15%;
  right: 20%;
  width: 40%;
  height: 30%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.2), transparent 80%);
  opacity: 0.3;
  filter: blur(2px);
  pointer-events: none;
}
.page-single-top-wrap.page-single-top-wrap-cooperation .glass-decor::part(edge) {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.15), 0 0 15px rgba(255, 255, 255, 0.05);
}
.page-single-top-wrap::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 35px;
  background: linear-gradient(180deg, rgba(244, 244, 245, 0.2) 0%, #F4F4F5 100%);
  z-index: 1;
}
@media only screen and (min-width: 768px) {
  .page-single-top-wrap::before {
    border-radius: 55px;
  }
}
.page-single-top-wrap .glass-decor-wrap {
  width: 250px;
  height: 100px;
  position: absolute;
  z-index: 2;
}
.page-single-top-wrap .glass-decor-wrap:nth-of-type(1) {
  left: -20%;
  top: 32%;
}
@media only screen and (min-width: 768px) {
  .page-single-top-wrap .glass-decor-wrap:nth-of-type(1) {
    left: -2%;
    top: 14%;
  }
}
.page-single-top-wrap .glass-decor-wrap:nth-of-type(2) {
  right: -50%;
  top: 18%;
}
@media only screen and (min-width: 768px) {
  .page-single-top-wrap .glass-decor-wrap:nth-of-type(2) {
    right: 22%;
    top: -13%;
  }
}
.page-single-top-wrap .glass-decor-wrap:nth-of-type(3) {
  right: -50%;
  top: 56%;
}
@media only screen and (min-width: 768px) {
  .page-single-top-wrap .glass-decor-wrap:nth-of-type(3) {
    right: 22%;
    top: 25%;
  }
}
.page-single-top-wrap .glass-decor-wrap:nth-of-type(4) {
  display: none;
  right: -20%;
  top: 12%;
}
@media only screen and (min-width: 768px) {
  .page-single-top-wrap .glass-decor-wrap:nth-of-type(4) {
    display: block;
  }
}
@media only screen and (min-width: 992px) {
  .page-single-top-wrap .glass-decor-wrap:nth-of-type(4) {
    right: -2%;
    top: 12%;
  }
}
.page-single-top-wrap .glass-decor-wrap:nth-of-type(5) {
  display: none;
  right: -20%;
  top: 50%;
}
@media only screen and (min-width: 768px) {
  .page-single-top-wrap .glass-decor-wrap:nth-of-type(5) {
    display: block;
  }
}
@media only screen and (min-width: 992px) {
  .page-single-top-wrap .glass-decor-wrap:nth-of-type(5) {
    right: -2%;
    top: 50%;
  }
}
.page-single-top-wrap .glass-decor {
  width: 100%;
  height: 100%;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 24px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.05) 70%, rgba(255, 255, 255, 0) 100%);
  backdrop-filter: blur(4px) saturate(120%);
  -webkit-backdrop-filter: blur(4px) saturate(120%);
  box-shadow: inset 0 0 25px rgba(255, 255, 255, 0.25), inset 0 0 40px rgba(255, 255, 255, 0.08), 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  isolation: isolate;
  z-index: 2;
}
.page-single-top-wrap .glass-decor::before {
  content: "";
  position: absolute;
  top: 10%;
  left: 15%;
  width: 60%;
  height: 40%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.5), transparent 70%);
  transform: rotate(-20deg);
  opacity: 0.6;
  pointer-events: none;
}
.page-single-top-wrap .glass-decor::after {
  content: "";
  position: absolute;
  bottom: 15%;
  right: 20%;
  width: 40%;
  height: 30%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.2), transparent 80%);
  opacity: 0.3;
  filter: blur(2px);
  pointer-events: none;
}
.page-single-top-wrap .glass-decor::part(edge) {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.15), 0 0 15px rgba(255, 255, 255, 0.05);
}
.page-single-top-wrap img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 40px;
}
@media only screen and (min-width: 768px) {
  .page-single-top-wrap img {
    border-radius: 60px;
  }
}
.page-single-top-wrap .page-title {
  position: relative;
  z-index: 3;
  margin-bottom: 0;
}

.blog-header-controls-wrap {
  padding-top: 40px;
  margin-bottom: 40px;
  border-top: 1px solid #E4E4E7;
}
@media only screen and (min-width: 768px) {
  .blog-header-controls-wrap {
    padding-top: 80px;
    margin-bottom: 80px;
  }
}
.blog-header-controls-wrap.shop .header-wrap {
  width: 100%;
}
.blog-header-controls-wrap.shop .header-wrap .header {
  float: left;
  margin-right: 20px;
}
.blog-header-controls-wrap.shop .header-wrap .btn {
  float: left;
}
.blog-header-controls-wrap .header {
  font-size: 2rem;
  line-height: 2.25rem;
  font-weight: 500;
  letter-spacing: -2%;
  margin-bottom: 8px;
}
@media only screen and (min-width: 768px) {
  .blog-header-controls-wrap .header {
    font-size: 2.5rem;
    line-height: 3rem;
    margin-bottom: 24px;
  }
}
.blog-header-controls-wrap .text {
  font-size: 0.8125rem;
  line-height: 1.25rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.blog-header-controls-wrap .term-description p {
  font-size: 0.8125rem;
  line-height: 1.25rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.blog-header-controls-wrap .right-wrap {
  float: right;
  text-align: left;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media only screen and (min-width: 768px) {
  .blog-header-controls-wrap .right-wrap {
    padding-top: 20px;
  }
}
@media only screen and (min-width: 992px) {
  .blog-header-controls-wrap .right-wrap {
    text-align: right;
    padding-top: 0;
  }
}
.blog-header-controls-wrap .right-wrap .filtered-info {
  font-size: 0.8125rem;
  line-height: 1.25rem;
  font-weight: 400;
  color: #cccccc;
  margin-bottom: 10px;
}
@media only screen and (min-width: 768px) {
  .blog-header-controls-wrap .right-wrap .filtered-info {
    margin-bottom: 20px;
  }
}

.blog-search-wrap {
  position: relative;
  z-index: 2;
}
.blog-search-wrap form {
  float: none;
  position: relative;
  z-index: -1;
}
@media only screen and (min-width: 992px) {
  .blog-search-wrap form {
    float: right;
  }
}
.blog-search-wrap form input {
  padding: 13px 100px 13px 30px;
  border-radius: 60px;
  border: 1px solid #E4E4E7;
  color: #27272A;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 400;
  max-width: 100%;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .blog-search-wrap form input {
    padding: 13px 100px 13px 20px;
  }
}
@media only screen and (min-width: 992px) {
  .blog-search-wrap form input {
    padding: 13px 100px 13px 30px;
    width: auto;
    max-width: 400px;
  }
}
@media only screen and (min-width: 1600px) {
  .blog-search-wrap form input {
    width: 400px;
  }
}
.blog-search-wrap form input::placeholder {
  color: #E4E4E7;
  opacity: 1;
}
.blog-search-wrap form .search-btn {
  position: absolute;
  margin-right: 0;
  right: 0;
  top: 0;
  width: auto;
  display: block;
  color: #27272A;
}

.posts-archive-wrap .posts-row {
  margin-bottom: 30px;
  /*&::after{
      content: "";
      position: absolute;
      bottom: 0;
      left: 15px;
      width: calc(100% - 30px);
      height: 1px;
      background-color: $grayDark;
      display: block;

  }*/
}
@media only screen and (min-width: 1200px) {
  .posts-archive-wrap .posts-row {
    margin-right: -7px;
    margin-left: -7px;
  }
}
@media only screen and (min-width: 1600px) {
  .posts-archive-wrap .posts-row {
    margin-right: -15px;
    margin-left: -15px;
  }
}
@media only screen and (min-width: 1200px) {
  .posts-archive-wrap .posts-row .col {
    padding-right: 7px;
    padding-left: 7px;
  }
}
@media only screen and (min-width: 1600px) {
  .posts-archive-wrap .posts-row .col {
    padding-right: 15px;
    padding-left: 15px;
    margin-bottom: 50px;
  }
}
.posts-archive-wrap .posts-row .product {
  padding-bottom: 30px;
}

.paginate-and-page-quantity {
  position: relative;
  margin-bottom: 40px;
}
@media only screen and (min-width: 768px) {
  .paginate-and-page-quantity {
    margin-bottom: 80px;
  }
}
.paginate-and-page-quantity::after {
  content: "";
  display: none;
  width: 100%;
  height: 1px;
  background-color: #E4E4E7;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  position: absolute;
  z-index: -1;
}
@media only screen and (min-width: 768px) {
  .paginate-and-page-quantity::after {
    display: block;
  }
}
.paginate-and-page-quantity .quantity span {
  font-size: 0.8125rem;
  line-height: 1.25rem;
  font-weight: 400;
  vertical-align: middle;
}
.paginate-and-page-quantity .quantity a {
  font-size: 0.8125rem;
  line-height: 1.25rem;
  font-weight: 700;
  vertical-align: middle;
  color: #27272A;
  margin-left: 15px;
  text-decoration: none;
}
.paginate-and-page-quantity .quantity a.active {
  text-decoration: underline;
  color: #3B82F6;
}
.paginate-and-page-quantity .pagination {
  float: left;
  background-color: #fff;
}
@media only screen and (min-width: 768px) {
  .paginate-and-page-quantity .pagination {
    padding-left: 24px;
    float: right;
  }
}
.paginate-and-page-quantity .pagination .pagination-input-wrap {
  float: left;
  margin-right: 20px;
}
.paginate-and-page-quantity .pagination .pagination-input-wrap .choose-page {
  width: 88px;
  height: 48px;
  border-radius: 60px;
  border: 1px solid #E4E4E7;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-right: 8px;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 400;
  -moz-appearance: textfield;
  float: left;
}
.paginate-and-page-quantity .pagination .pagination-input-wrap span {
  font-size: 0.875rem;
  line-height: 3rem;
  float: left;
}
.paginate-and-page-quantity .pagination .page-numbers {
  border: 1px solid #27272A;
  color: #27272A;
  padding: 13px 20px 13px 15px;
  border-radius: 60px;
  font-size: 0.75rem;
  line-height: 1.25rem;
  font-weight: 700;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  float: left;
  margin-right: 20px;
}
@media only screen and (min-width: 768px) {
  .paginate-and-page-quantity .pagination .page-numbers {
    font-size: 0.875rem;
    padding: 13px 30px 13px 20px;
  }
}
.paginate-and-page-quantity .pagination .page-numbers:hover {
  border: 1px solid #3B82F6;
}
.paginate-and-page-quantity .pagination .page-numbers.next {
  margin-right: 0;
  padding: 13px 15px 13px 20px;
}
@media only screen and (min-width: 768px) {
  .paginate-and-page-quantity .pagination .page-numbers.next {
    padding: 13px 20px 13px 30px;
  }
}
.paginate-and-page-quantity .pagination .page-numbers.next svg {
  margin-left: 10px;
  margin-right: 0;
}
.paginate-and-page-quantity .pagination .page-numbers span {
  vertical-align: top;
}
.paginate-and-page-quantity .pagination .page-numbers svg {
  margin-left: 0;
  margin-right: 10px;
  vertical-align: top;
  width: 20px;
  height: 20px;
}
.paginate-and-page-quantity .pagination .btn {
  float: left;
}

.categories-hidden {
  display: none;
}

.btn.gray.cat-button.active, .btn.gray.cat-button:hover, .btn:link.gray.cat-button.active, .btn:link.gray.cat-button:hover, .btn:focus.gray.cat-button.active, .btn:focus.gray.cat-button:hover, .btn:visited.gray.cat-button.active, .btn:visited.gray.cat-button:hover {
  background-color: #3B82F6;
  color: #fff;
  border: 1px solid #3B82F6;
}
.btn.gray.cat-button.active svg path, .btn.gray.cat-button:hover svg path, .btn:link.gray.cat-button.active svg path, .btn:link.gray.cat-button:hover svg path, .btn:focus.gray.cat-button.active svg path, .btn:focus.gray.cat-button:hover svg path, .btn:visited.gray.cat-button.active svg path, .btn:visited.gray.cat-button:hover svg path {
  stroke: #fff;
}
.btn.gray.cat-button svg path, .btn:link.gray.cat-button svg path, .btn:focus.gray.cat-button svg path, .btn:visited.gray.cat-button svg path {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.shop-products-row .col:nth-of-type(odd) {
  border-bottom: 1px solid #E4E4E7;
  border-right: 1px solid #E4E4E7;
  padding-top: 20px;
}
@media only screen and (min-width: 768px) {
  .shop-products-row .col:nth-of-type(odd) {
    padding-top: 0;
    border-bottom: none;
    border-right: none;
  }
}
.shop-products-row .col:nth-of-type(even) {
  border-bottom: 1px solid #E4E4E7;
  padding-top: 20px;
}
@media only screen and (min-width: 768px) {
  .shop-products-row .col:nth-of-type(even) {
    padding-top: 0;
    border-bottom: none;
  }
}
.shop-products-row .col .product {
  padding-bottom: 0;
}
@media only screen and (min-width: 768px) {
  .shop-products-row .col .product {
    padding-bottom: 30px;
  }
}

.short-cat-description {
  margin-bottom: 15px;
}
.short-cat-description p {
  margin-bottom: 10px;
}

.single-post-wrap {
  position: relative;
  /*.row{
      margin-right: 0;
      margin-left: 0;
      @include devices(medium){
          margin-right: -15px;
          margin-left: -15px;
      }
      .col{
          padding-right: 0;
          padding-left: 0;
          @include devices(medium){
              padding-right: 15px;
              padding-left: 15px;
          }
      }
  }*/
}
.single-post-wrap .post-title {
  font-size: 2.125rem;
  line-height: 2.75rem;
}
@media only screen and (min-width: 768px) {
  .single-post-wrap .post-title {
    font-size: 2.625rem;
    line-height: 3.125rem;
  }
}
.single-post-wrap .post-wrap {
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
  padding-bottom: 70px;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 70px;
}
.single-post-wrap .thumbnail-wrap {
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 20px;
  width: 100%;
  padding-top: 66.66%; /* 3:2 Aspect Ratio (divide 2 by 3 = 0.6666)  */
  position: relative; /* If you want text inside of it */
}
.single-post-wrap .thumbnail-wrap img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single-post-wrap .cat-date {
  font-size: 1rem;
  line-height: 1.375rem;
  margin-bottom: 10px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.single-post-wrap .cat-date .category {
  text-decoration: none;
  color: #27272A;
}
.single-post-wrap .cat-date .category:hover {
  text-decoration: underline;
}
.single-post-wrap .cat-date .date {
  font-weight: 600;
  margin-left: 20px;
}
.single-post-wrap .excerpt {
  font-weight: 700;
}

.wp-block-quote {
  padding: 35px 50px;
  background-color: #F4F4F5;
  font-weight: 700;
  margin-bottom: 45px;
  position: relative;
}
.wp-block-quote::before {
  content: "";
  position: absolute;
  left: 50px;
  top: -25px;
  display: block;
  width: 50px;
  height: 50px;
  background-image: url(../images/quote_black.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.wp-block-quote p {
  font-size: 1rem;
  line-height: 1.375rem;
  margin-bottom: 0;
}
.wp-block-quote cite {
  font-weight: 400;
  font-style: italic;
  line-height: 2rem;
}

.wp-block-gallery {
  margin-bottom: 40px;
}

.wp-block-table table {
  margin-bottom: 40px;
}
.wp-block-table table tr:nth-child(odd) td, .wp-block-table table tr:nth-child(odd) th {
  background-color: #F4F4F5;
}
.wp-block-table table tr td, .wp-block-table table tr th {
  font-size: 0.8125rem;
  line-height: 1.25rem;
  padding: 20px;
  border: none;
}

.text-box-with-icon {
  padding: 35px 50px;
  background-color: rgba(0, 186, 255, 0.05);
  font-weight: 700;
  margin-bottom: 45px;
  position: relative;
  font-size: 1rem;
  line-height: 1.375rem;
}
.text-box-with-icon::before {
  content: "";
  position: absolute;
  left: 50px;
  top: -25px;
  display: block;
  width: 50px;
  height: 50px;
  background-image: url(../images/quote_black.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.text-box-with-icon.info {
  background-color: rgba(0, 186, 255, 0.05);
}
.text-box-with-icon.info::before {
  background-image: url(../images/block-info.svg);
}
.text-box-with-icon.alert {
  background-color: rgba(238, 0, 48, 0.05);
}
.text-box-with-icon.alert::before {
  background-image: url(../images/block-alert.svg);
}
.text-box-with-icon.ok {
  background-color: rgba(81, 191, 26, 0.05);
}
.text-box-with-icon.ok::before {
  background-image: url(../images/block-ok.svg);
}

.download-links-wrap {
  padding: 35px 50px;
  background-color: #F4F4F5;
  margin-bottom: 40px;
  position: relative;
}
.download-links-wrap::before {
  content: "";
  position: absolute;
  left: 50px;
  top: -25px;
  display: block;
  width: 50px;
  height: 50px;
  background-image: url(../images/download.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.download-links-wrap.download::before {
  background-image: url(../images/download.svg);
}
.download-links-wrap.link::before {
  background-image: url(../images/links.svg);
}
.download-links-wrap .header {
  font-size: 1rem;
  line-height: 1.375rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.download-links-wrap .list-wrap {
  padding-left: 40px;
}
.download-links-wrap .list-wrap .single-link-wrap {
  margin-bottom: 10px;
}
.download-links-wrap .list-wrap .single-link {
  text-decoration: none;
  color: #27272A;
}
.download-links-wrap .list-wrap .single-link:hover {
  text-decoration: underline;
}
.download-links-wrap .list-wrap .single-link svg {
  color: #27272A;
  margin-right: 10px;
  vertical-align: middle;
}
.download-links-wrap .list-wrap .single-link span {
  font-size: 1rem;
  line-height: 1.375rem;
  color: #27272A;
  vertical-align: middle;
}

.prev-next-post-wrap {
  border-top: 1px solid #e0e0e0;
  padding-top: 20px;
}
.prev-next-post-wrap .btn.prev {
  float: left;
}
.prev-next-post-wrap .btn.next {
  float: right;
}
.prev-next-post-wrap .btn svg {
  width: 16px;
  height: 16px;
  vertical-align: middle;
  stroke: #27272A;
  margin: 0;
}
.prev-next-post-wrap .btn span {
  vertical-align: middle;
  display: none;
}
@media only screen and (min-width: 768px) {
  .prev-next-post-wrap .btn span {
    display: inline;
  }
}

.post-navigation-links-wrap {
  padding-bottom: 20px;
}
.post-navigation-links-wrap.fixed {
  position: fixed;
  top: 132px;
}
.post-navigation-links-wrap.fixed-end {
  position: absolute;
  bottom: 10px;
  top: auto;
}
.post-navigation-links-wrap .sidebar-title {
  color: #cccccc;
  font-size: 0.8125rem;
  line-height: 1.25rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.post-navigation-links-wrap ul {
  padding-left: 0;
}
.post-navigation-links-wrap ul li::before {
  display: none;
}
.post-navigation-links-wrap ul li.active a {
  color: #27272A;
}
.post-navigation-links-wrap ul li a {
  color: #cccccc;
  font-size: 0.8125rem;
  line-height: 1.25rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}
.post-navigation-links-wrap ul ul {
  padding-left: 40px;
}
.post-navigation-links-wrap ul ul li a {
  font-weight: 400;
}

table {
  margin-bottom: 40px;
}
table tr:nth-child(odd) td, table tr:nth-child(odd) th {
  background-color: #F4F4F5;
}
table tr td, table tr th {
  font-size: 0.8125rem;
  line-height: 1.25rem;
  padding: 20px;
}

.woocommerce .woocommerce-breadcrumb {
  margin-bottom: 70px;
  color: #cccccc;
  text-transform: uppercase;
  font-size: 0.6875rem;
  line-height: 1.375rem;
  overflow: visible;
}
.woocommerce .woocommerce-breadcrumb::after {
  content: "";
  clear: both;
  display: table;
}
.woocommerce .woocommerce-breadcrumb span, .woocommerce .woocommerce-breadcrumb a {
  color: #cccccc;
  text-transform: uppercase;
  font-size: 0.6875rem;
  line-height: 1.375rem;
}

.filters {
  margin-bottom: 20px;
  overflow-x: clip;
  position: relative;
  z-index: 99;
}
@media only screen and (min-width: 768px) {
  .filters {
    margin-bottom: 0;
  }
}
.filters .slick-list {
  overflow: visible;
  /*overflow-y: visible;
  overflow-x: hidden;*/
}
.filters .selectize-control {
  display: inline-block;
}
.filters .selectize-control.single .selectize-input {
  display: inline-block;
  width: auto;
  margin-right: 10px;
  padding: 13px 50px 13px 30px;
  color: #27272A;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
  background-color: #F4F4F5;
  border: 1px solid #F4F4F5;
  border-radius: 60px;
  -webkit-box-shadow: none;
  box-shadow: none;
}
@media only screen and (min-width: 992px) {
  .filters .selectize-control.single .selectize-input {
    margin-right: 20px;
    padding: 13px 40px 13px 30px;
    margin-right: 10px;
  }
}
@media only screen and (min-width: 1600px) {
  .filters .selectize-control.single .selectize-input {
    padding: 13px 50px 13px 30px;
    margin-right: 10px;
  }
}
.filters .selectize-control.single .selectize-input.input-active.dropdown-active {
  border-radius: 60px;
}
.filters .selectize-control.single .selectize-input.input-active.dropdown-active::after {
  width: 20px;
  height: 20px;
  top: 14px;
  border: none;
  right: 24px;
  margin-top: 0;
  background-image: url(../images/filter-full.svg);
  margin: 0;
  padding: 0;
}
.filters .selectize-control.single .selectize-input::after {
  background-image: url(../images/filter-empty.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  width: 20px;
  height: 20px;
  top: 14px;
  border: none;
  right: 24px;
  margin-top: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.filters .selectize-control.single .selectize-input:last-of-type {
  margin-right: 0;
}
.filters .selectize-control.single .selectize-input > input {
  font-weight: 700;
  text-transform: uppercase;
  color: #27272A;
}
.filters .selectize-dropdown {
  z-index: 9999;
  border-radius: 15px;
  overflow: hidden;
}
.filters .selectize-dropdown .selectize-dropdown-content .option {
  padding: 10px 13px;
}
.filters .selectize-dropdown .selectize-dropdown-content .optgroup {
  font-weight: 700;
}
.filters .selectize-dropdown .selectize-dropdown-content .optgroup .optgroup-header {
  font-weight: 700;
}
.filters .selectize-dropdown .selectize-dropdown-content .optgroup .option {
  font-weight: 300;
}

.woocommerce-notices-wrapper .woocommerce-error {
  border-top-color: #ee0030;
}
.woocommerce-notices-wrapper .woocommerce-error::before {
  color: #ee0030;
}
.woocommerce-notices-wrapper .woocommerce-error li {
  margin-bottom: 0;
  line-height: 1rem;
}
.woocommerce-notices-wrapper .woocommerce-error li::before {
  display: none;
}
.woocommerce-notices-wrapper .woocommerce-message {
  border-top-color: #51bf1a;
}
.woocommerce-notices-wrapper .woocommerce-message::before {
  color: #51bf1a;
}
.woocommerce-notices-wrapper .woocommerce-message li {
  margin-bottom: 0;
}
.woocommerce-notices-wrapper .woocommerce-message li::before {
  display: none;
}

.woocommerce-checkout {
  /*input[type="submit"]{
      padding: 9px 30px;
      border-radius: 5px;
      border: 1px solid $blue;
      background-color: $blue;
      color: $white;
      text-transform: uppercase;
      @include font-size(13);
      @include line-height(20);
      font-weight: 700;
      @include easy-transform-fast;
      cursor: pointer;
      &:hover{
          background-color: $red;
      }
      &[disabled=""]{
          cursor: not-allowed;
          color: $gray;
          background-color: $grayLight;
          border: 1px solid $grayLight;
          &:hover{
              background-color: $grayLight;
          }
      }
  }*/
}
.woocommerce-checkout label {
  font-size: 0.8125rem;
  line-height: 2.1875rem;
  width: 100%;
  display: block;
}
.woocommerce-checkout input[type=text], .woocommerce-checkout input[type=email], .woocommerce-checkout input[type=tel], .woocommerce-checkout textarea {
  width: 100%;
  display: block;
  border: 1px solid #E4E4E7;
  padding: 11px 14px;
  border-radius: 5px;
  margin-bottom: 15px;
}

.woocommerce-checkout-payment ul li::before {
  width: 0;
}

.woocommerce ul.order_details li::before {
  display: none;
}

.woocommerce-shipping-methods li::before {
  display: none;
}

.select2-container--default .select2-selection--single {
  border: 1px solid #e0e0e0;
  padding: 5px 10px;
  height: auto;
}

.select2-dropdown {
  border: 1px solid #e0e0e0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  right: 20px;
  top: 3px;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  margin-bottom: 0;
}

.select2-results ul li {
  margin-bottom: 0;
}

.select2-container .select2-dropdown {
  border: 1px solid #E4E4E7;
  border-radius: 20px;
}

.select2-container--default .select2-results__option[aria-selected=true], .select2-container--default .select2-results__option[data-selected=true] {
  background-color: #e0e0e0;
}

.woocommerce-cart ul#shipping_method li label {
  width: auto;
}

.woocommerce-cart ul#shipping_method li input {
  margin: 5px 0.4375em 0 0;
}

.woocommerce-checkout ul#shipping_method li input {
  margin: 11px 0.4375em 0 0;
}

.woocommerce-checkout-payment .payment_methods label {
  display: inline-block;
  width: auto;
}

.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 {
  border: 1px solid #3B82F6;
  background-color: #3B82F6;
  color: #fff;
  padding: 12px 30px;
  border-radius: 60px;
  margin: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt:hover {
  background-color: #E4E4E7;
  color: #27272A;
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:hover svg path, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:hover svg path, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:hover svg path, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:hover svg path, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt:hover svg path, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt:hover svg path, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt:hover svg path, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt:hover svg path {
  stroke: #27272A;
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt svg path, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt svg path, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt svg path, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt svg path, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt svg path, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt svg path, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt svg path, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt svg path {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.woocommerce form .form-row textarea {
  min-height: 295px;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt.disabled {
  background-color: #ff6388;
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt.disabled:hover {
  background-color: #ff2749;
  border: 1px solid #ff2749;
}

.woocommerce div.product form.cart .variations select {
  border: 1px solid #e0e0e0;
  background-color: #fff;
  padding: 10px 15px;
  border-radius: 5px;
}

.woocommerce div.product form.cart .variations th {
  vertical-align: middle;
}

.woocommerce div.product span.price del {
  display: block;
  font-size: 1rem;
  line-height: 1.5rem;
}

.price .woocommerce-Price-amount del bdi {
  display: block;
  font-size: 1rem;
  line-height: 1.5rem;
}

.price del .woocommerce-Price-amount bdi {
  display: block;
  font-size: 1rem;
  line-height: 1.5rem;
}

#p24-dynamic-whole-background div.content {
  width: 90%;
}
@media only screen and (min-width: 992px) {
  #p24-dynamic-whole-background div.content {
    max-width: 900px;
  }
}

.btn[name=update_cart] {
  cursor: pointer;
  margin-bottom: 0;
  margin-right: 0;
  margin-top: 14px;
}
@media only screen and (min-width: 768px) {
  .btn[name=update_cart] {
    margin-top: 0;
  }
}
.btn[name=update_cart]:disabled {
  cursor: not-allowed;
  opacity: 0.2;
}
.btn[name=update_cart]:disabled:hover {
  border: 1px solid #27272A;
}

.woocommerce form .form-row {
  margin-bottom: 20px;
}
@media only screen and (min-width: 768px) {
  .woocommerce form .form-row {
    margin-bottom: 6px;
  }
}
.woocommerce form .form-row .required, .woocommerce form .form-row .optional {
  font-weight: 400;
  color: #A1A1AA;
  padding-left: 8px;
}
.woocommerce form .form-row .required {
  font-size: 0;
}
.woocommerce form .form-row .required::before {
  content: "Wymagane";
  font-size: 0.875rem;
}
.woocommerce form .form-row .optional {
  font-size: 0;
}
.woocommerce form .form-row .optional::before {
  content: "Opcjonalne";
  font-size: 0.875rem;
}

.woocommerce .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals .cart_totals {
  width: 100%;
}

.woocommerce table.shop_table {
  border: none;
}

.woocommerce table.shop_table tbody th, .woocommerce table.shop_table tfoot td, .woocommerce table.shop_table tfoot th {
  border-top: none;
}

.woocommerce table.shop_table td {
  border-top: none;
}

.woocommerce table.shop_table th {
  padding: 14px 24px;
}

table tr td, table tr th {
  background-color: #F4F4F5;
  border-bottom: 4px solid #fff;
}

table tr:nth-child(2n+1) td, table tr:nth-child(2n+1) th {
  background-color: #F4F4F5;
}

#add_payment_method #payment, .woocommerce-cart #payment, .woocommerce-checkout #payment {
  border-radius: 0;
  background-color: #F4F4F5;
}

#add_payment_method #payment ul.payment_methods li input, .woocommerce-cart #payment ul.payment_methods li input, .woocommerce-checkout #payment ul.payment_methods li input {
  vertical-align: middle;
}

#add_payment_method #payment div.payment_box, .woocommerce-cart #payment div.payment_box, .woocommerce-checkout #payment div.payment_box {
  background-color: #E4E4E7;
}

#add_payment_method #payment div.payment_box::before, .woocommerce-cart #payment div.payment_box::before, .woocommerce-checkout #payment div.payment_box::before {
  border: 1em solid #E4E4E7;
  border-right-color: transparent;
  border-left-color: transparent;
  border-top-color: transparent;
}

.woocommerce-NoticeGroup.woocommerce-NoticeGroup-checkout {
  width: 100%;
}

.woocommerce-error li::before {
  display: none;
}
.woocommerce-error li > a, .woocommerce-error li a:link, .woocommerce-error li > a:focus, .woocommerce-error li > a:visited {
  color: #27272A;
  text-decoration: none;
}

.woocommerce-error::before, .woocommerce-info::before, .woocommerce-message::before {
  top: 0;
  bottom: 0;
  margin: auto;
  height: 20px;
}

#add_payment_method .checkout .checkout-inline-error-message, .woocommerce-cart .checkout .checkout-inline-error-message, .woocommerce-checkout .checkout .checkout-inline-error-message {
  margin-top: -12px;
}

.woocommerce-order-wrap-global .woocommerce-order-details table.shop_table thead {
  display: none;
}
@media only screen and (min-width: 768px) {
  .woocommerce-order-wrap-global .woocommerce-order-details table.shop_table thead {
    display: table-header-group;
  }
}
@media only screen and (min-width: 768px) {
  .woocommerce-order-wrap-global .woocommerce-order-details table.shop_table tbody tr th, .woocommerce-order-wrap-global .woocommerce-order-details table.shop_table tbody tr td, .woocommerce-order-wrap-global .woocommerce-order-details table.shop_table tfoot tr th, .woocommerce-order-wrap-global .woocommerce-order-details table.shop_table tfoot tr td {
    padding: 14px 24px !important;
  }
}
.woocommerce-order-wrap-global .woocommerce table.shop_table {
  display: block;
}
@media only screen and (min-width: 768px) {
  .woocommerce-order-wrap-global .woocommerce table.shop_table {
    display: table;
  }
}
.woocommerce-order-wrap-global .woocommerce table.shop_table tbody, .woocommerce-order-wrap-global .woocommerce table.shop_table tfoot {
  display: block;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .woocommerce-order-wrap-global .woocommerce table.shop_table tbody, .woocommerce-order-wrap-global .woocommerce table.shop_table tfoot {
    display: table-row-group;
    width: auto;
  }
}
.woocommerce-order-wrap-global .woocommerce table.shop_table tbody tr, .woocommerce-order-wrap-global .woocommerce table.shop_table tfoot tr {
  display: block;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .woocommerce-order-wrap-global .woocommerce table.shop_table tbody tr, .woocommerce-order-wrap-global .woocommerce table.shop_table tfoot tr {
    display: table-row;
    width: auto;
  }
}
.woocommerce-order-wrap-global .woocommerce table.shop_table tbody tr.cart-subtotal td:first-of-type, .woocommerce-order-wrap-global .woocommerce table.shop_table tfoot tr.cart-subtotal td:first-of-type {
  padding: 0;
}
@media only screen and (min-width: 768px) {
  .woocommerce-order-wrap-global .woocommerce table.shop_table tbody tr.cart-subtotal td:first-of-type, .woocommerce-order-wrap-global .woocommerce table.shop_table tfoot tr.cart-subtotal td:first-of-type {
    padding: 9px 12px;
  }
}
.woocommerce-order-wrap-global .woocommerce table.shop_table tbody tr th, .woocommerce-order-wrap-global .woocommerce table.shop_table tbody tr td, .woocommerce-order-wrap-global .woocommerce table.shop_table tfoot tr th, .woocommerce-order-wrap-global .woocommerce table.shop_table tfoot tr td {
  display: block;
  width: 100%;
  border-bottom: none;
  padding: 8px 16px;
}
@media only screen and (min-width: 768px) {
  .woocommerce-order-wrap-global .woocommerce table.shop_table tbody tr th, .woocommerce-order-wrap-global .woocommerce table.shop_table tbody tr td, .woocommerce-order-wrap-global .woocommerce table.shop_table tfoot tr th, .woocommerce-order-wrap-global .woocommerce table.shop_table tfoot tr td {
    padding: 9px 12px;
    display: table-cell;
    width: auto;
    border-bottom: 4px solid #fff;
  }
}
.woocommerce-order-wrap-global .woocommerce table.shop_table tbody tr td:last-of-type, .woocommerce-order-wrap-global .woocommerce table.shop_table tfoot tr td:last-of-type {
  border-bottom: 4px solid #fff;
}
@media only screen and (min-width: 768px) {
  .woocommerce-order-wrap-global .woocommerce table.shop_table tbody tr th, .woocommerce-order-wrap-global .woocommerce table.shop_table tfoot tr th {
    padding: 14px 24px;
  }
}

.woocommerce-order-wrap-global .woocommerce .woocommerce-customer-details address, .woocommerce .woocommerce-customer-details address {
  border: 1px solid #E4E4E7;
  padding: 11px 14px;
  border-radius: 5px;
  font-size: 1rem;
  line-height: 1.5rem;
  margin-bottom: 20px;
}
@media only screen and (min-width: 768px) {
  .woocommerce-order-wrap-global .woocommerce .woocommerce-customer-details address, .woocommerce .woocommerce-customer-details address {
    margin-bottom: 0;
  }
}

.woocommerce .woocommerce-customer-details {
  margin-bottom: 0;
}

.woocommerce form.login, .woocommerce form.register {
  border: 1px solid #E4E4E7;
  border-radius: 24px;
}

body.woocommerce-account .container > h1 {
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #E4E4E7;
}
@media only screen and (min-width: 768px) {
  body.woocommerce-account .container > h1 {
    padding-bottom: 80px;
    margin-bottom: 80px;
  }
}
body.woocommerce-account .container > .woocommerce {
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #E4E4E7;
}
@media only screen and (min-width: 768px) {
  body.woocommerce-account .container > .woocommerce {
    padding-bottom: 80px;
    margin-bottom: 80px;
  }
}
body.woocommerce-account .container > .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table tbody .woocommerce-orders-table__cell.woocommerce-orders-table__cell-order-actions .woocommerce-button {
  background-color: transparent;
  border: 1px solid #27272A;
  border-radius: 60px;
  padding: 10px 20px;
  color: #27272A;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
body.woocommerce-account .container > .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table tbody .woocommerce-orders-table__cell.woocommerce-orders-table__cell-order-actions .woocommerce-button:hover {
  border: 1px solid #3B82F6;
}
body.woocommerce-account .container > .woocommerce .woocommerce-MyAccount-content .woocommerce-info a.button {
  background-color: transparent;
  border: 1px solid #27272A;
  border-radius: 60px;
  padding: 10px 20px;
  color: #27272A;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-size: 0.875rem;
  line-height: 1.25rem;
  margin-top: 15px;
}
@media only screen and (min-width: 768px) {
  body.woocommerce-account .container > .woocommerce .woocommerce-MyAccount-content .woocommerce-info a.button {
    margin-top: 0;
  }
}
body.woocommerce-account .container > .woocommerce .woocommerce-MyAccount-content .woocommerce-info a.button:hover {
  border: 1px solid #3B82F6;
}
body.woocommerce-account .container > .woocommerce .woocommerce-MyAccount-content .woocommerce-Address-title.title {
  margin-bottom: 20px;
}
body.woocommerce-account .container > .woocommerce .woocommerce-MyAccount-content .woocommerce-Address-title.title .edit {
  float: none;
}
body.woocommerce-account .container > .woocommerce .woocommerce-MyAccount-content .woocommerce-address-fields .button[type=submit] {
  background-color: transparent;
  border: 1px solid #27272A;
  border-radius: 60px;
  padding: 10px 20px;
  color: #27272A;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
body.woocommerce-account .container > .woocommerce .woocommerce-MyAccount-content .woocommerce-address-fields .button[type=submit]:hover {
  border: 1px solid #3B82F6;
}
body.woocommerce-account .container > .woocommerce .woocommerce-MyAccount-content address {
  font-size: 1rem;
  line-height: 1.5rem;
}
body.woocommerce-account .container > .woocommerce .woocommerce-MyAccount-content .woocommerce-EditAccountForm.edit-account .woocommerce-Button.button[type=submit] {
  background-color: transparent;
  border: 1px solid #27272A;
  border-radius: 60px;
  padding: 10px 20px;
  color: #27272A;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
body.woocommerce-account .container > .woocommerce .woocommerce-MyAccount-content .woocommerce-EditAccountForm.edit-account .woocommerce-Button.button[type=submit]:hover {
  border: 1px solid #3B82F6;
}
body.woocommerce-account .container > .woocommerce .woocommerce-Button.button[type=submit] {
  background-color: transparent;
  border: 1px solid #27272A;
  border-radius: 60px;
  padding: 10px 20px;
  color: #27272A;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
body.woocommerce-account .container > .woocommerce .woocommerce-Button.button[type=submit]:hover {
  border: 1px solid #3B82F6;
}

.woocommerce-form-register.register .btn, .woocommerce-form-login.login .btn {
  cursor: pointer;
}

.woocommerce-form-register.register .btn {
  margin-top: 30px;
}
@media only screen and (min-width: 992px) {
  .woocommerce-form-register.register .btn {
    margin-top: 0;
  }
}

.woocommerce-form-login.login .btn {
  margin-top: 30px;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
  width: 100%;
}
@media only screen and (min-width: 992px) {
  .woocommerce-account .woocommerce-MyAccount-navigation {
    width: 20%;
  }
}
.woocommerce-account .woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding-left: 0;
  border-radius: 10px;
  overflow: hidden;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li {
  color: #27272A;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #F4F4F5;
  margin-bottom: 0;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li::before {
  display: none;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active, .woocommerce-account .woocommerce-MyAccount-navigation ul li:hover {
  background-color: #3B82F6;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active > a, .woocommerce-account .woocommerce-MyAccount-navigation ul li:hover > a {
  color: #fff;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li > a {
  display: block;
  text-decoration: none;
  padding: 10px 20px;
  color: #27272A;
  font-weight: 500;
}
.woocommerce-account .woocommerce-MyAccount-content {
  width: 100%;
  padding: 30px;
  border-radius: 24px;
  border: 1px solid #E4E4E7;
}
@media only screen and (min-width: 992px) {
  .woocommerce-account .woocommerce-MyAccount-content {
    width: 75%;
  }
}

.woocommerce .woocommerce-MyAccount-content table.shop_table td {
  padding: 14px 24px;
}

.woocommerce-message {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.woocommerce-message .btn.blue {
  float: right;
  margin-bottom: 0;
  margin-left: 10px;
  margin-right: 0;
  margin-bottom: 0;
  padding: 10px 18px;
  margin-top: 20px;
}
@media only screen and (min-width: 1600px) {
  .woocommerce-message .btn.blue {
    margin-top: 0;
  }
}
.woocommerce-message .btn.blue:hover {
  color: #fff;
  background-color: #cccccc;
}

.cart-header {
  font-size: 2rem;
  line-height: 2.25rem;
  font-weight: 500;
  letter-spacing: -2%;
  margin-bottom: 24px;
}
@media only screen and (min-width: 768px) {
  .cart-header {
    font-size: 2.5rem;
    line-height: 3rem;
  }
}

.table-header-mobile-only {
  padding: 8px 16px;
  font-size: 0.75rem;
  line-height: 1.25rem;
  font-weight: 700;
  letter-spacing: 0%;
  margin-bottom: 0;
}

.cart-row {
  margin-left: -20px;
  margin-right: -20px;
  margin-bottom: 20px;
}
@media only screen and (min-width: 768px) {
  .cart-row {
    margin-bottom: 80px;
  }
}
.cart-row .col {
  padding-left: 20px;
  padding-right: 20px;
}

.woocommerce .woocommerce-cart-form {
  padding-top: 40px;
  padding-bottom: 20px;
  border-top: 1px solid #E4E4E7;
}
@media only screen and (min-width: 768px) {
  .woocommerce .woocommerce-cart-form {
    padding-top: 80px;
  }
}
.woocommerce .woocommerce-cart-form .product-thumbnail {
  display: block !important;
}
.woocommerce .woocommerce-cart-form .product-thumbnail::before {
  display: none;
}
.woocommerce .woocommerce-cart-form th.product-thumbnail {
  display: none !important;
}
.woocommerce .woocommerce-cart-form .shop_table {
  background-color: transparent;
  border: none;
  margin-bottom: 40px;
  /*margin-left: -15px;
  margin-right: -15px;
  width: calc(100% + 30px);*/
  table-layout: auto;
  /*margin-bottom: 15px;
  @include devices(medium){
      margin-bottom: 45px;
  }*/
}
@media only screen and (min-width: 768px) {
  .woocommerce .woocommerce-cart-form .shop_table {
    margin-bottom: 80px;
  }
}
@media only screen and (min-width: 992px) {
  .woocommerce .woocommerce-cart-form .shop_table {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
}
.woocommerce .woocommerce-cart-form .shop_table img {
  width: 100px;
  display: block;
}
.woocommerce .woocommerce-cart-form .shop_table tr {
  margin-bottom: 2px;
}
.woocommerce .woocommerce-cart-form .shop_table th {
  font-size: 0.875rem;
  line-height: 1.25rem;
  padding: 14px 24px;
  background-color: transparent;
}
.woocommerce .woocommerce-cart-form .shop_table th.product-thumbnail {
  display: none;
}
.woocommerce .woocommerce-cart-form .shop_table td {
  padding: 8px 16px;
  border-top: none;
  background-color: #F4F4F5;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
@media only screen and (min-width: 768px) {
  .woocommerce .woocommerce-cart-form .shop_table td {
    padding: 14px 24px;
    border-bottom: 4px solid #fff;
  }
}
.woocommerce .woocommerce-cart-form .shop_table td.product-thumbnail {
  width: 130px;
  min-width: 130px;
  max-width: 130px;
  float: left;
  padding-right: 0;
  height: 116px;
}
@media only screen and (min-width: 768px) {
  .woocommerce .woocommerce-cart-form .shop_table td.product-thumbnail {
    display: table-cell !important;
    width: 148px;
    min-width: 148px;
    max-width: 148px;
    float: none;
    padding-right: 16px;
    height: auto;
  }
}
.woocommerce .woocommerce-cart-form .shop_table td.product-name {
  float: left;
  width: calc(100% - 130px);
  text-align: left !important;
  padding-left: 0;
  height: 116px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media only screen and (min-width: 768px) {
  .woocommerce .woocommerce-cart-form .shop_table td.product-name {
    width: 100%;
    float: none;
    height: auto;
    display: table-cell;
  }
}
@media only screen and (min-width: 769px) {
  .woocommerce .woocommerce-cart-form .shop_table td.product-name {
    width: auto;
    float: none;
    height: auto;
    display: table-cell;
  }
}
.woocommerce .woocommerce-cart-form .shop_table td.product-name::before {
  display: none;
}
.woocommerce .woocommerce-cart-form .shop_table td.product-price, .woocommerce .woocommerce-cart-form .shop_table td.product-quantity, .woocommerce .woocommerce-cart-form .shop_table td.product-subtotal {
  float: left;
  width: 33.33%;
  min-height: 64px;
  padding: 6px 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  text-align: center;
  justify-content: center;
}
@media only screen and (min-width: 769px) {
  .woocommerce .woocommerce-cart-form .shop_table td.product-price, .woocommerce .woocommerce-cart-form .shop_table td.product-quantity, .woocommerce .woocommerce-cart-form .shop_table td.product-subtotal {
    padding: 8px 16px;
    float: none;
    width: auto;
    min-height: 0;
    display: table-cell;
  }
}
.woocommerce .woocommerce-cart-form .shop_table td.product-quantity::before {
  display: none;
}
@media only screen and (min-width: 768px) {
  .woocommerce .woocommerce-cart-form .shop_table td.product-quantity::before {
    display: block;
  }
}
.woocommerce .woocommerce-cart-form .shop_table td.product-remove {
  float: left;
  width: 100%;
  border-bottom: 4px solid #fff;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .woocommerce .woocommerce-cart-form .shop_table td.product-remove {
    float: none;
    width: auto;
  }
}
.woocommerce .woocommerce-cart-form .shop_table td.product-price, .woocommerce .woocommerce-cart-form .shop_table td.product-subtotal {
  white-space: nowrap;
}
.woocommerce .woocommerce-cart-form .shop_table td a {
  text-decoration: none;
  color: #27272A;
}
.woocommerce .woocommerce-cart-form .shop_table td a:hover {
  text-decoration: underline;
}
.woocommerce .woocommerce-cart-form .shop_table .actions {
  padding: 14px 24px;
}
.woocommerce .woocommerce-cart-form .shop_table .quantity-wrap {
  margin-right: 0;
  position: relative;
}
.woocommerce .woocommerce-cart-form .shop_table .quantity-wrap .plus, .woocommerce .woocommerce-cart-form .shop_table .quantity-wrap .minus {
  position: absolute;
  width: 20px;
  height: 20px;
  right: 5px;
}
@media only screen and (min-width: 768px) {
  .woocommerce .woocommerce-cart-form .shop_table .quantity-wrap .plus, .woocommerce .woocommerce-cart-form .shop_table .quantity-wrap .minus {
    right: 12px;
  }
}
.woocommerce .woocommerce-cart-form .shop_table .quantity-wrap .plus svg, .woocommerce .woocommerce-cart-form .shop_table .quantity-wrap .minus svg {
  width: 100%;
  height: 100%;
}
.woocommerce .woocommerce-cart-form .shop_table .quantity-wrap .plus {
  top: 4px;
}
.woocommerce .woocommerce-cart-form .shop_table .quantity-wrap .minus {
  top: 24px;
}
.woocommerce .woocommerce-cart-form .shop_table .quantity {
  float: none;
  margin: 0;
}
.woocommerce .woocommerce-cart-form .shop_table .quantity .qty {
  height: 48px;
  padding: 0 !important;
  width: 87px !important;
  margin-right: 0;
  border-radius: 60px !important;
  padding-right: 60px;
  border: 1px solid #fff !important;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-family: "Inter", sans-serif;
  -webkit-appearance: none;
  -moz-appearance: textfield;
}
.woocommerce .woocommerce-cart-form .shop_table .product-remove {
  text-align: right;
}
.woocommerce .woocommerce-cart-form .shop_table .product-remove .remove {
  display: inline;
  font-size: 0.8125rem;
  line-height: 1.5rem;
  font-weight: 400;
  height: auto;
  width: auto;
  text-align: right;
  text-decoration: underline;
  color: #27272A !important;
}
.woocommerce .woocommerce-cart-form .shop_table .product-remove .remove:hover {
  background-color: transparent;
  text-decoration: none;
}
.woocommerce .woocommerce-cart-form .shop_table .product-quantity .quantity .qty {
  border-radius: 5px;
  border: 1px solid #27272A;
  padding: 2px;
  width: 51px;
  -webkit-appearance: none;
  -moz-appearance: textfield;
}
.woocommerce .woocommerce-cart-form .shop_table .button.wp-element-button {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.woocommerce .woocommerce-cart-form .shop_table .button.wp-element-button[aria-disabled=false] {
  border: 1px solid #3B82F6;
  color: #fff;
  background-color: #3B82F6;
}
.woocommerce .woocommerce-cart-form .shop_table .cart-subtotal {
  display: none;
}
.woocommerce .woocommerce-cart-form .shop_table .order-total {
  display: none;
}

.coupon {
  border-radius: 24px;
  padding: 16px;
  border: 1px solid #E4E4E7;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .coupon {
    padding: 60px;
  }
}
.coupon .coupon-header {
  font-size: 0.875rem;
  line-height: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}
@media only screen and (min-width: 768px) {
  .coupon .coupon-header {
    font-size: 1rem;
    line-height: 1.5rem;
    margin-bottom: 24px;
  }
}
@media only screen and (min-width: 992px) {
  .coupon .coupon-header {
    padding-top: 24px;
  }
}
.coupon .input-button-wrap {
  position: relative;
  margin-bottom: 20px;
}
.coupon .input-button-wrap label {
  display: none;
}
.coupon .input-button-wrap .input-text {
  width: 100%;
  height: 48px;
  padding: 11px 180px 11px 24px;
  border: 1px solid #E4E4E7;
  border-radius: 60px;
  margin-bottom: 0;
}
@media only screen and (min-width: 992px) {
  .coupon .input-button-wrap .input-text {
    padding: 11px 15px 11px 24px;
  }
}
@media only screen and (min-width: 1600px) {
  .coupon .input-button-wrap .input-text {
    padding: 11px 180px 11px 24px;
  }
}
.coupon .input-button-wrap .button {
  border: 1px solid #F4F4F5;
  background-color: #F4F4F5;
  color: #27272A;
  padding: 14px 24px;
  border-radius: 60px;
  position: absolute;
  right: 0;
  top: 0;
  margin: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-size: 0.8125rem;
  line-height: 1.125rem;
}
@media only screen and (min-width: 992px) {
  .coupon .input-button-wrap .button {
    position: static;
    margin-top: 20px;
  }
}
@media only screen and (min-width: 1600px) {
  .coupon .input-button-wrap .button {
    position: absolute;
    margin-top: 0;
  }
}
.coupon .input-button-wrap .button:hover {
  background-color: #3B82F6;
  color: #fff;
}

.woocommerce .cart-row .cart-collaterals .cart_totals {
  float: none;
  /*.wc-proceed-to-checkout{
      text-align: right;
      .checkout-button{
          border: 1px solid $blue;
          background-color: $blue;
          color: $white;
          padding: 10px 30px;
          border-radius: 5px;
          display: inline-block;
          @include easy-transform-fast;
          text-transform: uppercase;
          @include font-size(13);
          @include line-height(18);
          margin-right: 15px;
          @include devices(large){
              margin-right: 0;
          }
          &:hover{
              background-color: $red;
          }
      }
  }*/
}
.woocommerce .cart-row .cart-collaterals .cart_totals .shipping-header {
  font-size: 1.625rem;
  line-height: 1.875rem;
  font-weight: 500;
  letter-spacing: -2%;
  margin-bottom: 16px;
}
@media only screen and (min-width: 768px) {
  .woocommerce .cart-row .cart-collaterals .cart_totals .shipping-header {
    font-size: 2rem;
    line-height: 2.5rem;
    margin-bottom: 24px;
  }
}
.woocommerce .cart-row .cart-collaterals .cart_totals .delivery-types {
  margin-bottom: 40px;
}
@media only screen and (min-width: 768px) {
  .woocommerce .cart-row .cart-collaterals .cart_totals .delivery-types {
    margin-bottom: 0;
  }
}
.woocommerce .cart-row .cart-collaterals .cart_totals .delivery-types .woocommerce-shipping-methods#shipping_method {
  margin-bottom: 20px;
}
.woocommerce .cart-row .cart-collaterals .cart_totals .delivery-types .woocommerce-shipping-methods#shipping_method li {
  background-color: #F4F4F5;
  margin-bottom: 4px;
  padding: 18px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.woocommerce .cart-row .cart-collaterals .cart_totals .delivery-types .woocommerce-shipping-methods#shipping_method li input[type=radio] {
  margin: 0;
  margin-right: 50px;
}
.woocommerce .cart-row .cart-collaterals .cart_totals .delivery-types .woocommerce-shipping-destination {
  margin-bottom: 10px;
}
.woocommerce .cart-row .cart-collaterals .cart_totals .delivery-types .shipping-calculator-button {
  position: relative;
  display: inline-block;
  background-color: transparent;
  border: 1px solid #27272A;
  color: #27272A;
  padding: 13px 24px;
  font-size: 0.875rem;
  line-height: 1.25rem;
  border-radius: 60px;
  font-weight: 700;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  text-decoration: none;
  margin-bottom: 10px;
  margin-right: 10px;
}
.woocommerce .cart-row .cart-collaterals .cart_totals .delivery-types .shipping-calculator-button:hover {
  border: 1px solid #3B82F6;
}
.woocommerce .cart-row .cart-collaterals .cart_totals .delivery-types .button[name=calc_shipping] {
  padding: 13px 25px 13px 25px;
  border-radius: 60px;
  border: 1px solid #3B82F6;
  background-color: #3B82F6;
  color: #fff;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  background-image: none;
}
.woocommerce .cart-row .cart-collaterals .cart_totals .delivery-types .button[name=calc_shipping]:hover {
  background-color: #fff;
  color: #3B82F6;
}
.woocommerce .cart-row .cart-collaterals .cart_totals .delivery-types .button[name=calc_shipping][disabled=""] {
  cursor: not-allowed;
  color: #E4E4E7;
  background-color: #F4F4F5;
  border: 1px solid #F4F4F5;
}
.woocommerce .cart-row .cart-collaterals .cart_totals .delivery-types .button[name=calc_shipping][disabled=""]:hover {
  background-color: #F4F4F5;
}
.woocommerce .cart-row .cart-collaterals .cart_totals h2 {
  display: none;
}
.woocommerce .cart-row .cart-collaterals .cart_totals .shop_table {
  border: none;
}
.woocommerce .cart-row .cart-collaterals .cart_totals .shop_table td, .woocommerce .cart-row .cart-collaterals .cart_totals .shop_table th {
  padding: 20px;
  border-top: none;
}
.woocommerce .cart-row .cart-collaterals .cart_totals .shop_table td strong, .woocommerce .cart-row .cart-collaterals .cart_totals .shop_table th strong {
  font-weight: 700;
}
.woocommerce .cart-row .cart-collaterals .cart_totals .shop_table tr:nth-of-type(odd) td, .woocommerce .cart-row .cart-collaterals .cart_totals .shop_table tr:nth-of-type(odd) th {
  background-color: transparent;
}
.woocommerce .cart-row .cart-collaterals .cart_totals .shop_table tr:nth-of-type(even) td, .woocommerce .cart-row .cart-collaterals .cart_totals .shop_table tr:nth-of-type(even) th {
  background-color: #F4F4F5;
}
.woocommerce .cart-row .cart-collaterals .cart_totals .shop_table tr td:last-of-type {
  text-align: right;
}
.woocommerce .cart-row .cart-collaterals .wc-proceed-to-checkout {
  display: none;
}
.woocommerce .cart-totals-prices-box {
  background-color: #F4F4F5;
  border-radius: 24px;
  padding: 16px;
  background-image: url(../images/logo-watermark.svg);
  background-position: right bottom;
  background-size: contain;
  background-repeat: no-repeat;
  text-align: center;
  margin-bottom: 40px;
}
@media only screen and (min-width: 768px) {
  .woocommerce .cart-totals-prices-box {
    padding: 60px;
  }
}
.woocommerce .cart-totals-prices-box p {
  margin-bottom: 16px;
  font-size: 0.875rem;
  line-height: 1.5rem;
  font-weight: 700;
  letter-spacing: 0%;
}
@media only screen and (min-width: 768px) {
  .woocommerce .cart-totals-prices-box p {
    margin-bottom: 24px;
    font-size: 1rem;
    line-height: 1.375rem;
  }
}
.woocommerce .cart-totals-prices-box > strong {
  margin-bottom: 16px;
  display: block;
  font-size: 1.625rem;
  line-height: 1.875rem;
  font-weight: 500;
  letter-spacing: -2%;
}
@media only screen and (min-width: 768px) {
  .woocommerce .cart-totals-prices-box > strong {
    margin-bottom: 24px;
    font-size: 2rem;
    line-height: 2.5rem;
  }
}

.woocommerce table.shop_table_responsive tr:nth-child(2n) td, .woocommerce-page table.shop_table_responsive tr:nth-child(2n) td {
  background-color: #F4F4F5;
}

.woocommerce-order-wrap-global {
  padding-top: 40px;
  border-top: 1px solid #E4E4E7;
}
@media only screen and (min-width: 768px) {
  .woocommerce-order-wrap-global {
    padding-top: 80px;
  }
}
.woocommerce-order-wrap-global > .woocommerce {
  padding-bottom: 40px;
  border-bottom: 1px solid #E4E4E7;
  margin-bottom: 40px;
}
@media only screen and (min-width: 768px) {
  .woocommerce-order-wrap-global > .woocommerce {
    padding-bottom: 80px;
    border-bottom: 1px solid #E4E4E7;
    margin-bottom: 80px;
  }
}
.woocommerce-order-wrap-global .order-header {
  font-size: 2rem;
  line-height: 2.25rem;
  font-weight: 500;
  letter-spacing: -2%;
  margin-bottom: 40px;
}
@media only screen and (min-width: 768px) {
  .woocommerce-order-wrap-global .order-header {
    font-size: 2.5rem;
    line-height: 3rem;
    margin-bottom: 40px;
  }
}
.woocommerce-order-wrap-global .col2-set {
  margin-bottom: 30px;
}

.row-checkout {
  margin-left: -20px;
  margin-right: -20px;
}
.row-checkout .col {
  padding-left: 20px;
  padding-right: 20px;
}

.billing-header {
  font-size: 1.4375rem;
  line-height: 1.6875rem;
  font-weight: 500;
  letter-spacing: -2%;
  margin-bottom: 20px;
}
@media only screen and (min-width: 768px) {
  .billing-header {
    margin-bottom: 24px;
    font-size: 1.75rem;
    line-height: 2.25rem;
  }
}

label {
  font-size: 0.875rem;
  line-height: 2.1875rem;
  width: 100%;
  display: block;
}

input[type=text], input[type=email], input[type=tel], input[type=password], textarea {
  font-family: "Inter", sans-serif;
  width: 100%;
  display: block;
  border: 1px solid #E4E4E7;
  padding: 13px 24px;
  border-radius: 60px;
  margin-bottom: 15px;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
input[type=text].wpcf7-not-valid, input[type=email].wpcf7-not-valid, input[type=tel].wpcf7-not-valid, input[type=password].wpcf7-not-valid, textarea.wpcf7-not-valid {
  border: 1px solid #ee0030;
}

textarea, .woocommerce form .form-row textarea.input-text {
  border-radius: 24px;
  min-height: 110px;
  height: 110px;
  padding: 14px 24px;
  border: 1px solid #E4E4E7;
}
textarea.wpcf7-not-valid, .woocommerce form .form-row textarea.input-text.wpcf7-not-valid {
  border: 1px solid #ee0030;
}

.wpcf7 input[type=submit] {
  padding: 13px 40px 13px 25px;
  border-radius: 60px;
  border: 1px solid #3B82F6;
  background-color: #3B82F6;
  color: #fff;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  background-image: url(../images/send.svg);
  background-position: 75px;
  background-size: 16px;
  background-repeat: no-repeat;
}
.wpcf7 input[type=submit]:hover {
  background-color: #fff;
  color: #3B82F6;
  background-image: url(../images/send-blue.svg);
}
.wpcf7 input[type=submit][disabled=""] {
  cursor: not-allowed;
  color: #E4E4E7;
  background-color: #F4F4F5;
  border: 1px solid #F4F4F5;
  background-image: url(../images/send-gray.svg);
}
.wpcf7 input[type=submit][disabled=""]:hover {
  background-color: #F4F4F5;
}

.select2-container--default .select2-selection--single {
  border-radius: 60px;
  padding: 5px 15px;
}
.select2-container--default .select2-selection--single[aria-expanded=true] {
  border-radius: 20px;
}

.woocommerce .woocommerce-form-register.register .form-row, .woocommerce .woocommerce-form-login.login .form-row {
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
  .woocommerce .woocommerce-form-register.register .form-row, .woocommerce .woocommerce-form-login.login .form-row {
    margin-bottom: 6px;
  }
}
.woocommerce .woocommerce-form-register.register .form-row label, .woocommerce .woocommerce-form-login.login .form-row label {
  font-size: 0.75rem;
}
@media only screen and (min-width: 992px) {
  .woocommerce .woocommerce-form-register.register .form-row label, .woocommerce .woocommerce-form-login.login .form-row label {
    font-size: 0.875rem;
  }
}
.woocommerce .woocommerce-form-register.register .form-row label .required, .woocommerce .woocommerce-form-login.login .form-row label .required {
  font-size: 0;
}
.woocommerce .woocommerce-form-register.register .form-row label .required::before, .woocommerce .woocommerce-form-login.login .form-row label .required::before {
  content: "Wymagane";
  font-size: 0.75rem;
}
@media only screen and (min-width: 992px) {
  .woocommerce .woocommerce-form-register.register .form-row label .required::before, .woocommerce .woocommerce-form-login.login .form-row label .required::before {
    font-size: 0.875rem;
  }
}

.woocommerce form .form-row label {
  font-size: 0.875rem;
  line-height: 2.1875rem;
  width: 100%;
  display: block;
}
.woocommerce form .form-row input[type=text], .woocommerce form .form-row input[type=email], .woocommerce form .form-row input[type=tel], .woocommerce form .form-row textarea {
  font-family: "Inter", sans-serif;
  width: 100%;
  display: block;
  border: 1px solid #E4E4E7;
  padding: 13px 24px;
  border-radius: 60px;
  margin-bottom: 15px;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.woocommerce form .form-row input[type=text].wpcf7-not-valid, .woocommerce form .form-row input[type=email].wpcf7-not-valid, .woocommerce form .form-row input[type=tel].wpcf7-not-valid, .woocommerce form .form-row textarea.wpcf7-not-valid {
  border: 1px solid #ee0030;
}
.woocommerce form .form-row textarea {
  border-radius: 24px;
  min-height: 110px;
  height: 110px;
}
.woocommerce form .form-row input[type=submit] {
  padding: 13px 40px 13px 25px;
  border-radius: 60px;
  border: 1px solid #3B82F6;
  background-color: #3B82F6;
  color: #fff;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  background-image: url(../images/send.svg);
  background-position: 75px;
  background-size: 16px;
  background-repeat: no-repeat;
}
.woocommerce form .form-row input[type=submit]:hover {
  background-color: #fff;
  color: #3B82F6;
  background-image: url(../images/send-blue.svg);
}
.woocommerce form .form-row input[type=submit][disabled=""] {
  cursor: not-allowed;
  color: #E4E4E7;
  background-color: #F4F4F5;
  border: 1px solid #F4F4F5;
  background-image: url(../images/send-gray.svg);
}
.woocommerce form .form-row input[type=submit][disabled=""]:hover {
  background-color: #F4F4F5;
}

.woocommerce form .form-row .input-text, .woocommerce form .form-row select {
  font-family: "Inter", sans-serif;
  width: 100%;
  display: block;
  border: 1px solid #E4E4E7;
  padding: 13px 24px;
  border-radius: 60px;
  margin-bottom: 15px;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.woocommerce form .show-password-input, .woocommerce-page form .show-password-input {
  top: 38%;
  right: 1em;
}

.wpcf7, .custom-form {
  /*.submit-button-wrap{

  }*/
}
@media only screen and (min-width: 768px) {
  .wpcf7, .custom-form {
    margin-bottom: 10px;
  }
}
.wpcf7 .checkbox, .custom-form .checkbox {
  margin-bottom: 20px;
}
.wpcf7 .checkbox .checkbox-wrap, .custom-form .checkbox .checkbox-wrap {
  width: 22px;
  float: left;
}
.wpcf7 .checkbox .checkbox-wrap .wpcf7-list-item, .custom-form .checkbox .checkbox-wrap .wpcf7-list-item {
  margin: 0;
}
.wpcf7 .checkbox .checkbox-wrap .wpcf7-list-item input, .custom-form .checkbox .checkbox-wrap .wpcf7-list-item input {
  width: 12px;
  height: 12px;
  border: 1px solid #27272A;
  border-radius: 2px;
  margin: 0;
  cursor: pointer;
}
.wpcf7 .checkbox .text-wrap, .custom-form .checkbox .text-wrap {
  width: calc(100% - 22px);
  float: left;
}
.wpcf7 .checkbox .text-wrap label, .custom-form .checkbox .text-wrap label {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.wpcf7 .checkbox .text-wrap p, .custom-form .checkbox .text-wrap p {
  margin-bottom: 0;
}

.wpcf7-not-valid-tip {
  margin-top: -20px;
}

.cf__send {
  margin-bottom: 30px;
}
.cf__send p {
  font-size: 0.8125rem;
  line-height: 2.1875rem;
  width: 100%;
  margin-bottom: 0;
}

.wpcf7 form .wpcf7-response-output {
  padding: 10px 20px;
}

.text-thin-offer-block {
  margin-bottom: 40px;
}
@media only screen and (min-width: 768px) {
  .text-thin-offer-block {
    padding: 0 60px;
    margin-bottom: 80px;
  }
}

.category-two-columns {
  margin-bottom: 40px;
}
@media only screen and (min-width: 768px) {
  .category-two-columns {
    margin-bottom: 80px;
  }
}
@media only screen and (min-width: 768px) {
  .category-two-columns .category-two-columns-wrap {
    padding: 0 60px;
  }
}
.category-two-columns .row {
  margin-left: -20px;
  margin-right: -20px;
}
@media only screen and (min-width: 768px) {
  .category-two-columns .row.row-img-right-col {
    flex-direction: row-reverse;
  }
}
.category-two-columns .row .col {
  padding-left: 20px;
  padding-right: 20px;
}
.category-two-columns .row .col:first-of-type {
  margin-bottom: 16px;
}
@media only screen and (min-width: 768px) {
  .category-two-columns .row .col:first-of-type {
    margin-bottom: 0;
  }
}
.category-two-columns .img-wrap {
  display: block;
  height: 100%;
  width: 100%;
  padding-top: 100%; /* Aspect Ratio*/
  position: relative; /* If you want text inside of it */
}
@media only screen and (min-width: 768px) {
  .category-two-columns .img-wrap {
    padding-top: 56.25%; /* Aspect Ratio */
  }
}
.category-two-columns .img-wrap img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}
.category-two-columns .text-wrap {
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.category-gray-columns {
  margin-bottom: 40px;
}
@media only screen and (min-width: 768px) {
  .category-gray-columns {
    margin-bottom: 80px;
  }
}
.category-gray-columns.arrows-version .row-columns {
  margin-left: -60px;
  margin-right: -60px;
}
@media only screen and (min-width: 992px) {
  .category-gray-columns.arrows-version .row-columns {
    margin-left: -35px;
    margin-right: -35px;
  }
}
@media only screen and (min-width: 1200px) {
  .category-gray-columns.arrows-version .row-columns {
    margin-left: -60px;
    margin-right: -60px;
  }
}
.category-gray-columns.arrows-version .row-columns .col {
  padding-left: 60px;
  padding-right: 60px;
  position: relative;
  padding-bottom: 72px;
}
@media only screen and (min-width: 768px) {
  .category-gray-columns.arrows-version .row-columns .col {
    padding-bottom: 30px;
  }
}
@media only screen and (min-width: 992px) {
  .category-gray-columns.arrows-version .row-columns .col {
    padding-left: 35px;
    padding-right: 35px;
    padding-bottom: 0;
  }
}
@media only screen and (min-width: 1200px) {
  .category-gray-columns.arrows-version .row-columns .col {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.category-gray-columns.arrows-version .row-columns .col:last-of-type {
  padding-bottom: 0;
}
.category-gray-columns.arrows-version .row-columns .col:last-of-type::after {
  display: none;
}
.category-gray-columns.arrows-version .row-columns .col::after {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background-image: url(../images/arrow-gray.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  margin: auto;
  right: 0;
  left: 0;
  top: auto;
  bottom: 15px;
  transform: rotate(90deg);
}
@media only screen and (min-width: 768px) {
  .category-gray-columns.arrows-version .row-columns .col::after {
    left: auto;
    right: -20px;
    top: 0;
    bottom: 0;
    transform: none;
  }
}
.category-gray-columns .category-gray-columns-wrap {
  background-color: #F4F4F5;
  padding: 40px;
  border-radius: 40px;
}
@media only screen and (min-width: 992px) {
  .category-gray-columns .category-gray-columns-wrap {
    padding: 60px;
    border-radius: 60px;
  }
}
.category-gray-columns .category-gray-columns-wrap .header {
  text-align: center;
  margin-bottom: 16px;
  font-size: 1.8125rem;
  line-height: 2.0625rem;
  font-weight: 500;
  letter-spacing: -2%;
}
@media only screen and (min-width: 992px) {
  .category-gray-columns .category-gray-columns-wrap .header {
    margin-bottom: 60px;
    font-size: 2.25rem;
    line-height: 2.75rem;
  }
}
.category-gray-columns .category-gray-columns-wrap .row-columns .img-wrap {
  text-align: center;
  margin-bottom: 8px;
}
@media only screen and (min-width: 992px) {
  .category-gray-columns .category-gray-columns-wrap .row-columns .img-wrap {
    margin-bottom: 20px;
  }
}
.category-gray-columns .category-gray-columns-wrap .row-columns .img-wrap img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}
.category-gray-columns .category-gray-columns-wrap .row-columns p {
  text-align: center;
  margin-bottom: 0;
  font-size: 0.875rem;
  line-height: 1.5rem;
  font-weight: 400;
}
@media only screen and (min-width: 768px) {
  .category-gray-columns .category-gray-columns-wrap .row-columns p {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
.category-gray-columns .category-gray-columns-wrap .row-columns p.column-header {
  margin-bottom: 8px;
  font-size: 1.0625rem;
  line-height: 1.3125rem;
  font-weight: 500;
  letter-spacing: -2%;
}
@media only screen and (min-width: 768px) {
  .category-gray-columns .category-gray-columns-wrap .row-columns p.column-header {
    margin-bottom: 20px;
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}

.child-category-wrap {
  border: 1px solid #E4E4E7;
  border-radius: 40px;
  margin-bottom: 40px;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .child-category-wrap {
    border-radius: 60px;
    margin-bottom: 80px;
  }
}
.child-category-wrap .row {
  margin-left: -30px;
  margin-right: -30px;
}
@media only screen and (min-width: 768px) {
  .child-category-wrap .row {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media only screen and (min-width: 992px) {
  .child-category-wrap .row {
    margin-left: -30px;
    margin-right: -30px;
  }
}
.child-category-wrap .row .col {
  padding-left: 30px;
  padding-right: 30px;
}
@media only screen and (min-width: 768px) {
  .child-category-wrap .row .col {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (min-width: 992px) {
  .child-category-wrap .row .col {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.child-category-wrap .img-wrap {
  height: 100%;
  width: 100%;
}
.child-category-wrap .img-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.child-category-wrap .text-wrap {
  padding: 20px 20px 15px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 100%;
}
@media only screen and (min-width: 1200px) {
  .child-category-wrap .text-wrap {
    padding: 0;
    padding-right: 40px;
  }
}
.child-category-wrap .text-wrap .header {
  margin-bottom: 16px;
}
@media only screen and (min-width: 992px) {
  .child-category-wrap .text-wrap .header {
    margin-bottom: 24px;
  }
}
.child-category-wrap .text-wrap .header > a {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 600;
  letter-spacing: -2%;
  text-decoration: none;
  color: #27272A;
}
@media only screen and (min-width: 992px) {
  .child-category-wrap .text-wrap .header > a {
    font-size: 2rem;
    line-height: 2.5rem;
  }
}
.child-category-wrap .text-wrap .description p {
  margin-bottom: 16px;
}
@media only screen and (min-width: 992px) {
  .child-category-wrap .text-wrap .description p {
    margin-bottom: 24px;
  }
}

.quote-columns {
  margin-bottom: 40px;
}
@media only screen and (min-width: 768px) {
  .quote-columns {
    margin-bottom: 80px;
  }
}
.quote-columns .quote-columns-wrap {
  background-color: #F4F4F5;
  padding: 40px;
  border-radius: 40px;
}
@media only screen and (min-width: 992px) {
  .quote-columns .quote-columns-wrap {
    padding: 60px;
    border-radius: 60px;
  }
}
.quote-columns .quote-columns-wrap .icon-wrap {
  margin-bottom: 16px;
}
@media only screen and (min-width: 768px) {
  .quote-columns .quote-columns-wrap .icon-wrap {
    margin-bottom: 24px;
  }
}
.quote-columns .quote-columns-wrap .header {
  text-align: center;
  margin-bottom: 16px;
  font-size: 1.625rem;
  line-height: 1.875rem;
  font-weight: 500;
  letter-spacing: -2%;
  color: #3B82F6;
}
@media only screen and (min-width: 768px) {
  .quote-columns .quote-columns-wrap .header {
    margin-bottom: 24px;
    font-size: 1.8125rem;
    line-height: 2.0625rem;
  }
}
@media only screen and (min-width: 992px) {
  .quote-columns .quote-columns-wrap .header {
    margin-bottom: 60px;
    font-size: 2rem;
    line-height: 2.5rem;
  }
}
.quote-columns .quote-columns-wrap .text-wrap {
  text-align: center;
}

.column-tiles .column-tiles-wrap .row {
  margin-left: -40px;
  margin-right: -40px;
}
@media only screen and (min-width: 768px) {
  .column-tiles .column-tiles-wrap .row {
    margin-left: -20px;
    margin-right: -20px;
  }
}
@media only screen and (min-width: 992px) {
  .column-tiles .column-tiles-wrap .row {
    margin-left: -40px;
    margin-right: -40px;
  }
}
.column-tiles .column-tiles-wrap .row .col {
  padding-left: 40px;
  padding-right: 40px;
  margin-bottom: 40px;
}
@media only screen and (min-width: 768px) {
  .column-tiles .column-tiles-wrap .row .col {
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 992px) {
  .column-tiles .column-tiles-wrap .row .col {
    padding-left: 40px;
    padding-right: 40px;
    margin-bottom: 80px;
  }
}
.column-tiles .column-tiles-wrap .col-wrap {
  border: 1px solid #E4E4E7;
  border-radius: 40px;
  padding: 40px;
  text-align: center;
  height: 100%;
}
@media only screen and (min-width: 768px) {
  .column-tiles .column-tiles-wrap .col-wrap {
    border-radius: 60px;
  }
}
.column-tiles .column-tiles-wrap .col-wrap .icon-wrap {
  margin-bottom: 16px;
}
@media only screen and (min-width: 768px) {
  .column-tiles .column-tiles-wrap .col-wrap .icon-wrap {
    margin-bottom: 20px;
  }
}
.column-tiles .column-tiles-wrap .col-wrap .icon-wrap img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}
.column-tiles .column-tiles-wrap .col-wrap .header {
  font-size: 1.0625rem;
  line-height: 1.3125rem;
  font-weight: 500;
  letter-spacing: -2%;
  margin-bottom: 16px;
}
@media only screen and (min-width: 768px) {
  .column-tiles .column-tiles-wrap .col-wrap .header {
    font-size: 1.25rem;
    line-height: 1.75rem;
    margin-bottom: 20px;
  }
}
.column-tiles .column-tiles-wrap .col-wrap .text-wrap p {
  margin-bottom: 16px;
}
@media only screen and (min-width: 768px) {
  .column-tiles .column-tiles-wrap .col-wrap .text-wrap p {
    margin-bottom: 20px;
  }
}/*# sourceMappingURL=main.min.css.map */