@charset "UTF-8";

/* ----- COLOURS ----- */
/* ----- NAVIGATION ----- */
/* ----- BUTTONS/LINKS ----- */
/* ----- CARD ----- */
/* ----- LISTINGS ----- */
/* ----- SPACING ----- */
/* ----- TABLES ----- */
/* ----- FONTS ----- */
/* ----- CALENDAR ----- */
/* ----- COLOURS ----- */
/* ----- NAVIGATION ----- */
/* ----- BUTTONS/LINKS ----- */
/* ----- CARD ----- */
/* ----- LISTINGS ----- */
/* ----- SPACING ----- */
/* ----- TABLES ----- */
/* ----- FONTS ----- */
/* ----- CALENDAR ----- */
.color--primary {
  color: #f1ff00;
}

/*
    Basic up/down/left/right animation primarily used for header/banner content triggered either via emergence js or on hover of element
    Note: margins are used to perform animation but this can cause issues when applied to elements with exiting margins so animation for left/right
    is different to up/down
*/
.animatedefault,
.animateup,
.animatedown,
.animateleft:not([class*=offset]),
.animateright:not([class*=offset]) {
  opacity: 0;
  visibility: hidden;
  transition: visibility 0s linear 300ms, opacity 300ms, margin 300ms;
}

[class*=offset].animateleft > *,
[class*=offset].animateright > * {
  opacity: 0;
  visibility: hidden;
  transition: visibility 0s linear 300ms, opacity 300ms, margin 300ms;
}

.animatedefault, .animateup {
  margin-top: 20px;
}

.animatedown {
  margin-top: -20px;
}

.animateleft:not([class*=offset]) {
  margin-left: -20px;
}

.animateright:not([class*=offset]) {
  margin-left: 20px;
}

[class*=offset].animateleft > * {
  margin-left: -20px;
}

[class*=offset].animateright > * {
  margin-left: 20px;
}

[data-hover=hidden] .dim {
  transition: background 300ms;
}

[data-emergence=visible].animatedefault, [data-hover=hidden]:hover .animatedefault,
[data-emergence=visible].animateup, [data-hover=hidden]:hover .animateup,
[data-emergence=visible].animatedown, [data-hover=hidden]:hover .animatedown {
  opacity: 1;
  margin-top: 0;
  visibility: visible;
  transition: visibility 0s linear 0s, opacity 300ms, margin 300ms;
  transition-delay: 250ms;
}

[data-emergence=visible].animateleft:not([class*=offset]), [data-hover=hidden]:hover .animateleft:not([class*=offset]),
[data-emergence=visible].animateright:not([class*=offset]), [data-hover=hidden]:hover .animateright:not([class*=offset]),
[data-emergence=visible].animateleft[class*=offset] > *,
[data-emergence=visible].animateright[class*=offset] > *,
[data-hover=hidden]:hover div[class*=offset].animateleft > *,
[data-hover=hidden]:hover div[class*=offset].animateright > * {
  opacity: 1;
  margin-left: 0;
  visibility: visible;
  transition: visibility 0s linear 0s, opacity 300ms, margin 300ms;
  transition-delay: 250ms;
}

@media (min-width: 1025px) {
  [data-hover=hidden]:not(:hover) .dim {
    background: none;
  }
}

@media (max-width: 1024px) {
  [data-hover=hidden] .animatedefault,
  [data-hover=hidden] .animateup,
  [data-hover=hidden] .animatedown,
  [data-hover=hidden] .animateleft,
  [data-hover=hidden] .animateright {
    opacity: 1 !important;
    visibility: visible !important;
  }
}

#footer {
  padding: 80px 0;
  background: #000;
}

footer p {
  text-align: left;
}

footer p.copyright {
  font-size: 1.1em;
  font-weight: 600;
  margin-bottom: 0;
}

#copyright {
  padding: 10px 0;
}

.legal-nav li, .footer-nav li {
  margin-right: 15px;
}

.footer-nav a {
  text-transform: uppercase;
  list-style-type: none;
  font-weight: 600;
  color: #000;
  margin: 0;
}

.footer-nav a:hover {
  color: #f1ff00;
}

ul.footer-logos {
  list-style: none;
  text-align: right;
  margin: 0;
  padding: 0;
}

.footer-logos li {
  display: inline-block;
  margin-left: 10px;
  vertical-align: text-top;
}

footer .social-accounts .fa {
  background: #f1ff00;
  border-radius: 50%;
  height: 2em;
  width: 2em;
  color: #fff;
  font-size: 0.6em;
  padding-top: .5em;
  text-align: center;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

footer .social-accounts .fa:hover {
  background: #000;
}

.footer-nav li {
  margin-bottom: 1em;
}

.fa-googleplus:before {
  content: "\f0d5";
}

.footer-stacked #copyright {
  padding: 20px 0 0 0;
}

.footer-stacked img.logo {
  margin: 0 auto;
}

.footer-stacked ul.footer-logos {
  text-align: center;
}

.footer-stacked .phone-number, .footer-stacked .email {
  display: inline-block;
}

.footer-stacked .email {
  margin: 0 0 0 20px;
}

.footer-stacked .legal-nav a {
  font-size: 1.4em;
}

@media (max-width: 992px) {
  ul.footer-logos {
    text-align: left;
  }
  .footer-logos li {
    margin-left: 0;
    margin-right: 10px;
  }
}

.card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
  border: none;
  margin-bottom: 40px;
  background: transparent;
}

.card-feature {
  color: #ffffff;
  border: none;
  background: #f1ff00;
  margin-bottom: 40px;
}

.card .share {
  float: right;
}

.card .date {
  color: #B2B2B2;
}

.card-feature .date {
  color: #ffffff;
}

.card .card-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 2em;
}

.card a {
  display: block;
}

.card a .tag {
  top: 10px;
  width: auto;
  height: auto;
  padding: 1em;
  font-size: 1.1em;
  color: #fff;
  background: #94cebb;
}

.card a.btn {
  margin-top: auto;
}

.card-feature a.btn {
  color: #fff;
  background: none;
}

.card-feature a.btn:hover {
  color: #ffffff;
  background: none;
}

.card a.title, .card h4,
.card-feature a.title, .card-feature h4 {
  color: #000;
  margin-bottom: 20px;
}

.card-feature a.title, .card-feature h4 {
  color: #ffffff;
}

.card .image {
  margin-bottom: 20px;
}

#main-content #shop-listing-block__preview.hidden {
  display: none;
}

#shop-listing-block__preview.hidden {
  display: block;
}

.shopify-buy-frame--product {
  background: #FFFFFF;
  box-shadow: 4px 4px 32px rgba(0, 0, 0, 0.25);
  border-radius: 20px;
  max-width: 280px;
  padding: 10px;
}

.shopify-buy-frame--books .shopify-buy__product__variant-img-wrapper {
  display: flex;
}

.shopify-buy-frame--books .shopify-buy__product__variant-img-wrapper img {
  margin-bottom: 0;
}

.shopify-buy-frame--books .shopify-buy__product__variant-img-wrapper a:not(:first-child) {
  display: inline;
}

.shopify-buy-frame--books a:not(:first-child) {
  display: inline;
}

.shopify-buy-frame--books .book-imgs--left {
  width: 65%;
  padding-right: .5rem;
  align-self: stretch;
}

.shopify-buy-frame--books .book-imgs--left img {
  height: 100%;
  object-fit: cover;
}

.shopify-buy-frame--books .book-imgs--right {
  width: 35%;
  padding-left: .5rem;
}

.shopify-buy-frame--books .book-imgs--right a:first-child img {
  margin-bottom: 1rem;
}

.shopify-buy__product__variant-img {
  width: 100%;
}

.shopify-buy__product__variant-img-mfp .mfp-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.shopify-buy__product__variant-img-mfp .mfp-figure::after {
  background-color: #fff;
}

.shopify-buy__product__variant-img-mfp img.mfp-img {
  height: 80vh;
  object-fit: cover;
}

.shopify-buy__product__variant-img-mfp .mfp-close {
  width: 50px;
  height: 50px;
  opacity: 1;
  right: -30px;
  top: 4px;
}

.shopify-buy__product__variant-img-mfp .mfp-close::after {
  content: ' ';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 50px;
  height: 50px;
  background-size: cover;
}

.shopify-buy__product__variant-img-mfp .mfp-arrow-right::before,
.shopify-buy__product__variant-img-mfp .mfp-arrow-left::before {
  content: none;
}

.shopify-buy__product__variant-img-mfp .mfp-arrow-right::after {
  border-left-color: #f7ff33;
  border-left-width: 40px;
  margin-right: 39px;
  margin-left: 0;
}

.shopify-buy__product__variant-img-mfp .mfp-arrow-left::after {
  border-right-color: #f7ff33;
  border-right-width: 40px;
  margin-left: 39px;
  margin-right: 0;
}

.shopify-buy__product__variant-img-mfp .mfp-arrow:after {
  border-top-width: 30px;
  border-bottom-width: 30px;
}

.shopify-buy__product__variant-img-wrapper {
  position: relative;
  padding: .625rem;
}

.shopify-buy__product__variant-img-wrapper .slick-dots {
  margin: 0 6px -22px;
  padding: 0.4em 0 0.8em;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 0 0 10px 10px;
}

.shopify-buy__product__variant-img-wrapper--desktop {
  display: none !important;
}

.shopify-buy__product__variant-img-wrapper--desktop:hover .shopify-buy__product__variant-img-zoom__el {
  stroke: #f7ff33;
}

@media (min-width: 767px) {
  .shopify-buy__product__variant-img-wrapper--desktop {
    display: flex !important;
    align-items: flex-start;
  }
}

.shopify-buy__product__variant-img-wrapper--mobile {
  display: none !important;
}

@media (max-width: 767px) {
  .shopify-buy__product__variant-img-wrapper--mobile {
    display: block !important;
  }
}

.shopify-buy__product__variant-img-wrapper a:not(:first-child) {
  display: none;
}

.shopify-buy__product__variant-img-wrapper svg {
  position: absolute;
  right: 10px;
  bottom: 24px;
  cursor: pointer;
  width: 35px;
  height: 35px;
}

.shopify-buy__product__variant-img-zoom__el {
  stroke: black;
}

.shopify-buy__product__variant-img-wrapper svg:hover .shopify-buy__product__variant-img-zoom__el {
  stroke: #f7ff33;
}

.shopify-buy-frame img {
  border-radius: 9px;
}

.shopify-buy__product__top-details {
  margin-bottom: 1em;
}

@media (min-width: 751px) {
  .shopify-buy__product__top-details {
    min-height: 16em;
  }
}

.shopify-buy__product__title {
  font-family: "Aileron Light", sans-serif;
  font-size: 1.6em;
  line-height: 23px;
  letter-spacing: 0.09em;
  text-transform: capitalize;
  color: #000000;
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 5px;
  width: 100%;
}

.shopify-buy__product__title-underline {
  margin-left: 10px;
  width: 114.5px;
  height: 0px;
  border: 0.5px solid #000000;
  margin-bottom: 10px !important;
}

.shopify-buy__product-description {
  width: 100%;
  font-family: "Aileron Light", sans-serif;
  font-size: 1.3em;
  line-height: 17px;
  letter-spacing: 0.09em;
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 10px;
  min-height: 6.5em;
}

.shopify-buy__product-description p {
  font-size: 1em;
  line-height: 17px;
}

.shopify-buy__option-select-box {
  display: flex;
  margin-left: 10px;
}

.shopify-buy__option-select-box div:nth-child(1) {
  margin-right: 15px;
}

.shopify-buy__option-select-box p, .shopify-buy__quantity-select-wrapper p {
  font-family: "Aileron Light", sans-serif;
  font-size: 1.4em;
  font-weight: 600;
  line-height: 17px;
  letter-spacing: 0.09em;
  margin-bottom: 5px !important;
}

.shopify-buy__product__price-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 15px;
  margin-bottom: 15px;
}

.shopify-buy__product__price {
  font-family: "Aileron Bold", sans-serif;
  font-weight: bold;
  font-size: 3em;
  line-height: 47px;
  letter-spacing: 0.09em;
}

.shopify-buy__btn-wrapper, .shopify-buy__btn-wrapper__books {
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 20px;
}

.shopify-buy__btn-wrapper__books button:nth-child(1) {
  margin-bottom: 10px;
  border: none;
  background-color: #C4C4C4;
}

.shopify-buy__btn-wrapper__books button:nth-child(1):hover {
  background-color: black;
  color: white;
}

.shopify-buy-frame--books .shopify-buy__btn {
  width: 100%;
}

.shopify-buy__btn {
  width: 100%;
  color: black;
  border: 1px solid black;
}

.shopify-buy__quantity-select-wrapper {
  display: flex;
  justify-content: center;
}

.shopify-buy__quantity-select-wrapper--books > div {
  width: 50%;
}

.shopify-buy__gallery {
  max-width: 1000px;
  z-index: 10;
  background: #FFFFFF;
  box-shadow: 5px 5px 38px rgba(0, 0, 0, 0.25);
  border-radius: 24px;
  padding: 1.5rem;
  cursor: default;
}

.shopify-buy__gallery-bg {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.5);
  top: 0;
  left: 0;
  z-index: 100;
  cursor: pointer;
}

.shopify-buy__gallery-carousel--main .slick-slide {
  display: flex;
  justify-content: center;
}

.shopify-buy__gallery-carousel--main img {
  max-height: 60vh;
  object-fit: cover;
  width: auto !important;
  max-width: 100%;
  margin-right: auto;
  margin-bottom: 0 !important;
  margin-left: auto;
  padding: 3rem;
}

.shopify-buy__gallery-carousel--thumbs {
  margin-top: 25px;
  padding: 0 50px;
  /* Slick overrides */
}

.shopify-buy__gallery-carousel--thumbs .slick-slide {
  padding: 0 16px;
  width: 150px;
  cursor: pointer;
}

.shopify-buy__gallery-carousel--thumbs .slick-slide.is-clicked div {
  position: relative;
}

.shopify-buy__gallery-carousel--thumbs .slick-slide.is-clicked div::after {
  content: " ";
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 3px solid #f1ff00;
  border-radius: 9px;
}

.shopify-buy__gallery-carousel--thumbs .slick-track {
  margin-right: auto;
  margin-left: auto;
}

.shopify-buy__gallery-carousel--thumbs .slick-prev {
  left: -10px;
}

.shopify-buy__gallery-carousel--thumbs .slick-next {
  right: -10px;
}

.shopify-buy__gallery-carousel--thumbs .slick-arrow::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.shopify-buy__gallery-carousel--thumbs img {
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
  margin: 0 !important;
}

.shopify-buy__gallery p {
  font-family: "Aileron Light", sans-serif;
  font-weight: 600;
  font-size: 2em;
  line-height: 1.35em;
  letter-spacing: 0.09em;
  padding: 1rem 4rem 1rem 1rem;
}

.shopify-buy__gallery-wrapper, .shopify-buy__subscribe-wrapper {
  position: relative;
}

.shopify-buy__gallery svg {
  position: absolute;
  right: 1rem;
  top: 14px;
  width: 2rem;
  height: 2rem;
  cursor: pointer;
}

.shopify-buy__gallery-close__el {
  stroke: black;
}

.shopify-buy__gallery-close:hover .shopify-buy__gallery-close__el {
  stroke: #C4C4C4;
}

.shopify-buy__subscribe-card {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  padding: 2rem;
  overflow-y: scroll;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
}

.shopify-buy__subscribe-card::before {
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: " ";
  background: rgba(0, 0, 0, 0.25);
}

.shopify-buy__subscribe {
  position: relative;
  width: auto;
  max-width: 100%;
  height: auto;
  background: #FFFFFF;
  box-shadow: 5px 5px 38px rgba(0, 0, 0, 0.25);
  border-radius: 1.5rem;
}

.shopify-buy__subscribe-bg {
  position: absolute;
  top: 0;
  left: 0;
}

/* .shopify-buy__subscribe-close circle{
    fill: #f7ff33;
}
 */
.shopify-buy__subscribe-title__wrapper, .shopify-buy__subscribe-btn__wrapper {
  display: flex;
  justify-content: center;
}

.shopify-buy__subscribe-title {
  text-transform: uppercase;
  font-family: "Aileron Bold", sans-serif;
  font-size: 1.6em;
  letter-spacing: 4px;
}

.shopify-buy__subscribe-content .shopify-buy__subscribe-items {
  padding-left: 40px;
  padding-right: 40px;
}

.shopify-buy__subscribe-item-wrapper {
  display: flex;
}

.shopify-buy__subscribe-item-wrapper .icon-earth {
  margin-left: -2px;
}

.shopify-buy__subscribe-item-wrapper svg {
  margin-right: 10px;
}

.shopify-buy__subscribe-items p {
  margin-bottom: 10px;
  font-family: "Aileron Light", sans-serif;
  font-size: 1.5em;
  letter-spacing: 0.09em;
}

.shopify-buy__subscribe-form {
  min-height: auto !important;
  margin-top: 10px;
}

.shopify-buy__subscribe-form .form-control::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  text-transform: uppercase;
  font-family: "Aileron Bold", sans-serif;
  font-size: 1em;
  letter-spacing: 4px;
  color: black;
}

.shopify-buy__subscribe-form .form-control:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  text-transform: uppercase;
  font-family: "Aileron Bold", sans-serif;
  font-size: 1em;
  letter-spacing: 4px;
  color: black;
}

.shopify-buy__subscribe-form .form-control::-ms-input-placeholder {
  /* Microsoft Edge */
  text-transform: uppercase;
  font-family: "Aileron Bold", sans-serif;
  font-size: 1em;
  letter-spacing: 4px;
  color: black;
}

.shopify-buy__subscribe-form .form-control {
  border-bottom: 1px solid black;
  border-left: none;
  border-right: none;
  border-top: none;
}

.shopify-buy__subscribe-content .shopify-buy__btn {
  margin-top: 30px;
  width: 200px;
  background-color: #f7ff33;
  border: none;
  font-family: "Aileron Bold", sans-serif;
}

.shopify-buy__subscribe-content .shopify-buy__btn:hover {
  background-color: black;
  color: white;
}

