/*
Theme name: NCRP
Description: Custom Theme
Version: 1.0.0
*/

/* 
naming convention:
BEM - BLOCK__ELEMENT--MODIFIER
name spacing:
u = utilities
l = layout
c = component 
js = javascript hook
breakpoints:
mobile - 600px
*/

/* CSS vars */

:root {
  /* colors */
  --clr-accent: 228,30,35;
  --clr-primary: 23,163,222;
  --clr-text: #323232;
  --clr-text-reverse: white;

  /* heights */
  --height-header: 124px;
  /* spacing */
  --b-space-lg: 150px;
  --b-space: 136px;
  --b-space-sm: 65px;
  --b-space-xsm: 40px;
  /* font family */
  --ff-body: 'Montserrat', sans-serif;
  --ff-heading: 'Montserrat', sans-serif;
  /* font sizes */
  --fs-hero: 119px;
  --fs-h1: 62px;
  --fs-h2: var(--fs-h1);
  --fs-h3: 48px;
  --fs-h4: 22px;
  --fs-h5: 16px;
  --fs-p: 16px;
  --fs-p-lg: 19px;
  --fs-p-sm: 15.5px;
  --fs-p-legal: 13px;
}

@media screen and (max-width:1400px) {
  :root {
    --b-space: 100px;
  }
}

@media screen and (max-width:980px) {
  :root {
    --height-header: 90px;
    --fs-h1: 50px;
    --fs-h3: 42px;
  }
}


@media screen and (max-width:600px) {
  :root {
    --height-header: 60px;
    /* font sizes */
    --fs-hero: 80px;
    --fs-h1: 32px;
    --fs-h3: 24px;
    --fs-h4: 18px;
    --fs-h5: 15px;
    --fs-p: 15px;
    --fs-p-lg: 18px;
    --fs-p-sm: 14.5px;
    /* spacing */
    --b-space-lg: 80px;
    --b-space: 60px;
    --b-space-xsm: 20px;
  }
} 

@media screen and (max-width:480px) {

  :root {
    --fs-hero: 60px;
  }

}

/* utilities */

.u-wc {
	width:100%;
	max-width: 1254px;
  padding: 0 60px;
	margin:0 auto;
	box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
}

@media screen and (max-width: 980px) {

  .u-wc { 
    padding: 0 40px;
  }

}


@media screen and (max-width: 600px) {

  .u-wc { 
    padding: 0 30px;
  }

}

.u-wc--full {
  max-width: 100%;
  padding: 0;
}

.u-wc--narrow {
  max-width: 980px;
}

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

/* base styles */

*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
	background: white;
	font-family: var(--ff-body);
  font-weight: 400;
	font-size: var(--fs-p);
	margin: 0;
	color: var(--clr-text);
  line-height: 1.5;
	-moz-osx-font-smoothing:grayscale;
	-webkit-font-smoothing:antialiased;
}

.page-wrapper {
  overflow-x: clip;
}

p, h1, h2, h3, h4, h5, h6, ul{
	margin:0;
}

h1, h2, h3, h4, h5 {
  font-family: var(--ff-heading);
}

h1 {
  font-size: var(--fs-h1);
  line-height: 1;
  margin: 0 0 30px;
  font-weight: 900;
  position: relative;
}

.h1--hero {
  font-size: var(--fs-hero);
  line-height: 1;
}

h2 {
  font-size: var(--fs-h2);
  line-height: 1.3;
  margin: 32px 0 24px;
  font-weight: 900;
  position: relative;
  letter-spacing: -.02em;
}

h2:first-child {
  margin-top: 0;
}

h3 {
  font-size: var(--fs-h3);
  line-height: 1.35;
  font-weight: 800;
  margin: 32px 0 28px;
  letter-spacing: -.02em;
}

h3:first-child {
  margin-top: 0;
}

h4 {
  font-size: var(--fs-h4);
  font-weight: 700;
  line-height: 1.3;
  margin: 28px 0 16px;
  text-transform: uppercase;
  letter-spacing: .1em;
}

h4:first-child {
  margin-top: 0;
}


