.u-link-absolute {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  cursor: pointer;
}

.u-hide-on-mobile {
  display: none !important;
}
@media screen and (min-width: 1200px) {
  .u-hide-on-mobile {
    display: grid !important;
  }
}

.u-hide-on-desktop {
  display: grid !important;
}
@media screen and (min-width: 1200px) {
  .u-hide-on-desktop {
    display: none !important;
  }
}

html {
  overflow: auto;
  outline: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

ul {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

svg {
  position: relative;
  height: auto;
  transform: none;
}

picture img {
  display: block;
  width: 100%;
}

.grecaptcha-badge {
  opacity: 0 !important;
}

html {
  font-family: "Merriweather Sans", sans-serif;
  font-size: 10px;
}

input,
textarea {
  font-family: "Merriweather Sans", sans-serif;
}

body {
  font-size: 1.6rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  color: rgba(0, 0, 0, 0.8);
  font-family: "Merriweather Sans", sans-serif;
  line-height: 1.3;
}

h1 {
  font-size: 3.8rem;
}
@media screen and (min-width: 736px) {
  h1 {
    font-size: 4.2rem;
  }
}

h2 {
  font-size: 2.7rem;
}
@media screen and (min-width: 736px) {
  h2 {
    font-size: 3.2rem;
  }
}

h3 {
  font-size: 2.5rem;
}
@media screen and (min-width: 736px) {
  h3 {
    font-size: 2.7rem;
  }
}
@media screen and (min-width: 1600px) {
  h3 {
    font-size: 3.2rem;
  }
}

h4 {
  font-size: 2.1rem;
  font-weight: 600;
}
@media screen and (min-width: 736px) {
  h4 {
    font-size: 2.3rem;
  }
}
@media screen and (min-width: 1600px) {
  h4 {
    font-size: 2.7rem;
  }
}

h5 {
  font-size: 1.9rem;
}

h6 {
  font-size: 1.6rem;
}

p {
  color: rgba(0, 0, 0, 0.8);
  font-size: 1.6rem;
  line-height: 1.5;
}

a {
  color: rgb(247.6424870466, 194.6683937824, 120.3575129534);
  text-decoration: none;
}

.site-header {
  margin-bottom: 6px;
  color: rgb(247.6424870466, 194.6683937824, 120.3575129534);
  font-size: 1.6rem;
  font-weight: 600;
  text-transform: uppercase;
}

.site-text {
  color: rgba(0, 0, 0, 0.8);
  font-size: 1.6rem;
}

.subheader {
  display: inline-block;
  padding: 10px 30px;
  border-bottom: 2px solid #c83434;
}

.header {
  width: 100%;
  height: 90px;
  background-color: #F5AD48;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.16);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 980px) {
  .nav {
    display: initial;
    justify-content: initial;
    align-items: initial;
  }
}

.nav-list {
  position: relative;
  height: 90px;
}
@media screen and (min-width: 980px) {
  .nav-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
@media screen and (min-width: 980px) {
  .nav-list > * {
    flex: 0 0 14%;
  }
}

.nav-item {
  display: none;
}
@media screen and (min-width: 980px) {
  .nav-item {
    display: block;
    text-align: center;
  }
}

.nav-logo {
  position: relative;
  width: 125px;
  margin-top: -10px;
  margin-right: auto;
  margin-left: auto;
  z-index: 3;
}
@media screen and (min-width: 980px) {
  .nav-logo {
    width: 140px;
    margin: initial;
    transform: translateY(15px);
  }
}
.nav-logo img {
  width: 100%;
}

.nav-link {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  padding: 31px 20px;
  color: #fff;
  font-size: 1.7rem;
  font-weight: 500;
}

.nav-link--is-active {
  font-weight: 700;
  border-bottom: 3px solid rgb(212.2857142857, 90.7142857143, 90.7142857143);
}

.nav-icon {
  padding: 5px;
  cursor: pointer;
}
@media screen and (min-width: 980px) {
  .nav-icon {
    display: none;
  }
}

.nav-icon-svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

.nav-mobile {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 240px;
  background-color: #fff;
  transform: translateX(240px);
  transition: transform 150ms ease-in-out;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
}
@media screen and (min-width: 980px) {
  .nav-mobile {
    display: none;
  }
}

.nav-mobile--visible {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.nav-mobile-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.nav-mobile-item:last-child {
  border-bottom: none;
}

.nav-mobile-link {
  display: block;
  padding: 20px 15px;
  color: rgba(0, 0, 0, 0.8);
  font-size: 1.5rem;
}

.nav-mobile-header {
  padding: 10px 15px;
  border-bottom: 1px solid #c83434;
}

.hero {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}
@media screen and (min-width: 736px) {
  .hero {
    height: 550px;
  }
}
.hero:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(46, 31, 31, 0.7);
  z-index: 2;
}

.hero-content {
  position: absolute;
  width: 90%;
  top: 50%;
  left: 50%;
  text-align: center;
  transform: translate(-50%, -50%);
  z-index: 3;
}
@media screen and (min-width: 736px) {
  .hero-content {
    width: 55%;
  }
}

.hero-video {
  width: 100%;
  height: inherit;
  object-fit: cover;
}

.hero-text {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.12);
}

.hero-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 1.5rem;
  opacity: 0.7;
}
.hero-link:hover {
  color: #F5AD48;
}
@media screen and (min-width: 1600px) {
  .hero-link {
    font-size: 2rem;
    margin-top: 20px;
  }
}

.banner {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.2);
}