.shopify-buy__subscribe img {
  width: 700px;
  max-width: 100%;
  height: 150px;
  object-fit: cover;
  border-top-left-radius: 1.5rem;
  border-top-right-radius: 1.5rem;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.shopify-buy__subscribe-content {
  padding: 2rem 4rem;
  min-height: auto !important;
}

.shopify-buy__subscribe-close {
  border: none;
}

.shopify-buy__subscribe-close img {
  position: absolute;
  right: -1.5625rem;
  top: -1.5625rem;
  width: 3.125rem;
  height: 3.125rem;
  box-shadow: none;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.sp {
  padding-bottom: 0;
  padding-top: 30px;
}

.filter-list {
  font-family: "Aileron Light", sans-serif;
  font-style: normal;
  text-transform: uppercase;
}

.filter-list .wrapper__reset {
  margin-top: 8px;
  margin-left: 30px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

@media (max-width: 768px) {
  .filter-list .wrapper__reset {
    margin-left: 0;
    text-align: center;
  }
}

.filter-list .show-reset {
  opacity: 1;
}

.filter-list .filter-list__checkboxs {
  user-select: none;
}

.filter-list .shopify-buy__currency-selector {
  margin-top: -110px;
}

@media (max-width: 768px) {
  .filter-list .shopify-buy__currency-selector {
    margin-top: 40px;
  }
}

.filter-list .shopify-buy__gallery-close {
  width: 13px;
  cursor: pointer;
}

.filter-list .shopify-buy__gallery-close:hover .shopify-buy__gallery-close__el {
  stroke: black;
}

.producttabs {
  margin-bottom: 30px;
}

.filter-list .filter-list__title {
  line-height: 100px;
  letter-spacing: 0.28em;
  font-size: 5em !important;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 30px !important;
}

.shop-listing .filter-list .filter-list__title {
  line-height: 1.2em;
  margin-bottom: 2em;
  font-size: 3em;
}

@media (min-width: 768px) {
  .shop-listing .filter-list .filter-list__title {
    padding: 0 2em;
    font-size: 5em;
    margin-bottom: 1.2em;
  }
}

.shop-listing .filter-list .filter-list__title span {
  display: block;
}

.filter-list .filter-list__filterby {
  font-weight: bold;
  font-size: 1.6em;
  line-height: 1.8em;
  text-align: center;
}

.filter-list .filter-list__elements {
  display: flex;
  justify-content: center;
  position: relative;
  font-weight: normal;
}

@media (max-width: 768px) {
  .filter-list .filter-list__elements {
    display: block;
  }
}

.filter-list .filter-list__elements .wrapper {
  position: inherit;
}

.filter-list .filter-list__elements .wrapper .show {
  display: block !important;
  animation: fadeIn 0.2s ease-in;
  z-index: 12;
}

.filter-list .filter-list__elements .wrapper .rotate {
  transform: scaleY(-1);
  animation: fadeIn 0.2s ease-in-out;
}

.filter-list .filter-list__elements .wrapper .upper-z {
  z-index: 13 !important;
}

.filter-list .filter-list__elements .wrapper .options {
  position: absolute;
  display: none;
  left: -25px;
  top: -10px;
  padding: 50px 25px 10px 25px;
  background: #FFFFFF;
  box-shadow: 4px 4px 32px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
  .filter-list .filter-list__elements .wrapper .options {
    left: 0;
    right: 0;
    margin: auto;
    width: max-content;
  }
}

.filter-list .filter-list__elements .wrapper .options .elem {
  display: flex;
  margin-bottom: 10px;
}

.filter-list .filter-list__elements .wrapper .options label, .filter-list .filter-list__elements .wrapper .options .label {
  font-size: 1.4em;
  line-height: 22px;
  letter-spacing: 0.28em;
  margin-left: 15px;
  text-align: left;
  min-width: 70px;
  margin-top: -4px;
}

.filter-list .filter-list__elements .wrapper .options .label {
  text-decoration: none;
  font-weight: normal;
  margin-left: 0;
}

.filter-list .filter-list__elements .wrapper .options--clothing-types {
  min-width: 240px;
}

.filter-list .filter-list__elements .wrapper .options--gender {
  min-width: 160px;
}

.filter-list .filter-list__elements .wrapper .options__title {
  font-size: 1.6em;
  line-height: 30px;
  letter-spacing: 0.28em;
  margin-right: 40px;
  cursor: pointer;
  z-index: 11;
  position: relative;
}

@media (max-width: 768px) {
  .filter-list .filter-list__elements .wrapper .options__title {
    text-align: center;
    margin-right: 0;
  }
}

.filter-list .row__products {
  min-height: 500px;
}

@media screen and (max-width: 975px) {
  .shopify-buy__gallery {
    width: 90% !important;
  }
  .shopify-buy__gallery__variant-img {
    width: 100%;
  }
  .shopify-buy__subscribe {
    width: 540px;
    border: none;
    box-sizing: content-box;
  }
  .shopify-buy__subscribe img {
    width: 100%;
    height: 20vh;
    object-fit: cover;
  }
  .shopify-buy__subscribe-content .shopify-buy__subscribe-items {
    padding: 0;
  }
  .shopify-buy__subscribe-close img {
    width: 3.125rem;
    height: 3.125rem;
  }
  .shopify-buy__subscribe-card {
    padding: 0;
  }
}

@media screen and (max-width: 768px) {
  /* .shopify-buy__subscribe-form .col{
        display: contents;
        margin-bottom: 40px;
    } */
  .shopify-buy__subscribe-form .col input {
    margin-bottom: 10px;
  }
  .shopify-buy__subscribe-close img {
    right: 1.5625rem;
    top: 1.5625rem;
    width: 3.125rem;
    height: 3.125rem;
  }
  .shopify-buy__subscribe {
    width: 100vw;
    height: 100vh;
    border-radius: 0;
  }
  .shopify-buy__subscribe img {
    border-radius: 0;
  }
}

ul.tabs {
  padding: 0;
  float: left;
  width: 100%;
  border-bottom: 1px solid #000;
  margin: 15px 0 30px 0;
}

ul.tabs li {
  display: block;
  float: left;
}

ul.tabs li a {
  display: block;
  padding: 10px 12px;
  background: #000;
  color: #000;
  text-align: center;
}

ul.tabs li a.active {
  background: #f1ff00;
  color: #B2B2B2;
}

.tab-content {
  display: none;
}

.tab-content-active {
  display: initial;
}

.accordion .toggle {
  display: block;
  width: 100%;
  margin-top: 10px;
  padding: 10px 70px 10px 10px;
  color: #000;
  background: #000;
  font-weight: bold;
  text-align: left;
  cursor: pointer;
  border: none;
  outline: none;
}

.accordion .toggle .show,
.accordion .toggle .hide,
.accordion .open .toggle .hide {
  display: block;
  float: right;
  margin-right: -60px;
}

.accordion .toggle .hide,
.accordion .open .toggle .show {
  display: none;
}

.accordion .panel {
  display: none;
  padding: 15px;
  background: rgba(0, 0, 75, 0.05);
}

/* hides slides until slick slider inited */
.slider:not(.slick-initialized) > *:not(:first-of-type),
.slider-thumbs:not(.slick-initialized) > * {
  display: none;
}

.slider-nav {
  padding: 15px 0;
  background: rgba(0, 0, 0, 0.5);
}

.slider-nav p {
  float: left;
  margin: 0 20px 0 0;
}

.slider-nav ul {
  margin: 0;
  padding: 0;
}

.slider-nav li {
  list-style: none;
  margin: 0 15px 0 0;
  display: inline-block;
}

.slider-nav li a {
  color: #fff;
  opacity: 0.5;
}

.slider-nav li a.active {
  opacity: 1;
}

/* Slider Pause Button for slider with thumbs */
.slider[data-pause="false"] + .thumbs .slick-current > div {
  cursor: pointer;
  position: relative;
}

.slider[data-pause="false"] + .thumbs .slick-current > div:after {
  content: "\f04c";
  display: inline-block;
  font: normal normal normal 40px/100px FontAwesome;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  width: 100%;
  text-align: center;
}

.slider[data-pause="false"] + .thumbs .slider-thumbs.paused .slick-current > div:after {
  content: "\f04b";
}

.slider[data-pause="false"] + .thumbs .slick-current > div > div:after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.slider[data-pause="false"] + .thumbs .slick-current:hover > div > div:after {
  background: rgba(0, 0, 0, 0.75);
}

@media (max-width: 767px) {
  .slider[data-pause="false"] + .thumbs .slick-current > div:after {
    line-height: 75px;
    font-size: 32px;
  }
}

@media (max-width: 575px) {
  .slider[data-pause="false"] + .thumbs .slick-current > div:after {
    line-height: 60px;
  }
}

.content-slider div.container {
  margin-top: 80px;
  margin-bottom: 80px;
}

.content-slider .inner-slider p.title {
  font-size: 2.2em;
}

.content-slider .inner-slider p {
  margin-bottom: 2px;
}

.content-slider .inner-slider p:last-child {
  margin-bottom: 30px;
}

.content-slider .inner-slider .slick-slide {
  position: relative;
}

.content-slider .inner-slider .slick-slide > div {
  opacity: 0.25;
}

.content-slider .inner-slider .slick-slide.slick-active > div,
.content-slider .inner-slider .slick-slide.slick-current > div,
.content-slider .inner-slider .slick-slide.slick-current-prev > div {
  opacity: 1;
}

.content-slider .inner-slider .slick-slide a {
  display: block;
  margin-top: 10px;
}

.content-slider .slick-slide picture {
  opacity: 0;
}

.content-slider .slick-slide.loaded picture {
  opacity: 100;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .vert-slider .slick-bars {
    position: absolute;
    top: 0;
    left: 0;
  }
  .vert-slider-right .slick-bars {
    left: initial;
    right: 0;
  }
  .vert-slider .slick-bars li {
    display: block;
    padding-bottom: 10px;
  }
  .vert-slider .slick-bars button {
    width: 10px;
    height: 50px;
  }
  .vert-slider-left .slick-slide > div {
    padding-left: 30px;
  }
  .vert-slider-right .slick-slide > div {
    padding-right: 30px;
  }
}

.box-close {
  position: absolute;
  top: 5px;
  right: 5px;
  cursor: pointer;
}

/* POPUPS */
.nudge-box.popup {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  z-index: 9999999;
  justify-content: center;
  align-items: center;
  display: none;
}

.nudge-box.popup.active {
  display: flex;
}

.nudge-box.popup .box-inner {
  max-width: 90%;
  max-height: 90%;
  position: relative;
}

.nudge-box.popup .box-close i {
  background: #000;
  border-radius: 50%;
  height: 1.3em;
  width: 1.3em;
  color: #fff;
  padding-top: 0.1em;
  text-align: center;
}

/* POPUP IMAGE */
.nudge-box.popupimage img {
  max-width: 100%;
  max-height: 100vh;
}

/* SLIDEOUTS */
.nudge-box.slideout {
  top: 20vh;
  position: fixed;
  z-index: 999999;
  transition: .3s ease-in-out;
}

.nudge-box.slideout img {
  max-width: 100%;
  height: auto !important;
}

.nudge-box.slideoutleft {
  left: -275px;
}

.nudge-box.slideoutright {
  right: -275px;
}

.nudge-box.slideoutleft {
  left: -265px;
}

.nudge-box.slideoutright:hover {
  right: -265px;
}

.nudge-box.active.slideoutleft {
  left: 0;
}

.nudge-box.active.slideoutright {
  right: 0;
}

.nudge-box.slideout .box-label {
  position: absolute;
  left: -75px;
  width: 75px;
  background: #f1ff00;
  color: #B2B2B2;
  cursor: pointer;
  padding: 10px;
}

.nudge-box.slideout .box-inner {
  width: 275px;
  padding: 25px;
  background: #fff;
  max-height: 80vh;
  overflow-y: auto;
}

/* RESPONSIVE */
@media (min-width: 768px) {
  .mob {
    display: none;
  }
  .nudge-box.popup .box-close {
    top: -10px;
    right: -10px;
  }
}

@media (max-width: 767px) {
  .desk {
    display: none;
  }
  .nudge-box.popup {
    top: -100%;
    display: flex;
    transition: .5s ease-out;
    width: 100%;
    height: auto;
    background: none;
    align-items: flex-start;
  }
  .nudge-box.popup.active {
    top: 0;
  }
  .nudge-box.popup .box-inner {
    max-width: 100%;
  }
  .nudge-box.popup .box-close {
    top: 0;
    right: 0;
  }
  .nudge-box.popup .box-close i {
    font-size: 2.2em;
  }
  .nudge-box.slideout .box-label {
    left: -30px;
    width: 30px;
    padding: 10px 5px;
  }
  .nudge-box.slideout .box-label span {
    writing-mode: vertical-lr;
    text-orientation: sideways-right;
  }
}

/*!
 * Pikaday
 * Copyright © 2014 David Bushell | BSD & MIT license | http://dbushell.com/
 */
.pika-single {
  z-index: 9999;
  display: block;
  position: relative;
  color: #333;
  background: #fff;
  border: 1px solid #ccc;
  border-bottom-color: #bbb;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/*
clear child float (pika-lendar), using the famous micro clearfix hack
http://nicolasgallagher.com/micro-clearfix-hack/
*/
.pika-single:before,
.pika-single:after {
  content: " ";
  display: table;
}

.pika-single:after {
  clear: both;
}

.pika-single {
  *zoom: 1;
}

.pika-single.is-hidden {
  display: none;
}

.pika-single.is-bound {
  position: absolute;
  box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.5);
}

.pika-lendar {
  float: left;
  width: 240px;
  margin: 8px;
}

.pika-title {
  position: relative;
  text-align: center;
}

.pika-label {
  display: inline-block;
  *display: inline;
  position: relative;
  z-index: 9999;
  overflow: hidden;
  margin: 0;
  padding: 5px 3px;
  font-size: 14px;
  line-height: 20px;
  font-weight: bold;
  background-color: #fff;
}

.pika-title select {
  cursor: pointer;
  position: absolute;
  z-index: 9998;
  margin: 0;
  left: 0;
  top: 5px;
  filter: alpha(opacity=0);
  opacity: 0;
}

.pika-prev,
.pika-next {
  display: block;
  cursor: pointer;
  position: relative;
  outline: none;
  border: 0;
  padding: 0;
  width: 20px;
  height: 30px;
  /* hide text using text-indent trick, using width value (it's enough) */
  text-indent: 20px;
  white-space: nowrap;
  overflow: hidden;
  background-color: transparent;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 75% 75%;
  opacity: .5;
  *position: absolute;
  *top: 0;
}

.pika-prev:hover,
.pika-next:hover {
  opacity: 1;
}

.pika-prev,
.is-rtl .pika-next {
  float: left;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAUklEQVR42u3VMQoAIBADQf8Pgj+OD9hG2CtONJB2ymQkKe0HbwAP0xucDiQWARITIDEBEnMgMQ8S8+AqBIl6kKgHiXqQqAeJepBo/z38J/U0uAHlaBkBl9I4GwAAAABJRU5ErkJggg==");
  *left: 0;
}

.pika-next,
.is-rtl .pika-prev {
  float: right;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAU0lEQVR42u3VOwoAMAgE0dwfAnNjU26bYkBCFGwfiL9VVWoO+BJ4Gf3gtsEKKoFBNTCoCAYVwaAiGNQGMUHMkjGbgjk2mIONuXo0nC8XnCf1JXgArVIZAQh5TKYAAAAASUVORK5CYII=");
  *right: 0;
}

.pika-prev.is-disabled,
.pika-next.is-disabled {
  cursor: default;
  opacity: .2;
}

.pika-select {
  display: inline-block;
  *display: inline;
}

.pika-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border: 0;
}

.pika-table th,
.pika-table td {
  width: 14.285714285714286%;
  padding: 0;
}

.pika-table th {
  color: #999;
  font-size: 12px;
  line-height: 25px;
  font-weight: bold;
  text-align: center;
}

.pika-button {
  cursor: pointer;
  display: block;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  outline: none;
  border: 0;
  margin: 0;
  width: 100%;
  padding: 5px;
  color: #666;
  font-size: 12px;
  line-height: 15px;
  text-align: right;
  background: #f5f5f5;
}

.pika-week {
  font-size: 11px;
  color: #999;
}

.is-today .pika-button {
  color: #f1ff00;
  font-weight: bold;
}

.is-selected .pika-button,
.has-event .pika-button {
  color: #fff;
  font-weight: bold;
  background: #f1ff00;
  box-shadow: inset 0 1px 3px #77b7a1;
  border-radius: 3px;
}

.has-event .pika-button {
  background: #005da9;
  box-shadow: inset 0 1px 3px #0076c9;
}

.is-disabled .pika-button,
.is-inrange .pika-button {
  background: #D5E9F7;
}

.is-startrange .pika-button {
  color: #fff;
  background: #6CB31D;
  box-shadow: none;
  border-radius: 3px;
}

.is-endrange .pika-button {
  color: #fff;
  background: #f1ff00;
  box-shadow: none;
  border-radius: 3px;
}

.is-disabled .pika-button {
  pointer-events: none;
  cursor: default;
  color: #999;
  opacity: .3;
}

.is-outside-current-month .pika-button {
  color: #999;
  opacity: .3;
}

.is-selection-disabled {
  pointer-events: none;
  cursor: default;
}

.pika-button:hover,
.pika-row.pick-whole-week:hover .pika-button {
  color: #fff;
  background: #f1ff00;
  box-shadow: none;
  border-radius: 3px;
}

/* styling for abbr */
.pika-table abbr {
  border-bottom: none;
  cursor: help;
}

/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
@font-face {
  font-family: 'FontAwesome';
  src: url("/Css/Fonts/fontawesome-webfont.eot?v=4.7.0");
  src: url("/Css/Fonts/fontawesome-webfont.eot?#iefix&v=4.7.0") format("embedded-opentype"), url("/Css/Fonts/fontawesome-webfont.woff2?v=4.7.0") format("woff2"), url("/Css/Fonts/fontawesome-webfont.woff?v=4.7.0") format("woff"), url("/Css/Fonts/fontawesome-webfont.ttf?v=4.7.0") format("truetype"), url("/Css/Fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal;
}

.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.fa-lg {
  font-size: 1.33333333em;
  line-height: .75em;
  vertical-align: -15%;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-fw {
  width: 1.28571429em;
  text-align: center;
}

.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}

.fa-ul > li {
  position: relative;
}

.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: .14285714em;
  text-align: center;
}

.fa-li.fa-lg {
  left: -1.85714286em;
}

.fa-border {
  padding: .2em .25em .15em;
  border: solid .08em #eee;
  border-radius: .1em;
}

.fa-pull-left {
  float: left;
}

.fa-pull-right {
  float: right;
}

.fa.fa-pull-left {
  margin-right: .3em;
}

.fa.fa-pull-right {
  margin-left: .3em;
}

.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

.fa.pull-left {
  margin-right: .3em;
}

.fa.pull-right {
  margin-left: .3em;
}

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}

:root .fa-rotate-90, :root .fa-rotate-180, :root .fa-rotate-270, :root .fa-flip-horizontal, :root .fa-flip-vertical {
  filter: none;
}

.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}

.fa-stack-1x, .fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  font-size: 2em;
}

.fa-inverse {
  color: #fff;
}

.fa-glass:before {
  content: "\f000";
}

.fa-music:before {
  content: "\f001";
}

.fa-search:before {
  content: "\f002";
}

.fa-envelope-o:before {
  content: "\f003";
}

.fa-heart:before {
  content: "\f004";
}

.fa-star:before {
  content: "\f005";
}

.fa-star-o:before {
  content: "\f006";
}

.fa-user:before {
  content: "\f007";
}

.fa-film:before {
  content: "\f008";
}

.fa-th-large:before {
  content: "\f009";
}

.fa-th:before {
  content: "\f00a";
}

.fa-th-list:before {
  content: "\f00b";
}

.fa-check:before {
  content: "\f00c";
}

.fa-remove:before, .fa-close:before, .fa-times:before {
  content: "\f00d";
}

.fa-search-plus:before {
  content: "\f00e";
}

.fa-search-minus:before {
  content: "\f010";
}

.fa-power-off:before {
  content: "\f011";
}

.fa-signal:before {
  content: "\f012";
}

.fa-gear:before, .fa-cog:before {
  content: "\f013";
}

.fa-trash-o:before {
  content: "\f014";
}

.fa-home:before {
  content: "\f015";
}

.fa-file-o:before {
  content: "\f016";
}

.fa-clock-o:before {
  content: "\f017";
}

.fa-road:before {
  content: "\f018";
}

.fa-download:before {
  content: "\f019";
}

.fa-arrow-circle-o-down:before {
  content: "\f01a";
}

.fa-arrow-circle-o-up:before {
  content: "\f01b";
}

.fa-inbox:before {
  content: "\f01c";
}

.fa-play-circle-o:before {
  content: "\f01d";
}

.fa-rotate-right:before, .fa-repeat:before {
  content: "\f01e";
}

.fa-refresh:before {
  content: "\f021";
}

.fa-list-alt:before {
  content: "\f022";
}

.fa-lock:before {
  content: "\f023";
}

.fa-flag:before {
  content: "\f024";
}

.fa-headphones:before {
  content: "\f025";
}

.fa-volume-off:before {
  content: "\f026";
}

.fa-volume-down:before {
  content: "\f027";
}

.fa-volume-up:before {
  content: "\f028";
}

.fa-qrcode:before {
  content: "\f029";
}

.fa-barcode:before {
  content: "\f02a";
}

.fa-tag:before {
  content: "\f02b";
}

.fa-tags:before {
  content: "\f02c";
}

.fa-book:before {
  content: "\f02d";
}

.fa-bookmark:before {
  content: "\f02e";
}

.fa-print:before {
  content: "\f02f";
}

.fa-camera:before {
  content: "\f030";
}

.fa-font:before {
  content: "\f031";
}

.fa-bold:before {
  content: "\f032";
}

.fa-italic:before {
  content: "\f033";
}

.fa-text-height:before {
  content: "\f034";
}

.fa-text-width:before {
  content: "\f035";
}

.fa-align-left:before {
  content: "\f036";
}

.fa-align-center:before {
  content: "\f037";
}

.fa-align-right:before {
  content: "\f038";
}

.fa-align-justify:before {
  content: "\f039";
}

.fa-list:before {
  content: "\f03a";
}

.fa-dedent:before, .fa-outdent:before {
  content: "\f03b";
}

.fa-indent:before {
  content: "\f03c";
}

.fa-video-camera:before {
  content: "\f03d";
}

.fa-photo:before, .fa-image:before, .fa-picture-o:before {
  content: "\f03e";
}

.fa-pencil:before {
  content: "\f040";
}

.fa-map-marker:before {
  content: "\f041";
}

.fa-adjust:before {
  content: "\f042";
}

.fa-tint:before {
  content: "\f043";
}

.fa-edit:before, .fa-pencil-square-o:before {
  content: "\f044";
}

.fa-share-square-o:before {
  content: "\f045";
}

.fa-check-square-o:before {
  content: "\f046";
}

.fa-arrows:before {
  content: "\f047";
}

.fa-step-backward:before {
  content: "\f048";
}

.fa-fast-backward:before {
  content: "\f049";
}

.fa-backward:before {
  content: "\f04a";
}

.fa-play:before {
  content: "\f04b";
}

.fa-pause:before {
  content: "\f04c";
}

.fa-stop:before {
  content: "\f04d";
}

.fa-forward:before {
  content: "\f04e";
}

.fa-fast-forward:before {
  content: "\f050";
}

.fa-step-forward:before {
  content: "\f051";
}

.fa-eject:before {
  content: "\f052";
}

.fa-chevron-left:before {
  content: "\f053";
}

.fa-chevron-right:before {
  content: "\f054";
}

.fa-plus-circle:before {
  content: "\f055";
}

.fa-minus-circle:before {
  content: "\f056";
}

.fa-times-circle:before {
  content: "\f057";
}

.fa-check-circle:before {
  content: "\f058";
}

.fa-question-circle:before {
  content: "\f059";
}

.fa-info-circle:before {
  content: "\f05a";
}

.fa-crosshairs:before {
  content: "\f05b";
}

.fa-times-circle-o:before {
  content: "\f05c";
}

.fa-check-circle-o:before {
  content: "\f05d";
}

.fa-ban:before {
  content: "\f05e";
}

.fa-arrow-left:before {
  content: "\f060";
}

.fa-arrow-right:before {
  content: "\f061";
}

.fa-arrow-up:before {
  content: "\f062";
}

.fa-arrow-down:before {
  content: "\f063";
}

.fa-mail-forward:before, .fa-share:before {
  content: "\f064";
}

.fa-expand:before {
  content: "\f065";
}

.fa-compress:before {
  content: "\f066";
}

.fa-plus:before {
  content: "\f067";
}

.fa-minus:before {
  content: "\f068";
}

.fa-asterisk:before {
  content: "\f069";
}

.fa-exclamation-circle:before {
  content: "\f06a";
}

.fa-gift:before {
  content: "\f06b";
}

.fa-leaf:before {
  content: "\f06c";
}

.fa-fire:before {
  content: "\f06d";
}

.fa-eye:before {
  content: "\f06e";
}

.fa-eye-slash:before {
  content: "\f070";
}

.fa-warning:before, .fa-exclamation-triangle:before {
  content: "\f071";
}