h5 {
  font-size: var(--fs-h5);
  font-family: var(--ff-body);
  font-weight: 500;
  line-height: 1.6;
  margin: 16px 0 16px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

@media screen and (max-width: 600px) {

  h1 {
    line-height: 1.3;
    margin-bottom: 16px;
  }

  h2 {
    margin-bottom: 20px;
  }

  h3 {
    margin-bottom: 16px;
  }
  
}

h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child {
  margin-top: 0;
}

h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child,
p:last-child {
  margin-bottom: 0;
}

p {
  margin-bottom: 14px;
}

/* gutenberg layout styles */

.is-layout-flex {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  grid-gap: 24px;
}

.is-vertical {
  flex-direction: column;
  align-items: flex-start;
}

.is-nowrap {
  flex-wrap: nowrap;
}

.is-style-narrow {
  max-width: 830px;
  margin-left: auto;
  margin-right: auto;
}

.is-style-xs-narrow {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.is-style-medium {
  max-width: 1020px;
  margin-left: auto;
  margin-right: auto;
}

.has-lg-font-size {
  font-size: var(--fs-p-lg);
  line-height: 1.7;
}

.has-sm-font-size {
  font-size: var(--fs-p-sm);
  margin-bottom: 10px;
  line-height: 1.6;
}


@media screen and (max-width: 600px) {

  p {
    margin-bottom: 12px;
  }
}

li:last-child {
  margin-bottom: 0;
}

ul {
  padding-left: 24px;
  margin: 20px 0 14px;
}

ul.is-style-no-left-spacing {
  padding-left: 0;
}

ul:first-child {
  margin-top: 0;
}

ul:last-child {
  margin-bottom: 0;
}

ol {
  margin: 20px 0 14px;
}

ol:first-child {
  margin-top: 0;
}

ol:last-child {
  margin-bottom: 0;
}

li {
  padding-left: 4px;
  margin-bottom: 4px;
}

li:last-child {
  margin-bottom: 0;
}

.is-style-check-list {
  margin-left: 0;
  padding-left: 0;
}

.is-style-check-list li {
  list-style-type: none;
  display: flex;
  align-items: flex-start;
  margin-bottom: 6px;
}

.is-style-check-list li:before {
  content: '';
  flex-shrink: 0;
  background: url('imgs/check.svg') center center / 19px 19px;
  width: 19px;
  height: 19px;
  margin-right: 12px;
  margin-top: 3px;
}

blockquote {
  display: block;
  margin: 55px 0;
  border-left: 4px solid rgb(var(--clr-primary));
}

blockquote p {
  padding: 10px 32px 10px;
  margin: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: .1em;
}

blockquote:first-child {
  margin-top: 0;
}

blockquote:last-child {
  margin-bottom: 0;
}

blockquote cite {
  font-style: normal;
  display: block;
  border-top: 1px solid #DCDCDC;
  padding: 28px 45px;
  margin: 0;
}

@media screen and (max-width: 600px) {

  blockquote {
    display: block;
    margin: 30px 0;
  }  

  blockquote p {
    padding: 10px 20px 15px;
    font-size: 16px;
    line-height: 1.6;
  }

  blockquote cite {
    padding: 10px 20px;
    font-size: 12px;
  }

}

a, a:focus{
   outline: 0;
}

a {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: #2353c0;
  color: #2353c0;
	transition: .3s color, .3s background;
	-webkit-transition:.3s color, .3s background;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
  -webkit-tap-highlight-color: transparent; /* For some Androids */
}

a:hover {
  color: #1a44a4;
}


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

.wp-block-separator, hr {
  display: block;
  padding: 0;
  height: 3px;
  background: rgb(var(--clr-primary));
  margin: 40px auto;
  max-width: 100px;
  border: none !important;
}

.c-section {
  padding: var(--b-space) 0;
  position: relative;
  background-size: cover;
  background-position: center center;
}

.c-section--noBottomPadding {
  padding-bottom: 0;
}

.c-section--noTopPadding {
  padding-top: 0;
}

.c-section--lg {
  padding: var(--b-space-lg) 0;
}

.c-section--sm {
  padding: var(--b-space-xsm) 0;
}

.c-section__overlay {
  opacity: .8;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

.c-section__overlay + .u-wc h1, .c-section__overlay + .u-wc h2, .c-section__overlay + .u-wc p {
  text-shadow: 2px 2px 4px rgba(0,0,0,.2);

}

.c-section__overlay  + .u-wc {
  position: relative;
  z-index: 2;
}


.c-section__overlay--primary {
  background: rgb(var(--clr-primary));
}

.c-section__overlay--accent {
  background: rgb(var(--clr-accent));
}

.c-section__overlay--white {
  background: white;
}

.wp-block-image {
  margin: 40px 0;
}

.wp-block-image:first-child {
  margin-top: 0;
}

.wp-block-image:last-child {
  margin-bottom: 0;
}

.wp-block-image img {
  display: block;
}

.u-wc--full > .wp-block-image img {
  width: 100%;
}

.wp-block-image figcaption {
  text-transform: uppercase;
  font-size: 12px;
  color: #656565;
  margin: 0;
  padding: 12px 12px 0 12px;
  letter-spacing: .05em;
}

@media screen and (max-width: 600px) {

  .wp-block-image {
    margin: 28px 0;
  }
  
}

input{
  outline:none;
}

.wp-block-buttons {
  margin: 40px 0;
  grid-gap: 16px;
  display: flex;
  align-items: center;
}

.wp-block-buttons:first-child {
  margin-top: 0;
}

.wp-block-buttons:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 600px) {

  .wp-block-buttons {
    margin: 32px 0;
    grid-gap: 20px;
  }

}

.wp-block-button__link:disabled {
  opacity: .5;
  cursor: wait;
}

.wp-block-button__link {
  text-shadow: none;
  font-size: 13px;
  font-family: var(--ff-body);
  text-transform: uppercase;
  letter-spacing: .04em;
  flex-shrink: 0;
  text-decoration: none;
  background: rgba(var(--clr-primary), 1);
  border-radius: 0;
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 40px;
  font-weight: 700;
  border-radius: 50px;
  text-align: center;
  border: none;
  -webkit-appearance: none;
  transition: .3s background, .3s color;
}

.wp-block-button__link:hover {
  background: #2bbaf6;
  color: white;
}

.is-style-secondary .wp-block-button__link {
  background: black;
}

.is-style-secondary .wp-block-button__link:hover {
  background: #2f2e2e
}

@media screen and (max-width: 600px) {

  .wp-block-buttons {
    grid-gap: 16px;
  }

  .wp-block-buttons {
    flex-direction: column;
  }

  .wp-block-button {
    flex-grow: 1;
    width: 100%;
  }

  .wp-block-button__link {
    padding: 12px 20px;
    width: 100%;
  }
}

/*header styles*/

.c-mainHeader {
  height: var(--height-header);
  position: sticky;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
  background: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: .3s background;
  box-shadow: 0 2px 32px rgba(0,0,0,.1);
}

@media screen and (min-width: 601px) {
  .admin-bar .c-mainHeader {
    top: 32px;
  }
}

@media screen and (max-width: 600px) {
  #wpadminbar {
    display: none;
  }
}

.c-mainHeader > .u-wc {
  display: flex;
  align-items: center;
  height: 100%;
}

.c-mainHeader__logo {
  display: block;
  margin-right: auto;
  text-decoration: none;
  transition: .3s opacity;
}

.c-mainHeader__logo:hover {
  opacity: .8;
}

.c-mainHeader__logo img {
  display: block;
}


.c-mainHeader__menuWrap {
  display: flex;
  grid-gap: 32px;
  align-items: center;
}

.c-mainHeader__canIcon {
  display: block;
  width:50px;
  height: 50px;
  background: rgba(var(--clr-accent), 1) url('imgs/flag-icon.png') no-repeat  center center / 18px 20px;
}


@media screen and (max-width:980px) {

  .c-mainHeader__logo {
    max-width: 70px;
  }

}

@media screen and (max-width: 600px) {
  .c-mainHeader__logo {
    max-width: 50px;
  }

  .c-mainHeader__canIcon {
    width: 40px;
    height: 40px;
  }
}

.c-cart {
  display: block; 
  background: url('imgs/cart-icon.png') center center / 25px 30px;
  width: 25px;
  height: 30px;
  position: relative;
  margin: 0 40px;
}

.c-cart__count {
  color: white;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 14px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
}

@media screen and (max-width: 600px) {
  .c-cart {
    margin: 0 16px;
  }
}

.c-mainMenu ul {
  list-style-type: none;
  padding-left: 0;
  display: flex;
  margin: 0;
}

.c-mainMenu li {
  margin: 0 18px 0 0;
  padding: 0;
  display: flex;
  align-items: center;
}

.c-mainMenu li:last-child {
  margin-right: 0;
}

.c-mainMenu li a {
  color: #a4a8a9;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .01em;
  position: relative;
  padding: 4px 0;
  text-decoration: none;
  margin-bottom: 1px;
  transition: .3s color;
}

.c-mainMenu li a:hover, body:not(.home) .c-mainMenu li.current-menu-item > a {
  color:black;
}

.home .c-mainMenu > ul > li:first-child > a {
  color: black;
}

.c-mainMenu li.menu-item-has-children {
  position: relative;
}

.c-mainMenu li.menu-item-has-children > a:after {
  content: '';
  background: url('imgs/menu-arrow.svg') center center / 8px 4px;
  width: 8px;
  height: 4px;
  margin-left: 4px;
  display: inline-block;
  vertical-align: middle;
  transition: .3s transform;
}

.c-dropToggle {
  display: none;
}

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

  .c-mainMenu ul .sub-menu {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgb(var(--clr-primary));
    border-radius: 4px;
    padding-block: 24px;
    min-width: 200px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition: .3s opacity, .3s transform, 0s visibility .3s;
  }

  .c-mainMenu .menu-item-has-children:hover > .sub-menu {
    visibility: visible;
    transform: none;
    opacity: 1;
    transition-delay: 0s;
  }

  .c-mainMenu ul .sub-menu li {
    padding: 0 24px;
    margin: 0;
  }

  .c-mainMenu ul .sub-menu .sub-menu {
    left: 100%;
    top: -24px;
  }


}