.banner-container {
  width: 100%;
  max-width: 1900px;
  margin: 0 auto;
}

.banner-picture {
  display: block;
  width: 100%;
  height: auto;
}

.banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 1900/500;
}
@media screen and (min-width: 736px) {
  .banner-img {
    min-height: 300px;
  }
}
@media screen and (min-width: 980px) {
  .banner-img {
    min-height: 400px;
  }
}
@media screen and (min-width: 1600px) {
  .banner-img {
    min-height: 500px;
  }
}

.banner-link {
  display: block;
  transition: all 100ms cubic-bezier(0, 0, 0.3, 1.5);
}
.banner-link:hover {
  opacity: 0.95;
}

.banner--with-content {
  position: relative;
}
.banner--with-content:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(33, 33, 33, 0.5);
  background: linear-gradient(to bottom, rgba(33, 33, 33, 0.3), rgba(33, 33, 33, 0.5));
  z-index: 1;
  pointer-events: none;
}

.banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  width: 90%;
}
@media screen and (min-width: 736px) {
  .banner-content {
    width: 70%;
  }
}

.banner-title {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  color: #fff;
  font-size: 3rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 1.9rem;
}
@media screen and (min-width: 736px) {
  .banner-title {
    font-size: 4rem;
  }
}

.banner-text {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  color: #fff;
  font-size: 1.6rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
@media screen and (min-width: 736px) {
  .banner-text {
    font-size: 1.7rem;
  }
}

.contact-text {
  margin-top: 15px;
  margin-bottom: 40px;
  font-size: 1.7rem;
  line-height: 1.7;
}
@media screen and (min-width: 736px) {
  .contact-text {
    width: 60%;
    margin: auto;
    margin-top: 15px;
    margin-bottom: 50px;
  }
}

.contact-items {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
@media screen and (min-width: 736px) {
  .contact-items {
    flex-direction: row;
    gap: initial;
  }
}

.contact-items-secondary {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 30px;
  margin-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.contact-items-secondary__heading {
  margin-bottom: 20px;
}

.contact-item {
  padding: 10px 20px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 2px;
}
@media screen and (min-width: 736px) {
  .contact-item {
    flex: 1;
    max-width: 200px;
    padding: initial;
    border: none;
    border-radius: initial;
  }
}

.contact-item-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 736px) {
  .contact-item-wrapper {
    flex-direction: column;
  }
}

.contact-item--smaller {
  display: block;
  margin-bottom: 15px;
}
.contact-item--smaller .contact-item-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.contact-item--smaller .contact-item-icon {
  width: 20px;
  height: 20px;
  margin-right: 7px;
}
.contact-item--smaller .contact-item-text {
  margin-top: initial;
  font-size: 1.4rem;
}

.contact-item-icon {
  width: 26px;
  height: 26px;
  display: block;
  margin-right: 8px;
  fill: rgba(0, 0, 0, 0.6);
}
@media screen and (min-width: 736px) {
  .contact-item-icon {
    width: 28px;
    height: 28px;
    margin-right: initial;
  }
}

.contact-item-text {
  color: rgba(0, 0, 0, 0.6);
  line-height: 1;
}
@media screen and (min-width: 736px) {
  .contact-item-text {
    margin-top: 10px;
  }
}

.contact-flex {
  margin-top: 40px;
}
@media screen and (min-width: 736px) {
  .contact-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 60px;
  }
}

.contact-map {
  height: 300px;
  margin-top: 15px;
  border: 1px solid rgba(0, 0, 0, 0.12);
}
@media screen and (min-width: 736px) {
  .contact-map {
    flex: 0 0 45%;
    height: 500px;
    margin-top: 0;
  }
}

.contact-map-iframe {
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 736px) {
  .contact-form {
    flex: 0 0 50%;
  }
}

.contact-form__title {
  margin-bottom: 20px;
  text-align: center;
}

.chat {
  position: fixed;
  right: 15px;
  bottom: 15px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #25d366;
  box-shadow: 0 2px 5px 2px rgba(33, 33, 33, 0.24);
  z-index: 9;
}

.chat__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 30px;
  height: 30px;
  fill: #fff;
  color: #fff;
  transform: translate(-50%, -50%);
}