.fa-plane:before {
  content: "\f072";
}

.fa-calendar:before {
  content: "\f073";
}

.fa-random:before {
  content: "\f074";
}

.fa-comment:before {
  content: "\f075";
}

.fa-magnet:before {
  content: "\f076";
}

.fa-chevron-up:before {
  content: "\f077";
}

.fa-chevron-down:before {
  content: "\f078";
}

.fa-retweet:before {
  content: "\f079";
}

.fa-shopping-cart:before {
  content: "\f07a";
}

.fa-folder:before {
  content: "\f07b";
}

.fa-folder-open:before {
  content: "\f07c";
}

.fa-arrows-v:before {
  content: "\f07d";
}

.fa-arrows-h:before {
  content: "\f07e";
}

.fa-bar-chart-o:before, .fa-bar-chart:before {
  content: "\f080";
}

.fa-twitter-square:before {
  content: "\f081";
}

.fa-facebook-square:before {
  content: "\f082";
}

.fa-camera-retro:before {
  content: "\f083";
}

.fa-key:before {
  content: "\f084";
}

.fa-gears:before, .fa-cogs:before {
  content: "\f085";
}

.fa-comments:before {
  content: "\f086";
}

.fa-thumbs-o-up:before {
  content: "\f087";
}

.fa-thumbs-o-down:before {
  content: "\f088";
}

.fa-star-half:before {
  content: "\f089";
}

.fa-heart-o:before {
  content: "\f08a";
}

.fa-sign-out:before {
  content: "\f08b";
}

.fa-linkedin-square:before {
  content: "\f08c";
}

.fa-thumb-tack:before {
  content: "\f08d";
}

.fa-external-link:before {
  content: "\f08e";
}

.fa-sign-in:before {
  content: "\f090";
}

.fa-trophy:before {
  content: "\f091";
}

.fa-github-square:before {
  content: "\f092";
}

.fa-upload:before {
  content: "\f093";
}

.fa-lemon-o:before {
  content: "\f094";
}

.fa-phone:before {
  content: "\f095";
}

.fa-square-o:before {
  content: "\f096";
}

.fa-bookmark-o:before {
  content: "\f097";
}

.fa-phone-square:before {
  content: "\f098";
}

.fa-twitter:before {
  content: "\f099";
}

.fa-facebook-f:before, .fa-facebook:before {
  content: "\f09a";
}

.fa-github:before {
  content: "\f09b";
}

.fa-unlock:before {
  content: "\f09c";
}

.fa-credit-card:before {
  content: "\f09d";
}

.fa-feed:before, .fa-rss:before {
  content: "\f09e";
}

.fa-hdd-o:before {
  content: "\f0a0";
}

.fa-bullhorn:before {
  content: "\f0a1";
}

.fa-bell:before {
  content: "\f0f3";
}

.fa-certificate:before {
  content: "\f0a3";
}

.fa-hand-o-right:before {
  content: "\f0a4";
}

.fa-hand-o-left:before {
  content: "\f0a5";
}

.fa-hand-o-up:before {
  content: "\f0a6";
}

.fa-hand-o-down:before {
  content: "\f0a7";
}

.fa-arrow-circle-left:before {
  content: "\f0a8";
}

.fa-arrow-circle-right:before {
  content: "\f0a9";
}

.fa-arrow-circle-up:before {
  content: "\f0aa";
}

.fa-arrow-circle-down:before {
  content: "\f0ab";
}

.fa-globe:before {
  content: "\f0ac";
}

.fa-wrench:before {
  content: "\f0ad";
}

.fa-tasks:before {
  content: "\f0ae";
}

.fa-filter:before {
  content: "\f0b0";
}

.fa-briefcase:before {
  content: "\f0b1";
}

.fa-arrows-alt:before {
  content: "\f0b2";
}

.fa-group:before, .fa-users:before {
  content: "\f0c0";
}

.fa-chain:before, .fa-link:before {
  content: "\f0c1";
}

.fa-cloud:before {
  content: "\f0c2";
}

.fa-flask:before {
  content: "\f0c3";
}

.fa-cut:before, .fa-scissors:before {
  content: "\f0c4";
}

.fa-copy:before, .fa-files-o:before {
  content: "\f0c5";
}

.fa-paperclip:before {
  content: "\f0c6";
}

.fa-save:before, .fa-floppy-o:before {
  content: "\f0c7";
}

.fa-square:before {
  content: "\f0c8";
}

.fa-navicon:before, .fa-reorder:before, .fa-bars:before {
  content: "\f0c9";
}

.fa-list-ul:before {
  content: "\f0ca";
}

.fa-list-ol:before {
  content: "\f0cb";
}

.fa-strikethrough:before {
  content: "\f0cc";
}

.fa-underline:before {
  content: "\f0cd";
}

.fa-table:before {
  content: "\f0ce";
}

.fa-magic:before {
  content: "\f0d0";
}

.fa-truck:before {
  content: "\f0d1";
}

.fa-pinterest:before {
  content: "\f0d2";
}

.fa-pinterest-square:before {
  content: "\f0d3";
}

.fa-google-plus-square:before {
  content: "\f0d4";
}

.fa-google-plus:before {
  content: "\f0d5";
}

.fa-money:before {
  content: "\f0d6";
}

.fa-caret-down:before {
  content: "\f0d7";
}

.fa-caret-up:before {
  content: "\f0d8";
}

.fa-caret-left:before {
  content: "\f0d9";
}

.fa-caret-right:before {
  content: "\f0da";
}

.fa-columns:before {
  content: "\f0db";
}

.fa-unsorted:before, .fa-sort:before {
  content: "\f0dc";
}

.fa-sort-down:before, .fa-sort-desc:before {
  content: "\f0dd";
}

.fa-sort-up:before, .fa-sort-asc:before {
  content: "\f0de";
}

.fa-envelope:before {
  content: "\f0e0";
}

.fa-linkedin:before {
  content: "\f0e1";
}

.fa-rotate-left:before, .fa-undo:before {
  content: "\f0e2";
}

.fa-legal:before, .fa-gavel:before {
  content: "\f0e3";
}

.fa-dashboard:before, .fa-tachometer:before {
  content: "\f0e4";
}

.fa-comment-o:before {
  content: "\f0e5";
}

.fa-comments-o:before {
  content: "\f0e6";
}

.fa-flash:before, .fa-bolt:before {
  content: "\f0e7";
}

.fa-sitemap:before {
  content: "\f0e8";
}

.fa-umbrella:before {
  content: "\f0e9";
}

.fa-paste:before, .fa-clipboard:before {
  content: "\f0ea";
}

.fa-lightbulb-o:before {
  content: "\f0eb";
}

.fa-exchange:before {
  content: "\f0ec";
}

.fa-cloud-download:before {
  content: "\f0ed";
}

.fa-cloud-upload:before {
  content: "\f0ee";
}

.fa-user-md:before {
  content: "\f0f0";
}

.fa-stethoscope:before {
  content: "\f0f1";
}

.fa-suitcase:before {
  content: "\f0f2";
}

.fa-bell-o:before {
  content: "\f0a2";
}

.fa-coffee:before {
  content: "\f0f4";
}

.fa-cutlery:before {
  content: "\f0f5";
}

.fa-file-text-o:before {
  content: "\f0f6";
}

.fa-building-o:before {
  content: "\f0f7";
}

.fa-hospital-o:before {
  content: "\f0f8";
}

.fa-ambulance:before {
  content: "\f0f9";
}

.fa-medkit:before {
  content: "\f0fa";
}

.fa-fighter-jet:before {
  content: "\f0fb";
}

.fa-beer:before {
  content: "\f0fc";
}

.fa-h-square:before {
  content: "\f0fd";
}

.fa-plus-square:before {
  content: "\f0fe";
}

.fa-angle-double-left:before {
  content: "\f100";
}

.fa-angle-double-right:before {
  content: "\f101";
}

.fa-angle-double-up:before {
  content: "\f102";
}

.fa-angle-double-down:before {
  content: "\f103";
}

.fa-angle-left:before {
  content: "\f104";
}

.fa-angle-right:before {
  content: "\f105";
}

.fa-angle-up:before {
  content: "\f106";
}

.fa-angle-down:before {
  content: "\f107";
}

.fa-desktop:before {
  content: "\f108";
}

.fa-laptop:before {
  content: "\f109";
}

.fa-tablet:before {
  content: "\f10a";
}

.fa-mobile-phone:before, .fa-mobile:before {
  content: "\f10b";
}

.fa-circle-o:before {
  content: "\f10c";
}

.fa-quote-left:before {
  content: "\f10d";
}

.fa-quote-right:before {
  content: "\f10e";
}

.fa-spinner:before {
  content: "\f110";
}

.fa-circle:before {
  content: "\f111";
}

.fa-mail-reply:before, .fa-reply:before {
  content: "\f112";
}

.fa-github-alt:before {
  content: "\f113";
}

.fa-folder-o:before {
  content: "\f114";
}

.fa-folder-open-o:before {
  content: "\f115";
}

.fa-smile-o:before {
  content: "\f118";
}

.fa-frown-o:before {
  content: "\f119";
}

.fa-meh-o:before {
  content: "\f11a";
}

.fa-gamepad:before {
  content: "\f11b";
}

.fa-keyboard-o:before {
  content: "\f11c";
}

.fa-flag-o:before {
  content: "\f11d";
}

.fa-flag-checkered:before {
  content: "\f11e";
}

.fa-terminal:before {
  content: "\f120";
}

.fa-code:before {
  content: "\f121";
}

.fa-mail-reply-all:before, .fa-reply-all:before {
  content: "\f122";
}

.fa-star-half-empty:before, .fa-star-half-full:before, .fa-star-half-o:before {
  content: "\f123";
}

.fa-location-arrow:before {
  content: "\f124";
}

.fa-crop:before {
  content: "\f125";
}

.fa-code-fork:before {
  content: "\f126";
}

.fa-unlink:before, .fa-chain-broken:before {
  content: "\f127";
}

.fa-question:before {
  content: "\f128";
}

.fa-info:before {
  content: "\f129";
}

.fa-exclamation:before {
  content: "\f12a";
}

.fa-superscript:before {
  content: "\f12b";
}

.fa-subscript:before {
  content: "\f12c";
}

.fa-eraser:before {
  content: "\f12d";
}

.fa-puzzle-piece:before {
  content: "\f12e";
}

.fa-microphone:before {
  content: "\f130";
}

.fa-microphone-slash:before {
  content: "\f131";
}

.fa-shield:before {
  content: "\f132";
}

.fa-calendar-o:before {
  content: "\f133";
}

.fa-fire-extinguisher:before {
  content: "\f134";
}

.fa-rocket:before {
  content: "\f135";
}

.fa-maxcdn:before {
  content: "\f136";
}

.fa-chevron-circle-left:before {
  content: "\f137";
}

.fa-chevron-circle-right:before {
  content: "\f138";
}

.fa-chevron-circle-up:before {
  content: "\f139";
}

.fa-chevron-circle-down:before {
  content: "\f13a";
}

.fa-html5:before {
  content: "\f13b";
}

.fa-css3:before {
  content: "\f13c";
}

.fa-anchor:before {
  content: "\f13d";
}

.fa-unlock-alt:before {
  content: "\f13e";
}

.fa-bullseye:before {
  content: "\f140";
}

.fa-ellipsis-h:before {
  content: "\f141";
}

.fa-ellipsis-v:before {
  content: "\f142";
}

.fa-rss-square:before {
  content: "\f143";
}

.fa-play-circle:before {
  content: "\f144";
}

.fa-ticket:before {
  content: "\f145";
}

.fa-minus-square:before {
  content: "\f146";
}

.fa-minus-square-o:before {
  content: "\f147";
}

.fa-level-up:before {
  content: "\f148";
}

.fa-level-down:before {
  content: "\f149";
}

.fa-check-square:before {
  content: "\f14a";
}

.fa-pencil-square:before {
  content: "\f14b";
}

.fa-external-link-square:before {
  content: "\f14c";
}

.fa-share-square:before {
  content: "\f14d";
}

.fa-compass:before {
  content: "\f14e";
}

.fa-toggle-down:before, .fa-caret-square-o-down:before {
  content: "\f150";
}

.fa-toggle-up:before, .fa-caret-square-o-up:before {
  content: "\f151";
}

.fa-toggle-right:before, .fa-caret-square-o-right:before {
  content: "\f152";
}

.fa-euro:before, .fa-eur:before {
  content: "\f153";
}

.fa-gbp:before {
  content: "\f154";
}

.fa-dollar:before, .fa-usd:before {
  content: "\f155";
}

.fa-rupee:before, .fa-inr:before {
  content: "\f156";
}

.fa-cny:before, .fa-rmb:before, .fa-yen:before, .fa-jpy:before {
  content: "\f157";
}

.fa-ruble:before, .fa-rouble:before, .fa-rub:before {
  content: "\f158";
}

.fa-won:before, .fa-krw:before {
  content: "\f159";
}

.fa-bitcoin:before, .fa-btc:before {
  content: "\f15a";
}

.fa-file:before {
  content: "\f15b";
}

.fa-file-text:before {
  content: "\f15c";
}

.fa-sort-alpha-asc:before {
  content: "\f15d";
}

.fa-sort-alpha-desc:before {
  content: "\f15e";
}

.fa-sort-amount-asc:before {
  content: "\f160";
}

.fa-sort-amount-desc:before {
  content: "\f161";
}

.fa-sort-numeric-asc:before {
  content: "\f162";
}

.fa-sort-numeric-desc:before {
  content: "\f163";
}

.fa-thumbs-up:before {
  content: "\f164";
}

.fa-thumbs-down:before {
  content: "\f165";
}

.fa-youtube-square:before {
  content: "\f166";
}

.fa-youtube:before {
  content: "\f167";
}

.fa-xing:before {
  content: "\f168";
}

.fa-xing-square:before {
  content: "\f169";
}

.fa-youtube-play:before {
  content: "\f16a";
}

.fa-dropbox:before {
  content: "\f16b";
}

.fa-stack-overflow:before {
  content: "\f16c";
}

.fa-instagram:before {
  content: "\f16d";
}

.fa-flickr:before {
  content: "\f16e";
}

.fa-adn:before {
  content: "\f170";
}

.fa-bitbucket:before {
  content: "\f171";
}

.fa-bitbucket-square:before {
  content: "\f172";
}

.fa-tumblr:before {
  content: "\f173";
}

.fa-tumblr-square:before {
  content: "\f174";
}

.fa-long-arrow-down:before {
  content: "\f175";
}

.fa-long-arrow-up:before {
  content: "\f176";
}

.fa-long-arrow-left:before {
  content: "\f177";
}

.fa-long-arrow-right:before {
  content: "\f178";
}

.fa-apple:before {
  content: "\f179";
}

.fa-windows:before {
  content: "\f17a";
}

.fa-android:before {
  content: "\f17b";
}

.fa-linux:before {
  content: "\f17c";
}

.fa-dribbble:before {
  content: "\f17d";
}

.fa-skype:before {
  content: "\f17e";
}

.fa-foursquare:before {
  content: "\f180";
}

.fa-trello:before {
  content: "\f181";
}

.fa-female:before {
  content: "\f182";
}

.fa-male:before {
  content: "\f183";
}

.fa-gittip:before, .fa-gratipay:before {
  content: "\f184";
}

.fa-sun-o:before {
  content: "\f185";
}

.fa-moon-o:before {
  content: "\f186";
}

.fa-archive:before {
  content: "\f187";
}

.fa-bug:before {
  content: "\f188";
}

.fa-vk:before {
  content: "\f189";
}

.fa-weibo:before {
  content: "\f18a";
}

.fa-renren:before {
  content: "\f18b";
}

.fa-pagelines:before {
  content: "\f18c";
}

.fa-stack-exchange:before {
  content: "\f18d";
}

.fa-arrow-circle-o-right:before {
  content: "\f18e";
}

.fa-arrow-circle-o-left:before {
  content: "\f190";
}

.fa-toggle-left:before, .fa-caret-square-o-left:before {
  content: "\f191";
}

.fa-dot-circle-o:before {
  content: "\f192";
}

.fa-wheelchair:before {
  content: "\f193";
}

.fa-vimeo-square:before {
  content: "\f194";
}

.fa-turkish-lira:before, .fa-try:before {
  content: "\f195";
}

.fa-plus-square-o:before {
  content: "\f196";
}

.fa-space-shuttle:before {
  content: "\f197";
}

.fa-slack:before {
  content: "\f198";
}

.fa-envelope-square:before {
  content: "\f199";
}

.fa-wordpress:before {
  content: "\f19a";
}

.fa-openid:before {
  content: "\f19b";
}

.fa-institution:before, .fa-bank:before, .fa-university:before {
  content: "\f19c";
}

.fa-mortar-board:before, .fa-graduation-cap:before {
  content: "\f19d";
}

.fa-yahoo:before {
  content: "\f19e";
}

.fa-google:before {
  content: "\f1a0";
}

.fa-reddit:before {
  content: "\f1a1";
}

.fa-reddit-square:before {
  content: "\f1a2";
}

.fa-stumbleupon-circle:before {
  content: "\f1a3";
}

.fa-stumbleupon:before {
  content: "\f1a4";
}

.fa-delicious:before {
  content: "\f1a5";
}

.fa-digg:before {
  content: "\f1a6";
}

.fa-pied-piper-pp:before {
  content: "\f1a7";
}

.fa-pied-piper-alt:before {
  content: "\f1a8";
}

.fa-drupal:before {
  content: "\f1a9";
}

.fa-joomla:before {
  content: "\f1aa";
}

.fa-language:before {
  content: "\f1ab";
}

.fa-fax:before {
  content: "\f1ac";
}

.fa-building:before {
  content: "\f1ad";
}

.fa-child:before {
  content: "\f1ae";
}

.fa-paw:before {
  content: "\f1b0";
}

.fa-spoon:before {
  content: "\f1b1";
}

.fa-cube:before {
  content: "\f1b2";
}

.fa-cubes:before {
  content: "\f1b3";
}

.fa-behance:before {
  content: "\f1b4";
}

.fa-behance-square:before {
  content: "\f1b5";
}

.fa-steam:before {
  content: "\f1b6";
}

.fa-steam-square:before {
  content: "\f1b7";
}

.fa-recycle:before {
  content: "\f1b8";
}

.fa-automobile:before, .fa-car:before {
  content: "\f1b9";
}

.fa-cab:before, .fa-taxi:before {
  content: "\f1ba";
}

.fa-tree:before {
  content: "\f1bb";
}

.fa-spotify:before {
  content: "\f1bc";
}

.fa-deviantart:before {
  content: "\f1bd";
}

.fa-soundcloud:before {
  content: "\f1be";
}

.fa-database:before {
  content: "\f1c0";
}

.fa-file-pdf-o:before {
  content: "\f1c1";
}

.fa-file-word-o:before {
  content: "\f1c2";
}

.fa-file-excel-o:before {
  content: "\f1c3";
}

.fa-file-powerpoint-o:before {
  content: "\f1c4";
}

.fa-file-photo-o:before, .fa-file-picture-o:before, .fa-file-image-o:before {
  content: "\f1c5";
}

.fa-file-zip-o:before, .fa-file-archive-o:before {
  content: "\f1c6";
}

.fa-file-sound-o:before, .fa-file-audio-o:before {
  content: "\f1c7";
}

.fa-file-movie-o:before, .fa-file-video-o:before {
  content: "\f1c8";
}

.fa-file-code-o:before {
  content: "\f1c9";
}

.fa-vine:before {
  content: "\f1ca";
}

.fa-codepen:before {
  content: "\f1cb";
}

.fa-jsfiddle:before {
  content: "\f1cc";
}

.fa-life-bouy:before, .fa-life-buoy:before, .fa-life-saver:before, .fa-support:before, .fa-life-ring:before {
  content: "\f1cd";
}

.fa-circle-o-notch:before {
  content: "\f1ce";
}

.fa-ra:before, .fa-resistance:before, .fa-rebel:before {
  content: "\f1d0";
}

.fa-ge:before, .fa-empire:before {
  content: "\f1d1";
}

.fa-git-square:before {
  content: "\f1d2";
}

.fa-git:before {
  content: "\f1d3";
}

.fa-y-combinator-square:before, .fa-yc-square:before, .fa-hacker-news:before {
  content: "\f1d4";
}

.fa-tencent-weibo:before {
  content: "\f1d5";
}

.fa-qq:before {
  content: "\f1d6";
}

.fa-wechat:before, .fa-weixin:before {
  content: "\f1d7";
}

.fa-send:before, .fa-paper-plane:before {
  content: "\f1d8";
}

.fa-send-o:before, .fa-paper-plane-o:before {
  content: "\f1d9";
}

.fa-history:before {
  content: "\f1da";
}

.fa-circle-thin:before {
  content: "\f1db";
}

.fa-header:before {
  content: "\f1dc";
}

.fa-paragraph:before {
  content: "\f1dd";
}

.fa-sliders:before {
  content: "\f1de";
}

.fa-share-alt:before {
  content: "\f1e0";
}

.fa-share-alt-square:before {
  content: "\f1e1";
}

.fa-bomb:before {
  content: "\f1e2";
}

.fa-soccer-ball-o:before, .fa-futbol-o:before {
  content: "\f1e3";
}

.fa-tty:before {
  content: "\f1e4";
}

.fa-binoculars:before {
  content: "\f1e5";
}

.fa-plug:before {
  content: "\f1e6";
}

.fa-slideshare:before {
  content: "\f1e7";
}

.fa-twitch:before {
  content: "\f1e8";
}

.fa-yelp:before {
  content: "\f1e9";
}

.fa-newspaper-o:before {
  content: "\f1ea";
}

.fa-wifi:before {
  content: "\f1eb";
}

