* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: 'museo-sans-rounded', Arial, Helvetica, sans-serif;
  width: 100vw;
  overflow-x: hidden;
}

#wrapper {
  padding-top: 120px;
}

@media only screen and (max-width: 768px) {
  #wrapper {
    padding-top: 90px;
  }
}

.container {
  width: 100%;
  max-width: 1366px;
  margin: 0 auto;
}

@media only screen and (max-width: 1466px) {
  .container {
    padding-left: 50px;
    padding-right: 50px;
  }
}

@media only screen and (max-width: 1024px) {
  .container {
    padding-left: 25px;
    padding-right: 25px;
  }
}

.btn {
  display: inline-block;
  padding: 30px 50px;
  border-radius: 8px;
  color: #171717;
  font-size: 18px;
  font-weight: 900;
  line-height: 20px;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
}

.btn.btn-primary {
  color: #FFF;
  background-color: #D90016;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.btn.btn-primary:hover {
  background-color: #009052;
}

.btn.btn-secondary {
  color: #FFF;
  background-color: #009DDF;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.btn.btn-secondary:hover {
  background-color: #009052;
}

.btn.btn-pill {
  border-radius: 60px;
}

.btn.btn-small {
  padding: 15px 25px;
}

.btn.btn-small.btn-pill {
  border-radius: 25px;
}

.reserve-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 350px;
  padding: 15px;
  border-radius: 50px;
  background-color: #009052;
  text-decoration: none;
  -webkit-transition: background-color 0.4s ease-in-out;
  transition: background-color 0.4s ease-in-out;
  color: #FFF;
}

.reserve-btn h5 {
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
}

.reserve-btn p {
  font-size: 16px;
  font-weight: 300;
  text-transform: uppercase;
}

.reserve-btn .phone-icon {
  width: 35px;
  height: 35px;
  margin-right: 10px;
  background-image: url("../images/phone-icon.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.reserve-btn:hover {
  background-color: #00693C;
}

.drop-shadow {
  -webkit-box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3);
  -webkit-transition: -webkit-box-shadow 0.4s ease;
  transition: -webkit-box-shadow 0.4s ease;
  transition: box-shadow 0.4s ease;
  transition: box-shadow 0.4s ease, -webkit-box-shadow 0.4s ease;
}

.drop-shadow:hover {
  -webkit-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5);
          box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5);
}