.success {
  height: calc(100vh - 0px - 160px);
}

.success-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 800px;
  margin: auto;
}

.form {
  text-align: left;
}
.form label {
  display: block;
  margin-bottom: 12px;
  color: rgba(0, 0, 0, 0.54);
  font-size: 1.4rem;
}
.form label,
.form input,
.form textarea {
  width: 100%;
}
.form input,
.form textarea {
  padding-right: 10px;
  padding-left: 10px;
  margin-bottom: 25px;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 2px;
  color: rgba(0, 0, 0, 0.7);
  font-size: 1.6rem;
  outline: none;
}
@media screen and (min-width: 736px) {
  .form input,
  .form textarea {
    font-size: 1.4rem;
  }
}
.form input:focus,
.form textarea:focus {
  border: 1px solid rgba(0, 0, 0, 0.4);
  color: rgba(0, 0, 0, 0.8);
}
.form input {
  height: 40px;
}
.form textarea {
  height: 110px;
  padding-top: 10px;
  line-height: 1.4;
  resize: none;
}
.form input[type=submit] {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  height: 46px;
  border: 2px solid #c83434;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #c83434;
  color: #fff;
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: 700;
}

.recipes {
  margin-top: 40px;
}

.recipe {
  width: 90%;
  margin: auto;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.16);
}
@media screen and (min-width: 736px) {
  .recipe {
    width: 100%;
    margin: initial;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
}

.container-recipe {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.recipe-picture {
  flex: 0 0 100%;
  margin-top: 10px;
}
@media screen and (min-width: 736px) {
  .recipe-picture {
    flex: 0 0 45%;
    margin-top: 0;
  }
}
.recipe-picture img {
  margin: 0;
}

.recipe-title {
  padding: 15px;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  text-align: center;
}
@media screen and (min-width: 736px) {
  .recipe-title {
    min-height: 90px;
  }
}

.recipe-content {
  flex: 0 0 100%;
  margin-top: 30px;
}
@media screen and (min-width: 736px) {
  .recipe-content {
    flex: 0 0 50%;
    margin-top: 0;
  }
}

.tags {
  margin-top: 30px;
  text-align: center;
}

.tag {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  display: inline-block;
  padding: 5px 10px;
  margin: 0 5px;
  margin-bottom: 12px;
  background-color: rgb(212.2857142857, 90.7142857143, 90.7142857143);
  font-size: 1.4rem;
  color: #fff;
}

.posts {
  margin-top: 40px;
}

.post {
  position: relative;
  width: 90%;
  margin: auto;
  height: 230px;
  text-align: left;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
}
@media screen and (min-width: 736px) {
  .post {
    width: 100%;
    height: 400px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
}

.post-img {
  position: relative;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.post-title {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 30px 12px 20px 12px;
  background: rgba(0, 0, 0, 0.5);
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.85));
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 3;
}
@media screen and (min-width: 736px) {
  .post-title {
    min-height: 138px;
  }
}
@media screen and (min-width: 1600px) {
  .post-title {
    min-height: 156px;
  }
}

.article {
  text-align: center;
}

.article-body {
  text-align: left;
}
.article-body strong {
  margin-top: 30px;
  font-family: "Merriweather Sans", sans-serif;
  font-size: 1.9rem;
}
.article-body p {
  margin-top: 20px;
  font-family: "Merriweather";
  color: rgba(0, 0, 0, 0.8);
  line-height: 1.8;
}
.article-body li {
  margin-top: 15px;
  font-family: "Merriweather";
  color: rgba(0, 0, 0, 0.8);
}
.article-body li:before {
  content: "-";
  display: inline-block;
  margin-right: 6px;
}

.article-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 10px;
  margin-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.article-date {
  margin-top: 8px;
  font-size: 1.5rem;
  color: rgba(0, 0, 0, 0.5);
}

.article-icon {
  display: inline-block;
  padding: 10px;
  margin-left: 5px;
  cursor: pointer;
}
.article-icon:hover .icon-fb {
  fill: #3b5998;
}
.article-icon:hover .icon-tt {
  fill: #1da1f2;
}
.article-icon:hover .icon-wp {
  fill: #25d366;
}
.article-icon svg {
  width: 20px;
  height: 20px;
  fill: rgba(0, 0, 0, 0.45);
}

.gallery {
  max-width: 600px;
  margin: auto;
  margin-top: 30px;
}

.gallery-featured {
  position: relative;
}

.gallery-featured__picture {
  width: 100%;
  height: 200px;
  cursor: pointer;
}
.gallery-featured__picture img {
  height: inherit;
  object-fit: cover;
}
@media screen and (min-width: 736px) {
  .gallery-featured__picture {
    height: 420px;
  }
}

.gallery-thumbs {
  display: flex;
  overflow-x: scroll;
  margin-top: 15px;
  -webkit-overflow-scrolling: touch;
}

.gallery-thumb__picture {
  flex-shrink: 0;
  width: 90px;
  height: 90px;
  margin-right: 12px;
  cursor: pointer;
}
.gallery-thumb__picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (min-width: 736px) {
  .gallery-thumb__picture {
    width: 110px;
    height: 110px;
  }
}

.article__caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 10px;
  background-color: rgba(21, 21, 21, 0.6);
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.3rem;
}

.downloads {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 300px));
  gap: 50px;
  padding: 0 20px;
  justify-content: center;
}
@media screen and (min-width: 736px) {
  .downloads {
    grid-template-columns: repeat(auto-fit, minmax(300px, 300px));
    padding: 0;
  }
}