.c-mainMenu .sub-menu a:hover, .c-mainMenu .sub-menu .current-menu-item > a {
  border-bottom: 2px solid white;
}

.c-mainMenu li.c-menuBtn {
  margin: 0 0 0 12px;
}

.c-mainMenu li.c-menuBtn a {
  font-size: 13px;
  font-family: var(--ff-body);
  text-transform: uppercase;
  letter-spacing: .2em;
  flex-shrink: 0;
  text-decoration: none;
  background: var(--clr-accent500);
  border-radius: 0;
  min-width: 130px;
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 4px;
  text-align: center;
  border: none;
  height: auto;
  -webkit-appearance: none;
  transition: .3s background, .3s color, .3s border, .3s filter;
}

.c-mainMenu li.c-menuBtn a:hover {
  background: var(--clr-accent400);
  color: white;
}

@media screen and (min-width: 981px) {
  .c-mainMenu .sub-menu {
    display: block !important;
  }
}

@media screen and (max-width: 980px) {

  .c-mainHeader__menuWrap {
    margin-left: auto;
  }

  .c-mainMenu {
    margin-right: 0;
    background: white;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: auto;
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    transition: .3s opacity, 0s visibility .3s, .3s transform;
    transform: translateY(-8px);
    padding: 0;
    grid-gap: 0;
  }

  .c-mainMenu--active {
    visibility: visible;
    opacity: 1;
    transition-delay: 0s;
    transform: none;
  }


  .c-mainMenu ul {
    display: block;
  }

  .c-mainMenu > ul {
    padding: 48px;
    width: 100%;
    overflow-y: auto;
  }

  .c-mainMenu > ul > li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
  }

  .c-mainMenu li {
    display: block;
    text-align: left;
    margin-bottom: 12px;
    text-align: right;
    margin-right: 0;
  }

  .c-mainMenu li:last-child {
    margin-right: 0;
    margin-bottom: 0;
  }

  .c-mainMenu li a {
    padding: 4px 0;
    text-align: right;
  }

  .c-mainMenu li.c-menuBtn {
    margin-left: 0;
  }

  .c-mainMenu li.menu-item-has-children > a::after {
    display: none;
  }

  .c-mainMenu .sub-menu {
    display: none;
    padding-left: 12px;
    margin-top: 12px;
    margin-bottom: 12px;
    width: 100%;
  }

  .c-mainMenu li.menu-item-has-children {
    display: flex;
    flex-wrap: wrap;
  }

  .c-dropToggle {
    display: block;
    margin-left: 4px;
  }

  .c-dropToggle:after {
    content: '';
    background: url('imgs/menu-arrow.svg') no-repeat center center / 8px 4px;
    width: 20px;
    height: 20px;
    margin-top: -4px;
    border-radius: 50%;
    border: 1px solid white;
    margin-left: 4px;
    display: inline-block;
    vertical-align: middle;
    transition: .3s transform;
  }

  .c-dropToggle.is-active:after {
    transform: rotate(180deg);
  }

  .c-mainMenu li.menu-item-has-children > a {
    order: 1; 
  }

  .c-mainMenu li.menu-item-has-children > .c-dropToggle {
    order: 2;
  }

  .c-mainMenu li.menu-item-has-children > .sub-menu {
    order: 3;
  }

}

@media screen and (max-width: 600px) {
  .c-mainMenu > ul {
    padding: 24px;
  }
}


.c-navIcon {
  display: none;
  width: 28px;
  height: 22px;
  position: relative;
  transform: rotate(0deg);
  transition: .5s ease-in-out;
  cursor: pointer;
  z-index: 10;
  margin-left: 40px;
  align-self: center;
  border: none;
  outline: none;
  background: none;
}