.drop-shadow:active {
  -webkit-box-shadow: inset 0px 0px 6px rgba(0, 0, 0, 0.3);
          box-shadow: inset 0px 0px 6px rgba(0, 0, 0, 0.3);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: #FFF;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

header .whitespace {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin: 0 auto;
  width: 100%;
  max-width: 1526px;
  padding: 15px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

@media only screen and (max-width: 1023px) {
  header .whitespace {
    display: none;
  }
}

header nav {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 1526px;
}

header nav .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 100%;
  height: 90px;
  list-style: none;
}

header nav .menu .menu-item {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

header nav .menu .menu-item.margin-right {
  margin: 0px 2px 0px 0px;
}

header nav .menu .menu-item.margin-left {
  margin: 0px 0px 0px 2px;
}

header nav .menu .menu-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0px 25px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #D90016;
  border-radius: 10px 10px 0px 0px;
  color: #FFF;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

header nav .menu .menu-item:hover, header nav .menu .menu-item.current-menu-item {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

header nav .menu .menu-item:hover a, header nav .menu .menu-item.current-menu-item a {
  background-color: #009052;
  bottom: -10px;
}

header nav .menu .menu-item.disabled {
  pointer-events: none;
}

header nav .menu .menu-item.disabled a {
  background-color: #c8c8c8;
  color: #666666;
}

header nav .menu .menu-item.hidden {
  display: none;
}

header nav .menu .menu-item.brand {
  min-width: 400px;
  -webkit-box-pack: stretch;
      -ms-flex-pack: stretch;
          justify-content: stretch;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  border-radius: none;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

header nav .menu .menu-item.brand a {
  position: absolute;
  top: -100%;
  left: 0px;
  right: 0px;
  bottom: 0px;
  display: block;
  width: 100%;
  color: #FFF;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  background-color: #FFF;
  background-image: url("../images/logo.png");
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-origin: content-box;
  padding: 10px 50px;
}

@media only screen and (max-width: 1024px) {
  header nav .menu .menu-item.brand a {
    padding: 15px 25px;
  }
}

@media only screen and (max-width: 1200px) {
  header nav .menu .menu-item.brand {
    min-width: 350px;
  }
}

@media only screen and (max-width: 1024px) {
  header nav .menu .menu-item.brand {
    min-width: 250px;
  }
}

@media only screen and (max-width: 1023px) {
  header nav .menu {
    display: none;
  }
}

header .mobile-nav {
  display: none;
  position: relative;
  height: 90px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

header .mobile-nav .mobile-menu-container {
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: -webkit-transform 0.5s ease-out 1s;
  transition: -webkit-transform 0.5s ease-out 1s;
  transition: transform 0.5s ease-out 1s;
  transition: transform 0.5s ease-out 1s, -webkit-transform 0.5s ease-out 1s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 90px;
}

header .mobile-nav .mobile-menu-container:after, header .mobile-nav .mobile-menu-container:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  z-index: -1;
  background: #D90016;
  -webkit-transition: -webkit-transform 0.5s ease-in-out 0.5s;
  transition: -webkit-transform 0.5s ease-in-out 0.5s;
  transition: transform 0.5s ease-in-out 0.5s;
  transition: transform 0.5s ease-in-out 0.5s, -webkit-transform 0.5s ease-in-out 0.5s;
}

header .mobile-nav .mobile-menu-container:before {
  left: 0;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}

header .mobile-nav .mobile-menu-container:after {
  right: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

header .mobile-nav .mobile-menu-container .menu {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style-type: none;
  position: relative;
  z-index: 1;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}

header .mobile-nav .mobile-menu-container .menu .menu-item {
  display: block;
  width: 100%;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

header .mobile-nav .mobile-menu-container .menu .menu-item a {
  display: block;
  color: #FFFFFF;
  font-size: 20px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  padding-top: 15px;
  padding-bottom: 15px;
  cursor: pointer;
}

header .mobile-nav .mobile-menu-container .menu .menu-item:hover {
  background-color: #009052;
}

header .mobile-nav .mobile-menu-container .menu .menu-item.brand {
  display: none;
}

header .mobile-nav .mobile-menu-container .menu .menu-item.hidden {
  display: none;
}

@media only screen and (max-width: 767px) {
  header .mobile-nav .mobile-menu-container .menu .menu-item.show-mobile {
    display: block;
  }
}

header .mobile-nav .mobile-menu-container .region-selector {
  opacity: 0;
  padding: 25px;
  display: block;
  width: 100%;
}

header .mobile-nav .mobile-menu-container .region-selector label {
  margin-bottom: 15px;
  color: #FFF;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
  display: block;
}

header .mobile-nav .mobile-menu-container .region-selector select {
  display: block;
  width: 100%;
  padding: 15px;
  background-color: #FFF;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  outline: none;
}

header .mobile-nav .mobile-menu-container.active {
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
  opacity: 1;
  -webkit-transition: -webkit-transform 0s ease-out;
  transition: -webkit-transform 0s ease-out;
  transition: transform 0s ease-out;
  transition: transform 0s ease-out, -webkit-transform 0s ease-out;
}

header .mobile-nav .mobile-menu-container.active .menu {
  opacity: 1;
  -webkit-transition: opacity 0.5s ease-in-out 1s;
  transition: opacity 0.5s ease-in-out 1s;
}

header .mobile-nav .mobile-menu-container.active .region-selector {
  opacity: 1;
  -webkit-transition: opacity 0.5s ease-in-out 1s;
  transition: opacity 0.5s ease-in-out 1s;
}

header .mobile-nav .mobile-menu-container.active:before {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

header .mobile-nav .mobile-menu-container.active:after {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

header .mobile-nav .brand {
  position: relative;
  z-index: 10;
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 300px;
  height: 100%;
  border-radius: 0px 0px 20px 0px;
  background-color: #FFF;
  background-image: url("../images/logo.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-origin: content-box;
  padding: 20px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

@media only screen and (max-width: 767px) {
  header .mobile-nav .brand {
    margin: 0;
    max-width: 250px;
  }
}

header .mobile-nav .hamburger {
  position: absolute;
  top: 50%;
  right: 25px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 999;
  width: 40px;
  height: 30px;
  cursor: pointer;
}

header .mobile-nav .hamburger .bars {
  position: relative;
}

header .mobile-nav .hamburger .bars span {
  display: block;
  position: relative;
  width: 100%;
  height: 5px;
  background-color: #666666;
  border-radius: 5px;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

header .mobile-nav .hamburger .bars span:nth-child(1) {
  -webkit-transform-origin: left bottom;
          transform-origin: left bottom;
}

header .mobile-nav .hamburger .bars span:nth-child(2) {
  -webkit-transform-origin: left center;
          transform-origin: left center;
  margin: 7px auto;
}

header .mobile-nav .hamburger .bars span:nth-child(3) {
  -webkit-transform-origin: left top;
          transform-origin: left top;
}

header .mobile-nav .hamburger.active .bars span {
  background-color: #EEEEEE;
}

header .mobile-nav .hamburger.active .bars span:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

header .mobile-nav .hamburger.active .bars span:nth-child(2) {
  opacity: 0;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  margin: 10px auto;
}

header .mobile-nav .hamburger.active .bars span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

@media only screen and (max-width: 1023px) {
  header .mobile-nav {
    display: block;
  }
}

header.shrink .whitespace {
  height: 0px;
  overflow: hidden;
  padding: 0px;
}

header.shrink nav .menu {
  height: 75px;
}

header.shrink nav .menu .menu-item {
  margin: 0;
}

header.shrink nav .menu .menu-item a {
  border-radius: 0;
  padding: 0px 25px;
}

header.shrink nav .menu .menu-item:hover, header.shrink nav .menu .menu-item.current-menu-item {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

header.shrink nav .menu .menu-item:hover a, header.shrink nav .menu .menu-item.current-menu-item a {
  background-color: #009052;
}

header.shrink nav .menu .menu-item.brand {
  min-width: 300px;
}

header.shrink nav .menu .menu-item.brand a {
  top: 0;
  background-position: center;
  padding: 0 50px;
}

header.shrink nav .menu .menu-item.brand:hover a, header.shrink nav .menu .menu-item.brand.current-menu-item a {
  background-color: #FFF;
}

header.shrink .mobile-nav {
  height: 60px;
}

header.shrink .mobile-nav .brand {
  padding: 7px 20px;
}

.stickies {
  position: fixed;
  top: 100%;
  left: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 999;
}

@media only screen and (max-width: 767px) {
  .stickies {
    display: none;
  }
}

.stickies .sticky {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #009DDF;
  border: 1px solid #FFF;
  border-radius: 15px 15px 0px 0px;
  -webkit-box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2);
  margin: 0px 15px;
  padding: 15px;
  text-decoration: none;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transform-origin: bottom center;
          transform-origin: bottom center;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  cursor: pointer;
}

@media only screen and (max-width: 1024px) {
  .stickies .sticky {
    padding: 10px;
  }
}

.stickies .sticky:before {
  content: '';
  position: absolute;
  top: 100%;
  left: -1px;
  right: -1px;
  height: 100%;
  background-color: inherit;
  border: 1px solid #FFF;
  border-top: none;
}

.stickies .sticky:hover {
  -webkit-transform: translateY(-125%);
          transform: translateY(-125%);
}

.stickies .sticky img {
  margin-right: 10px;
}

.stickies .sticky p {
  color: #FFF;
  font-size: 16px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
}

.stickies .sticky.catalogue-sticky {
  background-color: #009052;
}

@media only screen and (max-width: 767px) {
  .stickies .sticky {
    display: none;
  }
}

.stickies .region-sticky {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #FFC70D;
  border: 1px solid #FFF;
  border-radius: 15px 15px 0px 0px;
  -webkit-box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2);
  margin: 0px 15px;
  padding: 15px 25px;
  text-decoration: none;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transform-origin: bottom center;
          transform-origin: bottom center;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  cursor: pointer;
}

.stickies .region-sticky p {
  color: #000;
}

.stickies .region-sticky .before {
  position: absolute;
  top: 100%;
  left: -1px;
  right: -1px;
  height: auto;
  background-color: inherit;
  border: 1px solid #FFF;
  border-top: none;
  padding-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.stickies .region-sticky .before a {
  padding: 10px;
  color: #666666;
  text-decoration: none;
  text-align: center;
}

.stickies .region-sticky .before a.active {
  color: #FFF;
  background-color: #009052;
}

.stickies .region-sticky .before a:hover {
  background-color: #ffd95a;
}

.stickies .region-sticky:hover {
  -webkit-transform: translateY(-280px);
          transform: translateY(-280px);
}

footer nav {
  padding: 40px 0px;
  background-color: #D90016;
}

footer nav .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 1023px) {
  footer nav .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
}

@media only screen and (max-width: 1023px) {
  footer nav .container .menu-footer-menu-container {
    margin-bottom: 15px;
  }
}

footer nav .container .menu-footer-menu-container ul {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[5];
      grid-template-columns: repeat(5, 1fr);
  grid-column-gap: 50px;
  list-style-type: none;
}

footer nav .container .menu-footer-menu-container ul li {
  padding: 5px 0px;
}

footer nav .container .menu-footer-menu-container ul li a {
  color: #FFF;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
}

@media only screen and (max-width: 1023px) {
  footer nav .container .menu-footer-menu-container ul {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 25px;
    grid-row-gap: 15px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media only screen and (max-width: 767px) {
  footer nav .container .menu-footer-menu-container ul {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

footer nav .container .menu-social-menu-container ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style-type: none;
}

footer nav .container .menu-social-menu-container ul li {
  position: relative;
  margin: 0px 5px;
  width: 30px;
  height: 25px;
  background-size: auto 100%;
  background-position: center;
  background-repeat: no-repeat;
}

footer nav .container .menu-social-menu-container ul li a {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  text-decoration: none;
  color: transparent;
}

footer nav .container .menu-social-menu-container ul li.facebook-icon {
  background-image: url("../images/facebook-icon.svg");
}

footer nav .container .menu-social-menu-container ul li.twitter-icon {
  background-image: url("../images/twitter-icon.svg");
}

footer nav .container .menu-social-menu-container ul li.instagram-icon {
  background-image: url("../images/instagram.png");
}

footer .copyright {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px 0px;
}

@media only screen and (max-width: 768px) {
  footer .copyright {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

footer .copyright p {
  color: #666666;
  font-size: 15px;
  font-weight: 300;
  text-transform: uppercase;
}

footer .copyright p a {
  color: #666666;
  text-decoration: none;
}

@media only screen and (max-width: 768px) {
  footer .copyright p {
    text-align: center;
    margin-bottom: 30px;
  }
  footer .copyright p:last-of-type {
    margin-bottom: 0;
  }
}

.toyshop-owner {
  position: relative;
  padding: 90px 0px;
  overflow: hidden;
  background-color: #EEEEEE;
}

@media only screen and (max-width: 1024px) {
  .toyshop-owner .content {
    padding-right: 180px;
  }
}

@media only screen and (max-width: 1023px) {
  .toyshop-owner .content {
    padding-right: 0px;
  }
}

.toyshop-owner .content h2 {
  color: #8CD3F2;
  font-size: 60px;
  font-weight: 700;
}

@media only screen and (max-width: 1023px) {
  .toyshop-owner .content h2 {
    font-size: 48px;
  }
}

.toyshop-owner .content h3 {
  color: #8CD3F2;
  font-size: 35px;
  font-weight: 700;
}

@media only screen and (max-width: 1023px) {
  .toyshop-owner .content h3 {
    font-size: 32px;
  }
}

.toyshop-owner .content p {
  color: #666666;
  font-size: 18px;
  max-width: 1024px;
  margin: 40px 0px;
}

@media only screen and (max-width: 1023px) {
  .toyshop-owner .content p {
    max-width: 480px;
  }
}

.toyshop-owner .content .btn {
  color: #FFF;
  font-size: 25px;
  background: #8CD3F2;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.toyshop-owner .content .btn:hover {
  color: #8CD3F2;
  background: #FFF;
}

.toyshop-owner .content .btn:last-of-type {
  margin-left: 30px;
}

.toyshop-owner .toby-image {
  position: absolute;
  top: 90px;
  right: -140px;
  width: 300px;
  height: auto;
  -webkit-transform: rotate(0deg) translateX(100%);
          transform: rotate(0deg) translateX(100%);
  -webkit-transition: -webkit-transform 1s ease-in-out;
  transition: -webkit-transform 1s ease-in-out;
  transition: transform 1s ease-in-out;
  transition: transform 1s ease-in-out, -webkit-transform 1s ease-in-out;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.toyshop-owner .toby-image.animate {
  -webkit-transform: rotate(-30deg) translateX(0);
          transform: rotate(-30deg) translateX(0);
}

@media only screen and (max-width: 1023px) {
  .toyshop-owner .toby-image {
    top: 125px;
  }
}

@media only screen and (max-width: 767px) {
  .toyshop-owner .toby-image {
    display: none;
  }
}

.finder {
  position: relative;
  width: 100%;
}

.finder .actions {
  padding: 0px 100px 15px;
}

@media only screen and (max-width: 768px) {
  .finder .actions {
    padding: 0px 50px 15px;
  }
}

@media only screen and (max-width: 480px) {
  .finder .actions {
    padding: 0px 25px 15px;
  }
}

.finder .actions .location-search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.finder .actions .location-search .location-search-input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 18px;
  padding: 15px;
  outline: none;
  border: 2px solid #EEEEEE;
  border-right: none;
  border-radius: 8px 0px 0px 8px;
}

.finder .actions .location-search .location-search-button {
  width: 200px;
  background-color: #A5C73F;
  border: none;
  border-radius: 0px 8px 8px 0px;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: #FFF;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  -webkit-transition: background-color 0.4s linear;
  transition: background-color 0.4s linear;
}

.finder .actions .location-search .location-search-button:hover {
  background-color: #00693C;
}

.finder .actions .location-search .location-search-button:disabled {
  background-color: #EEEEEE;
}

.finder .actions .location-distance {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 30px 0px;
}

.finder .actions .location-distance .distance-button {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 10px 15px;
  background: #EEEEEE;
  color: #666666;
  font-size: 18px;
  font-weight: 300;
  text-transform: uppercase;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  outline: none;
  cursor: pointer;
  -webkit-transition: all 0.4s linear;
  transition: all 0.4s linear;
}

.finder .actions .location-distance .distance-button strong {
  display: block;
  font-weight: 700;
}

.finder .actions .location-distance .distance-button:after {
  content: '';
  width: 2px;
  height: 50%;
  position: absolute;
  top: 50%;
  right: -1px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #b3b3b3;
  z-index: 2;
}

.finder .actions .location-distance .distance-button:first-of-type {
  border-radius: 8px 0px 0px 8px;
}

.finder .actions .location-distance .distance-button:last-of-type {
  border-radius: 0px 8px 8px 0px;
}

.finder .actions .location-distance .distance-button:last-of-type:after {
  display: none;
}

.finder .actions .location-distance .distance-button:hover {
  background: #00693C;
  color: #EEEEEE;
}

.finder .actions .location-distance .distance-button.selected {
  background: #A5C73F;
  color: #EEEEEE;
}

@media only screen and (max-width: 480px) {
  .finder .actions .location-distance {
    display: none;
  }
}

.finder .actions .location-distance-mobile {
  display: none;
  margin: 30px 0px;
  width: 100%;
}

@media only screen and (max-width: 480px) {
  .finder .actions .location-distance-mobile {
    display: block;
  }
}

.finder .actions .location-distance-mobile .distance-selector {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  outline: none;
  background-color: #FFF;
  width: 100%;
  padding: 15px 25px;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
}

.finder .actions .location-legend {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 30px 0px;
}

.finder .actions .location-legend .legend {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0px 15px;
  color: #FFF;
  font-weight: 500;
}

.finder .actions .location-legend .legend img {
  margin-right: 15px;
}

@media only screen and (max-width: 480px) {
  .finder .actions .location-legend {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .finder .actions .location-legend .legend {
    margin-bottom: 15px;
  }
  .finder .actions .location-legend .legend:last-of-type {
    margin-bottom: 0;
  }
}

.finder .actions .disclaimer {
  margin-top: 1px;
  margin-bottom: 15px;
}

.finder .actions .disclaimer p {
  text-align: center;
  color: #FFF;
  font-size: 18px;
}

.finder .actions .errors {
  opacity: 0;
  width: 100%;
  background: #dc7878;
  color: #EEEEEE;
  border-radius: 8px;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
}

.finder .actions .errors.active {
  opacity: 1;
  padding: 15px;
}

.finder .map-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

@media only screen and (max-width: 767px) {
  .finder .map-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.finder .map-container .map {
  width: 100%;
  min-height: 600px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.finder .map-container .map.product-page {
  display: none;
}

.finder .map-container .map.active {
  display: block;
}

.finder .map-container .map .gm-style .gm-style-iw {
  background-color: #FFF !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  max-width: 400px !important;
  height: auto !important;
  min-height: 120px !important;
  max-height: none !important;
  padding: 0px;
  display: block !important;
}

@media only screen and (max-width: 480px) {
  .finder .map-container .map .gm-style .gm-style-iw {
    max-width: 320px !important;
  }
}

.finder .map-container .map .gm-style .gm-style-iw-d {
  overflow-x: visible !important;
  overflow-y: scroll !important;
  width: 100% !important;
  max-width: none !important;
  max-height: 400px !important;
}

.finder .map-container .map .gm-style .gm-style-iw-d::-webkit-scrollbar-track {
  background-color: transparent !important;
}

.finder .map-container .map .gm-style .gm-style-iw-d::-webkit-scrollbar-track-piece {
  background-color: transparent !important;
}

.finder .map-container .map .gm-style .gm-style-iw-t:after {
  background-color: #EEEEEE !important;
}

.finder .map-container .map .content {
  width: 100%;
  background-color: #EEEEEE;
}

.finder .map-container .map .content .header {
  width: 100%;
  padding: 15px;
  background-color: #009052;
}

.finder .map-container .map .content .header h3 {
  color: #EEEEEE;
  font-size: 24px !important;
  margin: 0 !important;
}

.finder .map-container .map .content .info {
  color: #666666;
  padding: 15px;
}

.finder .map-container .map .content .info .address {
  margin-bottom: 15px;
}

.finder .map-container .map .content .map-btns {
  padding: 15px;
}

.finder .map-container .map .content .map-btns .map-btn {
  display: inline-block;
  padding: 10px 15px;
  margin-right: 15px;
  color: #EEEEEE;
  font-size: 18px;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  border-radius: 4px;
  background-color: #009052;
}

@media only screen and (max-width: 1366px) {
  .finder .map-container .shops.active + .map {
    width: calc(100% - 400px);
  }
}

@media only screen and (max-width: 480px) {
  .finder .map-container .shops.active + .map {
    width: 100%;
  }
}

.finder .map-container .shops {
  opacity: 0;
  display: none;
  z-index: 10;
  width: 100%;
  max-width: 400px;
  background-color: #009052;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.finder .map-container .shops.active {
  display: block;
  opacity: 1;
}

.finder .map-container .shops .nearest-store {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px 20px;
  background-color: #00693C;
  text-align: center;
}

.finder .map-container .shops .nearest-store h2 {
  color: #FFF;
  font-size: 28px;
  font-weight: 300;
  border-bottom: 1px dashed #FFF;
  text-transform: uppercase;
  padding-bottom: 15px;
  margin-bottom: 15px;
  width: 100%;
}

.finder .map-container .shops .nearest-store h3 {
  color: #FFF;
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 15px;
}

.finder .map-container .shops .nearest-store p, .finder .map-container .shops .nearest-store a {
  display: block;
  color: #FFF;
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 15px;
  text-decoration: none;
}

.finder .map-container .shops .nearest-store .facebook-icon {
  display: block;
  width: 15px;
  height: 25px;
  margin: 0 auto;
  background-image: url("../images/facebook-icon.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.finder .map-container .shops .nearest-store .fb-text {
  display: block;
  color: #FFF;
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 15px;
  text-decoration: none;
}

.finder .map-container .shops .other-stores {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px 20px;
  text-align: center;
}

.finder .map-container .shops .other-stores h3 {
  color: #FFF;
  font-size: 24px;
  font-weight: 300;
  border-bottom: 1px dashed #FFF;
  text-transform: uppercase;
  padding-bottom: 15px;
  margin-bottom: 15px;
  width: 100%;
}

.finder .map-container .shops .other-stores .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}

.finder .map-container .shops .other-stores .content .other-store {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  padding: 15px 0px;
  cursor: pointer;
}

.finder .map-container .shops .other-stores .content .other-store:hover {
  background-color: rgba(0, 0, 0, 0.2);
}

.finder .map-container .shops .other-stores .content .other-store .loc_name {
  color: #FFF;
  font-size: 18px;
  font-weight: 700;
  text-align: left;
}

.finder .map-container .shops .other-stores .content .other-store .loc_name span {
  font-weight: 400;
}

.finder .map-container .shops .other-stores .content .other-store .loc_distance {
  color: #FFF;
  font-size: 16px;
  font-weight: 700;
}

.block-2-columns .columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -16px;
}

@media (max-width: 767px) {
  .block-2-columns .columns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.block-2-columns .columns .column {
  padding: 0 16px;
}

@media (max-width: 767px) {
  .block-2-columns .columns .column {
    margin-bottom: 30px;
  }
}

.homepage section {
  overflow-x: hidden;
}

.homepage .banner-animated {
  position: relative;
  width: 100%;
  height: 630px;
  background-image: url("../images/homepage/frontpage-banner-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media only screen and (max-width: 1024px) {
  .homepage .banner-animated {
    height: 500px;
  }
}

@media only screen and (max-width: 1023px) {
  .homepage .banner-animated {
    height: 450px;
  }
}

@media only screen and (max-width: 767px) {
  .homepage .banner-animated {
    height: 500px;
  }
}

.homepage .banner-animated .container {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.homepage .banner-animated .container .toby {
  position: absolute;
  top: 50px;
  bottom: 0px;
  right: 0px;
  z-index: 1;
  width: 450px;
  height: 150%;
  background-image: url("../images/toby/toby-waving.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transform: translateX(200%);
          transform: translateX(200%);
  -webkit-animation-name: toby-in;
          animation-name: toby-in;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
}

@media only screen and (max-width: 1366px) {
  .homepage .banner-animated .container .toby {
    top: 100px;
    width: 400px;
    height: 125%;
  }
}

@media only screen and (max-width: 1024px) {
  .homepage .banner-animated .container .toby {
    top: 50px;
    width: 350px;
    height: 140%;
  }
}

@media only screen and (max-width: 1023px) {
  .homepage .banner-animated .container .toby {
    top: 160px;
    width: 325px;
    height: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .homepage .banner-animated .container .toby {
    top: unset;
    bottom: -150px;
    width: 100%;
    height: 75%;
  }
}

.homepage .banner-animated .container .toby .quote {
  position: absolute;
  top: -25px;
  left: -155%;
  z-index: 1;
  width: 700px;
  height: 300px;
  background-image: url("../images/homepage/speech-bubble.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: center right;
          transform-origin: center right;
  -webkit-animation-name: quote-in;
          animation-name: quote-in;
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
}

@media only screen and (max-width: 1366px) {
  .homepage .banner-animated .container .toby .quote {
    left: -175%;
    top: -50px;
  }
}

@media only screen and (max-width: 1200px) {
  .homepage .banner-animated .container .toby .quote {
    width: 600px;
    height: 250px;
    top: -25px;
    left: -150%;
  }
}

@media only screen and (max-width: 1024px) {
  .homepage .banner-animated .container .toby .quote {
    top: -25px;
    left: -170%;
  }
}

@media only screen and (max-width: 1023px) {
  .homepage .banner-animated .container .toby .quote {
    top: -125px;
    left: -130%;
    width: 500px;
    height: 200px;
  }
}

@media only screen and (max-width: 767px) {
  .homepage .banner-animated .container .toby .quote {
    top: -175px;
    left: 0;
    width: 100%;
    height: 175px;
  }
}

.homepage .banner-animated .container .toby .quote .content {
  position: relative;
  z-index: 2;
  opacity: 0;
  -webkit-animation-name: fade-in;
          animation-name: fade-in;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

.homepage .banner-animated .container .toby .quote .content h3 {
  color: #D90016;
  font-size: 48px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 15px;
}

@media only screen and (max-width: 1200px) {
  .homepage .banner-animated .container .toby .quote .content h3 {
    font-size: 36px;
  }
}

@media only screen and (max-width: 1023px) {
  .homepage .banner-animated .container .toby .quote .content h3 {
    font-size: 32px;
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 767px) {
  .homepage .banner-animated .container .toby .quote .content h3 {
    font-size: 24px;
    margin-bottom: 0px;
  }
}

.homepage .banner-animated .container .toby .quote .content p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #009052;
  font-size: 32px;
  line-height: 42px;
  font-weight: 700;
  text-align: center;
}

@media only screen and (max-width: 1200px) {
  .homepage .banner-animated .container .toby .quote .content p {
    font-size: 28px;
    line-height: 32px;
  }
}

@media only screen and (max-width: 1023px) {
  .homepage .banner-animated .container .toby .quote .content p {
    font-size: 24px;
    line-height: 28px;
  }
}

@media only screen and (max-width: 767px) {
  .homepage .banner-animated .container .toby .quote .content p {
    font-size: 18px;
    line-height: 24px;
  }
}

.homepage .banner-animated .container .toby .quote .content .logo-solo {
  display: inline;
  height: 42px;
  margin-right: 10px;
}

@media only screen and (max-width: 1200px) {
  .homepage .banner-animated .container .toby .quote .content .logo-solo {
    height: 32px;
  }
}

@media only screen and (max-width: 1023px) {
  .homepage .banner-animated .container .toby .quote .content .logo-solo {
    height: 28px;
  }
}

@media only screen and (max-width: 767px) {
  .homepage .banner-animated .container .toby .quote .content .logo-solo {
    height: 24px;
  }
}

.homepage .banner-animated .container .toby .quote ul {
  position: absolute;
  bottom: -100px;
  left: 0;
  right: 0;
  text-align: center;
  list-style-position: inside;
}

@media only screen and (max-width: 1024px) {
  .homepage .banner-animated .container .toby .quote ul {
    left: -25px;
    right: -25px;
  }
}

@media only screen and (max-width: 767px) {
  .homepage .banner-animated .container .toby .quote ul {
    bottom: unset;
    top: -50px;
  }
}

.homepage .banner-animated .container .toby .quote ul li {
  color: #D90016;
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 15px;
  opacity: 0;
  -webkit-animation-name: fade-in;
          animation-name: fade-in;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

.homepage .banner-animated .container .toby .quote ul li:nth-child(1) {
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
}

.homepage .banner-animated .container .toby .quote ul li:nth-child(2) {
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}

@media only screen and (max-width: 1200px) {
  .homepage .banner-animated .container .toby .quote ul li {
    font-size: 28px;
  }
}

@media only screen and (max-width: 1023px) {
  .homepage .banner-animated .container .toby .quote ul li {
    font-size: 24px;
  }
}

@media only screen and (max-width: 767px) {
  .homepage .banner-animated .container .toby .quote ul li {
    font-size: 18px;
  }
}

@-webkit-keyframes toby-in {
  0% {
    -webkit-transform: translateX(200%);
            transform: translateX(200%);
  }
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

@keyframes toby-in {
  0% {
    -webkit-transform: translateX(200%);
            transform: translateX(200%);
  }
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

@-webkit-keyframes quote-in {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes quote-in {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.homepage .banner-image .image {
  display: block;
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .homepage .banner-image .image {
    display: none;
  }
}

.homepage .banner-image .image-mob {
  display: none;
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .homepage .banner-image .image-mob {
    display: block;
  }
}

.homepage .banner-slider {
  position: relative;
}

.homepage .banner-slider .image {
  display: block;
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .homepage .banner-slider .image {
    display: none;
  }
}

.homepage .banner-slider .image-mob {
  display: none;
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .homepage .banner-slider .image-mob {
    display: block;
  }
}

.homepage .banner-slider .slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
  display: block;
  width: 32px;
  height: 53px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  outline: none;
  margin: 0;
  padding: 0;
  background: none;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../images/icons/chevron.svg");
  cursor: pointer;
}

.homepage .banner-slider .slick-arrow.slick-prev {
  left: 35px;
}

.homepage .banner-slider .slick-arrow.slick-next {
  right: 35px;
  -webkit-transform: translateY(-50%) scaleX(-1);
          transform: translateY(-50%) scaleX(-1);
}

.homepage .tagline {
  overflow: hidden;
  padding: 60px 0px 0px;
}

.homepage .tagline .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.homepage .tagline .flex h1 {
  color: #009052;
  font-size: 60px;
  font-weight: 900;
  text-align: center;
}

.homepage .tagline .flex h1 .magic {
  display: inline-block;
  color: #D90016;
  -webkit-animation-name: colorWheel;
          animation-name: colorWheel;
  -webkit-animation-duration: 2.5s;
          animation-duration: 2.5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

@-webkit-keyframes colorWheel {
  0% {
    color: #D90016;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  20% {
    color: #009DDF;
  }
  25% {
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg);
  }
  40% {
    color: #009052;
  }
  60% {
    color: #A5C73F;
  }
  75% {
    -webkit-transform: rotate(-15deg);
            transform: rotate(-15deg);
  }
  80% {
    color: #FFC70D;
  }
  100% {
    color: #D90016;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

@keyframes colorWheel {
  0% {
    color: #D90016;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  20% {
    color: #009DDF;
  }
  25% {
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg);
  }
  40% {
    color: #009052;
  }
  60% {
    color: #A5C73F;
  }
  75% {
    -webkit-transform: rotate(-15deg);
            transform: rotate(-15deg);
  }
  80% {
    color: #FFC70D;
  }
  100% {
    color: #D90016;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

.homepage .featured-items {
  padding: 60px 0px;
}

@media only screen and (max-width: 1024px) {
  .homepage .featured-items .container {
    padding-left: 50px;
    padding-right: 50px;
  }
}

.homepage .featured-items .items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.homepage .featured-items .items .slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
  display: block;
  width: 32px;
  height: 53px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  outline: none;
  margin: 0;
  padding: 0;
  background: none;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../images/icons/lg-arrow-red.svg");
  cursor: pointer;
}

.homepage .featured-items .items .slick-arrow.slick-prev {
  left: -35px;
}

.homepage .featured-items .items .slick-arrow.slick-next {
  right: -35px;
  -webkit-transform: translateY(-50%) scaleX(-1);
          transform: translateY(-50%) scaleX(-1);
}

.homepage .featured-items .items .slick-list {
  width: 100%;
}

.homepage .featured-items .items .slick-list .slick-track {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.homepage .featured-items .items .slick-list .slick-track .slick-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: auto;
  text-decoration: none;
  color: inherit;
}

.homepage .featured-items .items .slick-list .slick-track .slick-slide .item {
  border-radius: 16px;
  background-color: #D90016;
  overflow: hidden;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  cursor: pointer;
  opacity: 0;
  -webkit-animation-name: fade-in;
          animation-name: fade-in;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  margin: 0px 15px;
  outline: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: auto;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
}

.homepage .featured-items .items .slick-list .slick-track .slick-slide .item .image {
  position: relative;
  width: 100%;
  background-size: cover;
  background-position: center;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.homepage .featured-items .items .slick-list .slick-track .slick-slide .item .image:after {
  content: '';
  display: block;
  padding-top: 100%;
}

.homepage .featured-items .items .slick-list .slick-track .slick-slide .item .image .lozenge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 10px 15px;
  background-color: #FFF;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
}

.homepage .featured-items .items .slick-list .slick-track .slick-slide .item .image .lozenge h5 {
  color: #D90016;
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
}

.homepage .featured-items .items .slick-list .slick-track .slick-slide .item .content {
  padding: 20px 20px;
  color: #FFF;
  font-size: 24px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.homepage .featured-items .items .slick-list .slick-track .slick-slide .item .content h3 {
  color: #FFF;
  font-size: 28px;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
}

.homepage .featured-items .items .slick-list .slick-track .slick-slide .item .content p {
  color: #FFF;
  font-size: 22px;
  font-weight: 300;
  text-transform: none;
  text-align: center;
}

.homepage .featured-items .items .slick-list .slick-track .slick-slide .item:nth-child(1) {
  -webkit-animation-delay: 0.25s;
          animation-delay: 0.25s;
}

.homepage .featured-items .items .slick-list .slick-track .slick-slide .item:nth-child(2) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.homepage .featured-items .items .slick-list .slick-track .slick-slide .item:nth-child(3) {
  -webkit-animation-delay: 0.75s;
          animation-delay: 0.75s;
}

.homepage .featured-items .items .slick-list .slick-track .slick-slide .item:nth-child(4) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.homepage .no-cat-banner {
  padding: 60px 0px;
}

.homepage .no-cat-banner .no-cat-image {
  display: block;
  width: 100%;
}

.homepage .disclaimer {
  padding-bottom: 60px;
}

.homepage .disclaimer .container .yellow-block {
  background-color: #FCB900;
  max-width: 640px;
  margin: 0 auto;
  padding: 20px 30px;
}

.homepage .disclaimer .container .yellow-block .text {
  text-align: center;
  color: #666666;
  font-size: 20px;
  font-weight: 500;
  font-style: italic;
}

.homepage .charity {
  padding-bottom: 60px;
}

.homepage .charity .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.homepage .charity .container .mt2p {
  max-width: 100%;
}

.homepage .search-box {
  padding-top: 60px;
}

.homepage .search-box .container .section-title h2 {
  color: #D90016;
  font-size: 60px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
}

@media only screen and (max-width: 1023px) {
  .homepage .search-box .container .section-title h2 {
    font-size: 48px;
  }
}

.homepage .search-box .container .search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 768px;
  margin: 0 auto;
}

.homepage .search-box .container .search__input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 18px;
  padding: 15px;
  outline: none;
  border: 2px solid #EEEEEE;
  border-right: none;
  border-radius: 8px 0px 0px 8px;
}

.homepage .search-box .container .search__submit {
  width: 200px;
  background-color: #A5C73F;
  border: none;
  border-radius: 0px 8px 8px 0px;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: #FFF;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  -webkit-transition: background-color 0.4s linear;
  transition: background-color 0.4s linear;
}

.homepage .search-box .container .search__submit:hover {
  background-color: #00693C;
}

.homepage .search-box .container .search__submit:disabled {
  background-color: #EEEEEE;
}

.homepage .hot {
  background: #000048;
  background-position: 50% 50%;
  background-attachment: fixed;
  background-size: 125%;
}

.homepage .hot .container {
  padding-left: 50px;
  padding-right: 50px;
}

.homepage .hot .section-title {
  position: relative;
  padding: 90px 0px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#000), to(transparent));
  background-image: linear-gradient(to bottom, #000, transparent);
}

.homepage .hot .section-title h2 {
  color: #FFF;
  font-size: 60px;
  font-weight: 700;
  text-align: center;
}

@media only screen and (max-width: 1023px) {
  .homepage .hot .section-title h2 {
    font-size: 48px;
  }
}

.homepage .hot .section-title h2 span {
  font-weight: 300;
}

.homepage .hot .section-title:before, .homepage .hot .section-title:after {
  content: ' ';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#000), to(transparent));
  background-image: linear-gradient(to bottom, #000, transparent);
}

.homepage .hot .section-title:before {
  left: -100%;
}

.homepage .hot .section-title:after {
  left: 100%;
}

.homepage .hot .hot-slider {
  padding-bottom: 90px;
}

.homepage .hot .hot-slider .slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
  display: block;
  width: 32px;
  height: 53px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  outline: none;
  margin: 0;
  padding: 0;
  background: none;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../images/icons/chevron.svg");
  cursor: pointer;
}

.homepage .hot .hot-slider .slick-arrow.slick-prev {
  left: -35px;
}

.homepage .hot .hot-slider .slick-arrow.slick-next {
  right: -35px;
  -webkit-transform: translateY(-50%) scaleX(-1);
          transform: translateY(-50%) scaleX(-1);
}

.homepage .hot .hot-slider .slick-list .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}

.homepage .hot .hot-slider .slick-list .slick-track .slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #FFF;
  border-radius: 16px;
  height: auto;
  overflow: hidden;
  margin: 0 15px;
}

.homepage .hot .hot-slider .slick-list .slick-track .slide .slide-image {
  width: 100%;
  height: 260px;
  overflow: hidden;
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.homepage .hot .hot-slider .slick-list .slick-track .slide .slide-image .product-image {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 100%;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.homepage .hot .hot-slider .slick-list .slick-track .slide .slide-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 25px;
}

.homepage .hot .hot-slider .slick-list .slick-track .slide .slide-content .slide-heading {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #D90016;
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 20px;
  -webkit-transition: color 0.4s linear;
  transition: color 0.4s linear;
}

.homepage .hot .hot-slider .slick-list .slick-track .slide .slide-content .slide-desc {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #666666;
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 30px;
}

.homepage .hot .hot-slider .slick-list .slick-track .slide .slide-content .slide-price {
  color: #D90016;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
}

.homepage .hot .hot-slider .slick-list .slick-track .slide .slide-content .slide-price del {
  color: #AAA;
}

.homepage .hot .hot-slider .slick-list .slick-track .slide .slide-content .slide-price del .amount {
  color: #AAA;
  font-size: 18px;
}

.homepage .hot .hot-slider .slick-list .slick-track .slide .slide-content .slide-price ins {
  text-decoration: none;
}

.homepage .hot .hot-slider .slick-list .slick-track .slide .slide-content .slide-price ins .amount {
  color: inherit;
  font-size: inherit;
}

.homepage .hot .hot-slider .slick-list .slick-track .slide .slide-content .slide-price .each {
  font-size: 18px;
  color: #D90016;
}

.homepage .hot .hot-slider .slick-list .slick-track .slide .slide-content .reserve-btn {
  text-align: left;
}

.homepage .hot .hot-slider .slick-list .slick-track .slide:hover .slide-image .product-image {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.homepage .hot .hot-slider .slick-list .slick-track .slide:hover .slide-heading {
  color: #009052;
}

.homepage .hot .section-cta {
  padding: 60px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.homepage .reserve {
  padding: 60px 0px;
  position: relative;
  overflow: hidden;
}

.homepage .reserve .content {
  width: 100%;
  max-width: 960px;
}

.homepage .reserve .content h2 {
  color: #D90016;
  font-size: 60px;
  font-weight: 700;
}

@media only screen and (max-width: 1023px) {
  .homepage .reserve .content h2 {
    font-size: 48px;
  }
}

.homepage .reserve .content h3 {
  color: #D90016;
  font-size: 50px;
  font-weight: 300;
}

@media only screen and (max-width: 1023px) {
  .homepage .reserve .content h3 {
    font-size: 32px;
  }
}

.homepage .reserve .content p {
  color: #666666;
  font-size: 24px;
  width: 100%;
  max-width: 768px;
  margin: 30px 0px;
}

@media only screen and (max-width: 1023px) {
  .homepage .reserve .content p {
    font-size: 20px;
    max-width: 480px;
  }
}

.homepage .reserve .content ul {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.homepage .reserve .content ul li {
  margin-right: 30px;
  list-style-position: inside;
  color: #D90016;
}

.homepage .reserve .content ul li span {
  color: #666666;
}

.homepage .reserve .toby-wrapper {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateY(240px) translateX(-50%);
          transform: translateY(240px) translateX(-50%);
  bottom: 0;
  background-image: url("../images/homepage/toby-waving-half.png");
  background-size: 350px auto;
  background-position: right bottom;
  background-repeat: no-repeat;
  width: 100%;
  max-width: 1366px;
  height: 100%;
  -webkit-transition: -webkit-transform 1s ease-in-out;
  transition: -webkit-transform 1s ease-in-out;
  transition: transform 1s ease-in-out;
  transition: transform 1s ease-in-out, -webkit-transform 1s ease-in-out;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

@media only screen and (max-width: 1024px) {
  .homepage .reserve .toby-wrapper {
    left: 60%;
    background-size: 320px auto;
  }
}

@media only screen and (max-width: 767px) {
  .homepage .reserve .toby-wrapper {
    display: none;
  }
}

.homepage .reserve .toby-wrapper.animate {
  -webkit-transform: translateY(0px) translateX(-50%);
          transform: translateY(0px) translateX(-50%);
}

.homepage .nearest-store {
  background-color: #009052;
  overflow: hidden;
}

.homepage .nearest-store .section-title {
  padding: 60px 0px 30px;
}

.homepage .nearest-store .section-title h2 {
  color: #FFF;
  font-size: 60px;
  font-weight: 700;
  text-align: center;
}

@media only screen and (max-width: 1023px) {
  .homepage .nearest-store .section-title h2 {
    font-size: 48px;
  }
}

.homepage .brands {
  padding-top: 60px;
}

.homepage .brands h2 {
  color: #D90016;
  font-size: 60px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

@media only screen and (max-width: 1023px) {
  .homepage .brands h2 {
    font-size: 48px;
  }
}

.homepage .brands h3 {
  color: #666666;
  font-size: 42px;
  font-weight: 300;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 60px;
}

@media only screen and (max-width: 1023px) {
  .homepage .brands h3 {
    font-size: 32px;
  }
}

.homepage .brands .slick-logo-slider {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #FFF;
  padding: 15px 100px;
}

.homepage .brands .slick-logo-slider .slick-logo {
  max-width: 300px;
  min-height: 200px;
  margin: 15px;
  padding: 25px 10px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-origin: content-box;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  outline: none;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

@media only screen and (max-width: 1023px) {
  .homepage .brands .slick-logo-slider {
    padding: 15px 50px;
  }
}

@media only screen and (max-width: 767px) {
  .homepage .brands .slick-logo-slider {
    padding: 15px 15px;
  }
  .homepage .brands .slick-logo-slider .slick-logo {
    min-height: 160px;
  }
}

.homepage .brands .slick-logo-slider .slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
  display: block;
  width: 32px;
  height: 53px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  outline: none;
  margin: 0;
  padding: 0;
  background: none;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../images/icons/lg-arrow-red.svg");
  cursor: pointer;
}

@media only screen and (max-width: 768px) {
  .homepage .brands .slick-logo-slider .slick-arrow {
    display: none !important;
  }
}

.homepage .brands .slick-logo-slider .slick-arrow.slick-prev {
  left: 50px;
}

.homepage .brands .slick-logo-slider .slick-arrow.slick-next {
  right: 50px;
  -webkit-transform: translateY(-50%) scaleX(-1);
          transform: translateY(-50%) scaleX(-1);
}

@-webkit-keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.catalogue-page {
  overflow-x: hidden;
}

.catalogue-page .banner {
  position: relative;
  width: 100%;
  height: 200px;
  background-color: #F3F3F3;
  background-position: center;
  background-size: cover;
}

.catalogue-page .banner .container {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

.catalogue-page .banner .container h1 {
  color: #FFF;
  font-size: 50px;
  text-align: center;
  text-transform: uppercase;
}

.catalogue-page .catalogue {
  margin-top: 90px;
  margin-bottom: 90px;
}

.catalogue-page .catalogue .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media only screen and (max-width: 1023px) {
  .catalogue-page .catalogue .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.catalogue-page .catalogue .container .sidebar {
  position: -webkit-sticky;
  position: sticky;
  top: 125px;
  display: block;
  padding: 25px;
  width: 100%;
  max-width: 350px;
  overflow-x: hidden;
  background-color: #D90016;
  border-radius: 6px;
}

@media only screen and (max-width: 1023px) {
  .catalogue-page .catalogue .container .sidebar {
    position: relative;
    top: 0px;
    max-width: none;
  }
}

.catalogue-page .catalogue .container .sidebar .search-box {
  position: relative;
  margin-bottom: 30px;
}

.catalogue-page .catalogue .container .sidebar .search-box .search-box-input {
  display: block;
  width: 100%;
  border: none;
  border-radius: 4px;
  outline-color: #009052;
  padding: 15px;
  font-size: 16px;
}

.catalogue-page .catalogue .container .sidebar .search-box .search-icon {
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border: none;
  outline: none;
  background-color: transparent;
  background-image: url("../images/icons/search-icon.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
}

.catalogue-page .catalogue .container .sidebar h3 {
  color: #FFF;
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 30px;
}

@media only screen and (max-width: 1023px) {
  .catalogue-page .catalogue .container .sidebar .categories {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.catalogue-page .catalogue .container .sidebar .categories #category-selector {
  display: block;
  width: 100%;
  padding: 15px;
  background-color: #FFF;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  outline: none;
  font-size: 18px;
  font-family: 'museo-sans-rounded', Arial, Helvetica, sans-serif;
}

.catalogue-page .catalogue .container .sidebar .categories .category {
  display: block;
  margin: 20px 0px;
  color: #FFF;
  font-size: 16px;
  text-transform: uppercase;
  text-decoration: none;
}

@media only screen and (max-width: 1023px) {
  .catalogue-page .catalogue .container .sidebar .categories .category {
    margin: 15px;
  }
}

.catalogue-page .catalogue .container .sidebar .categories .category.selected, .catalogue-page .catalogue .container .sidebar .categories .category:hover {
  color: #FFCE00;
}

.catalogue-page .catalogue .container .products {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: block;
  padding: 25px;
}

@media only screen and (max-width: 1023px) {
  .catalogue-page .catalogue .container .products {
    width: 100%;
  }
}

.catalogue-page .catalogue .container .products .sorting-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 25px 0px;
  border-bottom: 2px solid #EEE;
  margin-bottom: 25px;
}

.catalogue-page .catalogue .container .products .sorting-block p {
  color: #AAA;
  font-size: 16px;
}

.catalogue-page .catalogue .container .products .sorting-block .sorting-select {
  width: 280px;
  height: 50px;
  background-color: #EEE;
  border: none;
  outline-color: #009052;
  padding: 15px;
  color: #AAA;
  font-size: 16px;
}

@media only screen and (max-width: 768px) {
  .catalogue-page .catalogue .container .products .sorting-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .catalogue-page .catalogue .container .products .sorting-block p {
    margin-bottom: 15px;
  }
}

.catalogue-page .catalogue .container .products .products-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(270px, 1fr))[auto-fill];
      grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  grid-column-gap: 25px;
  grid-row-gap: 60px;
}

.catalogue-page .catalogue .container .products .products-grid .product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.catalogue-page .catalogue .container .products .products-grid .product .product-image {
  width: 100%;
  height: 290px;
  border: 2px solid #EEE;
  border-radius: 4px;
  background-color: #FFF;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  margin-bottom: 30px;
}

.catalogue-page .catalogue .container .products .products-grid .product .product-title {
  display: block;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #D90016;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 30px;
}

.catalogue-page .catalogue .container .products .products-grid .product .product-price {
  display: block;
  color: #D90016;
  font-size: 18px;
  font-weight: 700;
  text-align: left;
  margin-bottom: 30px;
}

.catalogue-page .catalogue .container .products .products-grid .product .product-price del {
  color: #AAA;
}

.catalogue-page .catalogue .container .products .products-grid .product .product-price del .amount {
  color: #AAA;
  font-size: 16px;
}

.catalogue-page .catalogue .container .products .products-grid .product .product-price ins {
  text-decoration: none;
}

.catalogue-page .catalogue .container .products .products-grid .product .product-price ins .amount {
  color: inherit;
  font-size: inherit;
}

.catalogue-page .catalogue .container .products .products-grid .product .product-price .each {
  color: #D90016;
}

.catalogue-page .catalogue .container .products .products-grid .product .reserve-btn p {
  font-size: 14px;
}

.catalogue-page .catalogue .container .products .pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 60px;
}

.catalogue-page .catalogue .container .products .pagination .number-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50px;
  height: 50px;
  background-color: #FFF;
  border: 1px solid #AAA;
  border-radius: 2px;
  color: #AAA;
  font-size: 18px;
  text-align: center;
  text-decoration: none;
  margin: 5px;
  cursor: pointer;
}

.catalogue-page .catalogue .container .products .pagination .number-block.prev, .catalogue-page .catalogue .container .products .pagination .number-block.next {
  position: relative;
  padding: 18px;
  background-image: url("../images/icons/arrow.svg");
  background-size: contain;
  background-position: 50%;
  background-repeat: no-repeat;
  background-origin: content-box;
  -webkit-transition: background-position 0.4s ease-in-out;
  transition: background-position 0.4s ease-in-out;
}

.catalogue-page .catalogue .container .products .pagination .number-block.prev:hover, .catalogue-page .catalogue .container .products .pagination .number-block.next:hover {
  background-image: url("../images/icons/arrow-red.svg");
}

.catalogue-page .catalogue .container .products .pagination .number-block.next {
  -webkit-transform: scale(-1);
          transform: scale(-1);
}

.catalogue-page .catalogue .container .products .pagination .number-block.selected, .catalogue-page .catalogue .container .products .pagination .number-block:hover {
  color: #D90016;
  border-color: #D90016;
}

.catalogue-page .reserve {
  position: relative;
  background-color: #666666;
  background-image: url("../images/shop/ring-reserve.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.catalogue-page .reserve:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background-image: -webkit-gradient(linear, left top, right bottom, from(#009DDF), to(#8CD3F2));
  background-image: linear-gradient(to bottom right, #009DDF, #8CD3F2);
  opacity: 0.75;
}

.catalogue-page .reserve .container {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 100px;
}

.catalogue-page .reserve .container .content {
  display: block;
  width: 100%;
  padding-right: 300px;
}

@media only screen and (max-width: 1023px) {
  .catalogue-page .reserve .container .content {
    padding-right: 200px;
  }
}

@media only screen and (max-width: 768px) {
  .catalogue-page .reserve .container .content {
    padding-right: 0;
  }
}

.catalogue-page .reserve .container .content h2 {
  color: #FFF;
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 30px;
}

.catalogue-page .reserve .container .content h2 span {
  font-weight: 300;
}

.catalogue-page .reserve .container .content p {
  color: #FFF;
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 30px;
}

.catalogue-page .reserve .container .content ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style-position: inside;
}

.catalogue-page .reserve .container .content ul li {
  color: #FFF;
  font-size: 24px;
  font-weight: 300;
  margin-right: 30px;
}

.catalogue-page .reserve .container .toby_wrapper {
  position: absolute;
  top: -75px;
  right: -50px;
  bottom: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transform: translateX(200%);
          transform: translateX(200%);
  -webkit-transition: all 0.4s ease-in-out 0.4s;
  transition: all 0.4s ease-in-out 0.4s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media only screen and (max-width: 1023px) {
  .catalogue-page .reserve .container .toby_wrapper {
    top: 100px;
    right: -150px;
  }
}

@media only screen and (max-width: 767px) {
  .catalogue-page .reserve .container .toby_wrapper {
    display: none;
  }
}

.catalogue-page .reserve .container .toby_wrapper.animate {
  opacity: 1;
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

.catalogue-page .reserve .container .toby_wrapper .toby_figure {
  width: auto;
  height: 135%;
}

@media only screen and (max-width: 1024px) {
  .catalogue-page .reserve .container .toby_wrapper .toby_figure {
    height: 125%;
  }
}

.catalogue-page .disclaimer {
  padding-bottom: 90px;
}

.catalogue-page .disclaimer .container p {
  display: block;
  width: 100%;
  max-width: 480px;
  font-size: 18px;
  text-align: center;
  font-style: italic;
  color: #666666;
  margin: 0px auto 15px;
}

.catalogue-page .nearest-store {
  position: relative;
  overflow: hidden;
}

.catalogue-page .nearest-store .section-title {
  padding: 60px 0px 30px;
}

.catalogue-page .nearest-store .section-title h2 {
  color: #009052;
  font-size: 60px;
  font-weight: 700;
  text-align: center;
}

@media only screen and (max-width: 1023px) {
  .catalogue-page .nearest-store .section-title h2 {
    font-size: 48px;
  }
}

.catalogue-page .nearest-store .location-legend .legend {
  color: #666666;
}

.product .banner {
  position: relative;
  min-height: 200px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 50px;
  padding-bottom: 50px;
}

.product .banner .container {
  position: relative;
  z-index: 2;
}

.product .banner .container h1 {
  color: #FFF;
  font-size: 40px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
}

.product .banner .container .woocommerce-breadcrumb {
  color: #FFF;
  font-size: 18px;
  font-weight: 300;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 25px;
}

@media only screen and (max-width: 1023px) {
  .product .banner .container .woocommerce-breadcrumb {
    font-size: 16px;
  }
}

@media only screen and (max-width: 767px) {
  .product .banner .container .woocommerce-breadcrumb {
    display: none;
  }
}

.product .banner .container .woocommerce-breadcrumb a {
  color: #FFF;
  font-size: 18px;
  font-weight: 300;
  text-align: center;
  text-decoration: none;
}

@media only screen and (max-width: 1023px) {
  .product .banner .container .woocommerce-breadcrumb a {
    font-size: 16px;
  }
}

.product .content {
  padding-top: 90px;
  padding-bottom: 90px;
}

.product .content .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media only screen and (max-width: 1024px) {
  .product .content .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.product .content .container .product-detail {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 100%;
}

.product .content .container .product-detail .main-detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 70px;
  max-width: 100%;
}

@media only screen and (max-width: 767px) {
  .product .content .container .product-detail .main-detail {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.product .content .container .product-detail .main-detail .image-wrapper {
  width: 100%;
  max-width: 360px;
}

@media only screen and (max-width: 767px) {
  .product .content .container .product-detail .main-detail .image-wrapper {
    max-width: 100%;
  }
}

.product .content .container .product-detail .main-detail .image-wrapper .product_images {
  position: relative;
  display: block;
  width: 100%;
  max-width: 360px;
  margin-bottom: 30px;
}

.product .content .container .product-detail .main-detail .image-wrapper .product_images:after {
  content: '';
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 2;
  width: 20px;
  height: 20px;
  background-image: url("../images/icons/search-icon.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.product .content .container .product-detail .main-detail .image-wrapper .product_images .image {
  display: block;
  width: 100%;
  max-width: 360px;
  min-height: 300px;
  border: 2px solid #EEEEEE;
  border-radius: 8px;
  outline: none;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.product .content .container .product-detail .main-detail .image-wrapper .product_thumbnails {
  display: block;
  width: 100%;
  max-width: 360px;
}

.product .content .container .product-detail .main-detail .image-wrapper .product_thumbnails .thumbnail {
  display: block;
  width: 100%;
  max-width: 120px;
  min-height: 90px;
  height: auto;
  margin: 0 15px;
  border: 2px solid #EEEEEE;
  border-radius: 8px;
  outline: none;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.product .content .container .product-detail .main-detail .image-wrapper .product_thumbnails .thumbnail.slick-current {
  border-color: #D90016;
}

.product .content .container .product-detail .main-detail .detail {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: block;
  padding: 25px;
}

.product .content .container .product-detail .main-detail .detail h2 {
  color: #D90016;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 25px;
}

.product .content .container .product-detail .main-detail .detail .price {
  color: #D90016;
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 25px;
}

.product .content .container .product-detail .main-detail .detail .price del {
  color: #AAA;
}

.product .content .container .product-detail .main-detail .detail .price del .amount {
  color: #AAA;
  font-size: 18px;
}

.product .content .container .product-detail .main-detail .detail .price ins {
  text-decoration: none;
}

.product .content .container .product-detail .main-detail .detail .price ins .amount {
  color: inherit;
  font-size: inherit;
}

.product .content .container .product-detail .main-detail .detail .price .each {
  color: #D90016;
}

.product .content .container .product-detail .main-detail .detail .reserve-btn {
  margin-bottom: 25px;
}

.product .content .container .product-detail .main-detail .detail .desc {
  color: #666666;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 500;
  text-align: justify;
  margin-bottom: 60px;
}

.product .content .container .product-detail .main-detail .detail .age {
  color: #D90016;
  font-size: 18px;
  font-weight: 300;
}

.product .content .container .product-detail .main-detail .detail hr {
  margin-top: 15px;
  margin-bottom: 15px;
}

.product .content .container .product-detail .main-detail .detail .categories span {
  display: inline-block;
  color: #666666;
  font-size: 18px;
  font-weight: 300;
}

.product .content .container .product-detail .main-detail .detail .categories .category {
  display: inline-block;
  color: #D90016;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.product .content .container .product-detail .main-detail .detail .categories .category:hover {
  color: #009052;
}

.product .content .container .product-detail .main-detail .detail .categories .category:visited {
  color: rgba(0, 195, 111, 0.25);
}

.product .content .container .product-detail .main-detail .detail .categories .category:visited:hover {
  color: #009052;
}

.product .content .container .product-detail .product-spec {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 767px) {
  .product .content .container .product-detail .product-spec {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.product .content .container .product-detail .product-spec .tabs {
  width: 225px;
  border-right: 1px solid #EEEEEE;
}

@media only screen and (max-width: 767px) {
  .product .content .container .product-detail .product-spec .tabs {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-right: none;
    border-bottom: 1px solid #EEEEEE;
  }
}

.product .content .container .product-detail .product-spec .tabs .tab {
  display: block;
  padding: 15px 0px;
  color: #666666;
  font-size: 18px;
  font-weight: 300;
  text-align: justify;
  text-transform: uppercase;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  cursor: pointer;
}

@media only screen and (max-width: 767px) {
  .product .content .container .product-detail .product-spec .tabs .tab {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    text-align: center;
  }
}

.product .content .container .product-detail .product-spec .tabs .tab:hover {
  color: #D90016;
}

.product .content .container .product-detail .product-spec .tabs .tab.active {
  color: #D90016;
  border-right: 3px solid #D90016;
  font-weight: 700;
}

@media only screen and (max-width: 767px) {
  .product .content .container .product-detail .product-spec .tabs .tab.active {
    border-right: none;
    border-bottom: 3px solid #D90016;
  }
}

.product .content .container .product-detail .product-spec .spec-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.product .content .container .product-detail .product-spec .spec-content .spec-wrap {
  position: relative;
  padding: 15px 25px;
}

.product .content .container .product-detail .product-spec .spec-content .spec-wrap h3 {
  color: #000;
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 30px;
}

.product .content .container .product-detail .product-spec .spec-content .spec-wrap p {
  color: #666666;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 300;
  text-align: justify;
}

.product .content .container .sidebar {
  position: -webkit-sticky;
  position: sticky;
  top: 125px;
  display: block;
  width: 100%;
  max-width: 400px;
  overflow: scroll;
  background-color: #009052;
  border-radius: 6px;
}

@media only screen and (max-width: 1024px) {
  .product .content .container .sidebar {
    max-width: none;
    margin-top: 30px;
  }
}

.product .content .container .sidebar .finder .container {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 15px;
}

.product .content .container .sidebar .finder .container .location-distance {
  display: none;
}

.product .content .container .sidebar .finder .container .location-distance-mobile {
  display: block;
}

.product .content .container .sidebar .finder .container .location-legend {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.product .content .container .sidebar .finder .container .location-legend .legend {
  margin-bottom: 15px;
}

.product .content .container .sidebar .finder .container .location-legend .legend:last-of-type {
  margin-bottom: 0;
}

.product .content .container .sidebar .finder .map-container {
  display: block;
}

.product .content .container .sidebar .finder .map-container .map {
  height: 300px;
}

@media only screen and (max-width: 1024px) {
  .product .content .container .sidebar .finder .map-container .map {
    width: 100%;
  }
}

.product .content .container .sidebar .finder .map-container .map .gmnoprint {
  display: none !important;
}

.product .content .container .sidebar .finder .map-container .map .gm-control-active {
  display: none !important;
}

.product .content .container .sidebar .finder .map-container .map .gm-style .gm-style-iw {
  max-width: 320px !important;
}

.product .content .container .sidebar .finder .map-container .map .gm-style .gm-style-iw .content {
  padding: 0px;
}

.product .content .container .sidebar .finder .map-container .shops {
  position: static;
}

@media only screen and (max-width: 1024px) {
  .product .content .container .sidebar .finder .map-container .shops {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: none;
  }
}

@media only screen and (max-width: 767px) {
  .product .content .container .sidebar .finder .map-container .shops {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.product .content .container .sidebar .finder .map-container .shops .nearest-store {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 50%;
          flex: 1 1 50%;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.product .content .container .sidebar .finder .map-container .shops .nearest-store .content {
  padding: 0px;
}

.product .content .container .sidebar .finder .map-container .shops .nearest-store .content h3 {
  color: #FFF;
  font-size: 24px;
  font-weight: 300;
  margin: 0px 0px 15px;
}

.product .content .container .sidebar .finder .map-container .shops .other-stores {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 50%;
          flex: 1 1 50%;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.product .content .container .sidebar .finder .map-container .shops .other-stores h3 {
  margin: 0;
  margin-bottom: 15px;
}

.product .content .container .sidebar .finder .map-container .shops .other-stores .content {
  padding: 0;
}

.product .content .container .sidebar h3 {
  color: #FFF;
  font-size: 28px;
  text-transform: uppercase;
  margin: 15px;
  text-align: center;
}

.product .related-products {
  padding-top: 90px;
  padding-bottom: 90px;
}

.product .related-products h2 {
  color: #D90016;
  font-size: 35px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 50px;
}

.product .related-products .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

@media only screen and (max-width: 767px) {
  .product .related-products .flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.product .related-products .flex .related-product {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 300px;
  margin: 0px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media only screen and (max-width: 767px) {
  .product .related-products .flex .related-product {
    margin: 15px;
  }
}

.product .related-products .flex .related-product .image {
  width: 100%;
  max-width: 300px;
  height: 300px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  border: 2px solid #EEEEEE;
  border-radius: 4px;
  margin-bottom: 25px;
}

.product .related-products .flex .related-product h3 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #D90016;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 25px;
}

.product .related-products .flex .related-product .price {
  color: #D90016;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 25px;
}

.product .related-products .flex .related-product .price del {
  color: #AAA;
}

.product .related-products .flex .related-product .price del .amount {
  color: #AAA;
  font-size: 18px;
}

.product .related-products .flex .related-product .price ins {
  text-decoration: none;
}

.product .related-products .flex .related-product .price ins .amount {
  color: inherit;
  font-size: inherit;
}

.product .related-products .flex .related-product .price .each {
  color: #D90016;
}

.product .related-products .flex .related-product .reserve-btn h5 {
  font-size: 20px;
}

.product .related-products .flex .related-product .reserve-btn p {
  font-size: 13px;
}

.product .lightbox {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 150px;
  width: 100vw;
  height: 100vh;
  opacity: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

@media only screen and (max-width: 768px) {
  .product .lightbox {
    padding: 50px;
  }
}

@media only screen and (max-width: 480px) {
  .product .lightbox {
    padding: 15px;
  }
}

.product .lightbox .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.7);
}

.product .lightbox .close {
  position: absolute;
  top: 150px;
  right: 150px;
  z-index: 999;
  width: 32px;
  height: 32px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  padding: 25px;
  background-image: url("../images/icons/cross-dark.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-origin: content-box;
}

@media only screen and (max-width: 768px) {
  .product .lightbox .close {
    top: 50px;
    right: 50px;
  }
}

@media only screen and (max-width: 480px) {
  .product .lightbox .close {
    top: 15px;
    right: 15px;
  }
}

.product .lightbox.active {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.product .lightbox .product_lightbox {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.product .lightbox .product_lightbox .slick-list {
  width: 100%;
  height: 100%;
}

.product .lightbox .product_lightbox .slick-list .slick-track {
  height: 100%;
}

.product .lightbox .product_lightbox .slick-list .slick-track .image {
  width: 100%;
  height: 100%;
  background-color: #FFF;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.product .lightbox .product_lightbox .slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
  display: block;
  width: 100px;
  height: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  outline: none;
  margin: 0;
  padding: 0;
  background: none;
  background-position: center;
  background-size: 32px auto;
  background-repeat: no-repeat;
  background-image: url("../images/icons/lg-arrow-red.svg");
  cursor: pointer;
}

@media only screen and (max-width: 768px) {
  .product .lightbox .product_lightbox .slick-arrow {
    display: none !important;
  }
}

.product .lightbox .product_lightbox .slick-arrow.slick-prev {
  left: 0px;
}

.product .lightbox .product_lightbox .slick-arrow.slick-next {
  right: 0px;
  -webkit-transform: translateY(-50%) scaleX(-1);
          transform: translateY(-50%) scaleX(-1);
}

.kids-kingdom {
  /*
    ** BRAND SECTION
    */
}

.kids-kingdom .banner {
  width: 100vw;
  height: 350px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media only screen and (max-width: 1200px) {
  .kids-kingdom .banner {
    height: 300px;
  }
}

@media only screen and (max-width: 768px) {
  .kids-kingdom .banner {
    height: 200px;
  }
}

.kids-kingdom .banner .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 25px;
  padding-bottom: 25px;
  width: 100%;
  height: 100%;
}

.kids-kingdom .banner .container .banner-title {
  display: block;
  max-width: 100%;
  height: auto;
  max-height: 100%;
}

.kids-kingdom .brands {
  width: 100vw;
  background-image: url("../images/kids-kingdom/kids-kingdom-background.png");
  background-repeat: repeat-y;
  background-position: top center;
  padding: 90px 0px;
}

.kids-kingdom .brands .container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media only screen and (max-width: 768px) {
  .kids-kingdom .brands .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.kids-kingdom .brands .container .sidebar {
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 335px;
          flex: 1 1 335px;
  margin-right: 15px;
  padding: 20px;
  background-color: #71CC7A;
  border-radius: 8px;
  max-height: calc(100vh - 100px);
  overflow-x: hidden;
  overflow-y: scroll;
}

@media only screen and (max-width: 768px) {
  .kids-kingdom .brands .container .sidebar {
    position: relative;
    top: 0;
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    margin-bottom: 30px;
  }
}

.kids-kingdom .brands .container .sidebar h3 {
  color: #FFF;
  font-size: 32px;
  font-weight: 900;
  text-transform: uppercase;
}

@media only screen and (max-width: 768px) {
  .kids-kingdom .brands .container .sidebar .categories {
    display: none;
  }
}

.kids-kingdom .brands .container .sidebar .categories .category-link {
  display: block;
  margin: 15px 0px;
  color: #FFF;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.kids-kingdom .brands .container .sidebar .categories .category-link:hover {
  color: #463A43;
}

.kids-kingdom .brands .container .sidebar .categories .category-link.active {
  color: #463A43;
}

.kids-kingdom .brands .container .sidebar .categories .category-link.active:before {
  content: '> ';
  color: #463A43;
  font-size: 20px;
  font-weight: 700;
}

.kids-kingdom .brands .container .sidebar #category-selector {
  padding: 15px;
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid #666666;
  outline: none;
  background-color: #EEEEEE;
  color: #666666;
  font-size: 20px;
  margin-top: 15px;
}

.kids-kingdom .brands .container .content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
  margin-left: 15px;
}

.kids-kingdom .brands .container .content p {
  color: #2B72D8;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 30px;
}

.kids-kingdom .brands .container .content p.no-activities {
  color: #D90016;
  font-size: 20px;
  font-weight: 300;
}

.kids-kingdom .brands .container .content .grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.kids-kingdom .brands .container .content .grid .grid-item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 300px;
          flex: 1 1 300px;
  max-width: 300px;
  border-radius: 6px;
  overflow: hidden;
  -webkit-box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2);
  margin: 15px;
}

.kids-kingdom .brands .container .content .grid .grid-item a {
  text-decoration: none;
}

.kids-kingdom .brands .container .content .grid .grid-item .grid-item-image {
  width: 100%;
  height: 300px;
  background-color: #FFF;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-origin: content-box;
  padding: 30px;
}

.kids-kingdom .brands .container .content .grid .grid-item .grid-item-content {
  width: 100%;
  height: 70px;
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
}

.kids-kingdom .brands .container .content .grid .grid-item .grid-item-content .grid-item-title {
  color: #EEEEEE;
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
}

.kids-kingdom .brands .container .content .grid .grid-item.activity .grid-item-image {
  background-origin: unset;
  background-size: cover;
}

.kids-kingdom .brands .container .content .grid .grid-item.activity .grid-item-content .grid-item-title {
  font-size: 18px;
}

.kids-kingdom .brands .container .content .grid .grid-item:nth-child(1n) .grid-item-content {
  background-color: #FF841F;
}

.kids-kingdom .brands .container .content .grid .grid-item:nth-child(2n) .grid-item-content {
  background-color: #FF5E9F;
}

.kids-kingdom .brands .container .content .grid .grid-item:nth-child(3n) .grid-item-content {
  background-color: #48CDED;
}

.kids-kingdom .brands .container .content .grid .grid-item:nth-child(4n) .grid-item-content {
  background-color: #2B72D8;
}

.kids-kingdom .brands .container .content .grid .grid-item:nth-child(5n) .grid-item-content {
  background-color: #FFC520;
}

.kids-kingdom .brands .container .content .grid .grid-item:nth-child(6n) .grid-item-content {
  background-color: #71CC7A;
}

.kids-kingdom .brands .container .content .grid .grid-item:nth-child(7n) .grid-item-content {
  background-color: #14A594;
}

.kids-kingdom .brands .container .content .grid .grid-item:nth-child(8n) .grid-item-content {
  background-color: #FD2F17;
}

.kids-kingdom .brands .container .content .grid .grid-item:nth-child(9n) .grid-item-content {
  background-color: #21542B;
}

@media only screen and (max-width: 1466px) {
  .kids-kingdom .brands .container .content .grid .grid-item {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 260px;
            flex: 1 1 260px;
    max-width: 260px;
  }
  .kids-kingdom .brands .container .content .grid .grid-item .grid-item-image {
    height: 260px;
  }
}

@media only screen and (max-width: 1280px) {
  .kids-kingdom .brands .container .content .grid .grid-item {
    max-width: 320px;
  }
}

@media only screen and (max-width: 1024px) {
  .kids-kingdom .brands .container .content .grid .grid-item {
    max-width: 300px;
  }
}

@media only screen and (max-width: 1023px) {
  .kids-kingdom .brands .container .content .grid .grid-item {
    max-width: none;
  }
}

@media only screen and (max-width: 768px) {
  .kids-kingdom .brands .container .content .grid .grid-item {
    max-width: 320px;
  }
}

@media only screen and (max-width: 767px) {
  .kids-kingdom .brands .container .content .grid .grid-item {
    max-width: none;
  }
}

.why-choose-toymaster .banner {
  position: relative;
  width: 100%;
  height: 630px;
  background-image: url("../images/homepage/frontpage-banner-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media only screen and (max-width: 1024px) {
  .why-choose-toymaster .banner {
    height: 500px;
  }
}

@media only screen and (max-width: 1023px) {
  .why-choose-toymaster .banner {
    height: 600px;
  }
}

@media only screen and (max-width: 767px) {
  .why-choose-toymaster .banner {
    height: 500px;
  }
}

@media only screen and (max-width: 480px) {
  .why-choose-toymaster .banner {
    height: 450px;
  }
}

.why-choose-toymaster .banner .container {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.why-choose-toymaster .banner .container .toby {
  position: absolute;
  top: 50px;
  bottom: 0px;
  right: 0px;
  z-index: 1;
  width: 450px;
  height: 150%;
  background-image: url("../images/toby/toby-waving.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transform: translateX(200%);
          transform: translateX(200%);
  -webkit-animation-name: toby-in;
          animation-name: toby-in;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
}

@media only screen and (max-width: 1366px) {
  .why-choose-toymaster .banner .container .toby {
    top: 100px;
    width: 400px;
    height: 125%;
  }
}

@media only screen and (max-width: 1024px) {
  .why-choose-toymaster .banner .container .toby {
    top: 50px;
    width: 350px;
    height: 140%;
  }
}

@media only screen and (max-width: 1023px) {
  .why-choose-toymaster .banner .container .toby {
    top: 250px;
    width: 100%;
    height: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .why-choose-toymaster .banner .container .toby {
    top: unset;
    bottom: -150px;
    height: 75%;
  }
}

.why-choose-toymaster .banner .container .toby .quote {
  position: absolute;
  top: 0;
  left: -155%;
  z-index: 1;
  width: 800px;
  height: 350px;
  background-image: url("../images/homepage/speech-bubble.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: center right;
          transform-origin: center right;
  -webkit-animation-name: quote-in;
          animation-name: quote-in;
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
}

@media only screen and (max-width: 1366px) {
  .why-choose-toymaster .banner .container .toby .quote {
    left: -175%;
    top: -50px;
  }
}

@media only screen and (max-width: 1200px) {
  .why-choose-toymaster .banner .container .toby .quote {
    width: 700px;
    height: 300px;
    left: -145%;
  }
}

@media only screen and (max-width: 1024px) {
  .why-choose-toymaster .banner .container .toby .quote {
    top: -25px;
    left: -170%;
  }
}

@media only screen and (max-width: 1023px) {
  .why-choose-toymaster .banner .container .toby .quote {
    top: -75px;
    left: -150%;
    width: 550px;
    height: 225px;
  }
}

@media only screen and (max-width: 768px) {
  .why-choose-toymaster .banner .container .toby .quote {
    top: -250px;
    left: 0;
    width: 100%;
    height: 250px;
  }
}

@media only screen and (max-width: 767px) {
  .why-choose-toymaster .banner .container .toby .quote {
    top: -250px;
    left: 0;
    width: 100%;
    height: 250px;
  }
}

@media only screen and (max-width: 480px) {
  .why-choose-toymaster .banner .container .toby .quote {
    top: -200px;
    left: 0;
    width: 100%;
    height: 200px;
  }
}

.why-choose-toymaster .banner .container .toby .quote .content {
  position: relative;
  z-index: 2;
  padding: 0px 30px;
  opacity: 0;
  -webkit-animation-name: fade-in;
          animation-name: fade-in;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

@media only screen and (max-width: 768px) {
  .why-choose-toymaster .banner .container .toby .quote .content {
    padding: 0px 40px;
  }
}

@media only screen and (max-width: 767px) {
  .why-choose-toymaster .banner .container .toby .quote .content {
    padding: 0px 90px;
  }
}

@media only screen and (max-width: 480px) {
  .why-choose-toymaster .banner .container .toby .quote .content {
    padding: 0px 35px;
  }
}

.why-choose-toymaster .banner .container .toby .quote .content p {
  color: #009052;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
}

@media only screen and (max-width: 1023px) {
  .why-choose-toymaster .banner .container .toby .quote .content p {
    font-size: 24px;
    line-height: 28px;
  }
}

@media only screen and (max-width: 767px) {
  .why-choose-toymaster .banner .container .toby .quote .content p {
    font-size: 18px;
    line-height: 24px;
  }
}

@media only screen and (max-width: 479px) {
  .why-choose-toymaster .banner .container .toby .quote .content p {
    font-size: 16px;
    line-height: 20px;
  }
}

.why-choose-toymaster .banner .container .toby .quote .content .logo-solo {
  display: inline;
  height: 28px;
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
}

@media only screen and (max-width: 1023px) {
  .why-choose-toymaster .banner .container .toby .quote .content .logo-solo {
    height: 28px;
  }
}

@media only screen and (max-width: 767px) {
  .why-choose-toymaster .banner .container .toby .quote .content .logo-solo {
    height: 24px;
  }
}

@media only screen and (max-width: 480px) {
  .why-choose-toymaster .banner .container .toby .quote .content .logo-solo {
    height: 20px;
  }
}

.why-choose-toymaster .bulleted-list {
  padding-top: 90px;
  padding-bottom: 90px;
}

@media only screen and (max-width: 480px) {
  .why-choose-toymaster .bulleted-list {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.why-choose-toymaster .bulleted-list .container ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media only screen and (max-width: 480px) {
  .why-choose-toymaster .bulleted-list .container ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.why-choose-toymaster .bulleted-list .container ul li {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 50%;
          flex: 1 1 50%;
  margin-top: 15px;
  margin-bottom: 15px;
  padding-right: 60px;
  font-size: 20px;
  color: #666666;
}

@media only screen and (max-width: 480px) {
  .why-choose-toymaster .bulleted-list .container ul li {
    text-align: center;
    list-style-type: none;
    padding-right: 0;
  }
}

.why-choose-toymaster .two-col {
  padding-top: 90px;
  padding-bottom: 90px;
}

@media only screen and (max-width: 480px) {
  .why-choose-toymaster .two-col {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.why-choose-toymaster .two-col.grey-box {
  background-color: #EEE;
}

.why-choose-toymaster .two-col.lgt-blue-box {
  background-color: #8CD3F2;
}

.why-choose-toymaster .two-col .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 767px) {
  .why-choose-toymaster .two-col .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: unset;
        -ms-flex-align: unset;
            align-items: unset;
  }
}

.why-choose-toymaster .two-col .container .col {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 50%;
          flex: 1 1 50%;
  padding: 25px;
}

@media only screen and (max-width: 480px) {
  .why-choose-toymaster .two-col .container .col {
    padding: 0px;
  }
}

.why-choose-toymaster .two-col .container .col img {
  width: 100%;
}

.why-choose-toymaster .two-col .container .col ul li {
  margin-bottom: 30px;
  padding-right: 60px;
  font-size: 20px;
  color: #666666;
}

@media only screen and (max-width: 480px) {
  .why-choose-toymaster .two-col .container .col ul li {
    text-align: center;
    list-style-type: none;
    padding-right: 0;
  }
}

.why-choose-toymaster .two-col .container .col h3 {
  color: #D90016;
  font-size: 38px;
  font-weight: 700;
}

@media only screen and (max-width: 480px) {
  .why-choose-toymaster .two-col .container .col h3 {
    text-align: center;
  }
}

.why-choose-toymaster .two-col .container .col h3 .logo-solo {
  display: inline;
  width: auto;
  height: 38px;
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
}

@media only screen and (max-width: 768px) {
  .why-choose-toymaster .two-col .container .col h3 {
    font-size: 32px;
  }
}

@keyframes toby-in {
  0% {
    -webkit-transform: translateX(200%);
            transform: translateX(200%);
  }
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

@keyframes quote-in {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.content-page .banner {
  position: relative;
  min-height: 200px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 50px;
  padding-bottom: 50px;
}

.content-page .banner .container {
  position: relative;
  z-index: 2;
}

.content-page .banner .container h1 {
  color: #FFF;
  font-size: 40px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
}

.content-page .content {
  padding-top: 90px;
  padding-bottom: 90px;
}

.content-page .content h2 {
  color: #666666;
  font-size: 32px;
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 30px;
}

.content-page .content p, .content-page .content ul, .content-page .content li {
  color: #666666;
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 15px;
}

.content-page .content ul {
  list-style-position: outside;
  margin: 0px 30px;
}

.content-page .content .wp-block-file {
  margin-top: 30px;
}

.content-page .content .wp-block-file a {
  display: inline-block;
}

.content-page .wpcf7 form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.content-page .wpcf7 form p {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 50%;
          flex: 1 1 50%;
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.content-page .wpcf7 form label {
  width: 100%;
  display: block;
}

.content-page .wpcf7 form label input {
  display: block;
  width: 100%;
  padding: 15px;
  font-size: 18px;
  color: #3c3c3c;
  margin: 0;
  border: 1px solid #666666;
  outline: none;
}

.content-page .wpcf7 form input[type="submit"] {
  display: block;
  width: 100%;
  padding: 15px;
  font-size: 18px;
  color: #FFF;
  background-color: #009052;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0;
  border: 1px solid #666666;
  outline: none;
  max-width: 300px;
}

.content-page .wpcf7 form .acceptance-629 {
  min-width: 300px;
}

.content-page .wpcf7 form .wpcf7-acceptance label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.content-page .wpcf7 form .wpcf7-acceptance label input[type="checkbox"] {
  display: inline-block;
  margin-right: 15px;
  width: unset;
  font-size: unset;
}

.content-page .wpcf7 form .submission {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.content-page .wpcf7 form .submission .spacer {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
}

.content-page .wpcf7 form .submission input[type="submit"] {
  -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
}

.content-page .wpcf7 form .submission input[type="submit"]:disabled {
  background-color: #DDD;
}

#wrapper {
  overflow-y: hidden;
}

.social-wall .banner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 200px;
  background-color: #666666;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.social-wall .banner .container {
  position: relative;
  z-index: 2;
}

.social-wall .banner .container h1 {
  color: #FFF;
  font-size: 50px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
}

.social-links {
  margin-top: 50px;
  margin-bottom: 50px;
}

.social-links .section-title {
  margin-bottom: 30px;
}

.social-links .section-title h2 {
  color: #666666;
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 30px;
}

@media only screen and (max-width: 1023px) {
  .social-links .section-title h2 {
    font-size: 36px;
  }
}

.social-links .section-content .social-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.social-links .section-content .social-icons .icon-link {
  margin: 0 30px;
}

.social-links .section-content .social-icons .icon-link .icon {
  display: block;
  width: auto;
  max-width: 75px;
}

.error-page .container {
  position: relative;
  padding-top: 90px;
}

.error-page .container h1 {
  color: #666666;
  font-size: 48px;
  font-weight: 900;
  text-align: center;
}

.error-page .container h3 {
  color: #666666;
  font-size: 28px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 30px;
}

.error-page .container a {
  display: block;
  color: #D90016;
  font-size: 24px;
  font-weight: 300;
  text-decoration: none;
  text-align: center;
}

.error-page .container .robot {
  position: relative;
  width: 150px;
  margin: 100px 0px 0px 0px;
  -webkit-animation-name: patrol;
          animation-name: patrol;
  -webkit-animation-duration: 15s;
          animation-duration: 15s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  top: 20px;
}

@-webkit-keyframes patrol {
  0% {
    left: 0;
    -webkit-transform: translateX(-50%) scaleX(1);
            transform: translateX(-50%) scaleX(1);
  }
  50% {
    left: 100%;
    -webkit-transform: translateX(-50%) scaleX(1);
            transform: translateX(-50%) scaleX(1);
  }
  51% {
    left: 100%;
    -webkit-transform: translateX(-50%) scaleX(-1);
            transform: translateX(-50%) scaleX(-1);
  }
  99% {
    left: 0;
    -webkit-transform: translateX(-50%) scaleX(-1);
            transform: translateX(-50%) scaleX(-1);
  }
  100% {
    left: 0;
    -webkit-transform: translateX(-50%) scaleX(1);
            transform: translateX(-50%) scaleX(1);
  }
}

@keyframes patrol {
  0% {
    left: 0;
    -webkit-transform: translateX(-50%) scaleX(1);
            transform: translateX(-50%) scaleX(1);
  }
  50% {
    left: 100%;
    -webkit-transform: translateX(-50%) scaleX(1);
            transform: translateX(-50%) scaleX(1);
  }
  51% {
    left: 100%;
    -webkit-transform: translateX(-50%) scaleX(-1);
            transform: translateX(-50%) scaleX(-1);
  }
  99% {
    left: 0;
    -webkit-transform: translateX(-50%) scaleX(-1);
            transform: translateX(-50%) scaleX(-1);
  }
  100% {
    left: 0;
    -webkit-transform: translateX(-50%) scaleX(1);
            transform: translateX(-50%) scaleX(1);
  }
}

.hide {
  display: none;
}

.show {
  display: block;
}

@media only screen and (max-width: 768px) {
  .hide-sm {
    display: none !important;
  }
  .show-sm {
    display: block !important;
  }
}

@media only screen and (max-width: 1024px) {
  .hide-md {
    display: none !important;
  }
  .show-md {
    display: block !important;
  }
}

@media only screen and (max-width: 1200px) {
  .hide-lg {
    display: none !important;
  }
  .show-md {
    display: block !important;
  }
}

@media only screen and (max-width: 1366px) {
  .hide-xl {
    display: none !important;
  }
  .show-xl {
    display: block !important;
  }
}
/*# sourceMappingURL=main.css.map */