.download {
  position: relative;
  width: 300px;
  height: 450px;
  margin: 0;
  border-radius: 7px;
  box-shadow: 1px 2px 4px 4px rgba(0, 0, 0, 0.24);
}
@media screen and (min-width: 736px) {
  .download {
    width: 300px;
  }
}

.download__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 7px;
}

.download__title {
  text-align: center;
  margin-top: 15px;
  font-size: 2rem;
  color: rgba(0, 0, 0, 0.8);
  font-weight: 500;
}

.lightbox {
  position: relative;
  display: none;
}

.lightbox--visible {
  display: block;
}

.lightbox__overlay {
  position: fixed;
  z-index: 9;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
}

.lightbox__loading {
  position: fixed;
  top: 50%;
  left: 50%;
  border: 6px solid white;
  border-left-color: #c83434;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  margin: auto;
  z-index: 99;
  transform: translate(-50%, -50%);
  animation: donut-spin 800ms linear infinite;
}

.lightbox__content {
  position: fixed;
  top: 50%;
  left: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90%;
  max-width: 800px;
  min-height: 380px;
  max-height: 380px;
  background-color: #000;
  z-index: 99;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 736px) {
  .lightbox__content {
    min-height: 600px;
    max-height: 600px;
  }
}

.lightbox__content--is-hidden {
  opacity: 0;
  visibility: hidden;
}

.lightbox__controls {
  position: absolute;
  bottom: 20px;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
}

.lightbox-close {
  position: absolute;
  top: 15px;
  right: 15px;
}

.lightbox-download {
  position: absolute;
  top: 15px;
  left: 15px;
}

.lightbox-control {
  padding: 2px 6px;
  background-color: rgba(200, 52, 52, 0.9);
  cursor: pointer;
}

.lightbox-control__icon {
  width: 24px;
  height: 24px;
  fill: #fff;
  transform: translateY(3px);
}

.lightbox__image {
  width: 100%;
  object-fit: cover;
  object-position: top;
  user-select: none;
  max-width: inherit;
  max-height: inherit;
}