.fa-calculator:before {
  content: "\f1ec";
}

.fa-paypal:before {
  content: "\f1ed";
}

.fa-google-wallet:before {
  content: "\f1ee";
}

.fa-cc-visa:before {
  content: "\f1f0";
}

.fa-cc-mastercard:before {
  content: "\f1f1";
}

.fa-cc-discover:before {
  content: "\f1f2";
}

.fa-cc-amex:before {
  content: "\f1f3";
}

.fa-cc-paypal:before {
  content: "\f1f4";
}

.fa-cc-stripe:before {
  content: "\f1f5";
}

.fa-bell-slash:before {
  content: "\f1f6";
}

.fa-bell-slash-o:before {
  content: "\f1f7";
}

.fa-trash:before {
  content: "\f1f8";
}

.fa-copyright:before {
  content: "\f1f9";
}

.fa-at:before {
  content: "\f1fa";
}

.fa-eyedropper:before {
  content: "\f1fb";
}

.fa-paint-brush:before {
  content: "\f1fc";
}

.fa-birthday-cake:before {
  content: "\f1fd";
}

.fa-area-chart:before {
  content: "\f1fe";
}

.fa-pie-chart:before {
  content: "\f200";
}

.fa-line-chart:before {
  content: "\f201";
}

.fa-lastfm:before {
  content: "\f202";
}

.fa-lastfm-square:before {
  content: "\f203";
}

.fa-toggle-off:before {
  content: "\f204";
}

.fa-toggle-on:before {
  content: "\f205";
}

.fa-bicycle:before {
  content: "\f206";
}

.fa-bus:before {
  content: "\f207";
}

.fa-ioxhost:before {
  content: "\f208";
}

.fa-angellist:before {
  content: "\f209";
}

.fa-cc:before {
  content: "\f20a";
}

.fa-shekel:before, .fa-sheqel:before, .fa-ils:before {
  content: "\f20b";
}

.fa-meanpath:before {
  content: "\f20c";
}

.fa-buysellads:before {
  content: "\f20d";
}

.fa-connectdevelop:before {
  content: "\f20e";
}

.fa-dashcube:before {
  content: "\f210";
}

.fa-forumbee:before {
  content: "\f211";
}

.fa-leanpub:before {
  content: "\f212";
}

.fa-sellsy:before {
  content: "\f213";
}

.fa-shirtsinbulk:before {
  content: "\f214";
}

.fa-simplybuilt:before {
  content: "\f215";
}

.fa-skyatlas:before {
  content: "\f216";
}

.fa-cart-plus:before {
  content: "\f217";
}

.fa-cart-arrow-down:before {
  content: "\f218";
}

.fa-diamond:before {
  content: "\f219";
}

.fa-ship:before {
  content: "\f21a";
}

.fa-user-secret:before {
  content: "\f21b";
}

.fa-motorcycle:before {
  content: "\f21c";
}

.fa-street-view:before {
  content: "\f21d";
}

.fa-heartbeat:before {
  content: "\f21e";
}

.fa-venus:before {
  content: "\f221";
}

.fa-mars:before {
  content: "\f222";
}

.fa-mercury:before {
  content: "\f223";
}

.fa-intersex:before, .fa-transgender:before {
  content: "\f224";
}

.fa-transgender-alt:before {
  content: "\f225";
}

.fa-venus-double:before {
  content: "\f226";
}

.fa-mars-double:before {
  content: "\f227";
}

.fa-venus-mars:before {
  content: "\f228";
}

.fa-mars-stroke:before {
  content: "\f229";
}

.fa-mars-stroke-v:before {
  content: "\f22a";
}

.fa-mars-stroke-h:before {
  content: "\f22b";
}

.fa-neuter:before {
  content: "\f22c";
}

.fa-genderless:before {
  content: "\f22d";
}

.fa-facebook-official:before {
  content: "\f230";
}

.fa-pinterest-p:before {
  content: "\f231";
}

.fa-whatsapp:before {
  content: "\f232";
}

.fa-server:before {
  content: "\f233";
}

.fa-user-plus:before {
  content: "\f234";
}

.fa-user-times:before {
  content: "\f235";
}

.fa-hotel:before, .fa-bed:before {
  content: "\f236";
}

.fa-viacoin:before {
  content: "\f237";
}

.fa-train:before {
  content: "\f238";
}

.fa-subway:before {
  content: "\f239";
}

.fa-medium:before {
  content: "\f23a";
}

.fa-yc:before, .fa-y-combinator:before {
  content: "\f23b";
}

.fa-optin-monster:before {
  content: "\f23c";
}

.fa-opencart:before {
  content: "\f23d";
}

.fa-expeditedssl:before {
  content: "\f23e";
}

.fa-battery-4:before, .fa-battery:before, .fa-battery-full:before {
  content: "\f240";
}

.fa-battery-3:before, .fa-battery-three-quarters:before {
  content: "\f241";
}

.fa-battery-2:before, .fa-battery-half:before {
  content: "\f242";
}

.fa-battery-1:before, .fa-battery-quarter:before {
  content: "\f243";
}

.fa-battery-0:before, .fa-battery-empty:before {
  content: "\f244";
}

.fa-mouse-pointer:before {
  content: "\f245";
}

.fa-i-cursor:before {
  content: "\f246";
}

.fa-object-group:before {
  content: "\f247";
}

.fa-object-ungroup:before {
  content: "\f248";
}

.fa-sticky-note:before {
  content: "\f249";
}

.fa-sticky-note-o:before {
  content: "\f24a";
}

.fa-cc-jcb:before {
  content: "\f24b";
}

.fa-cc-diners-club:before {
  content: "\f24c";
}

.fa-clone:before {
  content: "\f24d";
}

.fa-balance-scale:before {
  content: "\f24e";
}

.fa-hourglass-o:before {
  content: "\f250";
}

.fa-hourglass-1:before, .fa-hourglass-start:before {
  content: "\f251";
}

.fa-hourglass-2:before, .fa-hourglass-half:before {
  content: "\f252";
}

.fa-hourglass-3:before, .fa-hourglass-end:before {
  content: "\f253";
}

.fa-hourglass:before {
  content: "\f254";
}

.fa-hand-grab-o:before, .fa-hand-rock-o:before {
  content: "\f255";
}

.fa-hand-stop-o:before, .fa-hand-paper-o:before {
  content: "\f256";
}

.fa-hand-scissors-o:before {
  content: "\f257";
}

.fa-hand-lizard-o:before {
  content: "\f258";
}

.fa-hand-spock-o:before {
  content: "\f259";
}

.fa-hand-pointer-o:before {
  content: "\f25a";
}

.fa-hand-peace-o:before {
  content: "\f25b";
}

.fa-trademark:before {
  content: "\f25c";
}

.fa-registered:before {
  content: "\f25d";
}

.fa-creative-commons:before {
  content: "\f25e";
}

.fa-gg:before {
  content: "\f260";
}

.fa-gg-circle:before {
  content: "\f261";
}

.fa-tripadvisor:before {
  content: "\f262";
}

.fa-odnoklassniki:before {
  content: "\f263";
}

.fa-odnoklassniki-square:before {
  content: "\f264";
}

.fa-get-pocket:before {
  content: "\f265";
}

.fa-wikipedia-w:before {
  content: "\f266";
}

.fa-safari:before {
  content: "\f267";
}

.fa-chrome:before {
  content: "\f268";
}

.fa-firefox:before {
  content: "\f269";
}

.fa-opera:before {
  content: "\f26a";
}

.fa-internet-explorer:before {
  content: "\f26b";
}

.fa-tv:before, .fa-television:before {
  content: "\f26c";
}

.fa-contao:before {
  content: "\f26d";
}

.fa-500px:before {
  content: "\f26e";
}

.fa-amazon:before {
  content: "\f270";
}

.fa-calendar-plus-o:before {
  content: "\f271";
}

.fa-calendar-minus-o:before {
  content: "\f272";
}

.fa-calendar-times-o:before {
  content: "\f273";
}

.fa-calendar-check-o:before {
  content: "\f274";
}

.fa-industry:before {
  content: "\f275";
}

.fa-map-pin:before {
  content: "\f276";
}

.fa-map-signs:before {
  content: "\f277";
}

.fa-map-o:before {
  content: "\f278";
}

.fa-map:before {
  content: "\f279";
}

.fa-commenting:before {
  content: "\f27a";
}

.fa-commenting-o:before {
  content: "\f27b";
}

.fa-houzz:before {
  content: "\f27c";
}

.fa-vimeo:before {
  content: "\f27d";
}

.fa-black-tie:before {
  content: "\f27e";
}

.fa-fonticons:before {
  content: "\f280";
}

.fa-reddit-alien:before {
  content: "\f281";
}

.fa-edge:before {
  content: "\f282";
}

.fa-credit-card-alt:before {
  content: "\f283";
}

.fa-codiepie:before {
  content: "\f284";
}

.fa-modx:before {
  content: "\f285";
}

.fa-fort-awesome:before {
  content: "\f286";
}

.fa-usb:before {
  content: "\f287";
}

.fa-product-hunt:before {
  content: "\f288";
}

.fa-mixcloud:before {
  content: "\f289";
}

.fa-scribd:before {
  content: "\f28a";
}

.fa-pause-circle:before {
  content: "\f28b";
}

.fa-pause-circle-o:before {
  content: "\f28c";
}

.fa-stop-circle:before {
  content: "\f28d";
}

.fa-stop-circle-o:before {
  content: "\f28e";
}

.fa-shopping-bag:before {
  content: "\f290";
}

.fa-shopping-basket:before {
  content: "\f291";
}

.fa-hashtag:before {
  content: "\f292";
}

.fa-bluetooth:before {
  content: "\f293";
}

.fa-bluetooth-b:before {
  content: "\f294";
}

.fa-percent:before {
  content: "\f295";
}

.fa-gitlab:before {
  content: "\f296";
}

.fa-wpbeginner:before {
  content: "\f297";
}

.fa-wpforms:before {
  content: "\f298";
}

.fa-envira:before {
  content: "\f299";
}

.fa-universal-access:before {
  content: "\f29a";
}

.fa-wheelchair-alt:before {
  content: "\f29b";
}

.fa-question-circle-o:before {
  content: "\f29c";
}

.fa-blind:before {
  content: "\f29d";
}

.fa-audio-description:before {
  content: "\f29e";
}

.fa-volume-control-phone:before {
  content: "\f2a0";
}

.fa-braille:before {
  content: "\f2a1";
}

.fa-assistive-listening-systems:before {
  content: "\f2a2";
}

.fa-asl-interpreting:before, .fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}

.fa-deafness:before, .fa-hard-of-hearing:before, .fa-deaf:before {
  content: "\f2a4";
}

.fa-glide:before {
  content: "\f2a5";
}

.fa-glide-g:before {
  content: "\f2a6";
}

.fa-signing:before, .fa-sign-language:before {
  content: "\f2a7";
}

.fa-low-vision:before {
  content: "\f2a8";
}

.fa-viadeo:before {
  content: "\f2a9";
}

.fa-viadeo-square:before {
  content: "\f2aa";
}

.fa-snapchat:before {
  content: "\f2ab";
}

.fa-snapchat-ghost:before {
  content: "\f2ac";
}

.fa-snapchat-square:before {
  content: "\f2ad";
}

.fa-pied-piper:before {
  content: "\f2ae";
}

.fa-first-order:before {
  content: "\f2b0";
}

.fa-yoast:before {
  content: "\f2b1";
}

.fa-themeisle:before {
  content: "\f2b2";
}

.fa-google-plus-circle:before, .fa-google-plus-official:before {
  content: "\f2b3";
}

.fa-fa:before, .fa-font-awesome:before {
  content: "\f2b4";
}

.fa-handshake-o:before {
  content: "\f2b5";
}

.fa-envelope-open:before {
  content: "\f2b6";
}

.fa-envelope-open-o:before {
  content: "\f2b7";
}

.fa-linode:before {
  content: "\f2b8";
}

.fa-address-book:before {
  content: "\f2b9";
}

.fa-address-book-o:before {
  content: "\f2ba";
}

.fa-vcard:before, .fa-address-card:before {
  content: "\f2bb";
}

.fa-vcard-o:before, .fa-address-card-o:before {
  content: "\f2bc";
}

.fa-user-circle:before {
  content: "\f2bd";
}

.fa-user-circle-o:before {
  content: "\f2be";
}

.fa-user-o:before {
  content: "\f2c0";
}

.fa-id-badge:before {
  content: "\f2c1";
}

.fa-drivers-license:before, .fa-id-card:before {
  content: "\f2c2";
}

.fa-drivers-license-o:before, .fa-id-card-o:before {
  content: "\f2c3";
}

.fa-quora:before {
  content: "\f2c4";
}

.fa-free-code-camp:before {
  content: "\f2c5";
}

.fa-telegram:before {
  content: "\f2c6";
}

.fa-thermometer-4:before, .fa-thermometer:before, .fa-thermometer-full:before {
  content: "\f2c7";
}

.fa-thermometer-3:before, .fa-thermometer-three-quarters:before {
  content: "\f2c8";
}

.fa-thermometer-2:before, .fa-thermometer-half:before {
  content: "\f2c9";
}

.fa-thermometer-1:before, .fa-thermometer-quarter:before {
  content: "\f2ca";
}

.fa-thermometer-0:before, .fa-thermometer-empty:before {
  content: "\f2cb";
}

.fa-shower:before {
  content: "\f2cc";
}

.fa-bathtub:before, .fa-s15:before, .fa-bath:before {
  content: "\f2cd";
}

.fa-podcast:before {
  content: "\f2ce";
}

.fa-window-maximize:before {
  content: "\f2d0";
}

.fa-window-minimize:before {
  content: "\f2d1";
}

.fa-window-restore:before {
  content: "\f2d2";
}

.fa-times-rectangle:before, .fa-window-close:before {
  content: "\f2d3";
}

.fa-times-rectangle-o:before, .fa-window-close-o:before {
  content: "\f2d4";
}

.fa-bandcamp:before {
  content: "\f2d5";
}

.fa-grav:before {
  content: "\f2d6";
}

.fa-etsy:before {
  content: "\f2d7";
}

.fa-imdb:before {
  content: "\f2d8";
}

.fa-ravelry:before {
  content: "\f2d9";
}

.fa-eercast:before {
  content: "\f2da";
}

.fa-microchip:before {
  content: "\f2db";
}

.fa-snowflake-o:before {
  content: "\f2dc";
}

.fa-superpowers:before {
  content: "\f2dd";
}

.fa-wpexplorer:before {
  content: "\f2de";
}

.fa-meetup:before {
  content: "\f2e0";
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

.twentytwenty-horizontal .twentytwenty-handle:before, .twentytwenty-horizontal .twentytwenty-handle:after, .twentytwenty-vertical .twentytwenty-handle:before, .twentytwenty-vertical .twentytwenty-handle:after {
  content: " ";
  display: block;
  background: #fff;
  position: absolute;
  z-index: 30;
}

.twentytwenty-horizontal .twentytwenty-handle:before, .twentytwenty-horizontal .twentytwenty-handle:after {
  width: 3px;
  height: 9999px;
  left: 50%;
  margin-left: -1.5px;
}

.twentytwenty-vertical .twentytwenty-handle:before, .twentytwenty-vertical .twentytwenty-handle:after {
  width: 9999px;
  height: 3px;
  top: 50%;
  margin-top: -1.5px;
}

.twentytwenty-before-label, .twentytwenty-after-label, .twentytwenty-overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}

.twentytwenty-before-label, .twentytwenty-after-label, .twentytwenty-overlay {
  transition-duration: 0.5s;
}

.twentytwenty-before-label, .twentytwenty-after-label {
  transition-property: opacity;
}

.twentytwenty-before-label:before, .twentytwenty-after-label:before {
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.1em;
}

.twentytwenty-before-label:before, .twentytwenty-after-label:before {
  position: absolute;
  background: rgba(255, 255, 255, 0.2);
  line-height: 38px;
  padding: 0 20px;
  border-radius: 2px;
}

.twentytwenty-horizontal .twentytwenty-before-label:before, .twentytwenty-horizontal .twentytwenty-after-label:before {
  top: 50%;
  margin-top: -19px;
}

.twentytwenty-vertical .twentytwenty-before-label:before, .twentytwenty-vertical .twentytwenty-after-label:before {
  left: 50%;
  margin-left: -45px;
  text-align: center;
  width: 90px;
}

.twentytwenty-left-arrow, .twentytwenty-right-arrow, .twentytwenty-up-arrow, .twentytwenty-down-arrow {
  width: 0;
  height: 0;
  border: 6px inset transparent;
  position: absolute;
}

.twentytwenty-left-arrow, .twentytwenty-right-arrow {
  top: 50%;
  margin-top: -6px;
}

.twentytwenty-up-arrow, .twentytwenty-down-arrow {
  left: 50%;
  margin-left: -6px;
}

.twentytwenty-container {
  box-sizing: content-box;
  z-index: 0;
  overflow: hidden;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
}

.twentytwenty-container img {
  max-width: 100%;
  position: absolute;
  top: 0;
  display: block;
}

.twentytwenty-container.active .twentytwenty-overlay,
.twentytwenty-container.active :hover.twentytwenty-overlay {
  background: transparent;
}

.twentytwenty-container.active .twentytwenty-overlay .twentytwenty-before-label,
.twentytwenty-container.active .twentytwenty-overlay .twentytwenty-after-label,
.twentytwenty-container.active :hover.twentytwenty-overlay .twentytwenty-before-label,
.twentytwenty-container.active :hover.twentytwenty-overlay .twentytwenty-after-label {
  opacity: 0;
}

.twentytwenty-container * {
  box-sizing: content-box;
}

.twentytwenty-before-label {
  opacity: 0;
}

.twentytwenty-before-label:before {
  content: attr(data-content);
}

.twentytwenty-after-label {
  opacity: 0;
}

.twentytwenty-after-label:before {
  content: attr(data-content);
}

.twentytwenty-horizontal .twentytwenty-before-label:before {
  left: 10px;
}

.twentytwenty-horizontal .twentytwenty-after-label:before {
  right: 10px;
}

.twentytwenty-vertical .twentytwenty-before-label:before {
  top: 10px;
}

.twentytwenty-vertical .twentytwenty-after-label:before {
  bottom: 10px;
}

.twentytwenty-overlay {
  transition-property: background;
  background: transparent;
  z-index: 25;
}

.twentytwenty-overlay:hover {
  background: rgba(0, 0, 0, 0.5);
}

.twentytwenty-overlay:hover .twentytwenty-after-label {
  opacity: 1;
}

.twentytwenty-overlay:hover .twentytwenty-before-label {
  opacity: 1;
}

.twentytwenty-before {
  z-index: 20;
}

.twentytwenty-after {
  z-index: 10;
}

.twentytwenty-handle {
  height: 38px;
  width: 38px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -22px;
  margin-top: -22px;
  border: 3px solid #fff;
  border-radius: 1000px;
  box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
  z-index: 40;
  cursor: pointer;
}

.twentytwenty-horizontal .twentytwenty-handle:before {
  bottom: 50%;
  margin-bottom: 22px;
  box-shadow: 0 3px 0 #fff, 0px 0px 12px rgba(51, 51, 51, 0.5);
}

.twentytwenty-horizontal .twentytwenty-handle:after {
  top: 50%;
  margin-top: 22px;
  box-shadow: 0 -3px 0 #fff, 0px 0px 12px rgba(51, 51, 51, 0.5);
}

.twentytwenty-vertical .twentytwenty-handle:before {
  left: 50%;
  margin-left: 22px;
  box-shadow: 3px 0 0 #fff, 0px 0px 12px rgba(51, 51, 51, 0.5);
}

.twentytwenty-vertical .twentytwenty-handle:after {
  right: 50%;
  margin-right: 22px;
  box-shadow: -3px 0 0 #fff, 0px 0px 12px rgba(51, 51, 51, 0.5);
}

.twentytwenty-left-arrow {
  border-right: 6px solid #fff;
  left: 50%;
  margin-left: -17px;
}

.twentytwenty-right-arrow {
  border-left: 6px solid #fff;
  right: 50%;
  margin-right: -17px;
}

.twentytwenty-up-arrow {
  border-bottom: 6px solid #fff;
  top: 50%;
  margin-top: -17px;
}

.twentytwenty-down-arrow {
  border-top: 6px solid #fff;
  bottom: 50%;
  margin-bottom: -17px;
}

table {
  width: 100%;
  font-size: 1.4em;
  background-color: transparent;
}

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #B2B2B2;
  text-align: left;
}

th {
  text-align: left;
}

table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 1em;
}

table > thead > tr > th,
table > thead > tr > td,
table > tbody > tr > th,
table > tbody > tr > td,
table > tfoot > tr > th,
table > tfoot > tr > td {
  padding: 0.75rem;
  line-height: 1em;
  vertical-align: top;
  border-top: 1px solid #eee;
}

table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #eee;
}

table > caption + thead > tr:first-child > th,
table > caption + thead > tr:first-child > td,
table > colgroup + thead > tr:first-child > th,
table > colgroup + thead > tr:first-child > td,
table > thead:first-child > tr:first-child > th,
table > thead:first-child > tr:first-child > td {
  border-top: 0;
}

table > tbody + tbody {
  border-top: 2px solid #eee;
}

table table {
  background-color: #fff;
}

.table-condensed > thead > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > th,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > th,
.table-condensed > tfoot > tr > td {
  padding: 0.1rem;
}

.table-bordered {
  border: 1px solid #eee;
}

.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > th,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > th,
.table-bordered > tfoot > tr > td {
  border: 1px solid #eee;
}

.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
  border-bottom-width: 2px;
}

.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}

.table-hover > tbody > tr:hover {
  background-color: rgba(0, 0, 0, 0.075);
}