.c-navIcon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: rgb(var(--clr-primary));
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .3s ease-in-out; 
  border-radius: 2px;
}

    
.c-navIcon span:nth-child(1) {
  top: 0px;
  transform-origin: left center; 
}

.c-navIcon span:nth-child(2) {
  top: 9px;
  transform-origin: left center;
}

.c-navIcon span:nth-child(3) {
  top: 18px;
  transform-origin: left center; 
}

.c-navIcon--active span:nth-child(1) {
  transform: rotate(45deg);
  top: -1px;
  left: 2px; 
}

.c-navIcon--active span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

.c-navIcon--active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 19px;
  left: 2px;
}

@media screen and (max-width: 980px) { 

  .c-navIcon {
    display: block;
  }
}

@media screen and (max-width: 600px) {

  .c-navIcon {
    margin-left: 16px;
  }

}

/* footer styles */

.c-footer {
  position: relative;
}

.c-footer__top {
  background: black;
  position: relative;
  color: white;
  display: flex;
}

.c-footer__topLeft {
  width: 50%;
  padding: var(--b-space) 0;
}

.c-footer__topLeft .u-wc {
  max-width: 722px;
}

@media screen and (min-width: 901px) {
  .c-footer__topLeft .u-wc {
    padding: 0 var(--b-space);
  }
}

.c-footer__topRight {
  width: 50%;
  background: url('imgs/footer-bg.jpg') center center / cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-footer__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 50%;
  width: 132px;
  height: 132px;
}

.c-footer__logo img {
  display: block;
  margin-top: 6px;
}

.c-footer__bottom {
  padding: 26px 0;
}

.c-footer__bottom .u-wc {
  display: flex;
  justify-content: space-between;
  grid-gap: 24px;
  align-items: center;
}

.c-footer__bottom p {
  font-size: var(--fs-p-legal);
  margin: 0;
}

.c-footer__bottom p a {
  text-decoration: none;
  color: inherit;
}

@media screen and (max-width: 900px) {

  .c-footer__top {
    display: block;
  }

  .c-footer__topRight, .c-footer__topLeft {
    width: 100%;
  }

  .c-footer__topRight {
    padding: var(--b-space);
  }

}


@media screen and (max-width: 600px) {

  .c-footer__bottom {
    padding: var(--b-space) 0;
    text-align: center;
  }
  .c-footer__bottom .u-wc {
    flex-direction: column;
  }

}

/* gutenberg block / group styling */

.has-primary-background-color {
  background-color: rgb(var(--clr-primary));
}

.has-white-color {
  color: white;
}

.has-accent-background-color {
  background-color: rgb(var(--clr-accent));
}

.has-white-background-color {
  background-color: white;
}

.has-primary-light-background-color {  
  background-color: rgb(var(--clr-primaryLight));
}

.has-primary-dark-background-color {  
  background-color: rgb(var(--clr-primaryDark));
}

.has-primary-color {
  color: rgb(var(--clr-primary));
}

.has-primary-dark-color {
  color: rgb(var(--clr-primaryDark));
}

.has-primary-light-color {
  color: rgb(var(--clr-primaryLight));
}

.has-accent-color {
  color: rgb(var(--clr-accent));
}

.wp-block-columns {
  margin: 5% 0;
  grid-gap: 9% !important;
}

.wp-block-columns:first-child {
  margin-top: 0;
}

.wp-block-columns:last-child {
  margin-bottom: 0;
}


@media screen and (max-width: 1120px) {

  .wp-block-columns:not(.is-not-stacked-on-mobile) {
    display: flex;
    flex-direction: column;
    grid-gap: 32px !important;
  }

  .wp-block-columns:not(.is-not-stacked-on-mobile) .wp-block-column {
    width: 100% !important;
  }

 
}


.wp-block-media-text {
  margin: var(--b-space) auto;
  column-gap: 6%;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
}

.wp-block-media-text.has-media-on-the-right {
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
}

.wp-block-media-text:first-child {
  margin-top: 0;
} 


.wp-block-media-text:last-child {
  margin-bottom: 0;
} 


.wp-block-media-text .wp-block-media-text__content {
  padding: 0;
}

.wp-block-media-text__content :first-child {
  margin-top: 0;
}


@media screen and (max-width: 900px) {

  .wp-block-media-text, .wp-block-media-text.has-media-on-the-right { 
    display: grid;
    grid-template-columns: 100% !important;
  }

  .wp-block-media-text  .wp-block-media-text__media {
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 60px;
    grid-row: 2 !important;
    grid-column: 1 !important;
  }

  .wp-block-media-text  .wp-block-media-text__content {
    margin-left: auto;
    margin-right: auto;
    grid-row: 1 !important;
    grid-column: 1 !important;
  }

  .wp-block-media-text, .wp-block-media-text.has-media-on-the-right { 
    padding-left: 0;
    padding-right: 0;
  }

}

@media screen and (max-width: 600px) {

  .wp-block-media-text  .wp-block-media-text__media { 
    max-width: 100%;
  }

  .wp-block-media-text .wp-block-media-text__media {
    margin-top: 32px;
  }

  .wp-block-media-text {
    margin: 52px auto;
  }

  .wp-block-media-text:first-child {
    margin-top: 0;
  } 

  .wp-block-media-text:last-child {
    margin-bottom: 0;
  } 

}


.c-checkboxes {
  display: flex;
  margin: 20px 0 20px;
}