@keyframes donut-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Base for label styling */
[type=checkbox]:not(:checked),
[type=checkbox]:checked {
  position: absolute;
  left: -9999px;
}

[type=checkbox]:not(:checked) + label,
[type=checkbox]:checked + label {
  position: relative;
  display: block;
  padding-left: 26px;
  color: rgba(0, 0, 0, 0.6);
  font-size: 1.5rem;
  user-select: none;
  cursor: pointer;
}
[type=checkbox]:not(:checked) + label:hover,
[type=checkbox]:checked + label:hover {
  color: rgba(0, 0, 0, 0.6);
}
[type=checkbox]:not(:checked) + label:last-child,
[type=checkbox]:checked + label:last-child {
  margin-bottom: 0;
}

/* checkbox aspect */
[type=checkbox]:not(:checked) + label::before,
[type=checkbox]:checked + label::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(0, 0, 0, 0.4);
  background: #fff;
}

/* checked mark aspect */
[type=checkbox]:not(:checked) + label::after,
[type=checkbox]:checked + label::after {
  content: url("img/check.svg");
  position: absolute;
  top: -1px;
  left: 0;
  transition: all 200ms ease;
}

/* checked mark aspect changes */
[type=checkbox]:not(:checked) + label::after {
  opacity: 0;
  transform: scale(0);
}

[type=checkbox]:checked + label::before {
  background: rgb(212.2857142857, 90.7142857143, 90.7142857143);
  border: 2px solid rgb(212.2857142857, 90.7142857143, 90.7142857143);
}

/* disabled checkbox */
[type=checkbox]:disabled:not(:checked) + label::before,
[type=checkbox]:disabled:checked + label::before {
  background-color: #ddd;
  border-color: #bbb;
  box-shadow: none;
}

[type=checkbox]:disabled:checked + label::after {
  color: #999;
}

[type=checkbox]:disabled + label {
  color: #aaa;
}

.search-box {
  position: relative;
  height: 36px;
  margin: 15px auto;
}

.search-box__input {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  padding-left: 35px;
  font-size: 13px;
  color: #000;
  outline: none;
}
.search-box__input::placeholder {
  color: rgba(0, 0, 0, 0.54);
}

.search-box__icon {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 20px;
  height: 20px;
  fill: rgba(0, 0, 0, 0.5);
  z-index: 2;
}
@media screen and (min-width: 980px) {
  .search-box__icon {
    top: 8px;
  }
}