table col[class*="col-"] {
  position: static;
  float: none;
  display: table-column;
}

table td[class*="col-"],
table th[class*="col-"] {
  position: static;
  float: none;
  display: table-cell;
}

/*
@include table-row-variant('active', $table-bg-active);
@include table-row-variant('success', $state-success-bg);
@include table-row-variant('info', $state-info-bg);
@include table-row-variant('warning', $state-warning-bg);
@include table-row-variant('danger', $state-danger-bg);*/
.table-responsive {
  overflow-x: auto;
  min-height: 0.01%;
}

@media screen and (max-width: 768px) {
  .table-responsive {
    width: 100%;
    margin-bottom: 0.75em;
    overflow-y: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #eee;
  }
  .table-responsive > .table {
    margin-bottom: 0;
  }
  .table-responsive > .table > thead > tr > th,
  .table-responsive > .table > thead > tr > td,
  .table-responsive > .table > tbody > tr > th,
  .table-responsive > .table > tbody > tr > td,
  .table-responsive > .table > tfoot > tr > th,
  .table-responsive > .table > tfoot > tr > td {
    white-space: nowrap;
  }
  .table-responsive > .table-bordered {
    border: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:first-child,
  .table-responsive > .table-bordered > thead > tr > td:first-child,
  .table-responsive > .table-bordered > tbody > tr > th:first-child,
  .table-responsive > .table-bordered > tbody > tr > td:first-child,
  .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:last-child,
  .table-responsive > .table-bordered > thead > tr > td:last-child,
  .table-responsive > .table-bordered > tbody > tr > th:last-child,
  .table-responsive > .table-bordered > tbody > tr > td:last-child,
  .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0;
  }
  .table-responsive > .table-bordered > tbody > tr:last-child > th,
  .table-responsive > .table-bordered > tbody > tr:last-child > td,
  .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  .table-responsive > .table-bordered > tfoot > tr:last-child > td {
    border-bottom: 0;
  }
}

.grid-item {
  float: left;
  margin-bottom: 2%;
  width: 23.5%;
}

.grid-item img {
  width: 100%;
}

/* fluid 4 columns */
.grid-sizer {
  width: 23.5%;
}

.gutter-sizer {
  width: 2%;
}

/* 2 columns */
.grid-item--width2 {
  width: 49%;
}

.grid-item--width4 {
  width: 100%;
}

.masonry-grid .ratio-1by2:before {
  padding-top: 209%;
}

.masonry-grid .ratio-1by2 picture img {
  height: 100%;
}

.masonry-grid .ratio-2by1:before {
  padding-top: 48%;
}

/* Full width masonry grid */
.full-width .grid-item {
  margin-bottom: 1%;
  width: 24.25%;
}

.full-width .grid-sizer {
  width: 24.25%;
}

.full-width .gutter-sizer {
  width: 1%;
}

.full-width .grid-item--width2 {
  width: 49.5%;
}

.full-width .masonry-grid .ratio-1by2:before {
  padding-top: 204%;
}

.full-width .masonry-grid .ratio-2by1:before {
  padding-top: 49%;
}

@media (max-width: 1200px) {
  .masonry-content-grid .grid-item, .full-width .masonry-content-grid .grid-item,
  .masonry-content-grid .grid-sizer, .full-width .masonry-content-grid .grid-sizer {
    width: 32%;
  }
}

@media (max-width: 768px) {
  .masonry-content-grid .grid-item, .full-width .masonry-content-grid .grid-item,
  .masonry-content-grid .grid-sizer, .full-width .masonry-content-grid .grid-sizer {
    width: 49%;
  }
}

@media (max-width: 480px) {
  .grid-item, .full-width .grid-item,
  .grid-sizer, .full-width .grid-sizer {
    width: 49%;
  }
  .masonry-content-grid .grid-item, .full-width .masonry-content-grid .grid-item,
  .masonry-content-grid .grid-sizer, .full-width .masonry-content-grid .grid-sizer {
    width: 100%;
  }
}

/* BLOCKS */
.banner {
  margin-top: 0;
  margin-bottom: 0;
  background: #000;
  background-size: cover;
  background-position: center;
  position: relative;
}

section[class*='banner'] > .container .container,
div.ctabanner > .container .container,
div[class*='ctatextbanner'] > .container .container {
  padding-right: 30px;
  padding-left: 30px;
}

.banner h1, .banner h2, .banner h3, .banner h4 {
  margin-bottom: 10px;
}

.banner input[type="text"], section[class*=banner] input[type="text"], header input[type="text"],
.banner input[type="search"], section[class*=banner] input[type="search"], header input[type="search"],
.banner select, section[class*=banner] select, header select,
.banner textarea, section[class*=banner] textarea, header textarea {
  border-color: transparent;
}

header form .row div.v-align-end,
.banner form .row div.v-align-end,
section[class*=banner] form .row div.v-align-end {
  margin-bottom: 3px;
}

.banner .container {
  padding-top: 6em;
  padding-bottom: 6em;
}

.banner-thin .container {
  padding-top: 3em;
  padding-bottom: 3em;
}

.banner .dim {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}

div[class^='titlebanner'] h2 {
  color: #fff;
  font-size: 7em;
  line-height: 1;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 4px;
}

div[class^='titlebanner'], div[class^='titlebanner'] p {
  color: #fff;
}

.titlebannerright .text-link {
  color: #f1ff00;
  font-weight: bold;
}

.locationsearchbanner label {
  padding-right: 20px;
}

.locationsearchbanner label, .locationsearchbanner input, .locationsearchbanner .btn.secondary {
  width: auto;
  display: inline-block;
  vertical-align: -webkit-baseline-middle;
}

.locationsearchbanner input[type=text] {
  min-width: 250px;
  border-radius: 0;
}

.locationsearchbanner input[type=submit], .locationsearchbanner button.btn {
  margin-left: -3px;
}

.locationsearchbanner button.btn i {
  margin-right: 3px;
}

.roombookingpanelbanner .roombookingpanelbanner-inner {
  z-index: 9;
}

.roombookingpanelbanner form {
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.roombookingcontentbanner form .container {
  color: #333;
  padding: 1.5em;
  background: rgba(255, 255, 255, 0.75);
}

.roombookingpanelbanner form .col-12.pt-10:first-child:after,
.roombookingpanelbanner form .col-12.pt-10:nth-child(2):after {
  display: inline-block;
  content: "\f073";
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  right: 25px;
  bottom: 13px;
  font-size: 20px;
  color: #444;
}

@media (max-width: 1200px) {
  .roombookingpanelbanner:before {
    padding-top: 0 !important;
  }
  .roombookingpanelbanner .roombookingpanelbanner-inner {
    position: relative;
  }
  .roombookingpanelbanner .panel {
    padding-top: 4em;
    padding-bottom: 4em;
  }
}

@media (max-width: 992px) {
  .roombookingpanelbanner .slider {
    position: relative;
  }
}

.socialtestimonialbanner .container {
  padding-top: 0;
  padding-bottom: 0;
}

.socialtestimonialbanner .container .row > div {
  padding-top: 3em;
  padding-bottom: 3em;
}

@media (min-width: 768px) {
  .socialtestimonialbanner .container:before {
    content: '';
    height: 100%;
    width: 60%;
    position: absolute;
    left: -50%;
  }
  .socialtestimonialbanner .container .row > div p {
    padding-left: 3em;
  }
}

@media (max-width: 767px) {
  .socialtestimonialbanner .container .row > div p {
    padding: 1em;
  }
  .socialtestimonialbanner .container .row > div {
    padding-top: 1em;
    padding-bottom: 1em;
  }
}

.socialtestimonialbanner .container .row > div p {
  margin-bottom: 0;
}

.socialtestimonialbanner.facebook .container div.col-md-3,
.socialtestimonialbanner.facebook .container:before {
  background: #3b5998;
}

.socialtestimonialbanner.twitter .container div.col-md-3,
.socialtestimonialbanner.twitter .container:before {
  background: #1DA1F2;
}

.socialtestimonialbanner.instagram .container div.col-md-3,
.socialtestimonialbanner.instagram .container:before {
  background: #d93175;
}

.socialtestimonialbanner.tripadvisor .container div.col-md-3,
.socialtestimonialbanner.tripadvisor .container:before {
  background: #00a680;
}

.socialtestimonialbanner.linkedin .container div.col-md-3,
.socialtestimonialbanner.linkedin .container:before {
  background: #0077B5;
}

.socialtestimonialbanner .container .fa {
  color: #fff;
  font-size: 7em;
}

@media (min-width: 769px) {
  .banner:not(.ctatextbannercenter) .container .row > div > :last-child {
    margin-bottom: 0;
  }
  .btn + .btn.secondary {
    margin-left: 20px;
  }
}

@media (max-width: 1200px) {
  div[class^='titlebanner'] h2 {
    font-size: 5em;
    line-height: 1.2;
    margin-bottom: 30px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 500;
  }
}

@media (max-width: 1200px) and (max-width: 1199px) {
  div[class^='titlebanner'] h2 {
    font-size: 4.5em;
    line-height: 1.2;
  }
}

@media (max-width: 1200px) and (max-width: 991px) {
  div[class^='titlebanner'] h2 {
    font-size: 4em;
    line-height: 1.2;
  }
}

@media (max-width: 1200px) and (max-width: 767px) {
  div[class^='titlebanner'] h2 {
    font-size: 3.5em;
    line-height: 1.2;
  }
}

@media (max-width: 1200px) and (max-width: 479px) {
  div[class^='titlebanner'] h2 {
    font-size: 3em;
    line-height: 1.2;
  }
}

@media (max-width: 991px) {
  .locationsearchbanner label {
    padding: 0;
    margin: 0 0 15px 0;
    text-align: center;
    display: block;
    color: #000;
  }
  .locationsearchbanner input[type=text] {
    display: block;
    width: 100%;
  }
  .locationsearchbanner input[type=submit] {
    margin-left: 0;
    width: 40%;
  }
  .locationsearchbanner .btn.secondary {
    width: 60%;
  }
  div[class^='titlebanner'] h2 {
    font-size: 3em;
    line-height: 1.2;
    font-weight: 500;
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-transform: uppercase;
  }
}

@media (max-width: 991px) and (max-width: 1199px) {
  div[class^='titlebanner'] h2 {
    font-size: 2.75em;
    line-height: 1.2;
  }
}

@media (max-width: 991px) and (max-width: 991px) {
  div[class^='titlebanner'] h2 {
    font-size: 2.5em;
    line-height: 1.2;
  }
}

@media (max-width: 991px) and (max-width: 767px) {
  div[class^='titlebanner'] h2 {
    font-size: 2.25em;
    line-height: 1.2;
  }
}

@media (max-width: 991px) and (max-width: 479px) {
  div[class^='titlebanner'] h2 {
    font-size: 2em;
    line-height: 1.2;
  }
}

@media (max-width: 767px) {
  .banner {
    text-align: center;
  }
  div[class^='titlebanner'] h2 {
    font-size: 2.5em;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
  }
}

@media (max-width: 767px) and (max-width: 1199px) {
  div[class^='titlebanner'] h2 {
    font-size: 2.25em;
    line-height: 1.2;
  }
}

@media (max-width: 767px) and (max-width: 991px) {
  div[class^='titlebanner'] h2 {
    font-size: 2em;
    line-height: 1.2;
  }
}

@media (max-width: 767px) and (max-width: 767px) {
  div[class^='titlebanner'] h2 {
    font-size: 1.75em;
    line-height: 1.2;
  }
}

@media (max-width: 767px) and (max-width: 479px) {
  div[class^='titlebanner'] h2 {
    font-size: 1.5em;
    line-height: 1.2;
  }
}

@media (max-width: 767px) {
  .videobannerpanelleft > div,
  .videobannerpanelright > div {
    position: relative;
  }
  .videobannerpanelleft > picture,
  .videobannerpanelright > picture {
    display: none;
  }
  .videobannerpanelleft,
  .videobannerpanelright {
    display: flex;
    flex-wrap: wrap;
  }
  .videobannerpanelleft .v-align .row > div:first-of-type {
    order: 2;
  }
  .videobannerpanelleft .v-align .row > div:last-of-type {
    order: 1;
    margin-top: 20px;
  }
}

.bannerslider .content,
.bannerpanelsliderleft .content {
  position: relative;
}

.bannerslider .content .dim,
.bannerpanelsliderleft .content .bannerpanelsliderleft-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.bannerslider.fullscreen .content,
.headerbannerslider.fullscreen .content {
  height: 100%;
  position: initial;
}

.bannerslider.fullscreen .content picture,
.headerbannerslider.fullscreen .content picture {
  height: 100%;
}

/* PANEL SLIDER ARROWS */
.bannerpanelsliderleft .panel .arrows {
  float: right;
}

.bannerpanelsliderleft .panel .arrows .slick-arrow {
  position: initial;
  transform: none;
  margin-top: -10px;
}

.timeline {
  position: relative;
  width: 100%;
}

.timeline .container {
  overflow: visible;
}

.timeline-line {
  position: absolute;
  width: 2px;
  background: #eaeaea;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  display: flex;
  overflow: auto;
}

.timeline-item::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 2em;
  width: 2em;
  background: #f1ff00;
}

.timeline-item > div {
  padding: 40px 15px;
}

.timeline-item > div:nth-child(odd) {
  padding-right: 40px;
}

.timeline-item > div:nth-child(even) {
  padding-left: 40px;
}

@media (max-width: 767px) {
  .timeline-line {
    left: 15px;
    transform: none;
  }
  .timeline .img-first {
    flex-direction: column-reverse;
  }
  .timeline-item {
    padding-left: 15px;
  }
  .timeline-item::after {
    left: 0;
    transform: none;
    top: 95px;
  }
  .timeline-item {
    padding-top: 80px;
  }
  .timeline-item > div {
    padding: 15px 15px 15px 40px;
  }
  .timeline-item > div:nth-child(odd) {
    padding-right: 15px;
  }
  .timeline-item > div:nth-child(even) {
    padding-left: 40px;
  }
}

div[class^='form'].bakimg,
div[class^='form'].bakimg label {
  color: #fff;
}

div[class^='form'].bakimg .dim {
  position: relative;
}

.mapwithtextleft .map, .mapwithtextright .map {
  min-height: 375px;
}

.mapwithtextleft iframe, .mapwithtextright iframe {
  border: none;
  min-height: 375px;
}

.galleryslidercentermode .slick-slide .content picture,
.centercarousel-listing .slick-slide .content picture {
  margin: 48px 0;
  transition: all 300ms ease;
}

.galleryslidercentermode .slick-center .content picture,
.centercarousel-listing .slick-center .content picture {
  transform: scale(1.2);
  transition: all 300ms ease;
}

.centercarousel-listing .slick-slide .content .body {
  opacity: 0;
  visibility: hidden;
  text-align: center;
  padding-bottom: 30px;
  transition: all 300ms ease;
}

.centercarousel-listing .slick-center .content .body {
  opacity: 1;
  visibility: visible;
  padding-top: 30px;
  padding-bottom: 0;
  transition-delay: 0.3s;
}

.gallerysliderthumbs {
  position: relative;
}

.gallerysliderthumbs.fullscreen .thumbs {
  position: absolute;
  top: initial;
  bottom: 30px;
  width: 100%;
  height: auto;
}

.gallerysliderthumbs .container .thumbs {
  padding-right: 40px;
}

/* APPLIES SPACING TO ROWS IN GALLERY BLOCKS */
.gallery2col .row:not(:last-child), .gallery3col .row:not(:last-child), .gallery4col .row:not(:last-child) {
  padding-bottom: 40px;
}

@media (max-width: 1200px) {
  .galleryslidercentermode .slick-slide .content picture,
  .centercarousel-listing .slick-slide .content picture {
    margin: 36px 0;
  }
}

@media (max-width: 768px) {
  .galleryslidercentermode .slick-slide .content picture,
  .centercarousel-listing .slick-slide .content picture {
    margin: 22px 0;
  }
}

