/* Santa Magic SCSS Document 
@import url("_variables.scss");
@import url("_globals.scss");
@import url("_header.scss");
Importing
*/
/* SCSS Document */
.container {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  padding-right: 20px;
  padding-left: 15px;
  padding-top: 0rem;
  padding-bottom: 3rem;
}

@media (min-width: 576px) {
  .container .container {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media (min-width: 768px) {
  .container .container {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media (min-width: 992px) {
  .container .container {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media (min-width: 1200px) {
  .container .container {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media (min-width: 576px) {
  .container .container {
    width: 540px;
    max-width: 100%;
  }
}

@media (min-width: 768px) {
  .container .container {
    width: 720px;
    max-width: 100%;
  }
}

@media (min-width: 992px) {
  .container .container {
    width: 920px;
    max-width: 100%;
  }
}

@media (min-width: 1200px) {
  .container .container {
    width: 1520px;
    max-width: 100%;
  }
}

.hero {
  overflow: hidden;
  margin-left: 5%;
  margin-right: 5%;
  margin-top: 1%;
  padding-left: 80px;
  padding-right: 80px;
  position: relative;
  background-image: linear-gradient(125deg, rgba(247, 246, 162, 0.911) 0%, white 100%);
}

.hero__image {
  padding: 10px;
  min-width: 7.812rem;
}

.hero__image a {
  width: 15.25rem;
  height: auto;
}

.hero__text {
  padding: 10px;
  max-width: 600px;
}

.hero__text h2 {
  font-size: 3.5vw;
}

.hero__text a {
  font-size: 1.5vw;
}

.hero__cta {
  background-position-x: 20%;
  width: 170px;
  text-align: center;
}

/* SCSS Document */
button, .button {
  padding: 1rem;
  text-align: center;
  background-color: white;
  border: solid 10px #ffffff;
  border-radius: 50px;
  font-size: 2.2rem;
  font-family: "Bebas Neue", cursive;
  cursor: pointer;
  color: #535353 !important;
  background-image: linear-gradient(125deg, #4be2e7 0%, #ff8e8e 100%);
  opacity: 0.88;
  -webkit-transition: 0.6s linear;
  transition: 0.6s linear;
}

button a, .button a {
  text-align: center;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

button:hover, .button:hover {
  color: black !important;
  border-color: #f6ff76;
  opacity: 1;
  -webkit-transition: 0.6s linear;
  transition: 0.6s linear;
}

@media (max-width: 61.9375em) {
  button, .button {
    padding: 0rem;
    font-size: 3vw;
    margin: 0;
  }
  button a, .button a {
    font-size: 3vw;
  }
}

input[type=button] {
  background-color: #5AA378;
  border: none;
  color: white;
  padding: 10px 10px;
  font-size: 1.5vw;
  text-decoration: none;
  text-align: center;
  margin: 20px;
  cursor: pointer;
  border-radius: 15px;
}

input[type=button]:hover {
  color: #777777;
  background-color: yellowgreen;
}

input[id=aml] {
  background-color: #e0d100;
  border: none;
  color: #2fa42d;
  padding: 10px 10px;
  font-size: 1.5vw;
  text-decoration: none;
  text-align: center;
  margin: 20px;
  cursor: pointer;
  border-radius: 15px;
}

input[id=aml]:hover {
  color: #777777;
  background-color: yellowgreen;
}

input[type=submit] {
  width: 20em;
  background-color: #1628cc;
  border: none;
  color: white;
  font-size: 3vw;
  text-decoration: none;
  text-align: center;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  padding-left: 15%;
  padding-right: 15%;
  padding-top: 2%;
  padding-bottom: 2%;
  margin-top: 2%;
  margin-bottom: 2%;
  cursor: pointer;
  border-radius: 15px;
}

@media (max-width: 61.9375em) {
  input[type=submit] {
    font-size: 3vw;
  }
}

input[type=submit]:hover {
  color: #777777;
  background-color: yellowgreen;
}

input[type=text], textarea {
  -webkit-transition: all 0.30s ease-in-out;
  transition: all 0.30s ease-in-out;
  padding: 5px 0 5px 10px;
  margin: 5px 1px 3px 0;
  border: 1px solid #DDDDDD;
  height: 50px;
  font-size: 3vw;
}

input[type=EMAIL], textarea {
  -webkit-transition: all 0.30s ease-in-out;
  transition: all 0.30s ease-in-out;
  padding: 5px 0 5px 10px;
  margin: 5px 1px 3px 0;
  border: 1px solid #DDDDDD;
}

input[type=text]:focus, textarea:focus {
  -webkit-box-shadow: 0 0 8px #51CBEE;
          box-shadow: 0 0 8px #51CBEE;
  outline: none;
  padding: 5px 0 5px 10px;
  margin: 5px 1px 3px 0;
  border: 1px solid #51CBEE;
  height: 50px;
  font-size: 3vw;
}

input[type=EMAIL]:focus, textarea:focus {
  -webkit-box-shadow: 0 0 8px #51CBEE;
          box-shadow: 0 0 8px #51CBEE;
  outline: none;
  padding: 5px 0 5px 10px;
  margin: 5px 1px 3px 0;
  border: 1px solid #51CBEE;
}

html {
  background-color: #ffffff;
  font-size: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 0px;
  padding-right: 0px;
  line-height: 1.5;
}

*, *::before, *::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0px;
  font-family: "Open Sans", sans-serif;
  line-height: 1.3;
  font-size: 19px;
  -o-object-position: center;
     object-position: center;
}

body #hunters {
  background-color: #68b1a8 !important;
}

body.noscroll {
  overflow: hidden;
}

h1 {
  text-align: center;
  font-family: "Kaushan Script", cursive;
  font-size: 1.5vw;
  color: #e0d100;
  background-image: linear-gradient(125deg, #d10000 0%, #12a31e 100%);
  z-index: 1;
}

h3 {
  font-size: 3.5vw;
  background-color: white;
  font-family: "Roboto", sans-serif;
}

p {
  font-family: "Open Sans", sans-serif;
}

p1 {
  font-family: "Open Sans", sans-serif;
  color: #BC0032;
  background-color: black;
}

a, a:visited, a:hover {
  text-decoration: none;
}

table, th, td {
  border: none;
}

th, td {
  padding: 5px;
  text-align: center;
}

div {
  z-index: 50;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-jc-c {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex-jc-sb {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flex-ai-c {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex-fc-b {
  -ms-flex-line-pack: end;
      align-content: flex-end;
}

@media (max-width: 71.8125em) {
  .hide-for-mobile {
    display: none;
  }
}

@media (min-width: 71.875em) {
  .hide-for-desktop {
    display: none;
  }
}

.onlineStore {
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 10%;
  padding-bottom: 10%;
}

.onlineStore h1 {
  color: #1628cc !important;
}

.customerImage {
  padding: 5px;
}

.photorefinputfield {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-area: PheaderArt;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #5900fd;
  -o-object-fit: contain;
     object-fit: contain;
  background-image: linear-gradient(125deg, rgba(216, 29, 29, 0.212) 0%, rgba(0, 245, 20, 0.116) 100%);
  padding: 1rem;
  font-family: "Concert One", cursive;
  height: auto;
  border-radius: 10px;
}

@media screen and (max-width: 900px) {
  .photorefinputfield .photorefinputfield {
    size: 80%;
  }
}

.photorefinputfield23 {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-area: PheaderArt;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #5900fd;
  -o-object-fit: contain;
     object-fit: contain;
  padding-left: 5%;
  padding-right: 5%;
  background-image: linear-gradient(125deg, rgba(216, 29, 29, 0.212) 0%, rgba(0, 245, 20, 0.116) 100%);
  font-family: "Concert One", cursive;
  font-size: 3vw;
  height: auto;
}

.photorefinputfield23 h3 {
  font-size: 2vw;
  font-family: "Merriweather Sans", sans-serif;
  background-color: unset;
}

@media screen and (max-width: 900px) {
  .photorefinputfield23 .photorefinputfield {
    size: 80%;
  }
}

.photoOutput {
  display: -ms-grid;
  display: grid;
  color: #e2e2e2;
  -ms-grid-columns: 10% 80% 10%;
      grid-template-columns: 10% 80% 10%;
  -ms-grid-rows: auto auto auto auto;
      grid-template-rows: auto auto auto auto;
      grid-template-areas: ". PheaderArt ." ". PmainArt ." ". . ." ". PsocialArt .";
}

@media (max-width: 61.9375em) {
  .photoOutput {
    -ms-grid-rows: auto auto auto auto;
        grid-template-rows: auto auto auto auto;
  }
}

@media (max-width: 71.8125em) {
  .photoOutput {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    -ms-grid-rows: auto;
        grid-template-rows: auto;
        grid-template-areas: "PheaderArt" "PmainArt" "." "PsocialArt";
  }
}

.photoOutput23 {
  display: -ms-grid;
  display: grid;
  color: #e2e2e2;
  -ms-grid-columns: 10% 80% 10%;
      grid-template-columns: 10% 80% 10%;
  -ms-grid-rows: auto auto auto auto;
      grid-template-rows: auto auto auto auto;
      grid-template-areas: "PheaderArt PheaderArt PheaderArt" ". PmainArt ." ". PsocialArt ." "dOriginal dOriginal dOriginal";
}

@media (max-width: 61.9375em) {
  .photoOutput23 {
    -ms-grid-rows: auto auto auto auto;
        grid-template-rows: auto auto auto auto;
  }
}

@media (max-width: 71.8125em) {
  .photoOutput23 {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    -ms-grid-rows: auto;
        grid-template-rows: auto;
        grid-template-areas: "PheaderArt" "PmainArt" "PsocialArt" "dOriginal";
  }
}

.photoGrid {
  padding-left: 30px;
  padding-right: 30px;
  -ms-grid-column-align: center;
      justify-self: center;
  justify-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 10px;
  max-width: 80%;
  -o-object-fit: contain;
     object-fit: contain;
}

.photoGrid img {
  width: 80px;
}

.photorefoutputfield {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
  grid-area: PmainArt;
  max-width: 100%;
  height: auto;
  display: -ms-grid;
  display: grid;
  -o-object-fit: contain;
     object-fit: contain;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-grid-column-align: center;
      justify-self: center;
  justify-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 10px;
}

.photorefoutputfield23 {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
  grid-area: PmainArt;
  max-width: 100%;
  height: auto;
  display: -ms-grid;
  display: grid;
  -o-object-fit: contain;
     object-fit: contain;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-grid-column-align: center;
      justify-self: center;
  justify-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 10px;
}

.form-container {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 300px;
}

.mallTitle {
  width: auto;
  height: 100%;
  margin: 0%;
  margin-bottom: 10.5%;
  position: relative;
}

.mallTitle h2 {
  z-index: 50;
  position: absolute;
  padding-left: 0%;
  padding-right: 0%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
  font-family: "Abril Fatface", serif;
  font-size: 2vw;
  letter-spacing: 5px;
  text-align: center;
}

@media (max-width: 61.9375em) {
  .mallTitle h2 {
    font-size: 2.5vw;
    -webkit-transform: translate(-50%, 0%);
            transform: translate(-50%, 0%);
  }
}

@media (max-width: 71.8125em) {
  .mallTitle h2 {
    font-size: 2.2vw;
    -webkit-transform: translate(-50%, 10%);
            transform: translate(-50%, 10%);
  }
}

.mallTitle img {
  position: absolute;
  left: 0%;
  top: 0%;
  width: 100%;
  z-index: 2;
}

.downloadphoto {
  max-width: 100%;
  padding-top: 15px;
  padding-bottom: 40px;
  text-align: center;
  font-family: "Merriweather Sans", sans-serif;
}

.downloadphoto23 {
  max-width: 100%;
  padding-top: 15px;
  padding-bottom: 40px;
  text-align: center;
  font-family: "Merriweather Sans", sans-serif;
}

.socialGrid {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  -ms-grid-column-align: center;
      justify-self: center;
  padding-top: 30px;
}

.socialGrid:not(:last-child) {
  margin-bottom: 25px;
}

.socialGrid23 {
  display: -ms-grid;
  display: grid;
  -ms-grid-row-align: center;
      align-self: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-grid-row: 3;
  -ms-grid-column: 2;
  grid-area: PsocialArt;
  -ms-grid-column-align: center;
      justify-self: center;
  padding-top: 30px;
}

.socialGrid23:not(:last-child) {
  margin-bottom: 25px;
  margin-right: 1%;
}

.downloadOriginal {
  -ms-grid-row: 4;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-area: dOriginal;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  text-align: center;
  font-size: 1.5vw;
  background-image: linear-gradient(125deg, #d0d9f7 0%, #fafafa 100%);
  padding: 1rem;
  border-radius: 30px;
}

.smallshop {
  grid-area: Ponline;
  margin-top: 3rem;
}

.booking {
  padding-top: 10px;
  padding-left: 10%;
  padding-right: 10%;
  padding-bottom: 15px;
  min-height: 450px;
  display: -ms-grid;
  display: grid;
  /**
    @include breakpoint-down(medium){
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        grid-template-areas: "nzimage" "mallNames"
                            "areaNames" "areaNames";
        padding: 0rem;

    }
*/
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  place-items: center;
  text-align: center;
}

.booking h3 {
  font-family: "Concert One", cursive;
  font-size: 3.5vw;
}

.booking img {
  border: none;
  width: 100%;
  grid-area: nzimage;
}

@media (max-width: 71.8125em) {
  .booking__location {
    padding: 0;
  }
  .booking__location p {
    font-size: 3.5vw;
  }
}

.booking__location a {
  display: inline-block;
  position: relative;
  font-size: 3rem;
  color: #5AA378;
  -webkit-transition: color 240ms ease-in-out;
  transition: color 240ms ease-in-out;
  font-family: "Concert One", cursive;
}

.booking__location a:not(:last-child) {
  margin-right: 50px;
  margin-bottom: 15px;
}

.booking__location a::before {
  content: "";
  display: inline-block;
  position: absolute;
  height: 5px;
  background-color: darkgreen;
  left: 0;
  right: 0;
  bottom: -10px;
  opacity: 0;
}

.booking__location a:hover::before {
  opacity: 1;
  -webkit-transition: opacity 300ms ease-in-out;
  transition: opacity 300ms ease-in-out;
}

.booking .arealocation {
  /*
        padding-left: 3rem;
        padding-top: 1rem;
        padding-bottom: 1rem;
        padding-right: 29%;

        margin-top: 30rem;
        margin-bottom: 28rem;
        */
}

@media (max-width: 71.8125em) {
  .booking .arealocation {
    margin-top: 1rem;
    margin-bottom: 2rem;
  }
}

.booking .mallBookingLocation {
  padding-left: 30px;
}

.booking .mallBookingLocation a {
  color: #58c4ac;
}

.shopName__centerLogo {
  padding-top: 1.4rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 15% 70% 15%;
      grid-template-columns: 15% 70% 15%;
  -ms-grid-rows: auto 7vh;
      grid-template-rows: auto 7vh;
      grid-template-areas: ". Sshoplogo ." ". TshopName .";
  z-index: 30;
}

@media (max-width: 61.9375em) {
  .shopName__centerLogo {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    -ms-grid-rows: auto;
        grid-template-rows: auto;
    padding: 2px;
    margin: 0;
  }
}

.shopName__centerLogo h5 {
  font-size: 3rem;
  -ms-grid-row: 2;
  -ms-grid-column: 2;
  grid-area: TshopName;
  margin-left: 50px;
  margin-right: 50px;
  font-family: "Roboto", sans-serif;
  text-align: center;
  -ms-grid-column-align: center;
      justify-self: center;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  padding: 15px;
}

.shopName__centerLogo img {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: Sshoplogo;
  max-width: 140%;
  -o-object-fit: contain;
     object-fit: contain;
  -ms-grid-column-align: center;
      justify-self: center;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.shopName__leftLogo {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 20% 60% 20%;
      grid-template-columns: 20% 60% 20%;
      grid-template-areas: "SleftName SshopName .";
}

.shopName__leftLogo img {
  padding: 10px;
  max-height: 170px;
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: SleftName;
  -ms-grid-column-align: end;
      justify-self: end;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  z-index: 100;
}

.shopName__leftLogo h4 {
  font-size: 3.5vw;
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: SshopName;
  margin-left: 50px;
  margin-right: 50px;
  font-family: "Roboto", sans-serif;
  text-align: center;
  -ms-grid-column-align: center;
      justify-self: center;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  background-color: white;
  padding: 20px;
}

.webBanners {
  z-index: -1;
  margin: 0%;
}

.webBanners img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  -ms-grid-column-align: center;
      justify-self: center;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  margin-bottom: -1%;
}

@media (max-width: 71.8125em) {
  .webBanners img {
    padding-top: 0rem;
    padding-left: 0%;
    max-width: 100%;
  }
}

.webBanners__bookings {
  background-image: url(/design/footer-blueballs.jpg) no-repeat;
  background-size: 100%;
}

.webBanners__fullWidth {
  background-image: url(/design/landing-banner.jpg) no-repeat;
  background-size: 100%;
  /*
        img{
            object-fit: cover;
            object-position: center;
            justify-self: center;
            align-self: center;
            margin-top: -1.1rem;
            padding-left: 0%;
            width: fit-content;
            //width: 100%;
            }
            */
}

.webBanners__withoutTitle img {
  margin-top: 0;
}

.webBanners__fullWidthBottomFix {
  background-size: 100%;
}

.stores h1 {
  color: #5AA378 !important;
}

#inputField p {
  font-size: small;
}

.myImageFound {
  border: 20px solid #51a7ee;
  border-radius: 25px;
  margin-left: 15px;
  text-align: center;
}

.myImageFound img {
  max-width: 100%;
}

@media (max-width: 71.8125em) {
  .myImageFound {
    margin-top: 1rem;
    padding-left: 0%;
    max-width: 100%;
  }
}

@media (min-width: 71.875em) {
  .myImageFound {
    max-width: 30%;
  }
  .myImageFound:not(:last-child) {
    margin-right: 15px;
  }
}

html {
  background-color: #ebebeb;
  font-size: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 0px;
  padding-right: 0px;
  line-height: 1.5;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

*, *::before, *::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0px;
  font-family: "Open Sans", sans-serif;
  line-height: 1.3;
  font-size: 19px;
}

body.noscroll {
  overflow: hidden;
}

h1 {
  text-align: center;
  font-family: "Kaushan Script", cursive;
  font-size: 1.5vw;
  color: #e0d100;
  background-image: linear-gradient(125deg, #d10000 0%, #12a31e 100%);
}

p {
  font-family: "Open Sans", sans-serif;
}

p1 {
  font-family: "Open Sans", sans-serif;
  color: #BC0032;
  background-color: black;
}

a, a:visited, a:hover {
  text-decoration: none;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-jc-c {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex-jc-sb {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flex-ai-c {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex-fc-b {
  -ms-flex-line-pack: end;
      align-content: flex-end;
}

@media (max-width: 61.9375em) {
  .hide-for-mobile {
    display: none;
  }
}

@media (min-width: null) {
  .hide-for-desktop {
    display: none;
  }
}

.container {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  padding-right: 20px;
  padding-left: 15px;
  padding-top: 0rem;
  padding-bottom: 3rem;
}

@media (min-width: 576px) {
  .container .container {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media (min-width: 768px) {
  .container .container {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media (min-width: 992px) {
  .container .container {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media (min-width: 1200px) {
  .container .container {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media (min-width: 576px) {
  .container .container {
    width: 540px;
    max-width: 100%;
  }
}

@media (min-width: 768px) {
  .container .container {
    width: 720px;
    max-width: 100%;
  }
}

@media (min-width: 992px) {
  .container .container {
    width: 920px;
    max-width: 100%;
  }
}

@media (min-width: 1200px) {
  .container .container {
    width: 1520px;
    max-width: 100%;
  }
}

/* SCSS Document */
.header {
  /* mobile menu toggle */
}

.header.open .header__toggle > span:first-child {
  -webkit-transform: rotate(29.5deg);
          transform: rotate(29.5deg);
}

.header.open .header__toggle > span:nth-child(2) {
  opacity: 0;
}

.header.open .header__toggle > span:last-child {
  -webkit-transform: rotate(-29.5deg);
          transform: rotate(-29.5deg);
}

.header.open .overlay {
  display: block;
  position: fixed;
  top: 9.1rem;
  right: 12.8%;
  left: 12.8%;
  bottom: 20rem;
  z-index: 80;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#CFDFD2), to(transparent));
  background-image: linear-gradient(#CFDFD2, transparent);
}

.header nav {
  padding-left: 20px;
  padding-right: 30px;
  padding-top: 20px;
}

@media (max-width: 61.9375em) {
  .header nav {
    padding: 13px;
  }
}

.header__logo {
  color: white;
}

.header__logo a {
  color: white;
  font-family: "Concert One", cursive;
  font-size: 4rem;
}

.header__logo img {
  max-width: 45% !important;
}

.header__toggle > span {
  display: block;
  width: 86px;
  height: 10px;
  background-color: #e2e2e2;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  -webkit-transform-origin: 1px 1px;
          transform-origin: 1px 1px;
}

@media (max-width: 61.9375em) {
  .header__toggle > span {
    width: 75px;
    height: 10px;
  }
}

.header__toggle > span:not(:last-child) {
  margin-bottom: 10px;
}

.header__menu {
  background: white;
  padding: 1.625rem;
  position: absolute;
  width: calc(100%-3rem);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-radius: 10px;
  z-index: 100;
  text-align: center;
}

.header__menu a {
  display: block;
  color: #CFDFD2;
  padding: 0.625rem;
  font-size: 3rem;
  font-family: "Concert One", cursive;
  text-align: center;
  -webkit-transition: color 240ms ease-in-out;
  transition: color 240ms ease-in-out;
}

@media (max-width: 61.9375em) {
  .header__menu a {
    font-size: 1.5vw;
  }
}

.header__menu a span {
  display: block;
  width: 26px;
  margin: 2px;
  color: #e0d100;
}

.header__menu a:not(:last-child) {
  margin-bottom: 3rem;
}

.header__menu a::before {
  content: "";
  display: inline-block;
  position: absolute;
  height: 5px;
  background-color: darkgreen;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
}

.header__menu a:hover {
  color: darkblue;
}

.header__menu a:hover::before {
  opacity: 1;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.header__links a {
  display: unset;
  display: inline-block;
  position: relative;
  font-size: 1.5vw;
  color: #5AA378;
  -webkit-transition: color 240ms ease-in-out;
  transition: color 240ms ease-in-out;
  font-family: "Concert One", cursive;
}

.header__links a:not(:last-child) {
  margin-right: 45px;
}

.header__links a::before {
  content: "";
  display: inline-block;
  position: absolute;
  height: 5px;
  background-color: darkgreen;
  left: 0;
  right: 0;
  bottom: -10px;
  opacity: 0;
}

.header__links a:hover {
  color: darkblue;
}

.header__links a:hover::before {
  opacity: 1;
  -webkit-transition: opacity 300ms ease-in-out;
  transition: opacity 300ms ease-in-out;
}

.header__cta a {
  font-size: 3.5vw;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  font-family: "Roboto", sans-serif;
}

.header__cta a::before {
  opacity: 1;
  background-color: whitesmoke;
  color: green;
}

.header__cta a:hover {
  opacity: 0.5;
  color: darkblue;
}

.header__cta a:hover::before {
  opacity: 1;
}

.feature {
  margin-left: 15%;
  margin-right: 15%;
  margin-top: 1%;
  margin-bottom: 10%;
  text-align: center;
  z-index: 50;
}

@media (max-width: 71.8125em) {
  .feature {
    margin-left: 10%;
    margin-right: 10%;
  }
}

@media (min-width: 71.875em) {
  .feature__grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.feature__video {
  margin-top: 15px;
  margin-bottom: 15px;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  border-radius: 10px;
  border-style: double;
  border-width: 0px;
  border: 1px solid #888888;
  background-image: linear-gradient(125deg, rgba(255, 255, 255, 0.541) 0%, rgba(214, 164, 248, 0.705) 100%);
  opacity: 0.7;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}

.feature__video:hover {
  opacity: 1;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
  border: 1px solid #d9ff00;
}

@media (min-width: 87.5em) {
  .feature__video {
    display: flex 1;
  }
}

@media (min-width: 71.875em) {
  .feature__video {
    display: flex 0 0 50%;
  }
  .feature__video:not(:last-child) {
    margin-right: 15px;
  }
}

.feature__video iframe {
  width: 100%;
  height: auto;
}

.feature__item {
  margin-top: 15px;
  margin-bottom: 15px;
  padding-bottom: 10px;
  opacity: 0.7;
  border-radius: 20px;
  border-style: double;
  border-width: 0px;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
  border: 1px solid #888888;
  background-image: linear-gradient(125deg, rgba(81, 255, 131, 0.541) 0%, rgba(255, 121, 121, 0.705) 100%);
}

.feature__item:hover {
  opacity: 1;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
  border: 1px solid #d9ff00;
}

.feature__item:hover h2 {
  color: #d9ff00;
}

@media (min-width: 71.875em) {
  .feature__item {
    display: flex 0 0 50%;
    width: 30%;
  }
  .feature__item:not(:last-child) {
    margin-right: 15px;
  }
}

.feature__icon {
  padding-top: 1em;
  /**
        @include breakpoint-up(large){
            img{
                //padding: 0;
                max-width: 60%;
                height: auto;
                border-radius: 20px;
            }
        
        }
        */
}

@media (max-width: 71.8125em) {
  .feature__icon img {
    max-width: 80%;
    height: auto;
    border-radius: 20px;
  }
}

@media (min-width: 71.875em) {
  .feature__icon img {
    max-width: 90%;
    height: auto;
    border-radius: 20px;
  }
}

.feature__title {
  padding: 15px;
}

.feature__title h2 {
  color: #74faff;
  font-size: 1.675rem;
}

.feature__description {
  color: #f7f7f7;
  padding: 15px;
}

.feature__comButtons {
  display: none;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
      grid-template-areas: "leftButt rightButt";
  padding-left: 1%;
  padding-right: 1%;
  /*
            &:not(:last-child){
                margin-right: 1px;
            
            }
            */
}

button, .YESbutt {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: rightButt;
  font-size: 1.5rem;
  border-color: #25dc14 !important;
  background-image: linear-gradient(125deg, #7bff5e 0%, #8eecff 100%);
  /*
        border: solid 50px rgb(116, 250, 255) !important;
                &:hover{
                    opacity: 1;
                    transition: 0.3s linear;
                    border: solid 50px rgb(0, 17, 255);
                    
                }
                transition: 0.1s linear;
        */
  text-align: center;
}

button a, .YESbutt a {
  text-align: center;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

button, .NObutt {
  border-color: crimson !important;
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: leftButt;
  background-image: linear-gradient(125deg, #ff6c5e 0%, #f68eff 100%);
  -webkit-transition: 0.1s linear;
  transition: 0.1s linear;
  text-align: center;
  font-size: 1.5rem !important;
}

button a, .NObutt a {
  text-align: center;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.smfooter {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  position: relative;
  bottom: 0;
}

.smfooter a {
  margin-right: 32px;
}

.smfooter__logo img {
  width: 250px;
  height: auto;
  padding-right: 100px;
}

.smfooter__grid {
  padding-left: 20px;
  margin-bottom: -4rem;
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
}

@media (min-width: 71.875em) {
  .smfooter__grid {
    -ms-grid-columns: (30%)[3];
        grid-template-columns: repeat(3, 30%);
  }
}

@media (min-width: 64em) {
  .smfooter__grid {
    -ms-grid-columns: (30%)[3];
        grid-template-columns: repeat(3, 30%);
  }
}

.has-fade {
  visibility: hidden;
}

@-webkit-keyframes fade-in {
  from {
    visibility: hidden;
    opacity: 0;
  }
  1% {
    visibility: visible;
    opacity: 0;
  }
  to {
    visibility: visible;
    opacity: 1;
  }
}

@keyframes fade-in {
  from {
    visibility: hidden;
    opacity: 0;
  }
  1% {
    visibility: visible;
    opacity: 0;
  }
  to {
    visibility: visible;
    opacity: 1;
  }
}

.fade-in {
  -webkit-animation: fade-in 400ms ease-in-out forwards;
          animation: fade-in 400ms ease-in-out forwards;
  display: inherit;
}

@-webkit-keyframes fade-out {
  from {
    visibility: visible;
    opacity: 1;
  }
  99% {
    visibility: visible;
    opacity: 0;
  }
  to {
    visibility: hidden;
    opacity: 0;
  }
}

@keyframes fade-out {
  from {
    visibility: visible;
    opacity: 1;
  }
  99% {
    visibility: visible;
    opacity: 0;
  }
  to {
    visibility: hidden;
    opacity: 0;
  }
}

.fade-out {
  -webkit-animation: fade-out 400ms ease-in-out forwards;
          animation: fade-out 400ms ease-in-out forwards;
  display: inherit;
}

.article {
  display: -ms-grid;
  display: grid;
  overflow: hidden;
  margin-left: 10%;
  margin-right: 10%;
  margin-top: 1%;
  padding-left: 2%;
  padding-right: 2%;
  padding-bottom: 2%;
  padding-top: 2%;
  justify-items: center;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-grid-row-align: center;
      align-self: center;
  z-index: 50;
  border-radius: 10px;
  background-color: white;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
}

@media (min-width: null) {
  .article {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 61.9375em) {
  .article {
    padding: 4%;
    display: unset;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .article p {
    padding-right: 25%;
  }
}

.article__text {
  max-width: 600px;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.article__text h2 {
  font-size: 3.5vw;
}

.article__text a {
  font-size: 1.5vw;
}

@media (max-width: 61.9375em) {
  .article__text {
    padding: 5%;
  }
  .article__text h2 {
    font-size: 4rem;
  }
  .article__text a {
    font-size: 1.5vw;
  }
}

.article__image {
  padding: 5px;
}

@media (max-width: 61.9375em) {
  .article__image {
    padding: 2%;
  }
}

.article__image img {
  width: 15rem;
  height: auto;
  border-radius: 300px;
}

.article__cta {
  padding: 10px;
  background-position-x: 20%;
  width: 230px;
  font-family: "Merriweather Sans", sans-serif;
  text-align: center;
}

@media (max-width: 61.9375em) {
  .article__cta {
    padding: 2%;
    font-size: 3.5vw;
  }
}

.artBookings {
  background-image: url(/design/banner-bookings.jpg);
  background-position: center;
  /* Center the image */
  background-repeat: no-repeat;
  /* Do not repeat the image */
  background-size: cover;
  color: white;
  border-radius: 10px;
  /*
    opacity: 0.6;
    &:hover{
        opacity: 1;
        transition: 0.6s linear;
    }
    transition: 0.6s linear;
    */
}

.artBookings a {
  color: #d6d6d6;
}

.TikTok {
  background-image: url(/design/tiktok.jpg);
  background-position: center;
  /* Center the image */
  background-repeat: no-repeat;
  /* Do not repeat the image */
  background-size: cover;
  color: white;
  /*
    opacity: 0.55;
    &:hover{
        opacity: 1;
        transition: 0.6s linear;
    }
    transition: 0.6s linear;
    */
}

@media (min-width: null) {
  .TikTok {
    padding: 6%;
    -ms-grid-columns: (1fr)[4];
        grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 61.9375em) {
  .TikTok {
    padding: 4%;
    display: unset;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .TikTok p {
    padding-right: 25%;
  }
}

.TikTok__text {
  background-color: rgba(75, 75, 75, 0.909);
  border-radius: 10px;
  padding: 4%;
}

.TikTok__text h2 {
  color: #FF004F;
}

.TikTok img {
  max-width: 80%;
}

.TikTok a {
  color: #ffffff;
}

.artPet {
  background-image: url(/design/banner-pet.jpg);
  background-position: center;
  /* Center the image */
  background-repeat: no-repeat;
  /* Do not repeat the image */
  background-size: cover;
  color: #ffffff;
  border-radius: 10px;
  padding-right: 20%;
  /*
    opacity: 0.6;
    &:hover{
        opacity: 1;
        transition: 0.6s linear;
    }
    transition: 0.6s linear;
    */
}

.artPet a {
  color: #ffffff;
  margin-left: 10%;
  font-size: 0.875rem;
}

.artPet__twoways {
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  background-image: url(/design/banner-pet.jpg);
  background-position: center;
  /* Center the image */
  background-repeat: no-repeat;
  /* Do not repeat the image */
  background-size: cover;
}

.artNo1 {
  background-image: url(/design/banner-blue.jpg);
  opacity: 0.4;
  background-position: center;
  /* Center the image */
  background-repeat: no-repeat;
  /* Do not repeat the image */
  background-size: cover;
  color: #70ff81;
  border-radius: 10px;
  padding: 10px;
  /*
    opacity: 0.6;
    &:hover{
        opacity: 1;
        transition: 0.6s linear;
    }
    transition: 0.6s linear;
    */
}

.artNo1 a {
  color: #000000;
  padding: 10px;
}

.artNo2 {
  background-image: url(/design/banner-download.jpg);
  background-position: center;
  /* Center the image */
  background-repeat: no-repeat;
  /* Do not repeat the image */
  background-size: cover;
  color: white;
  border-radius: 10px;
  /*
    opacity: 0.55;
    &:hover{
        opacity: 1;
        transition: 0.6s linear;
    }
    transition: 0.6s linear;
    */
}

.artNo2 img {
  max-width: 80%;
}

.artNo2 a {
  color: #ffffff;
}

.artFreePrint {
  background-image: url(/design/banner-blue-pink.jpg);
  background-position: center;
  /* Center the image */
  background-repeat: no-repeat;
  /* Do not repeat the image */
  background-size: cover;
  color: white;
  border-radius: 10px;
  /*
    opacity: 0.55;
    &:hover{
        opacity: 1;
        transition: 0.6s linear;
    }
    transition: 0.6s linear;
    */
}

.artFreePrint img {
  max-width: 80%;
}

.artFreePrint a {
  color: #ffffff;
}

.artNewproduct {
  background-color: #f8f4b4;
  opacity: 70%;
  background-image: url(/design/banner-newproduct.jpg);
  background-position: center;
  /* Center the image */
  background-repeat: no-repeat;
  /* Do not repeat the image */
  background-size: cover;
  /*
    &:hover{
        
        background-color: rgb(248, 180, 180);
        transition: background-color 0.6s linear;
    }
    transition: background-color 0.6s linear;
    */
  border-radius: 10px;
}

.artNewproduct h2 {
  opacity: 100%;
}

.artNewproduct a {
  opacity: 100%;
}

.artNo4 {
  background-image: linear-gradient(125deg, white 0%, #d6a4f8 100%);
  border-radius: 10px;
}

.artTimer {
  padding-left: 30%;
  padding-right: 20%;
  padding-top: 23%;
  padding-bottom: 15%;
  border-radius: 10px;
  /* 
    opacity: 0.55;
    
    &:hover{
        opacity: 1;
        transition: 0.6s linear;
        p{
            color: rgb(43, 61, 165);
        }
    }
    transition: 0.6s linear;
    */
  background-image: url(/design/countdown-banner.jpg);
  background-position: center;
  /* Center the image */
  background-repeat: no-repeat;
  /* Do not repeat the image */
  background-size: cover;
}

.artTimer img {
  max-width: 35%;
  grid-area: Gleft;
  opacity: 0.25;
  z-index: 2;
  -ms-grid-column-align: start !important;
      justify-self: start !important;
}

@media (max-width: 61.9375em) {
  .artTimer img {
    max-width: 75%;
  }
}

.artTimer p {
  z-index: 3;
  grid-area: Gleft;
  padding-left: 5%;
  font-family: "Open Sans", sans-serif;
  font-size: 3rem;
  color: #1a8d46;
}

@media (max-width: 71.8125em) {
  .artTimer p {
    padding-top: 25%;
    padding-right: 15%;
    font-size: 1.5vw;
  }
}

@media (max-width: 61.9375em) {
  .artTimer p {
    padding-top: 30%;
    padding-right: 15%;
    font-size: 1.675rem;
  }
}

.artNo6 {
  background-image: url(/design/white-yellow-box.jpg);
  background-position: center;
  /* Center the image */
  background-repeat: no-repeat;
  /* Do not repeat the image */
  background-size: cover;
  color: black;
  /*
    opacity: 0.55;
    &:hover{
        opacity: 1;
        
        transition: 0.6s linear;
    }
    transition: 0.6s linear;
    */
}

.artNo6 img {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
}

.artNo6 a {
  color: black;
}

.artNo7 {
  background-image: url(/design/kiwi-banner-blue.png);
  background-position: center;
  /* Center the image */
  background-repeat: no-repeat;
  /* Do not repeat the image */
  background-size: cover;
  color: black;
  /*
    opacity: 0.55;
    &:hover{
        opacity: 1;
        
        transition: 0.6s linear;
    }
    transition: 0.6s linear;
    */
}

.artNo7 img {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
}

.artNo7 a {
  color: black;
}

.artNo8 {
  background-image: url(/design/black-and-white-banner-notext.png);
  background-position: center;
  /* Center the image */
  background-repeat: no-repeat;
  /* Do not repeat the image */
  background-size: cover;
  color: white;
  /*
    opacity: 0.55;
    
    &:hover{
        opacity: 1;
        
        transition: 0.6s linear;
    }
    transition: 0.6s linear;
    */
}

.artNo8 img {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
}

.artNo8 a {
  color: white;
}

.artNo9 {
  background-image: url(/design/banner-pink.png);
  background-position: center;
  /* Center the image */
  background-repeat: no-repeat;
  /* Do not repeat the image */
  background-size: cover;
  color: black;
  /*
    opacity: 0.55;
    &:hover{
        opacity: 1;
        
        transition: 0.6s linear;
    }
    transition: 0.6s linear;
    */
}

.artNo9 img {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
}

.artNo9 a {
  color: black;
}

.artNo10 {
  background-image: url(/design/banner-green-no-text.png);
  background-position: center;
  /* Center the image */
  background-repeat: no-repeat;
  /* Do not repeat the image */
  background-size: cover;
  color: white;
  /*
    opacity: 0.55;
    &:hover{
        opacity: 1;
        
        transition: 0.6s linear;
    }
    transition: 0.6s linear;
    */
}

.artNo10 img {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
}

.artNo10 a {
  color: white;
}

.article__textOnly {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  overflow: hidden;
  justify-items: center;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-grid-row-align: center;
      align-self: center;
}

.article__textOnly h3 {
  margin-left: 10%;
  margin-right: 10%;
  margin-top: 1%;
  margin-bottom: 1%;
  padding-left: 2%;
  padding-right: 2%;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 3.5vw;
  background-color: #ffffff;
}

.article__textOnly label {
  padding-right: 10px;
  font-size: 1.5vw;
  font-family: "Roboto", sans-serif;
}

.openingHours {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 20% 60% 20%;
      grid-template-columns: 20% 60% 20%;
  -ms-grid-rows: auto;
      grid-template-rows: auto;
      grid-template-areas: ". novisit ." "graphic santaHours .";
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.openingHours p2 {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: novisit;
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-size: 1.5vw;
  padding: 6px;
  line-height: 3.2rem;
  margin-bottom: 40px;
  background-image: linear-gradient(125deg, #fafafa 0%, #d0f7d4 100%);
}

.openingHours table, .openingHours th, .openingHours td {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
  grid-area: santaHours;
  font-size: 1.5vw;
  font-family: "Roboto", sans-serif;
}

.openingHours tr:nth-child(even) {
  color: #424242;
  background-image: linear-gradient(125deg, #d1d1d1 0%, #fafafa 100%);
}

.openingHours caption {
  font-size: 3.5vw;
  font-family: "Roboto", sans-serif;
  background-color: white;
  margin-top: 15px;
  color: #07b410;
}

.openingHours img {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  grid-area: graphic;
  width: 800px;
  opacity: 20%;
}

.fb-share-button {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.hunters-article {
  padding: 0%;
  margin: 0%;
  border-radius: 0px;
  background-color: #68b1a8;
  -ms-grid-columns: (1fr)[1];
      grid-template-columns: repeat(1, 1fr);
}

.hunters-article h2 {
  font-family: "Berkshire Swash", cursive;
}

.hunters-article a {
  font-family: "Montserrat", sans-serif;
}

.hunters-article-2section {
  padding: 0%;
  margin: 0%;
  border-radius: 0px;
  background-color: #68b1a8;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  text-align: left !important;
}

.hunters-article-2section h2 {
  font-family: "Berkshire Swash", cursive;
}

.hunters-article-2section a {
  font-family: "Montserrat", sans-serif;
}

.hunters-article-5 {
  padding: 0%;
  margin: 0%;
  border-radius: 0px;
  display: none;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: none;
      grid-template-columns: none;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  text-align: left !important;
  background-image: url(/design/Hunters-Plaza-Web.png);
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
  background-position: bottom;
}

.hunters-article-5 h2 {
  font-family: "Berkshire Swash", cursive;
}

.hunters-article-5 a {
  font-family: "Montserrat", sans-serif;
}

.hunters-article-55 {
  -ms-grid-columns: (1fr)[2] !important;
      grid-template-columns: repeat(2, 1fr) !important;
  text-align: left !important;
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 0%;
  margin: 0%;
  border-radius: 0px;
}

.hunters-article-55 h2 {
  font-family: "Berkshire Swash", cursive;
}

.hunters-article-55 a {
  font-family: "Montserrat", sans-serif;
}

button, .hunters-button {
  padding: 2rem;
  text-align: center;
  background-color: #ead49a;
  border: solid 10px #2a3d78;
  border-radius: 50px;
  font-size: 2.2rem;
  font-family: "Berkshire Swash", cursive !important;
  cursor: pointer;
  color: #b03235 !important;
  opacity: 0.88;
  -webkit-transition: 0.6s linear;
  transition: 0.6s linear;
}

button a, .hunters-button a {
  text-align: center;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

button:hover, .hunters-button:hover {
  color: black !important;
  border-color: #f6ff76;
  opacity: 1;
  -webkit-transition: 0.6s linear;
  transition: 0.6s linear;
}

@media (max-width: 61.9375em) {
  button, .hunters-button {
    padding: 0rem;
    font-size: 1.5vw;
    margin: 0;
  }
  button a, .hunters-button a {
    font-size: 1.5vw;
  }
}

.covid-title {
  background-image: url(/design/covid19background.png);
  display: block;
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: headerArt;
  border-radius: 100px;
}

.covid-button1 {
  background-image: url(/design/artible-button-blue.png);
  border-radius: 100px;
  display: block;
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: headerArt;
  background-position: center;
  /* Center the image */
  background-repeat: no-repeat;
  /* Do not repeat the image */
  background-size: cover;
  opacity: 0.55;
  -webkit-transition: 0.6s linear;
  transition: 0.6s linear;
}

.covid-button1:hover {
  opacity: 1;
  -webkit-transition: 0.6s linear;
  transition: 0.6s linear;
}

.covid-button1 a {
  color: #11c900;
}

.covid-button2 {
  background-image: url(/design/article-button-black.jpg);
  border-radius: 100px;
  display: block;
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: headerArt;
  background-position: center;
  /* Center the image */
  background-repeat: no-repeat;
  /* Do not repeat the image */
  background-size: cover;
  opacity: 0.55;
  -webkit-transition: 0.6s linear;
  transition: 0.6s linear;
}

.covid-button2:hover {
  opacity: 1;
  -webkit-transition: 0.6s linear;
  transition: 0.6s linear;
}

.covid-button2 a {
  color: #ffb700;
}

.covid-button3 {
  background-image: url(/design/article-button-red.jpg);
  border-radius: 100px;
  display: block;
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: headerArt;
  background-position: center;
  /* Center the image */
  background-repeat: no-repeat;
  /* Do not repeat the image */
  background-size: cover;
  opacity: 0.55;
  -webkit-transition: 0.6s linear;
  transition: 0.6s linear;
}

.covid-button3:hover {
  opacity: 1;
  -webkit-transition: 0.6s linear;
  transition: 0.6s linear;
}

.covid-button3 a {
  color: #c70000;
}

.covid-article {
  z-index: 30;
  background-color: #ffcede;
  padding: unset;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 20% 60% 20%;
      grid-template-columns: 20% 60% 20%;
  -ms-grid-rows: ()[2] 1fr;
      grid-template-rows: repeat(2) 1fr;
      grid-template-areas: "nameleft headerArt nameright" "nameleft mainArt nameright";
}

.covid-article li {
  font-family: "Merriweather Sans", sans-serif;
}

.covid-article img {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 1;
  grid-area: nameleft;
  -ms-grid-column-align: center;
      justify-self: center;
}

.covid-article .checklist {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
  grid-area: mainArt;
  text-align: start;
  padding-left: 20%;
  z-index: 35;
  font-family: "Roboto", sans-serif;
}

.covid-article h3 {
  background-color: #ffcede;
}

.covid-article p {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 3;
  grid-area: nameright;
  padding: 5%;
  font-size: 1.5vw;
  z-index: 31;
}

.tnc {
  display: -ms-grid;
  display: grid;
  overflow: hidden;
  margin-left: 10%;
  margin-right: 10%;
  margin-top: 2rem;
  padding-left: 2%;
  padding-right: 2%;
  padding-bottom: 20px;
  justify-items: center;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-grid-row-align: center;
      align-self: center;
}

.tnc h5 {
  font-size: 1.5vw;
  background-color: #e01515;
  color: white;
  padding: 1rem;
}

.tnc p {
  line-height: 2.2rem;
  font-size: 1.675rem;
}

.smarticle {
  display: -ms-grid;
  display: grid;
  justify-items: center;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-grid-row-align: center;
      align-self: center;
  z-index: 2;
}

.smarticle__text {
  max-width: 600px;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.smarticle__text h2 {
  font-size: 3.5vw;
}

@media (max-width: 61.9375em) {
  .smarticle__text h2 {
    font-size: 19.9vw;
  }
}

.smarticle__text a {
  font-size: 1.5vw;
}

@media (max-width: 61.9375em) {
  .smarticle__text a {
    font-size: 9.9vw;
  }
}

@media (max-width: 61.9375em) {
  .smarticle__text {
    padding: 5%;
  }
}

.smarticle__image {
  padding: 5px;
}

@media (max-width: 61.9375em) {
  .smarticle__image {
    padding: 2%;
  }
}

.smarticle__image img {
  width: 15rem;
  height: auto;
}

.smarticle__cta {
  padding: 10px;
  background-position-x: 20%;
  width: 230px;
  font-family: "Merriweather Sans", sans-serif;
  text-align: center;
}

@media (max-width: 61.9375em) {
  .smarticle__cta {
    padding: 2%;
    font-size: 3.5vw;
  }
}

.SMoneCol {
  -ms-grid-columns: (1fr)[1];
      grid-template-columns: repeat(1, 1fr);
}

@media (min-width: null) {
  .SMoneCol {
    -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 61.9375em) {
  .SMoneCol {
    display: unset;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .SMoneCol p {
    padding-right: 25%;
  }
}

.SMtwoCol {
  margin: 0%;
  margin-left: 0%;
  margin-right: 0%;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
}

@media (min-width: null) {
  .SMtwoCol {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 61.9375em) {
  .SMtwoCol {
    display: unset;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.SMthreeCol {
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
}

@media (min-width: null) {
  .SMthreeCol {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 61.9375em) {
  .SMthreeCol {
    display: unset;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .SMthreeCol p {
    padding-right: 15%;
  }
}

.artWelcome {
  background-image: url(/design/banner-blue-pink.jpg);
  background-position: center;
  /* Center the image */
  background-repeat: no-repeat;
  /* Do not repeat the image */
  background-size: cover;
  margin: 0%;
  padding-bottom: 3%;
  color: white;
  /*
    opacity: 0.55;
    &:hover{
        opacity: 1;
        transition: 0.6s linear;
    }
    transition: 0.6s linear;
    */
}

.artWelcome img {
  max-width: 80%;
}

.artWelcome a {
  color: #ffffff;
}

.smdownloadPhoto {
  width: 100%;
  height: 100%;
  background-color: #C00033;
  padding-top: 5%;
  color: #ffffff !important;
  text-align: center;
  padding-bottom: 5%;
}

.smdownloadPhoto p {
  font-size: 3vw;
}

.smdownloadPhoto img {
  max-width: 45%;
  max-height: auto;
  border-radius: 14px;
}

.smMap {
  width: 100%;
  height: 100%;
  padding: 2%;
  margin: 0%;
  background-color: #CFDFD2;
  color: #5AA378 !important;
  position: relative;
  padding-bottom: 5%;
}

.smMap h2 {
  font-family: "Abril Fatface", serif;
  text-align: center;
  font-size: 1.5vw;
  position: absolute;
  left: 10%;
  top: 3%;
}

.smMap p {
  font-size: 1.5vw;
  text-align: center;
  position: absolute;
  bottom: -1%;
  left: 20%;
}

.smMap .bann {
  position: absolute;
  max-width: 60%;
  max-height: auto;
  left: 22%;
  top: -10%;
}

.smMap img {
  padding-top: 15%;
  max-width: 70%;
  max-height: auto;
  z-index: 98;
}

.smMap .auckland {
  position: absolute;
  top: 12%;
  right: 31%;
  max-width: 12%;
}

.smMap .hamilton {
  position: absolute;
  top: 17%;
  left: 42%;
  max-width: 12%;
}

.smMap .tauranga {
  position: absolute;
  top: 20%;
  right: 26%;
  max-width: 12%;
}

.smMap .kapiti {
  position: absolute;
  top: 32%;
  left: 40%;
  max-width: 12%;
}

.smMap .wellington {
  position: absolute;
  top: 44%;
  right: 26%;
  max-width: 12%;
}

.smMap .nelson {
  position: absolute;
  bottom: 42%;
  left: 36%;
  max-width: 10% !important;
}

.smMap .christchurch {
  position: absolute;
  bottom: 30%;
  right: 36%;
  max-width: 12%;
}

.welcomeInfo-lGreen {
  width: 100%;
  height: 100%;
  background-color: #CFDFD2 !important;
  color: #5AA378 !important;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  padding-left: 4%;
  padding-right: 4%;
  padding-bottom: 5%;
  padding-top: 5%;
}

.welcomeInfo-lGreen img {
  padding-top: 5%;
  max-width: 30%;
}

.welcomeInfo-lGreen h2 {
  font-size: 3.5vw;
  color: #5AA378 !important;
}

.welcomeInfo-lGreen a {
  font-size: 1.5vw;
  color: #5AA378 !important;
}

@media (max-width: 61.9375em) {
  .welcomeInfo-lGreen a {
    font-size: 2.5vw;
  }
}

.welcomeInfo-dGreen {
  width: 100%;
  height: 100%;
  background-color: #5AA378 !important;
  color: #CFDFD2 !important;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  padding-left: 4%;
  padding-right: 4%;
  padding-bottom: 5%;
  padding-top: 5%;
}

.welcomeInfo-dGreen img {
  padding-top: 5%;
  max-width: 30%;
}

.welcomeInfo-dGreen h2 {
  font-size: 3.5vw;
  color: #CFDFD2 !important;
}

.welcomeInfo-dGreen a {
  font-size: 1.5vw;
  color: #CFDFD2 !important;
}

@media (max-width: 61.9375em) {
  .welcomeInfo-dGreen a {
    font-size: 2.5vw;
  }
}

button, .sm23-button-red {
  text-align: center;
  background-color: #ffffff;
  padding-left: 10%;
  padding-right: 10%;
  border-radius: 10px;
  cursor: pointer;
  color: #C00033 !important;
  text-decoration: underline;
  font-family: "Lora", serif;
  font-size: 1.5vw;
}

button a, .sm23-button-red a {
  text-align: center;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

@media (max-width: 61.9375em) {
  button, .sm23-button-red {
    font-size: 3vw;
    margin: 1%;
  }
}

button, .sm23-button-green {
  text-align: center;
  background-color: #ffffff;
  padding-left: 10%;
  padding-right: 10%;
  padding-top: 2%;
  padding-bottom: 2%;
  margin-top: 15%;
  margin-bottom: 15%;
  border-radius: 10px;
  cursor: pointer;
  color: #5AA378 !important;
  text-decoration: underline;
  font-family: "Lora", serif;
  font-size: 1.5vw;
}

button a, .sm23-button-green a {
  text-align: center;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

@media (max-width: 61.9375em) {
  button, .sm23-button-green {
    margin: 1%;
    font-size: 3vw;
  }
}

.sm23Timer {
  position: relative;
}

.sm23Timer .bannerCounter {
  max-width: 100%;
  height: auto;
  z-index: 3;
}

.sm23Timer .sdays {
  font-family: "Monofett", monospace;
  font-size: 7.5vw;
  color: #BC0032;
  background-size: contain;
  position: absolute;
  letter-spacing: 8px;
  left: 24%;
  top: 10%;
  z-index: 5;
}

@media (max-width: 61.9375em) {
  .sm23Timer .sdays {
    left: 23%;
    top: 10%;
  }
}

.sm23Timer .hours {
  font-family: "Monofett", monospace;
  font-size: 7.5vw;
  color: #BC0032;
  letter-spacing: 8px;
  position: absolute;
  left: 38%;
  top: 10%;
  z-index: 5;
}

.sm23Timer .minutes {
  font-family: "Monofett", monospace;
  font-size: 7.5vw;
  color: #BC0032;
  letter-spacing: 8px;
  position: absolute;
  right: 38%;
  top: 10%;
  z-index: 5;
}

@media (max-width: 61.9375em) {
  .sm23Timer .minutes {
    right: 12%;
    top: 10%;
  }
}

.sm23Timer .seconds {
  font-family: "Monofett", monospace;
  font-size: 7.5vw;
  color: #BC0032;
  letter-spacing: 8px;
  position: absolute;
  right: 24%;
  top: 10%;
  z-index: 5;
}

@media (max-width: 61.9375em) {
  .sm23Timer .seconds {
    right: -1%;
    top: 10%;
  }
}

.sm23pet {
  padding: 3%;
  background-color: #BC0032;
}

.sm23pet h2 {
  color: white;
  font-family: "Abril Fatface", serif;
  font-size: 3.5vw;
  letter-spacing: 1px;
}

.sm23pet a {
  color: white;
}

.sm23pet img {
  max-width: 65%;
  border-radius: 15px;
}

.sm23Bookings-dGreen {
  background-color: #5AA378;
  padding-left: 5%;
  padding-right: 5%;
  padding-top: 5%;
  padding-bottom: 5%;
}

.sm23Bookings-dGreen h2 {
  color: #CFDFD2;
  font-family: "Abril Fatface", serif;
  letter-spacing: 1px;
}

.sm23Bookings-dGreen a {
  color: #CFDFD2;
}

@media (max-width: 61.9375em) {
  .sm23Bookings-dGreen a {
    font-size: 3vw;
  }
}

.sm23Bookings-lGreen {
  background-color: #CFDFD2;
  padding-left: 5%;
  padding-right: 5%;
  padding-top: 5%;
  padding-bottom: 5%;
}

.sm23Bookings-lGreen h2 {
  color: #5AA378;
  font-family: "Abril Fatface", serif;
  letter-spacing: 1px;
}

.sm23Bookings-lGreen a {
  color: #5AA378;
}

@media (max-width: 61.9375em) {
  .sm23Bookings-lGreen a {
    font-size: 3vw;
  }
}

.smartPet {
  background-image: url(/design/dogGlass23.jpg);
  background-position: center;
  /* Center the image */
  background-repeat: no-repeat;
  /* Do not repeat the image */
  background-size: cover;
  color: #ffffff;
  height: 100%;
  width: 100%;
  /*
    opacity: 0.6;
    &:hover{
        opacity: 1;
        transition: 0.6s linear;
    }
    transition: 0.6s linear;
    */
}

.smartPet a {
  color: #ffffff;
  padding-left: 1%;
  padding-right: 1%;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}

.smartPet a:hover {
  color: black !important;
  background-color: #ffffff !important;
  opacity: 1;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}

@media (max-width: 61.9375em) {
  .smartPet a {
    font-size: 3.2vw;
  }
}
/*# sourceMappingURL=style.css.map */