@media screen and (min-width: 736px) {
  .products-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

.products-filters {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 240px;
  padding: 10px;
  background-color: #fff;
  transform: translateX(-240px);
  transition: transform 150ms ease-in-out;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
}
@media screen and (min-width: 736px) {
  .products-filters {
    flex: 0 0 20%;
    position: initial;
    width: initial;
    padding: initial;
    background-color: initial;
    transform: initial;
    z-index: initial;
    opacity: 1;
    visibility: visible;
  }
}

.products-filters--visible {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

@media screen and (min-width: 736px) {
  .products-items {
    flex: 0 0 75%;
  }
}

@supports (display: grid) {
  .products-grid {
    display: grid;
    grid-gap: 30px;
    grid-template-columns: 1fr;
  }
  @media screen and (min-width: 480px) {
    .products-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media screen and (min-width: 980px) {
    .products-grid {
      grid-template-columns: repeat(3, 1fr);
      grid-gap: 40px;
    }
  }
}
@supports not (display: grid) {
  .products-grid {
    display: flex;
    flex-wrap: wrap;
  }
  .products-grid > * {
    flex: 0 0 100%;
    margin-bottom: 30px;
  }
  @media screen and (min-width: 480px) {
    .products-grid > * {
      flex: 0 0 47%;
      margin-right: 3%;
    }
  }
  @media screen and (min-width: 980px) {
    .products-grid > * {
      flex: 0 0 30%;
      margin-right: 3%;
    }
  }
}
.products-grid-index {
  margin-top: 40px;
}

.filter-header {
  padding-bottom: 8px;
  margin-bottom: 20px;
  border-bottom: 1px solid #c83434;
}

.filter-item {
  margin-bottom: 16px;
}

.filter-brands {
  margin-bottom: 20px;
}

@supports (display: grid) {
  .brands {
    display: grid;
    grid-template-columns: 1fr;
    width: 90%;
    margin: auto;
    margin-top: 40px;
  }
  @media screen and (min-width: 480px) {
    .brands {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media screen and (min-width: 980px) {
    .brands {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  @media screen and (min-width: 1200px) {
    .brands {
      grid-template-columns: repeat(4, 1fr);
    }
  }
}
@supports not (display: grid) {
  .brands {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 40px;
  }
  .brands > * {
    margin: initial;
    margin-bottom: 30px;
  }
  @media screen and (min-width: 480px) {
    .brands > * {
      flex: 0 0 40%;
      margin-right: 3%;
    }
  }
  @media screen and (min-width: 980px) {
    .brands > * {
      flex: 0 0 23%;
      margin-right: 3%;
    }
  }
}
.brand {
  width: 70%;
  margin: auto;
}
@media screen and (min-width: 736px) {
  .brand {
    width: 100%;
    margin: initial;
  }
}

.product {
  padding: 20px 0;
  border: 1px solid rgba(0, 0, 0, 0.2);
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.16);
}
@media screen and (min-width: 736px) {
  .product {
    padding-top: 20px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
}

.product-img {
  display: block;
  width: 40%;
  margin: auto;
}
@media screen and (min-width: 736px) {
  .product-img {
    width: 70%;
  }
}

.product-img-index {
  display: block;
  width: 40%;
  margin: auto;
}
@media screen and (min-width: 736px) {
  .product-img-index {
    width: 50%;
  }
}

@media screen and (min-width: 736px) {
  .product-name {
    padding: 15px 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
  }
}

.drawer-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: all 150ms linear;
  visibility: hidden;
  z-index: 4;
}

.drawer-overlay--visible {
  opacity: 1;
  visibility: visible;
}

.products-empty {
  padding: 25px;
  margin: auto;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 736px) {
  .products-empty {
    padding: 40px;
  }
}

.product-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.product-picture {
  flex: 0 0 50%;
  margin: auto;
}
@media screen and (min-width: 736px) {
  .product-picture {
    flex: 0 0 40%;
    margin: initial;
  }
}

.product-content {
  flex: 0 0 90%;
  margin: auto;
}
@media screen and (min-width: 736px) {
  .product-content {
    flex: 0 0 55%;
    margin: initial;
    margin-top: 25px;
  }
}

.product-description {
  margin-top: 10px;
}
.product-description p {
  margin-bottom: 5px;
}

.product-packaging {
  margin-top: 15px;
}
.product-packaging p {
  margin-bottom: 5px;
  color: rgba(0, 0, 0, 0.6);
}

.button {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  display: inline-block;
  width: 100%;
  padding: 12px 30px;
  margin-top: 20px;
  background-color: rgb(212.2857142857, 90.7142857143, 90.7142857143);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
}
@media screen and (min-width: 736px) {
  .button {
    width: initial;
  }
}

.product-buy {
  margin-top: 40px;
  display: none;
}

.product-buy--visible {
  display: block;
}

.product-buy-option {
  position: relative;
  display: flex;
  align-items: center;
  text-align: left;
  padding: 10px 25px;
  margin: 30px 10px;
  border-radius: 2px;
}
@media screen and (min-width: 736px) {
  .product-buy-option {
    display: inline-flex;
  }
}
.product-buy-option.-green {
  background-color: #25d366;
}
.product-buy-option.-red {
  background-color: #ea4335;
}
.product-buy-option.-blue {
  background-color: #0689d8;
}
.product-buy-option a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.product-buy-option svg {
  fill: #fff;
}
.product-buy-option p {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  margin-left: 20px;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.wpp-desktop {
  display: none;
}
@media screen and (min-width: 980px) {
  .wpp-desktop {
    display: initial;
  }
}

.wpp-mobile {
  display: block;
}
@media screen and (min-width: 980px) {
  .wpp-mobile {
    display: none;
  }
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  margin-top: 30px;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.pagination__arrow {
  background-color: #fff;
}
.pagination__arrow:active .pagination__icon, .pagination__arrow:hover .pagination__icon {
  stroke: rgb(212.2857142857, 90.7142857143, 90.7142857143);
}

.pagination__icon {
  width: 22px;
  height: 22px;
  stroke: rgba(0, 0, 0, 0.5);
  transform: translateY(2px);
}

.pagination__number {
  display: inline-block;
  padding: 5px;
  margin-right: 25px;
  color: rgba(0, 0, 0, 0.6);
  font-size: 1.6rem;
}
.pagination__number:last-child {
  margin-right: 0;
}
.pagination__number:hover, .pagination__number:active {
  color: rgb(212.2857142857, 90.7142857143, 90.7142857143);
}

.pagination__number--active {
  color: rgb(212.2857142857, 90.7142857143, 90.7142857143);
  font-size: 1.8rem;
}

.footer {
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #F5AD48;
}
@media screen and (min-width: 736px) {
  .footer {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.footer > .container {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}

.footer-text {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  color: #fff;
  font-size: 1.5rem;
  margin: auto auto 5px;
}
@media screen and (min-width: 736px) {
  .footer-text {
    margin: initial;
  }
}

.footer-link {
  color: #fff;
}
.footer-link:hover {
  color: #c83434;
}

.nav-link {
  position: relative;
}
.nav-link[data-updated]::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -12px;
  width: 6px;
  height: 6px;
  background-color: #c83434;
  border-radius: 50%;
  opacity: 0.8;
  animation: pulse 2s infinite;
  transform: translateY(-50%);
}

@keyframes pulse {
  0% {
    transform: translateY(-50%) scale(0.95);
    box-shadow: 0 0 0 0 rgba(200, 52, 52, 0.4);
  }
  70% {
    transform: translateY(-50%) scale(1);
    box-shadow: 0 0 0 6px rgba(200, 52, 52, 0);
  }
  100% {
    transform: translateY(-50%) scale(0.95);
    box-shadow: 0 0 0 0 rgba(200, 52, 52, 0);
  }
}
.container {
  width: 90%;
  margin: auto;
}
@media screen and (min-width: 980px) {
  .container {
    width: 90%;
  }
}
@media screen and (min-width: 1200px) {
  .container {
    width: 80%;
  }
}
@media screen and (min-width: 1600px) {
  .container {
    width: 75%;
  }
}

.container-smaller {
  width: 90%;
  margin: auto;
}
@media screen and (min-width: 736px) {
  .container-smaller {
    width: 75%;
  }
}
@media screen and (min-width: 980px) {
  .container-smaller {
    width: 65%;
  }
}
@media screen and (min-width: 1200px) {
  .container-smaller {
    width: 55%;
  }
}

.section-padding {
  padding-top: 30px;
  padding-bottom: 50px;
}
@media screen and (min-width: 736px) {
  .section-padding {
    padding-top: 50px;
    padding-bottom: 80px;
  }
}

.section-padding-product {
  padding-top: 80px;
  padding-bottom: 230px;
}
@media screen and (min-width: 736px) {
  .section-padding-product {
    padding-top: 100px;
    padding-bottom: 230px;
  }
}

.section-padding-download {
  padding-top: 80px;
  padding-bottom: 260px;
}
@media screen and (min-width: 736px) {
  .section-padding-download {
    padding-top: 80px;
    padding-bottom: 230px;
  }
}

.section-padding-success {
  padding-top: 80px;
}
@media screen and (min-width: 736px) {
  .section-padding-success {
    padding-top: 80px;
  }
}

.section-padding-top-bigger {
  padding-top: 80px;
}

@supports (display: grid) {
  .grid-three-columns {
    display: grid;
    grid-gap: 30px;
    grid-template-columns: 1fr;
  }
  @media screen and (min-width: 480px) {
    .grid-three-columns {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media screen and (min-width: 980px) {
    .grid-three-columns {
      grid-template-columns: repeat(3, 1fr);
      grid-gap: 40px;
    }
  }
}
@supports not (display: grid) {
  .grid-three-columns {
    display: flex;
    flex-wrap: wrap;
  }
  .grid-three-columns > * {
    flex: 0 0 100%;
    margin: initial;
    margin-bottom: 30px;
  }
  @media screen and (min-width: 480px) {
    .grid-three-columns > * {
      flex: 0 0 47%;
      margin-right: 3%;
    }
  }
  @media screen and (min-width: 980px) {
    .grid-three-columns > * {
      flex: 0 0 30%;
      margin-right: 3%;
    }
  }
}
.text-centered {
  text-align: center;
}

.gray-background {
  background-color: #f5f5f5;
}