.c-checkbox input {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.c-checkbox {
  margin-left: 8%;
}

.c-checkbox:first-child {
  margin-left: 0;
}

.c-checkbox:last-child {
  margin-right: 0;
}

.c-checkbox label {
  display: flex;
  align-items: center;
  margin: 0;
  font-weight: 400;
  cursor: pointer;
}

.c-checkbox label:before {
  content: '';
  width: 30px;
  height: 30px;
  display: block;
  margin-right: 10px;
  border: 1px solid #979797;
  border-radius: 5px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 15px 15px;
}

.c-checkbox input:checked + label:before {
  background-image: url('imgs/checkbox.svg');
  background-color: var(--color-tertiary);
}

.wpcf7, .wp-block-contact-form-7-contact-form-selector  {
  margin: 42px auto;
  max-width: 760px;
}

.wpcf7-spinner {
  display: block;
  margin: -39px 12px 15px;
}

@media screen and (max-width: 600px) {

  .wpcf7  {
    margin: 26px 0;
  }
}

.wpcf7:first-child, .wp-block-contact-form-7-contact-form-selector:first-child {
  margin-top: 0;
}

.wpcf7:last-child, .wp-block-contact-form-7-contact-form-selector:first-child {
  margin-bottom: 0;
}

.wpcf7-spinner {
  vertical-align: middle;
}

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

  .input-cols {
    display: flex;
  }
  
  .input-col {
    width: calc((99.99% - 16px) / 2);
    margin-right: 16px;
  }
  
  
  .input-col:last-child {
    margin-right: 0;
  }
  

}

label {
  display: block;
  margin: 0 0 8px 0;
  font-weight: 700;
}

input[type="file"] {
  border: 1px dashed #ccc;
  padding: 12px 20px;
  margin-bottom: 16px;
  display: block;
  background: white;
  width: 100%;
  height: 53px;
  border-radius: 4px;
}

input[type="text"], 
input[type="tel"],
input[type="email"],
input[type="password"],
textarea,
select {
  display: block;
  width: 100%;
  border: none;
  border-radius: 0;
  padding: 15px 20px !important;
  font-weight: 400;
  margin-bottom: 16px;
  font-family: inherit;
  background: white;
  border-radius: 4px;
  border: 1px solid #cccccc !important;
  box-shadow: 0 2px 4px rgba(0,0,0,.03);
  transition: .3s box-shadow;
  font-size: 14px;
}