@media (max-width: 767px) {
  /* 4-up is a bit small on mobile so switch to 2-up */
  .gallery4col .row .col-3 {
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .gallery4col .row .col-3:first-child {
    padding-bottom: 40px;
  }
  .gallerysliderthumbs.fullscreen:before {
    max-height: 550px;
  }
}

@media (max-width: 480px) {
  .gallerysliderthumbs.fullscreen:before {
    max-height: 500px;
  }
}

p.pricing {
  font-size: 2em;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

p.date {
  font-size: 1.2em;
  margin-bottom: 12px;
}

p.date time {
  font-weight: bold;
}

time.date {
  display: block;
  font-weight: bold;
  font-size: 1.2em;
  margin-bottom: 12px;
}

.listing a.title {
  color: #f1ff00;
  margin-bottom: 20px;
}

.listing time.date, .listing p.date {
  color: #B61F3B;
}

/* LISTING GRID */
@media (min-width: 767px) {
  .newsgrid .col-md-7 .card {
    height: auto !important;
    -webkit-box-orient: horizontal !important;
    flex-direction: row !important;
  }
  .newsgrid .col-md-7 .card:last-child {
    margin-bottom: 0;
  }
  .newsgrid .col-md-7 .card a:not(.text-link) {
    width: 262px;
    flex: 0 0 auto;
  }
  .newsgrid .col-md-7 .card a img {
    height: 100%;
    min-width: 100%;
    width: auto;
  }
  .newsgrid .col-md-5 .card {
    height: 100% !important;
    margin-bottom: 0;
  }
}

@media (max-width: 1200px) and (min-width: 768px) {
  .newsgrid .col-md-7 .card a {
    width: 200px;
  }
}

@media (max-width: 992px) and (min-width: 768px) {
  .newsgrid .col-md-7 .card a {
    display: none;
  }
}

/* FILTER */
div.filter-bar {
  padding: 10px 0;
  background: #000;
  margin-bottom: 40px;
}

div.filter-bar p {
  float: left;
  margin: 10px 20px 0 0;
}

div.filter-bar .filter-view {
  float: right;
}

ul.filter {
  margin: 0;
  padding: 0;
}

ul.filter li {
  display: inline-block;
  list-style: none;
  margin-right: 10px;
}

@media (min-width: 768px) {
  select.filter {
    width: auto;
  }
}

@media (min-width: 1200px) {
  input.filter {
    width: 250px;
  }
  div.filter-bar input.filter {
    float: left;
    margin-right: 20px;
  }
}

@media (max-width: 1199px) {
  input.filter {
    margin-bottom: 15px;
  }
}

.filter-view a {
  cursor: pointer;
}

.filter-view a .fa {
  vertical-align: middle;
}

.filter-view a:not(.active) {
  color: #B2B2B2;
}

/* LOADMORE */
.loadmore-container {
  position: relative;
}

.loadmore-content {
  height: 850px;
  overflow: hidden;
  margin-bottom: 25px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

p.loadmore {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  text-align: center;
  z-index: 9;
  margin-bottom: 0;
  height: 150px;
  background: url(/Images/vert-fade-white.png) repeat-x;
}

p.loadmore a {
  color: #f1ff00;
  position: absolute;
  bottom: -15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

p.loadmore a i {
  display: block;
  transition: all;
}

p.loadmore a:hover i {
  color: #000;
}

@media (min-width: 480px) and (max-width: 1400px) {
  .loadmore-container {
    height: 650px;
  }
}

.location-listing .list-item {
  padding: 4em;
  border-right: 1px solid #dbdddd;
}

.location-listing .list-item span {
  font-size: 1.4em;
  line-height: 1.75;
}

@media (max-width: 991px) {
  .location-listing .list-item span {
    font-size: 1.35em;
    line-height: 1.7;
  }
}

@media (max-width: 767px) {
  .location-listing .list-item span {
    font-size: 1.3em;
    line-height: 1.65;
  }
}

@media (max-width: 479px) {
  .location-listing .list-item span {
    font-size: 1.25em;
    line-height: 1.6;
  }
}

.location-listing .list-item:nth-of-type(2n) {
  border-right: 0;
}

.location-listing h4 {
  color: #f1ff00;
  font-size: 1.4em;
  margin-bottom: 5px;
}

.locationfilter label:first-child {
  display: block;
  padding-bottom: 10px;
}

.locationfilter .locationsearchbanner label {
  padding-left: 20px;
}

.locationslider .content-slider picture {
  position: absolute;
  bottom: 0;
  left: -25px;
  width: auto;
}

.locationslider .content-slider .slick-slide.loaded picture {
  left: 0;
}

.locationslider h2 {
  margin-bottom: 45px;
}

.locationslider h2 + p {
  margin-top: -10px;
  margin-bottom: 45px;
}

.locationslider picture img {
  height: 100%;
  width: auto;
}

.locationslider .nearest .title {
  margin-bottom: 0;
}

.locationslider .nearest .map {
  min-height: 300px;
}

@media (min-width: 1400px) and (max-width: 1600px) {
  .locationslider .content-slider .slick-slide picture {
    left: -125px;
  }
  .locationslider .content-slider .slick-slide.loaded picture {
    left: -100px;
  }
}

@media (max-width: 1400px) {
  .locationslider .content-slider .slick-slide picture {
    left: -290px;
  }
  .locationslider .content-slider .slick-slide.loaded picture {
    left: -265px;
  }
}

@media (max-width: 992px) {
  .locationslider picture img {
    display: none;
  }
  .locationslider .nearest .row {
    margin-top: 0;
  }
  .locationslider .nearest .col-lg-6:first-child {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .location-listing .list-item {
    border-right: none;
  }
}

.socialwall {
  position: relative;
}

.socialwall .grid-item {
  padding: 20px;
  background: #f3f3f3;
}

.socialwall .grid-item p {
  margin-bottom: 15px;
}

.socialwall .grid-item p:last-child {
  margin-bottom: 0;
}

.socialwall .grid-item.social-twitter {
  color: #fff;
  background: #0084b4;
}

.socialwall ul.stats {
  margin: 0;
  color: #7b7b7b;
  padding: 10px 0 0 0;
  list-style: none;
  font-size: 1.2em;
  border-top: 1px solid #fff;
}

.socialwall ul.stats li {
  float: left;
  list-style: none;
  margin-right: 10px;
}

.socialwall ul.stats li.date {
  float: right;
  margin-right: 0;
}

.socialwall .grid-item.social-twitter ul.stats {
  color: #aed5e4;
  border-top: 1px solid #41a4ca;
}

.socialwall .social-accounts {
  padding-bottom: 80px;
}

.socialwall .social-accounts .fa {
  background: #f1ff00;
  border-radius: 50%;
  height: 2em;
  width: 2em;
  color: #fff;
  font-size: .7em;
  padding-top: .5em;
  text-align: center;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.socialwall .social-accounts .fa:hover {
  background: #000;
}

.member-details p.title {
  padding-top: 10px;
}

.member-details .contact {
  background: #f1ff00;
  padding: 10px;
  font-size: 1.5em;
}

.member-details .contact .social-accounts {
  font-size: 1em;
  float: left;
}

.member-details .contact a,
.member-details .contact li a {
  color: #fff;
}

.member-details .contact .fa-envelope {
  float: left;
  margin: 0 .4em 0 0;
}

.member-details p.title + p {
  margin-top: -40px;
}

.teamgrid .carousel .slick-slide {
  padding: 0 15px;
}

.images-lockup-container {
  overflow: hidden;
}

.images-lockup-container picture {
  float: left;
  width: 100%;
  overflow: hidden;
}

.images-lockup-container[class*="layout"][class*="-2"] picture {
  height: 48.5%;
}

.images-lockup-container[class*="layout"][class*="-2"] picture:first-child,
.images-lockup-container[class*="layout"][class*="-3"] picture:first-child {
  margin-bottom: 3%;
}

.images-lockup-container[class*="layout"][class*="-5"] picture:first-child {
  margin-bottom: 0;
  margin-right: 3%;
  width: 75%;
}

.textwithimagescontainedright .images-lockup-container[class*="layout"][class*="-5"] picture:first-child {
  margin-right: 0;
  margin-left: 3%;
  float: right;
}

.images-lockup-container[class*="layout"][class*="-5"] picture:nth-child(n+2) {
  margin-bottom: 3%;
  width: 22%;
}

.images-lockup-container[class*="layout"][class*="-5"] picture:last-child {
  margin-bottom: 0;
}

.images-lockup-container.layout1-3 picture:nth-child(n+2) {
  width: 48.5%;
  margin-right: 3%;
}

.images-lockup-container.layout1-3 picture:last-child {
  margin-right: 0;
}

.images-lockup-container.layout1-4 picture {
  width: 48.5%;
  margin-bottom: 3%;
}

.images-lockup-container.layout1-4 picture:nth-child(n+3) {
  margin-right: 0%;
  margin-bottom: 0;
}

.images-lockup-container.layout1-4 picture:nth-child(n+2) {
  float: right;
}

.images-lockup-container.layout1-4 picture:last-child {
  margin-right: 0;
  float: left;
}

.images-lockup-container.layout2-3 picture:nth-child(n+2) {
  width: 36%;
  margin-right: 3%;
}

.images-lockup-container.layout2-3 picture:last-child {
  margin-right: 0;
  width: 61%;
}

.images-lockup-container.layout2-4 picture {
  width: 48.5%;
  margin-bottom: 3%;
}

.images-lockup-container.layout2-4 picture:nth-child(n+3) {
  margin-right: 0%;
  margin-bottom: 0;
}

.images-lockup-container.layout2-4 picture:nth-child(n+2) {
  float: right;
}

.images-lockup-container.layout2-4 picture:last-child {
  margin-right: 0;
  float: left;
}

.textwithimageleft h3,
.textwithimageright h3 {
  color: #f1ff00;
}

.promoblocks .promo p {
  margin-bottom: 0;
}

.promoblocks .promo p + p {
  margin-top: 15px;
}

.textwithimageleftandright {
  position: relative;
}

.textwithimageleftandright .image-left[data-emergence="hidden"] {
  opacity: 0;
  left: -250px;
}

.textwithimageleftandright .image-left[data-emergence="visible"] {
  opacity: 100;
  left: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.textwithimageleftandright .image-right[data-emergence="hidden"] {
  opacity: 0;
  right: -250px;
}

.textwithimageleftandright .image-right[data-emergence="visible"] {
  opacity: 100;
  right: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.textwithimageleftandright .container, .textwithimageleftandright .container .row {
  min-height: 540px;
}

.textwithimageleftandright .image-left,
.textwithimageleftandright .image-right {
  top: 0;
  position: absolute;
}

.textwithimageleftandright .image-left picture img,
.textwithimageleftandright .image-right picture img {
  height: 600px;
  width: auto;
}

.imagetextlockup .row .col-md-6:first-child picture {
  margin-bottom: 25px;
}

.imagetextlockup .row .col-md-6:last-child picture {
  height: 95%;
  overflow: hidden;
}

@media (max-width: 768px) {
  .imagetextlockup .row .col-md-6:last-child {
    display: none;
  }
}

.promoblockleft .row, .promoblockright .row {
  color: #fff;
  background: #f1ff00;
}

.promoblockleft h1, .promoblockleft h2, .promoblockleft h3, .promoblockleft h4, .promoblockleft h5,
.promoblockright h1, .promoblockright h2, .promoblockright h3, .promoblockright h4, .promoblockright h5 {
  color: #fff;
}

a .promo .dim:hover {
  transition: background .3s;
  background: rgba(0, 0, 0, 0.5);
}

.promoblockoverlayleft .dim,
.promoblockoverlayright .dim {
  width: 50%;
}

.promoblockoverlayright .dim {
  right: 0;
  left: initial;
}

@media (max-width: 768px) {
  .promoblockoverlayleft .dim,
  .promoblockoverlayright .dim {
    width: 100% !important;
    position: relative;
  }
}

/* TEXT PANEL */
.text-panel {
  padding: 2em;
  background: #eaeaea;
}

.textwithstatsleft .container .row > div:last-child,
.textwithstatsright .container .row > div:first-child {
  padding-top: 2em;
}

/* Content Grid */
.contentgrid1 .col-lg-4:not(:last-child) .text-panel {
  height: 100%;
  padding: 2em 4em;
}

.contentgrid1 .col-lg-4:last-child .col-12:first-child {
  margin-bottom: 30px;
}

.contentgrid1 .col-lg-4:last-child .text-panel picture img {
  width: auto;
  max-width: 100%;
  margin: 0 auto 15px;
}

@media (min-width: 990px) {
  .contentgrid1 .col-lg-4:first-child,
  .contentgrid1 .col-lg-4:first-child picture {
    overflow: hidden;
  }
  .contentgrid1 .col-lg-4:first-child picture,
  .contentgrid1 .col-lg-4:first-child picture img {
    height: 100%;
  }
  .contentgrid1 .col-lg-4:first-child picture img {
    width: auto;
  }
}

@media (max-width: 1300px) {
  .textwithimageleftandright .image-left[data-emergence="visible"] {
    left: -100px;
  }
  .textwithimageleftandright .image-right[data-emergence="visible"] {
    right: -100px;
  }
}

@media (max-width: 998px) {
  .textwithimageleftandright .image-left[data-emergence="visible"] {
    left: -150px;
  }
  .textwithimageleftandright .image-right[data-emergence="visible"] {
    right: -150px;
  }
}

@media (max-width: 991px) {
  .contentgrid1 .col-lg-4:last-child {
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  .textwithimageleftandright .container, .textwithimageleftandright .container .row {
    min-height: 0;
  }
  .textwithimageleftandright .container .sp {
    padding-top: 0;
    padding-bottom: 0;
  }
  .textwithimageleftandright .image-left, .textwithimageleftandright .image-right {
    display: none;
  }
  .contentgrid1 .col-lg-4:first-child {
    margin-bottom: 30px;
  }
}

/* TEXT OVERLAY WITH IMAGE */
@media (max-width: 767px) {
  .textoverlay2col .md-bakimg > .container,
  .textoverlaywithimageleft > .container,
  .textoverlaywithimageright > .container {
    margin-top: -90px;
  }
}

@media (min-width: 768px) {
  .textoverlaywithimageleft,
  .textoverlaywithimageright {
    position: relative;
  }
  .textoverlaywithimageleft > picture,
  .textoverlaywithimageright > picture {
    width: 75%;
  }
  .textoverlaywithimageright > picture {
    margin-left: auto;
  }
  .textoverlaywithimageleft > picture + .container,
  .textoverlaywithimageright > picture + .container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
  }
  .textoverlaywithimageleft > picture + .container .row,
  .textoverlaywithimageright > picture + .container .row {
    height: 100%;
  }
  .textoverlaywithimageleft > picture + .container .row > div,
  .textoverlaywithimageright > picture + .container .row > div {
    align-self: center;
  }
  .textoverlaywithimageleft .col-md-6:not(.offset-md-6) {
    margin-left: -35%;
  }
  .textoverlaywithimageright .col-lg-4.v-align-self {
    margin-left: -100%;
  }
  .textoverlay2col .md-bakimg > picture {
    top: 110px;
    overflow: hidden;
    height: calc(100% - 220px);
  }
  /* TEXT LOCKUP */
  .imagetextlockup3 .col-md-4 {
    padding-top: 200px;
  }
}

@media (min-width: 992px) {
  .textoverlaywithimageleft .col-lg-4:not(.offset-lg-8) {
    margin-left: -16.666667%;
  }
}

@media (min-width: 1500px) {
  .textoverlaywithimageleft > picture,
  .textoverlaywithimageright > picture {
    width: 70%;
  }
}

@media (min-width: 2200px) {
  .textoverlaywithimageleft > picture,
  .textoverlaywithimageright > picture {
    width: 65%;
  }
}

/* FULLSCREEN SECTIONS */
@media (min-width: 768px) {
  .fullscreensection {
    position: relative;
  }
  .fullscreensection .fullscreen-md:before {
    min-height: 800px;
    max-height: 1500px;
  }
  .fullscreensection .container {
    position: absolute;
    min-height: 100vh;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  .fullscreensection .container > .row {
    height: 100vh;
    min-height: 800px;
  }
  .fullscreensection .container .row .col-md-6 {
    padding: 0 5em;
  }
}

.icontext .fa,
.icontextvert .fa,
.icontextvert2col .fa {
  color: #f1ff00;
}

.icontextvert .fa, .icontextvert2col .fa,
.icontextvert picture, .icontextvert2col picture {
  margin-bottom: 40px;
}

.icontext picture,
.icontextvert picture,
.icontextvert2col picture {
  display: inline-block;
}

.icontext picture img,
.icontextvert picture img,
.icontextvert2col picture img {
  width: auto;
  max-width: 100%;
  display: inline-block;
}

.icontext p, .icontextvert p, .icontextvert2col p,
.icontext h1, .icontextvert h1, .icontextvert2col h1,
.icontext h2, .icontextvert h2, .icontextvert2col h2,
.icontext h3, .icontextvert h3, .icontextvert2col h3,
.icontext h4, .icontextvert h4, .icontextvert2col h4 {
  margin-top: 0;
  margin-bottom: 15px;
}

.icontext h1 + p.sub-heading, .icontextvert h1 + p.sub-heading, .icontextvert2col h1 + p.sub-heading,
.icontext h2 + p.sub-heading, .icontextvert h2 + p.sub-heading, .icontextvert2col h2 + p.sub-heading,
.icontext h3 + p.sub-heading, .icontextvert h3 + p.sub-heading, .icontextvert2col h3 + p.sub-heading {
  margin-top: 0;
}

.icontext p:last-child,
.icontext h1:last-child,
.icontext h2:last-child,
.icontext h3:last-child,
.icontext h4:last-child {
  margin-bottom: 0;
}

/* SOCIAL SHARE */
div.share ul {
  margin: 0;
  padding: 0;
}

div.share ul li {
  list-style: none;
  float: left;
  margin-right: 5px;
}

div.share ul li:last-child {
  margin-right: 0;
}

.socialimagecarousel .carousel .img {
  width: 100%;
  height: 220px;
  background-size: cover;
  background-repeat: no-repeat;
}

@media (min-width: 768px) {
  .socialimagecarousel .carousel {
    position: absolute;
    width: 50vw;
    max-width: 1000px;
  }
}

@media (max-width: 1600px) {
  .socialimagecarousel .carousel .img {
    height: 200px;
  }
}

@media (max-width: 1400px) {
  .socialimagecarousel .carousel .img {
    height: 180px;
  }
}

@media (max-width: 992px) {
  .socialimagecarousel .carousel .img {
    height: 180px;
  }
}

@media (max-width: 767px) {
  .socialimagecarousel .carousel .img {
    height: 220px;
  }
}

.sharepromo .col-12 h2 {
  color: #f1ff00;
  margin-bottom: 15px;
}

.sharepromo h2 + h3 {
  color: #B2B2B2;
  margin-top: -8px;
}

.pagenextprev > .row {
  padding: 0 15px;
}

.pagelinks .col-12 p:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .pagenextprev .text-center,
  .pagenextprev .text-right {
    text-align: left !important;
  }
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.visuallyhidden {
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.component-container {
  overflow: hidden;
}

.shopify-buy__type--center {
  text-align: center;
}

.shopify-buy--visually-hidden {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}

/*
 .shopify-buy__btn {
     color: #fff;
     font-size: 15px;
     background-color: #78b657;
     padding: 12px 40px;
     letter-spacing: .3px;
     display: block;
     border-radius: 3px;
     cursor: pointer;
     -webkit-transition: background 200ms ease;
     transition: background 200ms ease;
     max-width: 100%;
     text-overflow: ellipsis;
     overflow: hidden;
     line-height: 1.2;
     border: 0;
     -moz-appearance: none;
     -webkit-appearance: none 
}
 .shopify-buy__btn:hover, .shopify-buy__btn:focus {
     background-color: #5f9d3e;
}
*/
.shopify-buy__btn--parent {
  background-color: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.shopify-buy__btn--parent:hover .product__variant-img, .shopify-buy__btn--parent:focus .product__variant-img {
  opacity: .7;
}

.shopify-buy__btn--cart-tab {
  padding: 5px 11px;
  border-radius: 3px 0 0 3px;
  position: fixed;
  right: 0;
  top: 50%;
  -webkit-transform: translate(100%, -50%);
  transform: translate(100%, -50%);
  opacity: 0;
  min-width: inherit;
  width: auto;
  height: auto;
  z-index: 2147483647;
}

.shopify-buy__btn--cart-tab.is-active {
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 1;
}

.shopify-buy__btn__counter {
  display: block;
  margin: 0 auto 10px auto;
  font-size: 18px;
}

.shopify-buy__icon-cart--side {
  height: 20px;
  width: 20px;
}

.shopify-buy__btn[disabled] {
  background-color: #999;
  pointer-events: none;
}

.shopify-buy__btn--close {
  position: absolute;
  right: 9px;
  top: 8px;
  font-size: 35px;
  color: #767676;
  border: none;
  background-color: transparent;
  -webkit-transition: color 100ms ease, -webkit-transform 100ms ease;
  transition: color 100ms ease, -webkit-transform 100ms ease;
  transition: transform 100ms ease, color 100ms ease;
  transition: transform 100ms ease, color 100ms ease, -webkit-transform 100ms ease;
  cursor: pointer;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding-right: 9px;
}

.shopify-buy__btn--close:hover {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  color: dimgray;
}

@-webkit-keyframes flipIn {
  from {
    max-height: 0;
    -webkit-transform: rotatex(90deg) translatey(-50%);
    transform: rotatex(90deg) translatey(-50%);
    margin-bottom: -65px;
    opacity: 0;
  }
  to {
    max-height: none;
    -webkit-transform: none;
    transform: none;
    margin-bottom: 20px;
    opacity: 1;
  }
}

@keyframes flipIn {
  from {
    max-height: 0;
    -webkit-transform: rotatex(90deg) translatey(-50%);
    transform: rotatex(90deg) translatey(-50%);
    margin-bottom: -65px;
    opacity: 0;
  }
  to {
    max-height: none;
    -webkit-transform: none;
    transform: none;
    margin-bottom: 20px;
    opacity: 1;
  }
}

@-webkit-keyframes flipOut {
  from {
    max-height: none;
    -webkit-transform: none;
    transform: none;
    margin-bottom: 20px;
    opacity: 1;
  }
  to {
    max-height: 0;
    -webkit-transform: rotatex(90deg) translatey(-50%);
    transform: rotatex(90deg) translatey(-50%);
    margin-bottom: -65px;
    opacity: 0;
  }
}

@keyframes flipOut {
  from {
    max-height: none;
    -webkit-transform: none;
    transform: none;
    margin-bottom: 20px;
    opacity: 1;
  }
  to {
    max-height: 0;
    -webkit-transform: rotatex(90deg) translatey(-50%);
    transform: rotatex(90deg) translatey(-50%);
    margin-bottom: -65px;
    opacity: 0;
  }
}

.shopify-buy__cart-wrapper {
  height: 100%;
  padding-left: 10px;
}

.shopify-buy__cart {
  height: 100%;
  background-color: #fff;
  width: calc(100% - 10px);
  position: absolute;
  right: 0;
  -webkit-box-shadow: -5px 0 5px rgba(0, 0, 0, 0.1);
  box-shadow: -5px 0 5px rgba(0, 0, 0, 0.1);
}

.shopify-buy__cart__header {
  padding: 20px;
  padding-right: 40px;
  position: relative;
  z-index: 2147483647;
  background-color: inherit;
}

.shopify-buy__cart__title {
  font-size: 18px;
  color: #767676;
  font-weight: bold;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: none;
  letter-spacing: 0;
}

.shopify-buy__cart-scroll {
  padding: 70px 0 135px 0;
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
}

.shopify-buy__cart-scroll--discounts {
  padding-bottom: 170px;
}

.shopify-buy__cart-scroll--cart-note {
  padding-bottom: 200px;
}

.shopify-buy__cart-scroll--cart-note.shopify-buy__cart-scroll--discounts {
  padding-bottom: 230px;
}

.shopify-buy__cart-items {
  overflow: hidden;
  overflow-y: auto;
  height: 100%;
  position: relative;
  padding: 0 20px 20px;
  -webkit-overflow-scrolling: touch;
  -webkit-perspective: 400px;
  perspective: 400px;
  -webkit-perspective-origin: 50% 0px;
  perspective-origin: 50% 0px;
}

.shopify-buy__cart-item {
  min-height: 65px;
  margin-bottom: 20px;
  overflow: hidden;
  position: relative;
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation: 200ms flipIn forwards;
  animation: 200ms flipIn forwards;
}

.shopify-buy__cart-item.is-hidden {
  -webkit-animation-name: flipOut;
  animation-name: flipOut;
}

.shopify-buy__cart-item__image {
  width: 65px;
  height: 65px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: transparent;
  position: absolute;
  left: 0;
  top: 0;
}

.shopify-buy__cart-item__title {
  font-size: 14px;
  margin-left: 80px;
  margin-bottom: 3px;
  display: block;
}

.shopify-buy__cart-item__price {
  float: right;
  font-size: 14px;
  font-weight: bold;
  line-height: 26px;
}

.shopify-buy__cart-item__price-and-discounts {
  float: right;
  text-align: right;
  max-width: 100px;
}

.shopify-buy__cart-item__price-and-discounts .shopify-buy__cart-item__price {
  float: none;
}

.shopify-buy__cart-item__full-price {
  font-size: 12px;
  line-height: 12px;
}

.shopify-buy__cart-item__discount {
  font-size: 12px;
  word-wrap: break-word;
  text-transform: uppercase;
}

.shopify-buy__cart-item__discount + .shopify-buy__cart-item__discount {
  margin-top: 5px;
}

.shopify-buy__cart-item__discount__icon {
  width: 12px;
  height: 12px;
  vertical-align: top;
  fill: currentColor;
}

.shopify-buy__cart-item__variant-title {
  margin-left: 80px;
  margin-bottom: 10px;
  color: #4c4c4c;
  font-size: 12px;
  max-width: 220px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.shopify-buy__cart-bottom {
  background-color: #fff;
  position: absolute;
  width: 100%;
  bottom: 0;
  padding: 15px 20px 20px 20px;
}

.shopify-buy__cart-bottom p {
  margin-bottom: 0;
  letter-spacing: 0;
}

.shopify-buy__cart__subtotal__text {
  text-transform: uppercase;
  float: left;
  font-size: 11px;
  color: #4c4c4c;
}

.shopify-buy__cart__subtotal__price {
  float: right;
}

.shopify-buy__cart__discount {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
  color: #4c4c4c;
}

.shopify-buy__cart__discount__text {
  font-size: 11px;
  text-transform: uppercase;
  margin-right: 10px;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.shopify-buy__cart__discount__text__icon {
  width: 11px;
  height: 11px;
  vertical-align: top;
  fill: currentColor;
}

.shopify-buy__cart__discount__amount {
  font-size: 12px;
  line-height: 12px;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.shopify-buy__cart__currency {
  font-size: 12px;
}

.shopify-buy__cart__notice {
  font-size: 11px;
  clear: both;
  padding-top: 10px;
  text-align: center;
  color: #4c4c4c;
}

.shopify-buy__cart__note {
  clear: both;
  padding-top: 10px;
}

.shopify-buy__cart__note__description {
  font-size: 11px;
  color: #4c4c4c;
}

.shopify-buy__cart__note__text-area {
  resize: none;
  font-size: 11px;
  width: 100%;
  color: #4c4c4c;
}

.shopify-buy__cart-empty-text {
  padding: 10px 15px;
  text-align: center;
}

.shopify-buy__btn--cart-checkout {
  clear: both;
  margin-top: 15px;
  width: 100%;
  padding: 10px 5px;
  font-size: 16px;
  text-transform: none;
  letter-spacing: 1px;
  font-weight: bold;
  padding: 14px 0;
}

.shopify-buy__quantity-container {
  margin-left: 80px;
  margin-right: 100px;
  height: 26px;
  line-height: 26px;
}

.shopify-buy__quantity-container.is-loading {
  opacity: 0.65;
  pointer-events: none;
}

.shopify-buy__cart-item__quantity-input {
  float: left;
  background: transparent;
}

@media (max-width: 330px) {
  .shopify-buy__cart-item__price-and-discounts {
    max-width: 90px;
  }
  .shopify-buy__quantity-container {
    margin-right: 90px;
  }
}

.shopify-buy__quantity-decrement, .shopify-buy__quantity-increment {
  color: #4c4c4c;
  display: block;
  height: 30px;
  float: left;
  line-height: 16px;
  font-family: monospace;
  width: 26px;
  padding: 0;
  border: none;
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  cursor: pointer;
  font-size: 18px;
  text-align: center;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  border: 1px solid #767676;
  position: relative;
}

.shopify-buy__quantity-decrement svg, .shopify-buy__quantity-increment svg {
  width: 14px;
  height: 14px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -6px;
  margin-left: -7px;
  fill: currentColor;
}

.shopify-buy__quantity-decrement {
  border-radius: 3px 0 0 3px;
}

.shopify-buy__quantity-increment {
  border-radius: 0 3px 3px 0;
}

.shopify-buy__quantity {
  color: black;
  width: 45px;
  height: 30px;
  font-size: 16px;
  border: none;
  text-align: center;
  -webkit-appearance: none;
  -moz-appearance: textfield;
  display: inline-block;
  padding: 0;
  border-radius: 0;
  border-top: 1px solid #767676;
  border-bottom: 1px solid #767676;
}

input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.shopify-buy__quantity-container.shopify-buy__quantity-with-btns {
  overflow: hidden;
}

.shopify-buy__quantity-container.shopify-buy__quantity-with-btns .shopify-buy__quantity {
  border-left: 0;
  border-right: 0;
  float: left;
}

.shopify-buy__btn.shopify-buy__btn--cart-checkout:hover {
  color: #ffffff;
  background-color: #000000;
}

.shopify-buy__btn.shopify-buy__btn--cart-checkout:focus {
  background-color: #d9e600;
}

.shopify-buy__btn.shopify-buy__btn--cart-checkout {
  font-weight: bold;
  color: #000000;
  background-color: #f1ff00;
  border-radius: 0px;
  text-align: center;
  text-decoration: none;
}

.shopify-buy__btn.shopify-buy__btn--cart-checkout:hover {
  opacity: 1;
}

.shopify-buy__cart__title {
  color: #ffffff;
}

.shopify-buy__cart__header {
  color: #ffffff;
}

.shopify-buy__cart-items {
  color: #ffffff;
}

.shopify-buy__cart__subtotal__text {
  color: #ffffff;
}

.shopify-buy__cart__subtotal__price {
  color: #ffffff;
}

.shopify-buy__cart__notice {
  color: #ffffff;
}

.shopify-buy__cart__currency {
  color: #ffffff;
}

.shopify-buy__btn--close:hover {
  color: #ffffff;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.shopify-buy__btn--close:focus {
  outline: none;
}

.shopify-buy__btn--close {
  padding: 1px 4px 1px 9px;
  color: #ffffff;
}

.shopify-buy__cart-empty-text {
  color: #ffffff;
}

.shopify-buy__cart__note__description {
  color: #ffffff;
}

.shopify-buy__cart__discount__text {
  color: #ffffff;
}

.shopify-buy__cart__discount__text__icon {
  fill: #ffffff;
}

.shopify-buy__cart__discount__amount {
  color: #ffffff;
}

.shopify-buy__cart {
  background-color: #000000;
}

.shopify-buy__cart-bottom {
  background-color: #000000;
}

.shopify-buy__cart-item__variant-title {
  color: #ffffff;
}

.shopify-buy__cart-item__price {
  color: #ffffff;
}

.shopify-buy__cart-item__full-price {
  color: #ffffff;
}

.shopify-buy__cart-item__discount {
  color: #ffffff;
}

.shopify-buy__cart-item__discount__icon {
  fill: #ffffff;
}

.shopify-buy__quantity-container.clearfix {
  color: #ffffff;
}

.shopify-buy__quantity-increment {
  color: #ffffff;
  border-color: #ffffff;
}

.shopify-buy__quantity-decrement {
  color: #ffffff;
  border-color: #ffffff;
}

.shopify-buy__quantity.shopify-buy__cart-item__quantity-input {
  color: #ffffff;
  border-color: #ffffff;
}

.shopify-buy__cart-toggle:hover {
  color: #ffffff;
  background-color: #000000;
  fill: #ffffff;
}

.shopify-buy__cart-toggle:focus {
  color: #ffffff;
  background-color: #000000;
  fill: #ffffff;
}

.shopify-buy__cart-toggle {
  font-weight: bold;
  color: #000000;
  background-color: #f1ff00;
  fill: #000000;
}

.shopify-buy__cart-toggle__count:hover {
  color: #ffffff;
}

.shopify-buy__cart-toggle__count {
  color: inherit;
}

.shopify-buy__icon-cart__group {
  fill: inherit;
}

.shopify-buy-modal-is-active {
  height: 100%;
  overflow: auto;
}

.shopify-buy-frame {
  display: inline-block;
}

.shopify-buy-frame iframe {
  width: 100%;
  display: block;
  height: 0;
  overflow: hidden;
}

.shopify-buy-frame--cart {
  width: 100%;
  max-width: 350px;
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  z-index: 2147483647;
  transform: translateX(100%);
  -webkit-transform: translateX(100%);
}

.shopify-buy-frame--cart iframe {
  height: 100%;
}

.shopify-buy-frame--cart.is-initialized {
  -webkit-transition: all 250ms cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 250ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.shopify-buy-frame--cart.is-active {
  transform: translateX(0);
  -webkit-transform: translateX(0);
}

.shopify-buy-frame--product {
  display: block;
}

.shopify-buy-frame--product.shopify-buy__layout-horizontal {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.shopify-buy-frame--product.shopify-buy__layout-horizontal iframe {
  max-width: 100%;
}

@media (min-width: 950px) {
  .shopify-buy-frame--product.shopify-buy__layout-horizontal iframe {
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
  }
}

.shopify-buy-frame--toggle {
  display: inline-block;
}

.shopify-buy-frame--toggle:not(.is-sticky) {
  overflow: hidden;
  padding: 5px;
}

.shopify-buy-frame--toggle.is-sticky {
  display: none;
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  z-index: 2147483645;
}

.shopify-buy-frame--toggle.is-active.is-sticky {
  display: block;
}

.is-active .shopify-buy-frame--toggle iframe {
  min-height: 67px;
}

.shopify-buy-frame--productSet {
  width: 100%;
}

.shopify-buy-frame--modal {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2147483646;
  display: none;
  -webkit-transition: background 300ms ease;
  transition: background 300ms ease;
}

.shopify-buy-frame--modal iframe {
  height: 100%;
  width: 100%;
  max-width: none;
}

.shopify-buy-frame--modal.is-active {
  background: rgba(0, 0, 0, 0.6);
}

.shopify-buy-frame--modal.is-block {
  display: block;
}

.shopify-buy__currency-selector {
  float: none;
  margin: -4em auto 3em;
  max-width: 120px;
}

@media (min-width: 768px) {
  .shopify-buy__currency-selector {
    float: right;
    margin: -13.6em 0 3em;
  }
}

.component-container {
  overflow: hidden;
}

.shopify-buy__type--center {
  text-align: center;
}

.shopify-buy--visually-hidden {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}

.shopify-buy__btn--parent {
  background-color: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.shopify-buy__btn--parent:hover .product__variant-img,
.shopify-buy__btn--parent:focus .product__variant-img {
  opacity: .7;
}

.shopify-buy__btn--cart-tab {
  padding: 5px 11px;
  border-radius: 3px 0 0 3px;
  position: fixed;
  right: 0;
  top: 50%;
  -webkit-transform: translate(100%, -50%);
  transform: translate(100%, -50%);
  opacity: 0;
  min-width: inherit;
  width: auto;
  height: auto;
  z-index: 2147483647;
}

.shopify-buy__btn--cart-tab.is-active {
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 1;
}

.shopify-buy__btn__counter {
  display: block;
  margin: 0 auto 10px auto;
  font-size: 18px;
}

.shopify-buy__icon-cart--side {
  height: 20px;
  width: 20px;
}

.shopify-buy__btn[disabled] {
  background-color: #999;
  pointer-events: none;
}

.shopify-buy__btn--close {
  position: absolute;
  right: 9px;
  top: 8px;
  font-size: 35px;
  color: #767676;
  border: none;
  background-color: transparent;
  -webkit-transition: color 100ms ease, -webkit-transform 100ms ease;
  transition: color 100ms ease, -webkit-transform 100ms ease;
  transition: transform 100ms ease, color 100ms ease;
  transition: transform 100ms ease, color 100ms ease, -webkit-transform 100ms ease;
  cursor: pointer;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding-right: 9px;
}

.shopify-buy__btn--close:hover {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  color: dimgray;
}

.shopify-buy__cart-toggle-wrapper {
  display: inline-block;
}

.shopify-buy__cart-toggle {
  background-color: #78b657;
  color: #fff;
  border-radius: 3px 0 0 3px;
  padding: 8px 10px;
  text-align: center;
  display: inline-block;
  min-width: 46px;
  margin-right: 0;
  cursor: pointer;
  -webkit-transition: background 200ms ease;
  transition: background 200ms ease;
}

.shopify-buy__cart-toggle:hover {
  background-color: #5f9d3e;
}

.shopify-buy__cart-toggle__count {
  font-size: 18px;
  margin-bottom: 10px;
}

.shopify-buy__icon-cart__group {
  fill: #fff;
}

.is-inline .shopify-buy__icon-cart,
.is-inline .shopify-buy__cart-toggle__title,
.is-inline .shopify-buy__cart-toggle__count {
  display: inline-block;
  vertical-align: middle;
}

.is-inline .shopify-buy__icon-cart {
  margin-right: 5px;
}

.is-inline .shopify-buy__cart-toggle__title {
  font-size: 16px;
  font-weight: normal;
}

.is-inline .shopify-buy__cart-toggle__count {
  margin-left: 21px;
  margin-bottom: 0;
  position: relative;
}

.is-inline .shopify-buy__cart-toggle__count:before {
  content: "";
  display: block;
  position: absolute;
  left: -12px;
  height: 100%;
  width: 1px;
  background-color: #fff;
  opacity: 0.3;
}

.is-inline.shopify-buy__cart-toggle {
  border-radius: 3px;
  padding: 5px 10px;
}

.shopify-buy__cart-toggle:hover {
  color: #ffffff;
  background-color: #000000;
  fill: #ffffff;
}

.shopify-buy__cart-toggle:focus {
  color: #ffffff;
  background-color: #000000;
  fill: #ffffff;
}

.shopify-buy__cart-toggle {
  font-weight: bold;
  color: #000000;
  background-color: #f1ff00;
  fill: #000000;
}

.shopify-buy__cart-toggle__count:hover {
  color: #ffffff;
}

.shopify-buy__cart-toggle__count {
  color: inherit;
}

.shopify-buy__icon-cart__group {
  fill: inherit;
}

.hero__full-w {
  position: relative;
  margin-top: -8rem;
  margin-bottom: -8rem;
  padding-top: 14rem;
  padding-bottom: 14rem;
}

@media (max-width: 767px) {
  .hero__full-w {
    padding-top: 8rem;
  }
}

.hero__full-w::after {
  content: " ";
  position: absolute;
  background: rgba(0, 0, 0, 0.3);
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
}

.hero__full-w .container {
  z-index: 1;
}

.hero__full-w .filter-list-title,
.hero__full-w .summary {
  color: #ffffff;
  font-weight: 300;
}

.hero__full-w .summary {
  max-width: 60rem;
  margin: 0 auto;
  text-align: center;
}

.hero__full-w h2.filter-list-title {
  position: relative;
  margin-bottom: .6em;
  padding-bottom: .6em;
}

.hero__full-w h2.filter-list-title::after {
  content: " ";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  background: #f1ff00;
  width: 20rem;
  height: .2rem;
  transform: translateX(-50%);
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  object-fit: cover;
}

.hero--trees .shopify-buy__currency-selector {
  margin-top: 0;
  margin-bottom: 0;
  color: #ffffff;
}

.hero--trees .shopify-buy__currency-selector select {
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' version='1.1' id='Layer_1' x='0px' y='0px' width='4.9px' height='10px' viewBox='0 0 4.9 10' style='enable-background:new 0 0 4.9 10;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%23FFFFFF;%7D%0A%3C/style%3E%3Cpolygon class='st0' points='1.4,4.7 2.5,3.2 3.5,4.7 '/%3E%3Cpolygon class='st0' points='3.5,5.3 2.5,6.8 1.4,5.3 '/%3E%3C/svg%3E");
  background-size: contain;
  color: #ffffff;
}

.hero--trees .shopify-buy__currency-selector select:focus-visible {
  border-radius: 0;
  outline: 0.1rem solid #ffffff;
}

.hero--trees .shopify-buy__currency-selector option {
  color: #000;
}

@media (max-width: 767px) {
  .hero--trees .shopify-buy__currency-selector {
    margin-top: 3rem;
  }
}

.dim {
  background: rgba(0, 0, 0, 0.15);
}

p .btn a {
  color: #000;
  text-decoration: none;
  opacity: 1;
}

p .btn:hover a {
  color: #fff;
}

.text-panel {
  border: 1px solid #666;
  background: none;
}

.text-panel + .text-panel {
  margin-top: 30px;
}

.black-theme span > a:hover {
  color: #f1ff00;
}

:target::before {
  content: "";
  display: block;
  height: 100px;
  margin: -100px 0 0;
}

/* CONTAINER */
@media (min-width: 1260px) {
  .container {
    width: 1200px;
  }
}

@media (min-width: 1360px) {
  #nav .container,
  #header .container,
  header .container,
  footer .container {
    width: 1300px;
    max-width: 100%;
  }
}

@media (min-width: 1460px) {
  #nav .container,
  #header .container,
  header .container,
  footer .container {
    width: 1400px;
    max-width: 100%;
  }
}

/* CARD */
.card {
  background: #fff;
  box-shadow: 0 2px 7px 0 rgba(216, 216, 216, 0.5);
}

.medium-grey-theme .card,
.dark-grey-theme .card,
.black-theme .card {
  box-shadow: none;
}

.card .card-block {
  color: #000;
  padding: 4em 3em;
}

.card .card-block h4 {
  color: #000;
}

.card .card-block p {
  margin-bottom: 24px;
}

time.date {
  font-weight: 400;
  font-size: 1.3em;
  margin-bottom: 15px;
}

.card a {
  display: block;
  text-decoration: none;
}

.card a:hover {
  opacity: 1;
}

.card p {
  font-weight: 400;
}

.card .title {
  font-weight: 500;
}

.card .btn {
  min-width: 0;
  padding: 0;
  color: #000000;
  border: none;
  text-transform: none;
  display: inline-block;
  text-align: left;
  background: none;
  white-space: nowrap;
}

.card a .tag {
  top: 20px;
  left: 20px;
  color: #000;
  padding: 0.8em 1.2em 0.7em 1.2em;
  background: #f1ff00;
  text-transform: uppercase;
}

.card .title, .card h4, .card-feature .title, .card-feature h4 {
  font-size: 1.5em;
  margin-bottom: 15px;
  letter-spacing: 1.4px;
  text-decoration: none;
}

.card .text-link {
  color: #B2B2B2;
  text-decoration: none;
  font-weight: 500;
  -webkit-transition: color 0.35s ease;
  -moz-transition: color 0.35s ease;
  -o-transition: color 0.35s ease;
  transition: color 0.35s ease;
}

.card a.text-link:hover {
  color: #000;
}

.card a .btn::after {
  -webkit-transition: margin-left 0.35s ease;
  -moz-transition: margin-left 0.35s ease;
  -o-transition: margin-left 0.35s ease;
  transition: margin-left 0.35s ease;
}

.card a img {
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}

.card a:hover .btn::after {
  margin-left: 25px;
}

.card a:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

/* QUOTES */
blockquote,
.slick-slide blockquote,
.testimonialcarousel blockquote.cite {
  margin: 0 auto;
  max-width: 700px;
}

.testimonialcarousel blockquote.cite cite {
  margin-top: 0;
}

blockquote.cite-photo {
  position: relative;
  padding-top: 125px;
  padding-bottom: 0;
}

blockquote cite .photo {
  top: 0;
  left: 0;
  right: 0;
  width: 96px;
  margin: 0 auto;
  position: absolute;
}

blockquote.cite-photo cite:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: calc(50% - 50px);
  width: 30px;
  height: 30px;
  background: url(/Images/EOWTE/quote.svg) no-repeat;
  background-size: contain;
}

blockquote:not(.cite):before, blockquote:not(.cite):after, blockquote q:before, blockquote q:after {
  display: none;
}

.testimonialcarousel .slick-dots button {
  width: 12px;
  height: 12px;
}

/* STAT */
.datastat .highlight {
  font-size: 3em;
}

.datastat p:not(.highlight) {
  color: #B2B2B2;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.25em;
}

.datastat:not(.dark-grey-theme):not(.black-theme):not(.medium-grey-theme) .highlight {
  padding: 0 20px;
  position: relative;
  display: inline-block;
}

.datastat:not(.dark-grey-theme):not(.black-theme):not(.medium-grey-theme) .highlight:before {
  content: '';
  position: absolute;
  width: 100%;
  left: 0;
  height: 12px;
  background: #f1ff00;
  top: 40%;
  z-index: -1;
}

@media (max-width: 767px) {
  .datastat p {
    margin-bottom: 0 !important;
  }
}

/* SLICK */
.slick-arrow {
  transition: .3s;
  background: none;
  border: none !important;
  width: 50px;
  height: 50px;
}

.slick-arrow:hover {
  background: none;
}

.slick-prev:before {
  border: none;
  content: "\f104";
  font: normal normal normal 36px/1 FontAwesome;
  color: #000;
}

.slick-next:before {
  border: none;
  content: "\f105";
  font: normal normal normal 36px/1 FontAwesome;
  color: #000;
}

header .slick-prev:before, header .slick-next:before,
.dark-grey-theme .slick-prev:before, .dark-grey-theme .slick-next:before,
.black-theme .slick-prev:before, .black-theme .slick-next:before,
.medium-grey-theme .slick-prev:before, .medium-grey-theme .slick-next:before {
  color: #f1ff00;
}

.slick-dots li button, .slick-bars li button {
  background: none;
}

header .slick-dots li button, header .slick-bars li button,
.dark-grey-theme .slick-dots li button, .dark-grey-theme .slick-bars li button,
.black-theme .slick-dots li button, .black-theme .slick-bars li button,
.medium-grey-theme .slick-dots li button, .medium-grey-theme .slick-bars li button {
  border-color: #fff;
}

header .slick-dots li.slick-active button, header .slick-bars li.slick-active button,
.dark-grey-theme .slick-dots li.slick-active button, .dark-grey-theme .slick-bars li.slick-active button,
.black-theme .slick-dots li.slick-active button, .black-theme .slick-bars li.slick-active button,
.medium-grey-theme .slick-dots li.slick-active button, .medium-grey-theme .slick-bars li.slick-active button {
  background: #f1ff00;
  border-color: #f1ff00;
}

div[data-dots="true"] .slick-arrow {
  display: none !important;
}

div[data-dir="vertical"] .slick-dots {
  top: 47%;
  right: 20px;
  left: initial;
}

div[data-dir="vertical"] .slick-dots li {
  display: block;
  padding-bottom: 5px;
}

/* THEMES */
.light-grey-theme {
  background: #f4f4f4;
}

.dark-grey-theme,
.grey-dark-theme {
  color: #fff !important;
  background: #121212;
}

.medium-grey-theme {
  color: #fff !important;
  background: #3f3f3f;
}

.black-theme {
  color: #fff !important;
  background: #000;
}

.black-theme .btn-secondary {
  border-color: #ffffff;
  color: #ffffff;
}

.black-theme .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.white-theme {
  color: #000;
  background: #ffffff;
}

.yellow-theme {
  color: #fff;
  background: #F1FF00;
}

.dark-grey-theme h1, .dark-grey-theme h2, .dark-grey-theme h3, .dark-grey-theme h4, .dark-grey-theme h5, .dark-grey-theme .sub-heading,
.black-theme h1, .black-theme h2, .black-theme h3, .black-theme h4, .black-theme h5, .black-theme .sub-heading,
.medium-grey-theme h1, .medium-grey-theme h2, .medium-grey-theme h3, .medium-grey-theme h4, .medium-grey-theme h5, .medium-grey-theme .sub-heading {
  color: #fff;
}

.dark-grey-theme p.highlight, .dark-grey-theme span.highlight,
.black-theme p.highlight, .black-theme span.highlight,
.medium-grey-theme p.highlight, .medium-grey-theme span.highlight {
  color: #f1ff00;
}

.sp + .sp.light-grey-theme, .sp.light-grey-theme + .sp,
.sp + .sp.dark-grey-theme, .sp.dark-grey-theme + .sp,
.sp + .sp.black-theme, .sp.black-theme + .sp,
.sp + .sp.medium-grey-theme, .sp.medium-grey-theme + .sp {
  padding-top: 80px !important;
}

.sp + .sp-half.light-grey-theme, .sp.light-grey-theme + .sp-half,
.sp + .sp-half.dark-grey-theme, .sp.dark-grey-theme + .sp-half,
.sp + .sp-half.blue-theme, .sp.blue-theme + .sp-half,
.sp + .sp-half.medium-grey-theme, .sp.medium-grey-theme + .sp-half {
  padding-top: 40px !important;
}

@media (max-width: 575px) {
  .sp + .sp.textwithimageleft[class*="theme"] {
    padding-top: 0 !important;
  }
  .textwithimageright {
    padding-bottom: 0;
  }
}

/* LISTING GRID */
@media (min-width: 767px) {
  .newsgrid .col-md-7 .card a:not(.text-link) {
    width: 276px;
  }
}

/* ACCORDION */
.accordion .col-12.text-center {
  text-align: left !important;
}

.accordion .toggle {
  position: relative;
  font-weight: 500;
  font-size: 1.5em;
  text-transform: none;
  background-color: #fff;
  padding: 30px 100px 30px 30px;
}

.accordion .accordion-pane {
  box-shadow: 0 2px 7px 0 rgba(136, 136, 136, 0.19);
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}

.accordion .accordion-pane:hover {
  box-shadow: 0 2px 7px 0 rgba(136, 136, 136, 0.4);
}

.accordion .panel {
  background: #fff;
  padding: 30px;
  padding-top: 0;
}

.accordion .toggle .show,
.accordion .toggle .hide,
.accordion .open .toggle .hide {
  display: block;
  position: absolute;
  top: calc(50% - 18px);
  right: 30px;
  margin-right: 0;
  width: 36px;
  height: 36px;
  background: #F1FF00 url("/Images/EOWTE/minus-black.svg") no-repeat center;
  background-size: 12px 12px;
  border-radius: 50%;
}

.accordion .toggle i:before {
  display: none;
}

.accordion .toggle .show {
  background-image: url("/Images/EOWTE/plus-black.svg");
  z-index: 1;
  -webkit-transition: opacity 0.35s ease;
  -moz-transition: opacity 0.35s ease;
  -o-transition: opacity 0.35s ease;
  transition: opacity 0.35s ease;
}

.accordion .open .toggle .show {
  opacity: 0;
  display: block;
}

.accordion .panel p,
.accordion .panel .sub-heading {
  color: #000;
}

/* Pagination */
.pagination {
  display: block;
  text-align: center;
}

.pagination li {
  display: inline-block;
  vertical-align: middle;
  margin-left: 5px;
  margin-right: 5px;
}

.pagination li > * {
  display: block;
  height: 30px;
  width: 30px;
  text-align: center;
  padding-top: 3px;
  color: #000;
  font-weight: 600;
  font-size: 13px;
}

.pagination li > span {
  background-color: #B2B2B2;
  color: #ffffff;
  border-radius: 3px;
}

.pagination .prev > *,
.pagination .next > * {
  padding-top: 0;
  font-size: 0;
  width: 50px;
  border: 2px solid #B2B2B2;
  border-radius: 3px;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
}

.pagination .prev > * {
  background-image: url("/Images/EOWTE/chevron-left-grey.svg");
}

.pagination .next > * {
  background-image: url("/Images/EOWTE/chevron-right-grey.svg");
}

.pagination .prev > span,
.pagination .next > span {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Cards */
.card .btn {
  display: inline-block;
}

.card .btn:after,
.card .text-link:after {
  content: "";
  display: inline-block;
  vertical-align: sub;
  width: 16px;
  height: 16px;
  margin-left: 15px;
  background: transparent url("/Images/EOWTE/arrow-right-grey.svg") no-repeat center;
  background-size: 14px 14px;
}

/* Social media */
body .social-accounts li {
  padding-right: 5px;
}

/* Contact icons */
.contact-address,
.contact-telephone,
.contact-email {
  position: relative;
  padding-left: 60px;
  min-height: 30px;
  padding-top: 3px;
}

.contact-address {
  padding-top: 0;
}

.contact-address::before,
.contact-telephone::before,
.contact-email::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.contact-address::before {
  background-image: url("/Images/EOWTE/pin-grey.svg");
}

.contact-telephone::before {
  background-image: url("/Images/EOWTE/phone-grey.svg");
}

.contact-email::before {
  background-image: url("/Images/EOWTE/email-grey.svg");
}

.contact-address a,
.contact-telephone a,
.contact-email a {
  color: #000;
}

/* Tick list */
.tick-list {
  list-style-type: none;
}

.tick-list li {
  position: relative;
  padding-left: 60px;
  padding-top: 2px;
  margin-bottom: 15px;
  min-height: 30px;
}

.tick-list li:last-child {
  margin-bottom: 0;
}

.tick-list li::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 0;
  left: 0;
  background: transparent url("/Images/EOWTE/tick-circle-grey.svg") no-repeat center;
  background-size: cover;
}

.fix-bg {
  background-attachment: fixed !important;
}

.product {
  max-width: 100% !important;
}

.product img {
  margin-bottom: 15px;
}

.product p {
  margin-bottom: 15px;
}

.product p:last-child {
  margin-bottom: 0;
}

.newsgrid .card {
  margin-bottom: 30px;
}

.textwithimageleft .row,
.textwithimageright .row {
  margin-left: 0;
  margin-right: 0;
}

p + table {
  margin-top: 30px;
}

table {
  font-size: 1em;
}

@media (min-width: 992px) {
  .bannerpanelright-inner .panel {
    padding-right: 6em;
  }
  .accordion .toggle {
    padding: 40px 110px 40px 40px;
  }
  .accordion .toggle .show,
  .accordion .toggle .hide,
  .accordion .open .toggle .hide {
    right: 40px;
  }
  .accordion .panel {
    padding: 40px;
    padding-top: 0;
  }
}

@media (max-width: 767px) {
  .home-page .bannerpanelright .bannerpanelright-inner {
    display: block;
  }
  .home-page .bannerpanelright picture {
    height: 100vw;
    top: auto;
    bottom: -10px;
    -webkit-transform: rotateZ(-90deg);
    -moz-transform: rotateZ(-90deg);
    -ms-transform: rotateZ(-90deg);
    -o-transform: rotateZ(-90deg);
    transform: rotateZ(-90deg);
  }
  .home-page .bannerpanelright picture img {
    width: auto;
    height: 100%;
  }
  .product-listing [class*="col-"] + [class*="col-"] {
    padding-top: 40px;
  }
}

@media (max-width: 575px) {
  .home-page .bannerpanelright .bannerpanelright-inner .panel {
    padding-left: 2.5em;
    padding-right: 2.5em;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
  .home-page .bannerpanelright .bannerpanelright-inner .panel h2 {
    font-size: 2.3em;
  }
  .home-page .bannerpanelright .bannerpanelright-inner .panel p {
    line-height: 1.5;
    font-size: 1.3em;
  }
}

.producttabs .filter-nav {
  background: #eaeaea;
}

.producttabs .filter-nav ul {
  margin: 0;
  padding: 0;
  text-align: center;
  list-style-type: none;
}

.producttabs .filter-nav ul li {
  display: inline-block;
  vertical-align: top;
}

.producttabs .filter-nav ul li + li {
  margin-left: -6px;
}

.producttabs .filter-nav ul li a {
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 400;
  font-size: 18px;
  position: relative;
  padding: 15px;
}

.producttabs .filter-nav ul li a::before {
  content: '';
  position: absolute;
  width: 0;
  left: 15px;
  height: 5px;
  background: #F1FF00;
  top: 45%;
  opacity: .85;
  animation: nav_out 0.2s cubic-bezier(1, 0, 0.58, 0.97) 1 both;
}

.producttabs .filter-nav ul li a.active::before {
  animation: nav_in 0.2s cubic-bezier(1, 0, 0.58, 0.97) 1 both;
}

.producttabs .filter-nav ul li a:hover {
  opacity: 1;
}

.producttabs .filter-nav ul li a:hover::before {
  animation: nav_in 0.2s cubic-bezier(1, 0, 0.58, 0.97) 1 both;
}

.producttabs .filter-list .filter-list-title {
  text-align: center;
}

.producttabs .filter-list .filter-list-item {
  margin-bottom: 40px;
  height: auto;
}

.producttabs .filter-list .filter-list-item.invisible {
  opacity: 0;
}

.producttabs .filter-list .filter-list-item:not(.invisible).hide {
  height: 0;
  overflow: hidden;
  margin-bottom: 0;
  min-height: auto;
  max-width: 0;
  padding: 0;
}

@media (max-width: 575px) {
  .producttabs .filter-nav ul li {
    display: block;
  }
}

.splitbannerrte h2 span,
.splitbanner3col h2 span {
  font-size: 2.4rem;
  display: inline-block;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(241, 255, 0, 0.7);
  margin-bottom: 6px;
}

@media (min-width: 992px) {
  .splitbannerrte p,
  .splitbanner3col p {
    max-width: 85%;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .splitbanner3col {
    font-size: 0.7em;
  }
  .splitbanner3col h2 span {
    font-size: 1.5rem;
    letter-spacing: 3px;
  }
}

.download-listing {
  padding-bottom: 3em;
}

.download-listing h2 {
  margin: 0 0 2em 0;
}

.download-listing .btn {
  font-size: 1.6em;
  font-weight: 600;
  padding: 1em 4.4em;
  margin: 0 auto 1em;
}

.download-listing .btn span {
  font-weight: 400;
  display: inline-block;
  margin-bottom: 6px;
}

input[type="text"],
input[type="search"],
input[type="email"],
input[type="tel"],
select,
textarea {
  text-transform: none;
}

div.filter-bar {
  padding: 60px 0;
  background: #F4F4F4;
  margin-bottom: 80px;
}

.filter-bar select {
  font-size: 1.3em;
  padding: 1.4em 1.4em;
}

.filter-bar label {
  display: block;
  text-align: left;
  margin-bottom: 4px;
}

.filter-bar select {
  width: 100%;
}

.filter-bar input[type="submit"] {
  width: 100%;
  color: #fff;
  border: none;
  background: #000;
}

.filter-bar .col-md-3:last-child {
  display: flex;
  align-items: flex-end;
}

@media (max-width: 767px) {
  .filter-bar .col-12 + .col-12 {
    padding-top: 30px;
  }
}

/* Umbraco forms */
.umbraco-forms-page label {
  margin-bottom: 5px;
  display: block;
}

.umbraco-forms-page textarea,
.umbraco-forms-page input:not(.btn),
.umbraco-forms-page .checkbox label {
  border: 1.5px solid #E2E2E2;
  border-radius: 2px;
  background-color: #F7F8F8;
}

.umbraco-forms-page .checkbox label {
  font-size: 0;
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
  margin-bottom: 0;
  position: relative;
  cursor: pointer;
}

.umbraco-forms-page .checkbox label::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent url("/Images/EOWTE/tick-black.svg") no-repeat center;
  background-size: cover;
  opacity: 0;
  -webkit-transition: opacity 0.35s ease;
  -moz-transition: opacity 0.35s ease;
  -o-transition: opacity 0.35s ease;
  transition: opacity 0.35s ease;
}

.umbraco-forms-page .checkbox label.active:after {
  opacity: 1;
}

.umbraco-forms-page .checkbox input[type="checkbox"] {
  display: none;
}

#footer {
  color: #fff;
  padding-top: 40px;
  padding-bottom: 40px;
}

#footer a {
  text-decoration: none;
  -webkit-transition: color 0.35s ease;
  -moz-transition: color 0.35s ease;
  -o-transition: color 0.35s ease;
  transition: color 0.35s ease;
}

#footer a:hover {
  opacity: 1;
}

footer p {
  opacity: 0.5;
  line-height: 1;
}

/* Links */
footer .footer-nav li {
  margin-bottom: 20px;
}

footer .footer-nav a {
  color: #fff;
  font-weight: normal;
  text-transform: none;
}

/* Social media */
footer .social-accounts-wrapper {
  text-align: right;
}

footer .social-accounts-wrapper p {
  display: inline-block;
  vertical-align: baseline;
  margin-bottom: 20px;
  margin-right: 20px;
}

footer .social-accounts-wrapper .social-accounts {
  display: inline-block;
}

footer .social-accounts-wrapper .social-accounts li {
  padding-right: 15px;
}

footer .social-accounts-wrapper .social-accounts .fa {
  color: #000;
  background: #fff;
}

footer .social-accounts-wrapper .social-accounts .fa:hover {
  background: #f1ff00;
}

/* Copyright */
footer #copyright {
  padding-top: 0;
  padding-bottom: 0;
}

footer #copyright p.copyright {
  font-size: 1.2em;
  font-weight: 400;
}

footer #copyright p.copyright .seperator {
  margin: 0 5px;
}

/* Logo */
footer .logo {
  margin-left: auto;
  width: 110px;
}

@media (max-width: 1199px) {
  /* Social media */
  /* footer .social-accounts-wrapper p {
        margin-bottom: 5px;
        margin-right: 0;
    } */
}

@media (max-width: 991px) {
  footer,
  footer p,
  footer .social-accounts-wrapper {
    text-align: center;
  }
  /* Social media */
  footer .social-accounts-wrapper {
    padding-top: 20px;
  }
  footer .social-accounts-wrapper p {
    margin-bottom: 0;
    margin-right: 15px;
  }
  /* Logo */
  footer .logo {
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    width: 100px;
  }
}

@media (max-width: 767px) {
  footer,
  footer p,
  footer .social-accounts-wrapper {
    text-align: left;
  }
  /* Re-ordering */
  footer .row:first-child {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  footer .row:first-child > *:nth-child(1) {
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }
  footer .row:first-child > *:nth-child(2) {
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
  }
  footer .row:first-child > *:nth-child(3) {
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
  }
  /* Logo */
  footer .logo {
    margin-top: 0;
    margin-bottom: 20px;
    margin-left: 0;
    width: 90px;
  }
  /* Links */
  footer .footer-nav {
    margin-bottom: 10px;
  }
  footer .footer-nav li {
    display: inline-block;
    vertical-align: top;
    width: 50%;
    margin-right: 0;
    margin-bottom: 10px;
  }
  footer .footer-nav li:nth-child(2n+2) {
    margin-left: -6px;
  }
  /* Social media */
  footer .social-accounts-wrapper p {
    display: none;
  }
  /* Copyright */
  footer #copyright p.copyright {
    font-size: 1.2em;
  }
}

@media (max-width: 479px) {
  /* Logo */
  footer .logo {
    width: 80px;
  }
  /* Copyright */
  footer #copyright p.copyright {
    font-size: 1.1em;
  }
}

/* RECIPE */
.recipeblock h4 {
  font-size: 1.5em;
}

.recipeblock .intro {
  max-width: 450px;
}

.recipeblock dt, .recipeblock dd {
  padding: 10px 0;
}

.recipeblock dt {
  color: #000;
  font-weight: 400;
}

.recipeblock dd {
  text-align: right;
}

.recipeblock dd:not(:last-child) {
  border-bottom: 1px solid #ddd;
}

.recipe-stats {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 1.5em;
  line-height: 1em;
  margin-bottom: 20px;
}

.recipe-stats li {
  color: #979797;
  padding-right: 40px;
  display: inline-block;
}

.recipe-stats li span {
  display: inline-block;
  vertical-align: middle;
  border-radius: 50%;
  height: 42px;
  width: 42px;
  color: #000;
  margin-right: 5px;
  font-size: 18px;
  padding-top: 9px;
  text-align: center;
  background-color: #f1ff00;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 18px;
}

.recipe-stats li .fa-cutlery {
  background-size: 55%;
  background-image: url("/Images/EOWTE/knife-and-fork-black.svg");
}

.recipe-stats li .fa-clock-o {
  background-image: url("/Images/EOWTE/clock-hands-black.svg");
}

.recipe-stats li span:before {
  display: none;
}

body .recipeblock .social-accounts li a span {
  color: #fff;
  background: #ddd;
}

body .recipeblock .social-accounts li a span:hover {
  background: #000;
}

.grid-card {
  display: flex;
  flex-direction: column;
}

.grid-card .card-block {
  height: auto;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  padding: 5%;
}

.grid-card h4 {
  margin-bottom: 15px;
}

@media (min-width: 992px) {
  .grid-card h4 {
    letter-spacing: 0px;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
  .grid-card h4 {
    font-size: 1.4em;
  }
}

@media (min-width: 992px) {
  .grid-card p {
    letter-spacing: 0px;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
  .grid-card p {
    font-size: 1.2em;
  }
}

@media (min-width: 768px) {
  .grid-card-wrap .col-lg-3:nth-child(even) .grid-card {
    flex-direction: column-reverse;
  }
}

@media (min-width: 768px) {
  .recipeblock .col-md-7 {
    padding-right: 60px;
  }
}

.team-popup {
  position: fixed;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100;
}

.team-popup__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
}

.team-popup__close {
  position: absolute;
  top: 60px;
  right: 60px;
  width: 30px;
  height: 30px;
  z-index: 1;
}

@media (max-width: 900px) {
  .team-popup__close {
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
  }
}

.team-popup .bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #282828;
  z-index: -1;
}

.team-popup picture {
  max-width: 100%;
}

@media (max-width: 1024px) {
  .team-popup picture {
    margin-bottom: 24px;
  }
}

.team-popup h2 {
  font-size: 46px;
  margin-bottom: 0;
  line-height: 1em;
}

@media (max-width: 1024px) {
  .team-popup h2 {
    font-size: 36px;
  }
}

@media (max-width: 640px) {
  .team-popup h2 {
    font-size: 22px;
  }
}

.team-popup h4 {
  font-size: 28px;
  font-weight: 400;
  line-height: 1em;
}

@media (max-width: 1024px) {
  .team-popup h4 {
    font-size: 22px;
  }
}

@media (max-width: 544px) {
  .team-popup h4 {
    font-size: 16px;
  }
}

.team-popup h2,
.team-popup h4,
.team-popup p {
  color: #ffffff;
  letter-spacing: 0.04em;
}

.team-popup__content {
  padding-right: 120px;
  padding-left: 120px;
  width: 100%;
}

@media (max-width: 1200px) {
  .team-popup__content {
    padding-right: 60px;
    padding-left: 60px;
  }
}

@media (max-width: 640px) {
  .team-popup__content {
    padding-right: 15px;
    padding-left: 15px;
  }
}

.team-popup__slide {
  display: flex;
  align-items: center;
  margin-right: 120px;
  margin-left: 120px;
}

@media (max-width: 1200px) {
  .team-popup__slide {
    margin-right: 60px;
    margin-left: 60px;
  }
}

@media (max-width: 900px) {
  .team-popup__slide {
    flex-direction: column;
    max-height: 90vh;
    overflow-y: scroll;
  }
}

@media (max-width: 900px) {
  .team-popup__slide {
    margin-right: 30px;
    margin-left: 30px;
  }
}

.team-popup__slide-right, .team-popup__slide-left {
  width: 50%;
  flex-basis: 50%;
}

@media (max-width: 900px) {
  .team-popup__slide-right, .team-popup__slide-left {
    width: 100%;
    flex-basis: 100%;
  }
}

.team-popup__slide-right {
  padding-left: 100px;
  position: relative;
}

@media (max-width: 1200px) {
  .team-popup__slide-right {
    padding-left: 50px;
  }
}

@media (max-width: 900px) {
  .team-popup__slide-right {
    padding-left: 0;
  }
}

.team-popup__slide-right::after {
  content: " ";
  position: absolute;
  top: 0;
  left: -3px;
  height: 100%;
  width: 6px;
  background: #f1ff00;
}

@media (max-width: 900px) {
  .team-popup__slide-right::after {
    content: none;
  }
}

.team-popup__slide-left {
  padding-right: 100px;
}

@media (max-width: 1200px) {
  .team-popup__slide-left {
    padding-right: 50px;
  }
}

@media (max-width: 900px) {
  .team-popup__slide-left {
    padding-right: 0;
  }
}

.team-popup .slick-track {
  display: flex;
  align-items: center;
}

.team-popup .slick-arrow {
  width: 60px;
  height: 60px;
}

.team-popup .slick-arrow::before {
  position: absolute;
  top: 0;
  color: #f1ff00;
  font-size: 60px;
  height: 60px;
  width: 21px;
}

@media (max-width: 900px) {
  .team-popup .slick-arrow::before {
    width: 15px;
    height: 40px;
    font-size: 40px;
  }
}

.team-popup .slick-next {
  right: 60px;
}

.team-popup .slick-next::before {
  right: 0;
}

@media (max-width: 900px) {
  .team-popup .slick-next {
    right: 10px;
  }
}

.team-popup .slick-prev {
  left: 60px;
}

.team-popup .slick-prev::before {
  left: 0;
}

@media (max-width: 900px) {
  .team-popup .slick-prev {
    left: 10px;
  }
}

.team-listing {
  padding-top: 0;
}

.team-listing .title.large {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: .04em;
  text-align: left;
  font-family: "Aileron Regular", sans-serif;
}

.team-listing .html-summary p {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-align: left;
  color: #f1ff00;
  font-family: "Aileron Regular", sans-serif;
  text-transform: uppercase;
}

.fa-tiktok::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 2859 3333' shape-rendering='geometricPrecision' text-rendering='geometricPrecision' image-rendering='optimizeQuality' fill-rule='evenodd' clip-rule='evenodd'%3E%3Cpath d='M2081 0c55 473 319 755 778 785v532c-266 26-499-61-770-225v995c0 1264-1378 1659-1932 753-356-583-138-1606 1004-1647v561c-87 14-180 36-265 65-254 86-398 247-358 531 77 544 1075 705 992-358V1h551z'/%3E%3C/svg%3E");
  width: 14px;
  display: inline-block;
  transform: translateY(2px);
}