input[type="text"]:focus, 
input[type="tel"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus
textarea:focus {
  box-shadow: 0 2px 4px rgba(0,0,0,.08);
}

input[type="text"]:placeholder, 
input[type="phone"]:placeholder,
input[type="email"]:placeholder,
input[type="password"]:placeholder,
textarea:placeholder {
  color: #747474;
  opacity: 1;
}

input[type="text"].wpcf7-not-valid, 
input[type="phone"].wpcf7-not-valid,
input[type="email"].wpcf7-not-valid,
textarea.wpcf7-not-valid,
select.wpcf7-not-valid {
  border: 1px solid #FF001F;
}

textarea {
  height: 180px;
}

textarea:focus {
  outline: none;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: white url('imgs/select-arrow.svg') no-repeat calc(100% - 20px) center / 12px 12px;
  color: var(--color-text);
}

select:-ms-expand {
  display: none;
}

input[type="submit"] {
  -webkit-appearance: none;
  font-size: 14px;
  border: 0;
  text-align: center;
  background: rgb(var(--clr-accent));
  color: white;
  padding: 16px 20px;
  border-radius: 4px;
  color: white;
  text-align: center;
  width: 100%;
  display: block;
  font-weight: 600;
  text-transform: uppercase;
  transition: .3s filter;
}

input[type="submit"]:hover {
  filter: brightness(110%);
}


button[type="submit"]:focus {
  outline: none;
}

.wpcf7-not-valid-tip {
  font-size: 13px;
  font-weight: 600;
  margin-top: -12px;
  margin-bottom: 13px;
  display: block;
  color: #FF001F;
  text-align: left
}


.wpcf7 form .wpcf7-response-output {
  margin: 0 !important;
  border: 0 !important;
  font-weight: 500;
  padding: 0 !important;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output {
  color: red;
}

.recaptcha-msg {
  font-size: .8em;
}

@media screen and (max-width: 600px) {


  /* input[type="text"], input[type="tel"], input[type="email"], textarea, select {
    margin-bottom: 12px;
    padding: 13px 17px;
  }

  select {
    background-size: 12px 12px;
    background-position: calc(100% - 16px) center;
  } */

  textarea {
    height: 200px;
  }

}

.wp-block-table {
  background: var(--color-lightGrey);
  padding: 24px;
}

.wp-block-table th {
  text-align: left;
  font-size: 20px;
  font-family: 'New Kansas', sans-serif;
  font-weight: 700;
  padding: 0 8px 8px;
}

.wp-block-table td {
  padding: 0 8px;
}

@media screen and (max-width: 600px) {

  .wp-block-table {
    padding: 18px;
  }

  .wp-block-table th {
    font-size: 0;
  }

  .wp-block-table th:after {
    content: attr(data-label);
    font-size: 17px;
  }
}

@media screen and (min-width: 601px) {
  .is-style-mobile-only {
    display: none;
  }
}

@media screen and (max-width: 600px) {
  .is-style-desktop-only {
    display: none;
  }
}

.c-hero h1 span {
  font-size: 27px;
  display: block;
  white-space: nowrap;
}

.c-hero {
  overflow: hidden;
}

.c-hero__paypal {
  margin-left: 10px;
  margin-top: 3px;
}

.c-hero .u-wc {
  display: flex;
  align-items: center;
}

.c-hero__content {
  width: 40%;
  margin-right: 3%;
  position: relative;
  z-index: 1;
}

.c-hero__img {
  margin-right: -103px;
}


@media screen and (max-width: 980px) {

  .c-hero__content {
    width: 100%;
    margin-right: 0;
  }

  .c-hero .u-wc {
    display: block;
  }

  .c-hero__img {
    max-width: 80%;
    margin: -50px 0 -50px auto;
  }

}

@media screen and (max-width: 750px) {

  .c-hero__img {
    margin-right: -60px;
  }

}

@media screen and (max-width: 600px) {

  .c-hero__content {
    mix-blend-mode: darken;
  }

  .c-hero__img {
    max-width: calc(100% + 130px);
    margin-top: 20px;
    margin-left: -20px;
    margin-right: -80px;
    margin-bottom: -20px;
  }

}

@media screen and (max-width: 480px) {

  .c-hero h1 span {
    font-size: 20px;
    display: block;
    white-space: normal;
  }

}


.c-ship {
  background: url('imgs/shipping-bg.jpg') center center / cover;
  color: white;
  position: relative;
}

.c-ship__content {
  text-align: center;
  max-width: 715px;
  margin: 0 auto;
}

.c-ship__postal {
  display: block;
  margin: 32px auto 0;;
}

.c-ship__tips {
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  grid-gap: 40px;
  padding: 0 40px;
}

.c-ship__tip {
  padding: 16px 48px;
  position: relative;
  color: white;
  text-transform: uppercase;
  background:rgba(var(--clr-accent), 1);
}


.c-ship__tip b {
  font-size: 20px;
}

.c-ship__tip--dark {
  background: black;
}

.c-ship__tip:after {
  content: '';
  width: 0; 
  height: 0; 
  border-left: 18px solid #a3aaac;
  border-right: 20px solid transparent;
  border-bottom: 20px solid transparent;
  position: absolute;
  left: 100%;
  bottom: 0;
}

@media screen and (max-width: 800px) {

  .c-ship__tips {
    display: block;
    position: static;
    padding: 0;
    margin-top: 32px;
    margin-bottom: calc((var(--b-space) + 20px) * -1);
  }

  .c-ship__tip {
    width: 100%;
    text-align: center;
  }

  .c-ship__tip:first-child:after {
    display: none;
  }

}

@media screen and (max-width: 600px) {
  .c-ship__postal {
    max-width: 50px;
  }
}


.c-why {
  background: url('imgs/why-bg.jpg') center center / cover;
  color: white;
  position: relative;
}

.c-why__content {
  max-width: 572px;
  margin: 0 0 0 auto;
}

.c-why__content p {
  max-width: 480px;
}

.c-productBlock__overview {
  max-width: 380px;
}

.c-faq {
  max-width: 935px;
  margin: 36px auto 0;
  position: relative;
}

.c-faqItem {
  border-top: 1px solid #b0b1b1;
}

.c-faqItem:last-child {
  border-bottom: 1px solid #b0b1b1;
}

.c-faqItem__title {
  position: relative;
  padding: 18px 22px 18px 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 17px;
  grid-gap: 16px;
}

.c-faqItem__trigger {
  flex-shrink: 0;
  background: rgb(var(--clr-accent));
  width: 27px;
  height: 27px;
  position: relative;
  border-radius: 50%;
}

.c-faqItem__trigger:after {
  content: '';
  position: absolute;
  top: 13px;
  left: 8px;
  right: 8px;
  background: white;
  height: 1px;
}

.c-faqItem__trigger:before {
  content: '';
  position: absolute;
  left: 13px;
  top: 8px;
  bottom: 8px;
  background: white;
  width: 1px;
  transition: .3s opacity;
}

.c-faqItem--active .c-faqItem__trigger:before {
  opacity: 0;
}

.c-faqItem__title h4 {
  margin-bottom: -4px;
}

.c-faqItem__content {
  padding: 0 28px 20px;
  display: none;
}

@media screen and (max-width: 600px) {

  .c-faq {
    margin-top: 24px;
  }

  .c-faqItem__title {
    font-size: 16px;
  }

  .c-faqItem__title, .c-faqItem__content {
    padding-inline: 0;
  }
}

/* product loop styles */

.woocommerce ul.products.columns-3 {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  grid-gap: 24px;
  grid-row-gap: 120px;
  margin-top: 80px;
}

.woocommerce ul.products.columns-3:before, .woocommerce ul.products.columns-3:after {
  display: none;
}

.woocommerce ul.products.columns-3 li.product {
  margin: 0;
  width: calc((100% - 48px) / 3);
  float: none;
}

@media screen and (max-width: 900px) {
  .woocommerce ul.products.columns-3 {
    grid-row-gap: 60px;
    margin-top: 60px;
  }

  .woocommerce ul.products.columns-3 li.product {
    width: calc((100% - 48px) / 2);
  }
}

@media screen and (max-width: 600px) {
  .woocommerce ul.products.columns-3 {
    grid-row-gap: 40px;
    margin-top: 40px;
  }

  .woocommerce ul.products.columns-3 li.product {
    width: 100%;
  }
}

.woocommerce .product {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-size: 22px;
  margin: 12px 0 6px;
  padding: 0;
  letter-spacing: .03em;
}

.woocommerce .product__desc {
  font-size: 12px;
  margin: 0 0 4px 0;
}

.woocommerce .product__quantity {
  margin-bottom: 8px;
}

.woocommerce .product__quantity input.qty {
  width: 45px;
  height: 45px;
  border: 1px solid black;
  text-align: center;
  margin: 0;
}

.product__quantity input::-webkit-outer-spin-button,
.product__quantity input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.product__quantity input[type="number"] {
  -moz-appearance: textfield;
}

.woocommerce ul.products li.product .product__documentation {
  letter-spacing: .02em;
  margin-top: 16px;
  font-size: 15px;
  text-decoration: underline;
}

.woocommerce ul.products li.product .price {
  font-size: 18px;
  color: var(--clr-text);
  margin: 0 0 16px 0;
}

.woocommerce ul.products li.product .button {
  width: 200px;
  max-width: 200px;
  position: relative;
  z-index: 2;
}

.woocommerce .product.outofstock:not(.product_cat-not-for-sale) .button {
  pointer-events: none;
  opacity: .7;
}

.woocommerce ul.products li.product .attachment-woocommerce_thumbnail {
  max-width: 337px;
  margin: 0 auto;
  width: 100%;
}

.woocommerce ul.products li.product .added_to_cart {
  position: absolute;
  z-index: 1;
  bottom: -55px;
  left: 50%;
  animation-name: fadeInBottom;
  animation-duration: .3s;
  animation-fill-mode: both;
  width: 200px;
  margin-left: -100px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  height: 84px;
  padding-top: 47px;
  border-bottom-right-radius: 30px;
  border-bottom-left-radius: 30px;
}

.woocommerce ul.products li.product.has-documentation .added_to_cart {
  bottom: -17px;
}

.woocommerce .product_cat-not-for-sale .add_to_cart_button, .woocommerce .product_cat-not-for-sale .product__quantity, .woocommerce .product_cat-not-for-sale a.product_type_simple {
  display: none !important;
} 

.woocommerce .product__contact p {
  font-size: 12px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.woocommerce .product__contact .button {
  background: black;
}

.woocommerce .product__contact .button:hover {
  background: #2f2e2e;
}

@keyframes fadeInBottom {
  0% {
     opacity: 0;
     transform: translateY(-8px);
  }
  100% {
     opacity: 1;
     transform: translateX(0);
  }
} 


@media screen and (max-width: 600px) {

  .woocommerce ul.products li.product .attachment-woocommerce_thumbnail {
    max-width: 300px;
  }

  .woocommerce ul.products li.product .woocommerce-loop-product__title {
    margin-top: 0;
  }
}

/* woo style */
.woocommerce a.button, .woocommerce a.button.alt, .woocommerce button.button, .woocommerce a.added_to_cart {
  text-shadow: none;
  font-size: 13px !important;
  font-family: var(--ff-body);
  text-transform: uppercase;
  letter-spacing: .04em;
  line-height: 1.5;
  flex-shrink: 0;
  text-decoration: none;
  background: rgba(var(--clr-primary), 1);
  border-radius: 0;
  white-space: nowrap;
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 32px;
  font-weight: 700;
  border-radius: 50px;
  text-align: center;
  border: none;
  -webkit-appearance: none;
  transition: .3s background, .3s color, .3s opacity, .3s padding-right;
}

.woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce a.button.alt:hover {
  background: #2bbaf6;
  color: white;
}

.woocommerce a.added_to_cart {
  background: black;
}

.woocommerce a.added_to_cart:hover {
  background: #2f2e2e;
}

.woocommerce a.button.disabled, .woocommerce button.disabled, .woocommerce button.button:disabled[disabled] {
  color: white !important;
  padding: 18px 32px;
  opacity: .4;
}

.woocommerce button.button[name="update_cart"] {
  background: black !important;
  width: 100%;
  padding: 14px !important;
}

.woocommerce button.button[name="update_cart"]:hover {
  background: #2f2e2e !important;
}

.woocommerce .wc-proceed-to-checkout a.button {
  font-size: 14px !important;
}

.woocommerce a.button.loading {
  padding-right: 57px;
  opacity: .7;
  pointer-events: none;
}

.woocommerce a.button.loading:after {
  top: 18px;
  right: 25px;
}

/* cart / checkout styles */

.woocommerce-cart .woocommerce {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.woocommerce-cart .woocommerce-notices-wrapper {
  width: 100%;
}

.woocommerce-cart .woocommerce-notices-wrapper {
  width: 100%;
}

.woocommerce-cart .woocommerce-cart-form {
  width: calc(100% - 5% - 320px);
  margin: 0;
}

.woocommerce-cart .cart-collaterals {
  width: 320px;
  position: sticky;
  z-index: 10;
  top: 0;
  margin: 0 0 0 5%;
  border: 1px solid #ececec;
  border-radius: 4px;
  padding: 30px 30px 20px;
  box-shadow: 0 2px 32px rgba(0,0,0,.1);
}

td .woocommerce-Price-amount.amount {
  white-space: nowrap;
}

.cart_totals h2 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 16px;
}

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

.woocommerce table.shop_table {
  border: none;
}

.woocommerce #content table.cart td.actions, .woocommerce table.cart td.actions, .woocommerce-page #content table.cart td.actions, .woocommerce-page table.cart td.actions {
  padding: 0;
}

.woocommerce .quantity input::-webkit-outer-spin-button,
.woocommerce .quantity input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.woocommerce .quantity input[type="number"] {
  -moz-appearance: textfield;
  border: 1px solid #cccccc;
}

.woocommerce table.woocommerce-cart-form__contents {
  border: none;
  border: 1px solid #ececec;
  border-radius: 4px;
  padding: 30px;
  box-shadow: 0 2px 32px rgba(0,0,0,.1);
}

.woocommerce table.shop_table td {
  font-size: 15px;
}

td.product-thumbnail, th.product-thumbnail {
  display: none;
}

.woocommerce table.shop_table th, .woocommerce table.shop_table tbody th, .woocommerce table.shop_table tfoot td, .woocommerce table.shop_table tfoot th {
  font-weight: 700;
}

.cart-empty {
  width: 100%;
}

.coupon {
  display: flex;
  width: 100%;
  margin: 24px 0;
  grid-gap: 8px;
  line-height: 1.5;
  padding: 0 !important;
}

.coupon:before, .coupon:after {
  display: none !important;
}

.coupon .input-text {
  width: 100% !important;
  border-radius: 40px;
}

.woocommerce table.shop_table_responsive tr td::before, .woocommerce-page table.shop_table_responsive tr td::before {
  font-weight: 500;
  margin-right: 8px;
}

.woocommerce-error {
  margin-bottom: 16px !important;
}

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

.checkout.woocommerce-checkout {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}

.woocommerce-NoticeGroup-checkout {
  width: 100%;
  margin-bottom: 24px;
}

.woocommerce .col2-set .col-1, .woocommerce-page .col2-set .col-1, .woocommerce .col2-set .col-2, .woocommerce-page .col2-set .col-2 {
  float: none;
  width: 100%;
}

.woocommerce .col2-set, .woocommerce-page .col2-set {
  width: calc(100% - 5% - 400px);
}

.woocommerce-page .col2-set .col-2 {
  margin-top: 24px;
}

#order_review_heading {
  display: none;
}

.woocommerce form .form-row label {
  line-height: 1.5;
}

.woocommerce-checkout-review-order {
  width: 400px;
  flex-shrink: 0;
  position: sticky;
  top: 0;
  margin: 0 0 0 5%;
  border: 1px solid #ececec;
  border-radius: 4px;
  padding: 30px;
  box-shadow: 0 2px 32px rgba(0,0,0,.1);
}

.woocommerce-checkout h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.woocommerce-privacy-policy-text {
  margin-bottom: 12px;
  font-size: .9em;
}

.woocommerce-MyAccount-navigation ul {
  padding: 0;
  margin: 0;
}

.woocommerce-MyAccount-navigation li {
  padding: 0;
  border-bottom: 1px solid #ececec;
  padding-bottom: 12px;
  margin-bottom: 12px;
}

.woocommerce-MyAccount-navigation li a {
  font-weight: 500;
}

fieldset {
  border: 1px solid #ccc;
  margin: 0 2px;
  margin-bottom: 0px;
  padding: 20px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.woocommerce form.login, .woocommerce form.register {
  border: 1px solid #ececec;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0,0,0,.05);
  padding: 30px;
}

/* .payment_methods li {
  padding-left: 0;
} */

.payment_methods li label {
  display: inline-block;
}

.woocommerce-checkout #payment ul.payment_methods li input {
  margin: 0 4px 0 0;
}

#ship-to-different-address .checkbox {
  display: flex;
  align-items: center;
  grid-gap: 13px;
}

.product-name .product-quantity {
  display: block;
}

.woocommerce-error, .woocommerce-info, .woocommerce-message {
  font-size: 15px;
  line-height: 1.5 !important;
  margin-bottom: 24px;
  width: 100%;
}

.woocommerce form .form-row .select2-container {
  line-height: 1.5; 
}

.select2-container {
  font-size: 14px;
}

.select2-container .select2-selection--single {
  height: auto;
  margin: 0;
}

.select2-container--default .select2-selection--single {
  border: 1px solid #cccccc;
  border-radius: 4px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 50%;
  right: 12px;
  width: 20px;
  margin-top: -13px;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  padding: 15px 20px;
  text-align: left;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: inherit;
  color: var(--clr-text);
}

.woocommerce-shipping-totals, .cart_totals .shipping {
  position: relative;
}

#add_payment_method .cart-collaterals .shipping-calculator-form, .woocommerce-cart .cart-collaterals .shipping-calculator-form, .woocommerce-checkout .cart-collaterals .shipping-calculator-form {
  position: absolute;
  z-index: 1;
  background: white;
  top: 100%;
  left: 0;
  right: 0;
  border: 1px solid #ececec;
  border-radius: 4px;
  padding: 20px 20px 6px;
  box-shadow: 0 2px 32px rgba(0,0,0,.1);
  margin: 0;
}

.shipping-calculator-form .select2-container .select2-selection--single .select2-selection__rendered {
  padding: 9px 20px;
}

.shipping-calculator-form button.button {
  padding: 12px;
  width: 100%;
}


.shipping-calculator-form input {
  padding: 9px 20px !important;
}

.woocommerce-shipping-destination {
  font-size: 13px;
  padding-left: 5px;
}

.woocommerce-cart .cart-collaterals .shipping-calculator-button {
  margin-top: 2px;
  font-size: 12px;
  padding-left: 6px;
}

#add_payment_method .wc-proceed-to-checkout, .woocommerce-cart .wc-proceed-to-checkout, .woocommerce-checkout .wc-proceed-to-checkout {
  padding: 4px 0 0;
}

.woocommerce-terms-and-conditions-wrapper {
   display: none;
}


.woocommerce-checkout-payment {
  margin-bottom: 32px;
}

.woocommerce-checkout-payment .label {
   margin-bottom: 0;
}

.woocommerce-order-received h1, .woocommerce-order-received h2 {
  font-size: 32px;
}

.woocommerce-order-received .woocommerce-customer-details {
  display: none;
}

@media screen and (max-width: 1000px) {

  .woocommerce-cart .woocommerce {
    display: block;
  }
  .woocommerce-cart .woocommerce-cart-form {
    width: 100%;
  }

  .woocommerce-cart .cart-collaterals {
    width: 100%;
    margin-left: 0;
  }

  .checkout.woocommerce-checkout {
    display: block;
  }

  .woocommerce-checkout-review-order {
    width: 100%;
    margin-left: 0;
    margin-top: 24px;
  }

  .woocommerce .col2-set, .woocommerce-page .col2-set {
    width: 100%;
  }

  .woocommerce .wc-proceed-to-checkout a.button {
    width: 100%;
  }

}

@media screen and (max-width: 600px) { 

  .coupon {
    flex-direction: column;
  }

  .coupon .button {
    width: 100% !important;
  }

  .woocommerce-checkout-review-order,  .woocommerce-cart .cart-collaterals  {
    padding: 20px;
  }

  .woocommerce table.woocommerce-cart-form__contents {
    padding: 20px;
  }

  .woocommerce .wc-proceed-to-checkout a.button {
    width: 100%;
    margin-bottom: 0 !important;
  }

}


.product:not(.purchasable) .product__quantity, .product:not(.purchasable) .button.product_type_simple {
  display: none !important;
}

.c-rotateBanner {
	padding: 16px 0;
	background: #E41E23;
	overflow-x: hidden;
	display: flex;
	width: 100%;
}
.c-rotateBanner__wrap {
	display: flex;
	flex: 0 0 auto;
	padding: 0 24px;
	gap: 48px;
  animation: scroll 30s linear infinite;
}


@media screen and (max-width: 600px) {
	.c-rotateBanner {
		padding: 12px 0;
	}
	
	.c-rotateBanner__wrap {
	  animation: scroll 20s linear infinite;
	}
}

.c-rotateBanner p {
	margin: 0;
	color: white;
	white-space: nowrap;
font-weight: 700;

}

.c-rotateBanner span {
	color: black;
	padding: 0 1.5rem;
}


/* Scrolling animation */
@keyframes scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

#custom_checkout_fields {
  margin-bottom: 24px;
}

.wc_payment_methods {
  display: none;
}

