/*---------------------------------------------------
LESS Elements 0.9
---------------------------------------------------
A set of useful LESS mixins
More info at: http://lesselements.com
---------------------------------------------------*/
@font-face {
  font-family: 'Sinibold';
  src: url('../fonts/sini/sini-bold-webfont-webfont.woff2') format('woff2'), url('../fonts/sini/sini-bold-webfont-webfont.woff') format('woff'), url('../fonts/sini/sini-bolditalic-webfont.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Sinibold';
  src: url('../fonts/sini/sini-bolditalic-webfont.woff2') format('woff2'), url('../fonts/sini/sini-bolditalic-webfont.woff') format('woff');
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: 'Guzman';
  src: url('../fonts/gyg/guzman_bold_caps-webfont.woff2') format('woff2'), url('../fonts/gyg/guzman_bold_caps-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
/* COLOURS */
/* FONTS STACKS */
/** Base Global Elements **/
html {
  touch-action: manipulation;
}
html,
body {
  -webkit-font-smoothing: antialiased;
}
html.noScroll,
body.noScroll {
  overflow: hidden !important;
  height: 100% !important;
}
hr {
  margin: 0;
  border: none;
  border-bottom: solid 1px #e0e0e0;
}
iframe {
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
}
/** Links **/
a {
  text-decoration: underline;
  outline: none;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.content a:not(.btn) {
  color: #171717;
  font-weight: 600;
  position: relative;
  z-index: 1;
  outline: none !important;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.content a:not(.btn):before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -4px;
  right: -4px;
  top: -2px;
  bottom: -2px;
  background: #ffeca9;
  opacity: 0;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.content a:not(.btn):hover,
.content a:not(.btn):focus {
  color: #171717;
  text-decoration: none;
}
.content a:not(.btn):hover:before,
.content a:not(.btn):focus:before {
  opacity: 0.5;
}
.content a:not(.btn):focus:before {
  opacity: 1;
}
.content ul {
  margin: 0 0 24px 24px;
  padding: 0;
}
.content ul li {
  margin: 0 0 8px 0;
  padding: 0;
  list-style: none;
  position: relative;
}
.content ul li:before {
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  left: -30px;
  top: -2px;
  background: url(../img/icon-chevron-right-black.svg);
  background-repeat: no-repeat;
  background-size: cover;
}
.content ol {
  margin: 0 0 24px 24px;
  padding: 0;
  counter-reset: item;
}
.content ol li {
  margin: 0 0 8px 0;
  padding: 0;
  position: relative;
  counter-increment: item;
  list-style: none;
}
.content ol li:before {
  content: counter(item) ".";
  display: inline-block;
  width: 24px;
  height: 24px;
  position: absolute;
  left: -24px;
  top: -2px;
  font-weight: 700;
}
/** Lists **/
ul {
  margin: 0 0 15px 15px;
  padding: 0;
}
ul li {
  margin: 0 0 10px 0;
  padding: 0;
  /* For Custom Bullets */
  /*
    list-style: none;
    position: relative;
    &:before {
      content: "•";
      position: absolute;
      left: -15px;
      color: @blue;
    }
    */
}
/** Page Wrappers **/
.pageWrapper {
  width: 100%;
  float: left;
  padding: 76px 0 0 0;
}
@media only screen and (min-width: 768px) {
  .pageWrapper {
    padding: 72px 0 0 0;
  }
}
.animated {
  opacity: 0;
}
.animated.fadeInUp,
.animated.fadeIn {
  opacity: 1;
}
.mt-0 {
  margin-top: 0 !important;
}
.mt-1 {
  margin-top: 16px !important;
}
.mt-2 {
  margin-top: 24px !important;
}
.mt-3 {
  margin-top: 32px !important;
}
.mt-4 {
  margin-top: 48px !important;
}
.mt-5 {
  margin-top: 56px !important;
}
.mb-0 {
  margin-bottom: 0 !important;
}
.mb-1 {
  margin-bottom: 16px !important;
}
.mb-2 {
  margin-bottom: 24px !important;
}
.mb-3 {
  margin-bottom: 32px !important;
}
.mb-4 {
  margin-bottom: 48px !important;
}
.mb-5 {
  margin-bottom: 56px !important;
}
.ml-0 {
  margin-left: 0 !important;
}
.ml-1 {
  margin-left: 16px !important;
}
.ml-2 {
  margin-left: 24px !important;
}
.ml-3 {
  margin-left: 32px !important;
}
.ml-4 {
  margin-left: 48px !important;
}
.ml-5 {
  margin-left: 56px !important;
}
.mr-0 {
  margin-right: 0 !important;
}
.mr-1 {
  margin-right: 16px !important;
}
.mr-2 {
  margin-right: 24px !important;
}
.mr-3 {
  margin-right: 32px !important;
}
.mr-4 {
  margin-right: 48px !important;
}
.mr-5 {
  margin-right: 56px !important;
}
.pt-0 {
  padding-top: 0 !important;
}
.pt-1 {
  padding-top: 16px !important;
}
.pt-2 {
  padding-top: 24px !important;
}
.pt-3 {
  padding-top: 32px !important;
}
.pt-4 {
  padding-top: 48px !important;
}
.pt-5 {
  padding-top: 56px !important;
}
.pb-0 {
  padding-bottom: 0 !important;
}
.pb-1 {
  padding-bottom: 16px !important;
}
.pb-2 {
  padding-bottom: 24px !important;
}
.pb-3 {
  padding-bottom: 32px !important;
}
.pb-4 {
  padding-bottom: 48px !important;
}
.pb-5 {
  padding-bottom: 56px !important;
}
.pr-0 {
  padding-right: 0 !important;
}
.pr-1 {
  padding-right: 16px !important;
}
.pr-2 {
  padding-right: 24px !important;
}
.pr-3 {
  padding-right: 32px !important;
}
.pr-4 {
  padding-right: 48px !important;
}
.pr-5 {
  padding-right: 56px !important;
}
.pl-0 {
  padding-left: 0 !important;
}
.pl-1 {
  padding-left: 16px !important;
}
.pl-2 {
  padding-left: 24px !important;
}
.pl-3 {
  padding-left: 32px !important;
}
.pl-4 {
  padding-left: 48px !important;
}
.pl-5 {
  padding-left: 56px !important;
}
@media only screen and (min-width: 768px) {
  .mt-0 {
    margin-top: 0 !important;
  }
  .mt-1 {
    margin-top: 16px !important;
  }
  .mt-2 {
    margin-top: 24px !important;
  }
  .mt-3 {
    margin-top: 32px !important;
  }
  .mt-4 {
    margin-top: 48px !important;
  }
  .mt-5 {
    margin-top: 56px !important;
  }
  .mb-0 {
    margin-bottom: 0 !important;
  }
  .mb-1 {
    margin-bottom: 16px !important;
  }
  .mb-2 {
    margin-bottom: 24px !important;
  }
  .mb-3 {
    margin-bottom: 32px !important;
  }
  .mb-4 {
    margin-bottom: 48px !important;
  }
  .mb-5 {
    margin-bottom: 56px !important;
  }
  .ml-0 {
    margin-left: 0 !important;
  }
  .ml-1 {
    margin-left: 16px !important;
  }
  .ml-2 {
    margin-left: 24px !important;
  }
  .ml-3 {
    margin-left: 32px !important;
  }
  .ml-4 {
    margin-left: 48px !important;
  }
  .ml-5 {
    margin-left: 56px !important;
  }
  .mr-0 {
    margin-right: 0 !important;
  }
  .mr-1 {
    margin-right: 16px !important;
  }
  .mr-2 {
    margin-right: 24px !important;
  }
  .mr-3 {
    margin-right: 32px !important;
  }
  .mr-4 {
    margin-right: 48px !important;
  }
  .mr-5 {
    margin-right: 56px !important;
  }
  .pt-0 {
    padding-top: 0 !important;
  }
  .pt-1 {
    padding-top: 16px !important;
  }
  .pt-2 {
    padding-top: 24px !important;
  }
  .pt-3 {
    padding-top: 32px !important;
  }
  .pt-4 {
    padding-top: 48px !important;
  }
  .pt-5 {
    padding-top: 56px !important;
  }
  .pb-0 {
    padding-bottom: 0 !important;
  }
  .pb-1 {
    padding-bottom: 16px !important;
  }
  .pb-2 {
    padding-bottom: 24px !important;
  }
  .pb-3 {
    padding-bottom: 32px !important;
  }
  .pb-4 {
    padding-bottom: 48px !important;
  }
  .pb-5 {
    padding-bottom: 56px !important;
  }
  .pr-0 {
    padding-right: 0 !important;
  }
  .pr-1 {
    padding-right: 16px !important;
  }
  .pr-2 {
    padding-right: 24px !important;
  }
  .pr-3 {
    padding-right: 32px !important;
  }
  .pr-4 {
    padding-right: 48px !important;
  }
  .pr-5 {
    padding-right: 56px !important;
  }
  .pl-0 {
    padding-left: 0 !important;
  }
  .pl-1 {
    padding-left: 16px !important;
  }
  .pl-2 {
    padding-left: 24px !important;
  }
  .pl-3 {
    padding-left: 32px !important;
  }
  .pl-4 {
    padding-left: 48px !important;
  }
  .pl-5 {
    padding-left: 56px !important;
  }
}
.col-5 {
  width: 20%;
}
.container {
  max-width: 1216px;
}
@media only screen and (min-width: 768px) {
  .container {
    width: 100%;
  }
}
@media only screen and (min-width: 992px) {
  .container {
    width: 100%;
  }
}
@media only screen and (min-width: 1200px) {
  .container {
    width: 100%;
  }
}
.col-xs-1,
.col-sm-1,
.col-md-1,
.col-lg-1,
.col-xs-2,
.col-sm-2,
.col-md-2,
.col-lg-2,
.col-xs-3,
.col-sm-3,
.col-md-3,
.col-lg-3,
.col-xs-4,
.col-sm-4,
.col-md-4,
.col-lg-4,
.col-xs-5,
.col-sm-5,
.col-md-5,
.col-lg-5,
.col-xs-6,
.col-sm-6,
.col-md-6,
.col-lg-6,
.col-xs-7,
.col-sm-7,
.col-md-7,
.col-lg-7,
.col-xs-8,
.col-sm-8,
.col-md-8,
.col-lg-8,
.col-xs-9,
.col-sm-9,
.col-md-9,
.col-lg-9,
.col-xs-10,
.col-sm-10,
.col-md-10,
.col-lg-10,
.col-xs-11,
.col-sm-11,
.col-md-11,
.col-lg-11,
.col-xs-12,
.col-sm-12,
.col-md-12,
.col-lg-12 {
  padding-right: 8px;
  padding-left: 8px;
}
.container,
.container-fluid {
  padding-right: 16px;
  padding-left: 16px;
}
.row {
  margin-right: -8px;
  margin-left: -8px;
}
@media only screen and (min-width: 768px) {
  .row.rowFlex {
    display: flex;
  }
  .row.rowFlex.rowReverse {
    flex-direction: row-reverse;
  }
  .row.rowFlex.alignItemsCenter {
    align-items: center;
  }
  .row.rowFlex.alignContentCenter {
    align-content: center;
  }
  .row.rowFlex.justifyContentCenter {
    justify-content: center;
  }
  .row.rowFlex.justifyContentEnd {
    justify-content: flex-end;
  }
  .row.rowFlex.equalColumnHeight {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
@media only screen and (min-width: 768px) {
  .col-xs-1,
  .col-sm-1,
  .col-md-1,
  .col-lg-1,
  .col-xs-2,
  .col-sm-2,
  .col-md-2,
  .col-lg-2,
  .col-xs-3,
  .col-sm-3,
  .col-md-3,
  .col-lg-3,
  .col-xs-4,
  .col-sm-4,
  .col-md-4,
  .col-lg-4,
  .col-xs-5,
  .col-sm-5,
  .col-md-5,
  .col-lg-5,
  .col-xs-6,
  .col-sm-6,
  .col-md-6,
  .col-lg-6,
  .col-xs-7,
  .col-sm-7,
  .col-md-7,
  .col-lg-7,
  .col-xs-8,
  .col-sm-8,
  .col-md-8,
  .col-lg-8,
  .col-xs-9,
  .col-sm-9,
  .col-md-9,
  .col-lg-9,
  .col-xs-10,
  .col-sm-10,
  .col-md-10,
  .col-lg-10,
  .col-xs-11,
  .col-sm-11,
  .col-md-11,
  .col-lg-11,
  .col-xs-12,
  .col-sm-12,
  .col-md-12,
  .col-lg-12 {
    padding-right: 12px;
    padding-left: 12px;
  }
  .container,
  .container-fluid {
    padding-right: 24px;
    padding-left: 24px;
  }
  .row {
    margin-right: -12px;
    margin-left: -12px;
  }
}
@media only screen and (min-width: 992px) {
  .container,
  .container-fluid {
    padding-right: 32px;
    padding-left: 32px;
  }
  .row {
    margin-right: -12px;
    margin-left: -12px;
  }
}
/** Text **/
html,
body {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.25px;
  font-weight: 400;
  color: #171717;
}
p {
  margin: 0 0 24px 0;
}
b,
strong {
  font-weight: 600;
}
small,
.small {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.25px;
}
.x-small {
  font-size: 13px;
  line-height: 20px;
  letter-spacing: 0.25px;
}
.font-family-base {
  font-family: 'Montserrat', sans-serif !important;
}
.font-family-heading {
  font-family: 'Sinibold', sans-serif !important;
}
.font-family-brand {
  font-family: 'Guzman', sans-serif !important;
}
.font-weight-500 {
  font-weight: 500;
}
.font-weight-600 {
  font-weight: 600;
}
.font-weight-700 {
  font-weight: 700;
}
.text-white {
  color: #FFF;
}
.text-black {
  color: #000;
}
.text-yellow {
  color: #ffd204;
}
.text-green {
  color: #208925;
}
.text-red {
  color: #d70015;
}
.text-greyMedium {
  color: #646464;
}
.text-greyDark {
  color: #171717;
}
/** Headings **/
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: 'Sinibold', sans-serif;
  font-weight: normal;
  margin: 0 0 24px 0;
}
h1,
.h1 {
  font-size: 48px;
  line-height: 48px;
  text-transform: uppercase;
  text-shadow: 1px 1px 0 #FFF;
}
h1.text-white,
.h1.text-white {
  text-shadow: 1px 1px 0 #000;
}
h1.text-shadow-yellow,
.h1.text-shadow-yellow {
  text-shadow: 1px 1px 0 #ffd204;
}
h2,
.h2 {
  font-size: 40px;
  line-height: 44px;
  text-transform: uppercase;
  text-shadow: 1px 1px 0 #FFF;
}
h2.text-white,
.h2.text-white {
  text-shadow: 1px 1px 0 #000;
}
h2.text-shadow-yellow,
.h2.text-shadow-yellow {
  text-shadow: 1px 1px 0 #ffd204;
}
h3,
.h3 {
  font-size: 32px;
  line-height: 32px;
}
h4,
.h4 {
  font-size: 26px;
  line-height: 26px;
  text-transform: uppercase;
  text-shadow: 1px 1px 0 #FFF;
}
h4.text-white,
.h4.text-white {
  text-shadow: 1px 1px 0 #000;
}
h5,
.h5 {
  font-size: 18px;
  line-height: 24px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}
h6,
.h6 {
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.25px;
}
.title-product {
  font-family: 'Sinibold', sans-serif;
  font-style: italic;
  font-size: 28px;
  line-height: 28px;
  letter-spacing: 0.25px;
  text-transform: uppercase;
}
.title-brand {
  font-family: 'Guzman', sans-serif;
  font-size: 22px;
  line-height: 28px;
}
.title-special {
  font-family: 'Sinibold', sans-serif;
  font-style: italic;
  font-size: 44px;
  letter-spacing: 0.25px;
  text-transform: uppercase;
  background: url(../../assets/img/sitedesign-bg-tape.png);
  background-size: cover !important;
  background-position: center !important;
  display: inline-block;
  width: 309px;
  height: 67px;
  line-height: 67px;
}
blockquote {
  padding: 0 0 0 24px;
  position: relative;
  border-left: none;
}
blockquote:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 8px;
  height: 100%;
  background: #ffd204;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
}
blockquote h4 {
  margin-bottom: 16px !important;
}
blockquote h6 {
  color: #646464;
  margin-bottom: 0 !important;
}
@media only screen and (min-width: 768px) {
  h1,
  .h1 {
    font-size: 52px;
    line-height: 52px;
  }
  h2,
  .h2 {
    font-size: 44px;
    line-height: 44px;
  }
  .title-special {
    width: 373px;
    height: 81px;
    line-height: 81px;
    font-size: 52px;
  }
  .title-brand {
    font-size: 28px;
  }
}
input[type="submit"],
input[type="button"],
.button,
.btn,
a.button,
a.btn {
  width: auto;
  min-width: 140px;
  min-height: 44px;
  line-height: normal;
  font-family: 'Sinibold', sans-serif;
  font-size: 24px;
  font-weight: normal;
  padding: 4px 24px 0px 24px;
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffd204;
  color: #000;
  text-shadow: 1px 1px 0 #FFF;
  text-decoration: none;
  text-transform: uppercase;
  border: none;
  outline: none;
  box-shadow: none !important;
  white-space: normal;
  -webkit-appearance: none;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
  /** Secondary Button **/
}
input[type="submit"]:hover,
input[type="button"]:hover,
.button:hover,
.btn:hover,
a.button:hover,
a.btn:hover {
  background: #FFE167;
  color: #171717;
}
input[type="submit"]:focus,
input[type="button"]:focus,
.button:focus,
.btn:focus,
a.button:focus,
a.btn:focus {
  background: #FFECA9;
  color: #171717;
  outline: none !important;
}
input[type="submit"].btn-primary,
input[type="button"].btn-primary,
.button.btn-primary,
.btn.btn-primary,
a.button.btn-primary,
a.btn.btn-primary {
  background: #ffd204;
  color: #000;
  text-shadow: 1px 1px 0 #FFF;
}
input[type="submit"].btn-primary:hover,
input[type="button"].btn-primary:hover,
.button.btn-primary:hover,
.btn.btn-primary:hover,
a.button.btn-primary:hover,
a.btn.btn-primary:hover {
  background: #FFE167;
  color: #171717;
}
input[type="submit"].btn-primary:focus,
input[type="button"].btn-primary:focus,
.button.btn-primary:focus,
.btn.btn-primary:focus,
a.button.btn-primary:focus,
a.btn.btn-primary:focus {
  background: #FFECA9;
  color: #171717;
}
input[type="submit"].btn-secondary,
input[type="button"].btn-secondary,
.button.btn-secondary,
.btn.btn-secondary,
a.button.btn-secondary,
a.btn.btn-secondary {
  background: #000;
  color: #ffd204;
  text-shadow: none;
}
input[type="submit"].btn-secondary:hover,
input[type="button"].btn-secondary:hover,
.button.btn-secondary:hover,
.btn.btn-secondary:hover,
a.button.btn-secondary:hover,
a.btn.btn-secondary:hover {
  background: #2E2E2E;
  color: #ffd204;
}
input[type="submit"].btn-secondary:focus,
input[type="button"].btn-secondary:focus,
.button.btn-secondary:focus,
.btn.btn-secondary:focus,
a.button.btn-secondary:focus,
a.btn.btn-secondary:focus {
  background: #2E2E2E;
  color: #ffd204;
}
input[type="submit"].btn-tertiary,
input[type="button"].btn-tertiary,
.button.btn-tertiary,
.btn.btn-tertiary,
a.button.btn-tertiary,
a.btn.btn-tertiary {
  background: #f4f4f4;
  color: #171717;
  text-shadow: none;
}
input[type="submit"].btn-tertiary:hover,
input[type="button"].btn-tertiary:hover,
.button.btn-tertiary:hover,
.btn.btn-tertiary:hover,
a.button.btn-tertiary:hover,
a.btn.btn-tertiary:hover {
  background: #e9e9e9;
  color: #171717;
}
input[type="submit"].btn-tertiary:focus,
input[type="button"].btn-tertiary:focus,
.button.btn-tertiary:focus,
.btn.btn-tertiary:focus,
a.button.btn-tertiary:focus,
a.btn.btn-tertiary:focus {
  background: #e9e9e9;
  color: #171717;
}
input[type="submit"].btn-small,
input[type="button"].btn-small,
.button.btn-small,
.btn.btn-small,
a.button.btn-small,
a.btn.btn-small {
  height: 40px;
  line-height: 40px;
  font-size: 18px;
}
input[type="submit"].btn-fullWidth,
input[type="button"].btn-fullWidth,
.button.btn-fullWidth,
.btn.btn-fullWidth,
a.button.btn-fullWidth,
a.btn.btn-fullWidth {
  width: 100%;
}
input[type="submit"].btn-tab,
input[type="button"].btn-tab,
.button.btn-tab,
.btn.btn-tab,
a.button.btn-tab,
a.btn.btn-tab {
  background: #FFF;
  color: #171717;
  text-shadow: none;
  min-width: 0;
  padding: 0 16px;
}
input[type="submit"].btn-tab:hover,
input[type="button"].btn-tab:hover,
.button.btn-tab:hover,
.btn.btn-tab:hover,
a.button.btn-tab:hover,
a.btn.btn-tab:hover {
  background: #fff9e5;
  color: #171717;
}
input[type="submit"].btn-tab:focus,
input[type="button"].btn-tab:focus,
.button.btn-tab:focus,
.btn.btn-tab:focus,
a.button.btn-tab:focus,
a.btn.btn-tab:focus {
  background: #fff9e5;
  color: #171717;
}
input[type="submit"].btn-tab.active,
input[type="button"].btn-tab.active,
.button.btn-tab.active,
.btn.btn-tab.active,
a.button.btn-tab.active,
a.btn.btn-tab.active {
  background: #000;
  color: #ffd204;
  text-shadow: none;
}
input[type="submit"].btn-tab.active:hover,
input[type="button"].btn-tab.active:hover,
.button.btn-tab.active:hover,
.btn.btn-tab.active:hover,
a.button.btn-tab.active:hover,
a.btn.btn-tab.active:hover {
  background: #171717;
  color: #ffd204;
}
input[type="submit"].btn-tab.active:focus,
input[type="button"].btn-tab.active:focus,
.button.btn-tab.active:focus,
.btn.btn-tab.active:focus,
a.button.btn-tab.active:focus,
a.btn.btn-tab.active:focus {
  background: #2E2E2E;
  color: #ffd204;
}
input[type="submit"].btn-filter,
input[type="button"].btn-filter,
.button.btn-filter,
.btn.btn-filter,
a.button.btn-filter,
a.btn.btn-filter {
  height: 32px;
  line-height: 32px;
  display: flex;
  background: #FFF;
  color: #171717;
  text-shadow: none;
  min-width: 0;
  padding: 0 16px 0 8px;
  font-size: 13px;
  letter-spacing: 0.25px;
  font-family: 'Montserrat', sans-serif;
  text-transform: none;
  font-weight: 600;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05), 0 4px 8px rgba(0, 0, 0, 0.05), 0 8px 16px rgba(0, 0, 0, 0.05) !important;
  -webkit-border-radius: 32px;
  -moz-border-radius: 32px;
  border-radius: 32px;
}
input[type="submit"].btn-filter.noIcon,
input[type="button"].btn-filter.noIcon,
.button.btn-filter.noIcon,
.btn.btn-filter.noIcon,
a.button.btn-filter.noIcon,
a.btn.btn-filter.noIcon {
  padding: 0 16px;
}
input[type="submit"].btn-filter svg,
input[type="button"].btn-filter svg,
.button.btn-filter svg,
.btn.btn-filter svg,
a.button.btn-filter svg,
a.btn.btn-filter svg {
  width: 24px;
  height: auto;
  margin-right: 8px;
}
input[type="submit"].btn-filter svg g,
input[type="button"].btn-filter svg g,
.button.btn-filter svg g,
.btn.btn-filter svg g,
a.button.btn-filter svg g,
a.btn.btn-filter svg g {
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
input[type="submit"].btn-filter:hover,
input[type="button"].btn-filter:hover,
.button.btn-filter:hover,
.btn.btn-filter:hover,
a.button.btn-filter:hover,
a.btn.btn-filter:hover {
  background: #fff9e5;
  color: #171717;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 4px 8px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.16) !important;
}
input[type="submit"].btn-filter:focus,
input[type="button"].btn-filter:focus,
.button.btn-filter:focus,
.btn.btn-filter:focus,
a.button.btn-filter:focus,
a.btn.btn-filter:focus {
  background: #fff9e5;
  color: #171717;
}
input[type="submit"].btn-filter.active,
input[type="button"].btn-filter.active,
.button.btn-filter.active,
.btn.btn-filter.active,
a.button.btn-filter.active,
a.btn.btn-filter.active {
  background: #000;
  color: #ffd204;
  text-shadow: none;
}
input[type="submit"].btn-filter.active svg g,
input[type="button"].btn-filter.active svg g,
.button.btn-filter.active svg g,
.btn.btn-filter.active svg g,
a.button.btn-filter.active svg g,
a.btn.btn-filter.active svg g {
  fill: #ffd204;
}
input[type="submit"].btn-filter.active:hover,
input[type="button"].btn-filter.active:hover,
.button.btn-filter.active:hover,
.btn.btn-filter.active:hover,
a.button.btn-filter.active:hover,
a.btn.btn-filter.active:hover {
  background: #171717;
  color: #ffd204;
}
input[type="submit"].btn-filter.active:hover svg g,
input[type="button"].btn-filter.active:hover svg g,
.button.btn-filter.active:hover svg g,
.btn.btn-filter.active:hover svg g,
a.button.btn-filter.active:hover svg g,
a.btn.btn-filter.active:hover svg g {
  fill: #ffd204;
}
input[type="submit"].btn-filter.active:focus,
input[type="button"].btn-filter.active:focus,
.button.btn-filter.active:focus,
.btn.btn-filter.active:focus,
a.button.btn-filter.active:focus,
a.btn.btn-filter.active:focus {
  background: #2E2E2E;
  color: #ffd204;
}
.windows input[type="submit"],
.windows input[type="button"],
.windows .button,
.windows .btn,
.windows a.button,
.windows a.btn {
  display: inline-block;
  padding: 6px 24px 0 24px;
}
.windows input[type="submit"].btn-filter,
.windows input[type="button"].btn-filter,
.windows .button.btn-filter,
.windows .btn.btn-filter,
.windows a.button.btn-filter,
.windows a.btn.btn-filter {
  display: flex;
  padding: 0 16px 0 8px;
}
.windows input[type="submit"].btn-small,
.windows input[type="button"].btn-small,
.windows .button.btn-small,
.windows .btn.btn-small,
.windows a.button.btn-small,
.windows a.btn.btn-small {
  padding: 0 24px;
}
.windows input[type="submit"] {
  padding: 0px 24px 8px 24px;
}
a.btn-icon {
  width: 32px;
  height: 32px;
  display: inline-block;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
a.btn-icon svg {
  width: 32px;
  height: auto;
  float: left;
}
a.btn-icon svg g {
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
a.btn-icon.btn-white:hover svg g {
  fill: #ffd204;
}
a.btn-icon.btn-black:hover svg g {
  fill: #ffd204;
}
/** Forms **/
form {
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}
input[type="text"],
input[type="email"],
input[type="number"],
input[type="password"],
input[type="phone"],
input[type="number"],
input[type="tel"],
textarea {
  width: 100%;
  height: 44px;
  padding: 0 44px 0 16px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #171717;
  font-size: 14px;
  border: solid 2px #e0e0e0;
  outline: none;
  -webkit-appearance: none;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-behavior: url(/ie/PIE.php);
}
input[type="text"]:hover,
input[type="email"]:hover,
input[type="number"]:hover,
input[type="password"]:hover,
input[type="phone"]:hover,
input[type="number"]:hover,
input[type="tel"]:hover,
textarea:hover {
  border: solid 2px #acacac;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
input[type="phone"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
textarea:focus {
  border: solid 2px #171717;
}
::-webkit-input-placeholder {
  /* WebKit browsers */
  opacity: 1;
  font-weight: 400;
  color: #646464;
}
:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  opacity: 1;
  font-weight: 400;
  color: #646464;
}
::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  opacity: 1;
  font-weight: 400;
  color: #646464;
}
:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  opacity: 1;
  font-weight: 400;
  color: #646464;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
textarea {
  min-height: 100px;
  padding: 10px 16px;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-behavior: url(/ie/PIE.php);
}
input,
textarea {
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.btnClear {
  width: 44px;
  height: 44px;
  line-height: 42px;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font-size: 18px;
  color: #e0e0e0;
  position: absolute;
  text-align: center;
  top: 0;
  right: 0;
  cursor: pointer;
  display: none;
}
.btnClear:before {
  content: "";
  display: block;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  position: absolute;
  background: url(../img/icon-close-white.svg);
  background-size: 16px auto;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #acacac;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.ginput_container_select {
  width: 100%;
  height: 44px;
  font-family: 'Montserrat', sans-serif;
  position: relative;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-behavior: url(/ie/PIE.php);
}
.ginput_container_select select {
  width: 100%;
  height: 100%;
  padding: 0 44px 0 16px;
  box-shadow: none;
  font-size: 14px;
  outline: none;
  background: #FFF;
  background-image: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-behavior: url(/ie/PIE.php);
  border: solid 2px #e0e0e0;
}
.ginput_container_select select:hover {
  border: solid 2px #acacac;
}
.ginput_container_select select:focus {
  border: solid 2px #171717;
}
.ginput_container_select:before {
  content: "";
  width: 24px;
  height: 24px;
  background: url(../img/icon-chevron-down-black.svg);
  background-size: cover !important;
  position: absolute;
  right: 8px;
  top: 50%;
  z-index: 2;
  pointer-events: none;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
input[type=radio],
input[type=checkbox] {
  width: 24px;
  height: 24px;
  border: 2px solid #e0e0e0;
  background: #FFF;
  display: inline-block;
  position: relative;
  margin: 0 12px 0 0;
  padding: 0;
  text-align: center;
  vertical-align: middle;
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
input[type=radio]:focus,
input[type=checkbox]:focus {
  outline: none;
}
input[type=checkbox]:checked:before {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: "";
  background: url(../img/icon-tick-black.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  color: #171717;
}
input[type=radio] {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
input[type=radio]:checked:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  background: #171717;
  border: solid 3px #FFF;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-behavior: url(/ie/PIE.php);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.ginput_container_fileupload .gform_drop_area {
  width: 100%;
  float: left;
  margin: 0 0 15px 0;
  padding: 20px;
  text-align: center;
  border: dashed 2px #e0e0e0;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-behavior: url(/ie/PIE.php);
}
.ginput_container_fileupload .gform_drop_area .gform_drop_instructions {
  width: 100%;
  float: left;
  text-align: center;
  display: block;
  margin: 0 0 10px 0;
}
.ginput_container_fileupload .gform_drop_area .gform_drop_instructions input[type="button"] {
  margin: 0 auto;
  float: none;
}
.ginput_container_fileupload #extensions_message {
  font-size: 12px;
}
label {
  margin: 0 0 8px 0;
  font-weight: 400;
  font-size: 14px;
}
label.checkBoxLabel {
  font-weight: normal;
}
label.gfield_label {
  margin: 0 0 8px 0;
  font-weight: 400 !important;
  font-size: 14px !important;
}
label .gfield_required:after {
  content: "*";
}
label .gfield_required .gfield_required_text {
  display: none;
}
/** Form Validation **/
.gfield_error input[type="text"],
.gfield_error input[type="email"],
.gfield_error input[type="number"],
.gfield_error input[type="password"],
.gfield_error input[type="phone"],
.gfield_error input[type="number"],
.gfield_error input[type="tel"],
.gfield_error input[type=radio],
.gfield_error input[type=checkbox],
.gfield_error textarea,
.gfield_error .ginput_container_select {
  border: solid 2px #d70015 !important;
}
.gfield_error .gform_drop_area {
  border: dashed 2px #d70015;
}
.gfield_error .ginput_container_select:before {
  border-color: #d70015 transparent transparent transparent;
}
.gfield_error .validation_message {
  color: #d70015;
  margin: 5px 0 0 0;
  font-size: 12px;
  font-weight: normal;
  background: none !important;
  padding: 0 !important;
  border: none !important;
}
/** Global Validation Message **/
.gform_validation_errors {
  display: none !important;
}
.validation_error {
  padding: 15px;
  margin: 0 0 15px 0;
  text-align: center;
  color: #d70015;
  display: none !important;
}
/** Form Wrapper **/
/** Styled specifically for Gravity Forms class structure **/
.gform_wrapper {
  width: 100%;
  margin: 0 auto;
}
.gform_wrapper form {
  float: left;
}
.gform_wrapper.noLabels_wrapper .gfield_label {
  display: none;
}
.gform_wrapper .checkBoxGroup .gfield_label {
  display: inline-block;
}
ul.gform_fields,
div.gform_fields {
  margin: 0;
  padding: 0;
}
ul.gform_fields li,
div.gform_fields li,
ul.gform_fields .gfield,
div.gform_fields .gfield {
  list-style: none;
  margin: 0 0 16px 0;
}
ul.gform_fields li .ginput_container,
div.gform_fields li .ginput_container,
ul.gform_fields .gfield .ginput_container,
div.gform_fields .gfield .ginput_container {
  position: relative;
}
ul.gform_fields li .ginput_container .ginput_counter,
div.gform_fields li .ginput_container .ginput_counter,
ul.gform_fields .gfield .ginput_container .ginput_counter,
div.gform_fields .gfield .ginput_container .ginput_counter {
  display: none;
}
ul.gform_fields li.hideLabel > label,
div.gform_fields li.hideLabel > label,
ul.gform_fields .gfield.hideLabel > label,
div.gform_fields .gfield.hideLabel > label {
  display: none;
}
ul.gform_fields li.dateOfBirthLabel,
div.gform_fields li.dateOfBirthLabel,
ul.gform_fields .gfield.dateOfBirthLabel,
div.gform_fields .gfield.dateOfBirthLabel {
  margin: 0;
}
ul.gform_fields li:before,
div.gform_fields li:before,
ul.gform_fields .gfield:before,
div.gform_fields .gfield:before {
  display: none;
}
ul.gfield_checkbox,
ul.gfield_radio {
  margin: 0;
  padding: 0;
}
ul.gfield_checkbox li,
ul.gfield_radio li {
  margin: 0 0 16px 0;
}
ul.gfield_checkbox li input,
ul.gfield_radio li input {
  float: left;
}
ul.gfield_checkbox li label,
ul.gfield_radio li label {
  margin: 0;
  overflow: auto;
  display: block;
  font-weight: normal;
}
ul.gfield_checkbox li:last-child,
ul.gfield_radio li:last-child {
  margin-bottom: 0;
}
.gform_wrapper.gravity-theme .gfield-choice-input,
.gform_wrapper.gravity-theme .gfield-choice-input + label {
  vertical-align: top !important;
}
.gform_wrapper.gravity-theme .gfield-choice-input + label {
  max-width: calc((100% - 42px)) !important;
}
.gfield_radio .gchoice {
  margin-bottom: 8px;
}
/* The switch - the box around the slider */
/* Hide default HTML checkbox */
.checkboxSwitch {
  overflow: hidden;
}
.checkboxSwitch .ginput_container {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}
.checkboxSwitch .ginput_container input {
  display: none;
}
.checkboxSwitch .ginput_container input:checked + .slider {
  background-color: #208925;
}
.checkboxSwitch .ginput_container input:focus + .slider {
  box-shadow: 0 0 1px #208925;
}
.checkboxSwitch .ginput_container input:checked + .slider:before {
  transform: translateX(26px);
}
.checkboxSwitch .ginput_container .gfield_label {
  width: 500px;
  max-width: none;
  float: none;
  padding-left: 75px;
  position: relative;
  z-index: 3;
  line-height: 34px;
}
.checkboxSwitch .ginput_container .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #e0e0e0;
  z-index: 1;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -webkit-border-radius: 34px;
  -moz-border-radius: 34px;
  border-radius: 34px;
}
.checkboxSwitch .ginput_container .slider:before {
  position: absolute;
  content: "";
  height: 30px;
  width: 30px;
  left: 2px;
  bottom: 2px;
  background: #FFF;
  z-index: 2;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
input[type="file"] {
  font-size: 13px;
  margin-bottom: 8px;
  outline: none !important;
  width: auto;
  padding-right: 40px;
}
input[type="file"]::file-selector-button {
  width: auto;
  min-width: 140px;
  height: 44px;
  min-height: 44px;
  line-height: normal !important;
  font-family: 'Sinibold', sans-serif;
  font-size: 24px;
  font-weight: normal;
  padding: 4px 24px 0px 24px;
  display: inline-flex;
  margin: 0 8px 0 0;
  background: #000;
  color: #ffd204;
  text-shadow: none;
  text-decoration: none;
  text-transform: uppercase;
  border: none;
  outline: none;
  box-shadow: none !important;
  -webkit-appearance: none;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
  cursor: pointer;
}
input[type="file"]::file-selector-button:hover {
  cursor: pointer;
}
input[type="file"]::file-selector-button:hover:before {
  background: #2E2E2E;
  color: #ffd204;
}
.windows input[type="file"]::file-selector-button {
  display: inline-block;
  padding: 0px 24px 8px 24px;
}
.ginput_container_fileupload {
  max-width: 480px;
}
.btnClearFile {
  top: 4px;
}
/** Specific Gravity Form Classes **/
.gfield_description {
  font-size: 14px;
  font-weight: 600;
  color: #646464;
}
.gform_heading,
.gform_body,
.gform_footer {
  width: 100%;
  float: left;
}
.gform_footer {
  text-align: center;
  padding: 0 15px;
}
.gform_footer input[type="submit"] {
  width: 100%;
  margin: 0 auto;
  float: none;
  min-width: 120px;
}
.searchForm input[type="text"] {
  padding-left: 42px;
}
.searchForm input[type="text"]:hover ~ label {
  background: url(../img/icon-search-grey.svg);
  background-size: cover !important;
}
.searchForm input[type="text"]:focus ~ label {
  background: url(../img/icon-search-black.svg);
  background-size: cover !important;
}
.searchForm label {
  width: 32px;
  height: 32px;
  position: absolute;
  top: 50%;
  left: 8px;
  margin: 0;
  background: url(../img/icon-search-grey.svg);
  background-size: cover !important;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.searchForm svg path {
  fill: #acacac;
}
.ginput_container .gf_repeater2_add,
.ginput_container .gf_repeater2_remove {
  display: block;
  background: none;
  color: #171717;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.ginput_container .gf_repeater2_add img,
.ginput_container .gf_repeater2_remove img {
  display: none;
}
.gf_repeater2_add:before {
  content: "Add another line item";
}
.gf_repeater2_remove:before {
  content: "Remove last line item";
}
.gform_wrapper.gravity-theme .gfield_list_group {
  margin-bottom: 16px !important;
  padding-bottom: 16px;
  border-bottom: solid 1px #e0e0e0;
}
.gform_wrapper.gravity-theme .gfield_list_group:last-of-type {
  border-bottom: none;
}
.gform_wrapper.gravity-theme .gfield_list_header .gfield_header_item--icons {
  display: none !important;
}
.gform_wrapper.gravity-theme .gfield_list_group {
  flex-wrap: wrap !important;
}
.gform_wrapper.gravity-theme .gfield_list_group .gfield_list_icons {
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column-reverse;
  border-top: solid 1px #e0e0e0;
  border-bottom: solid 1px #e0e0e0;
  padding: 8px 0 16px 0;
  margin-top: 16px;
}
.gform_wrapper.gravity-theme .gfield_list_group .gfield_list_icons button.add_list_item,
.gform_wrapper.gravity-theme .gfield_list_group .gfield_list_icons button.delete_list_item {
  width: auto;
  min-width: 0;
  padding: 0;
  line-height: normal;
  background: none !important;
  color: #171717;
  opacity: 1;
  text-align: left;
  margin: 4px 0;
}
.gform_wrapper.gravity-theme .gfield_list_group .gfield_list_icons button.add_list_item:before,
.gform_wrapper.gravity-theme .gfield_list_group .gfield_list_icons button.delete_list_item:before {
  display: block;
  color: #171717;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
}
.gform_wrapper.gravity-theme .gfield_list_group .gfield_list_icons button.add_list_item {
  margin-top: 8px;
}
.gform_wrapper.gravity-theme .gfield_list_group .gfield_list_icons button.add_list_item:before {
  content: "Add another line item";
}
.gform_wrapper.gravity-theme .gfield_list_group .gfield_list_icons button.delete_list_item:before {
  content: "Remove last line item";
}
.gfield_list_groups .gfield_list_group .gfield_list_icons {
  display: none !important;
}
.gfield_list_groups .gfield_list_group:last-of-type .gfield_list_icons {
  display: flex !important;
}
.gfield_list_groups .gfield_list_group:first-of-type .gfield_list_icons button.delete_list_item {
  display: none !important;
}
@media (max-width: 767px) {
  .gform_wrapper.gravity-theme .gfield_list_group {
    border: none !important;
    border-bottom: solid 1px #e0e0e0 !important;
    padding: 0 0 16px 0 !important;
  }
  .gform_wrapper.gravity-theme .gfield_list_group .gfield_list_group_item:before {
    font-size: 14px;
  }
  .gform_wrapper.gravity-theme .gfield_list_group .gfield_list_group_item .ginput_container {
    margin-top: 8px;
  }
  .gform_wrapper.gravity-theme .gfield_list_group .gfield_list_icons {
    margin: 16px 0 0 0 !important;
    background: none !important;
  }
  .gform_wrapper.gravity-theme .gfield_list_group:last-of-type {
    border-bottom: none !important;
  }
}
header {
  width: 100%;
  height: 76px;
  top: 0;
  left: 0;
  position: fixed;
  z-index: 10;
  background: #171717;
  font-family: 'Sinibold', sans-serif;
}
header .logo-secondary {
  position: absolute;
  top: 50%;
  left: 8px;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
header .logo-secondary svg,
header .logo-secondary img {
  height: 24px;
  width: auto;
  float: left;
}
header .mobileMenu {
  width: 32px;
  height: 34px;
  position: absolute;
  z-index: 10;
  left: 74px;
  top: 50%;
  cursor: pointer;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
header .mobileMenu .icon {
  width: 18px;
  height: 19px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -9px;
  margin-left: -9px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
header .mobileMenu .icon span {
  width: 100%;
  height: 3px;
  display: block;
  position: absolute;
  left: 0;
  opacity: 1;
  background: #FFF;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
header .mobileMenu .icon span:nth-child(1) {
  top: 0;
}
header .mobileMenu .icon span:nth-child(2),
header .mobileMenu .icon span:nth-child(3) {
  top: 7px;
}
header .mobileMenu .icon span:nth-child(4) {
  top: 14px;
}
header .btnLocation {
  width: 32px;
  height: 32px;
  position: absolute;
  z-index: 10;
  left: 116px;
  top: 50%;
  cursor: pointer;
  outline: none !important;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
header .btnLocation svg,
header .btnLocation img {
  width: 32px;
  height: auto;
}
header .btnLocation.active svg g {
  fill: #ffd204;
}
header .btnLocation.active:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  display: block;
  width: 21px;
  height: 3px;
  background: #ffd204;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
header a {
  text-decoration: none;
}
header a:hover,
header a:focus {
  text-decoration: none;
}
header nav.navMain {
  width: 100%;
  margin: 0;
  padding: 0;
  background: #171717;
}
header nav.navMain li {
  margin: 0;
  padding: 0;
  list-style: none;
}
header ul.menuMain {
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: 19px;
}
header ul.menuMain li {
  position: relative;
}
header ul.menuMain li a {
  width: 100%;
  height: 64px;
  display: flex;
  align-items: center;
  color: #FFF;
  position: relative;
}
header ul.menuMain li a:hover,
header ul.menuMain li a:focus {
  color: #ffd204;
}
header ul.menuMain li:before {
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  position: absolute;
  top: 64px;
  left: 0;
  background: linear-gradient(90deg, #535353 0%, #171717 100%);
}
header ul.menuMain li.current-menu-item > a {
  color: #ffd204;
}
header ul.menuMain > li {
  width: 100%;
  height: auto;
}
header ul.menuMain > li.menu-item-has-children > a:hover {
  color: #FFF;
}
header ul.menuMain > li.menu-item-has-children > a:before {
  content: "";
  width: 32px;
  height: 32px;
  background: url(../img/icon-chevron-down.svg);
  background-size: cover !important;
  text-align: center;
  color: #FFF !important;
  position: absolute;
  right: 0;
  top: 50%;
  transform-origin: 50% 50%;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
header ul.menuMain > li.menu-item-has-children.open > a:before {
  -webkit-transform: translate(0, -50%) rotate(180deg);
  -moz-transform: translate(0, -50%) rotate(180deg);
  -o-transform: translate(0, -50%) rotate(180deg);
  -ms-transform: translate(0, -50%) rotate(180deg);
  transform: translate(0, -50%) rotate(180deg);
}
header ul.menuMain > li > a {
  text-transform: uppercase;
}
header ul.sub-menu {
  max-height: 0;
  overflow: hidden;
  width: auto;
  margin: 0 -16px;
  padding: 0 16px;
  font-size: 20px;
  background: #171717;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  -o-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
header ul.sub-menu li {
  margin: 0;
  padding: 0;
  list-style: none;
}
header ul.sub-menu li a {
  white-space: nowrap;
}
header ul.menuOrder {
  margin: 0;
  padding: 0;
  float: right;
  position: relative;
  top: 0;
}
header ul.menuOrder li {
  list-style: none;
  margin: 0;
  padding: 0;
  width: auto;
  height: 76px;
  float: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
header ul.menuOrder li .btn {
  padding-left: 12px;
  padding-right: 12px;
  min-width: 0;
  font-size: 22px;
}
header .open ul.sub-menu {
  max-height: 1000px;
}
@media only screen and (max-width: 1023px) {
  header .menuWrapper {
    width: 100%;
    position: fixed;
    top: 76px;
    left: 0;
    padding: 0 16px;
    height: calc((100vh - 76px));
    max-height: 0;
    overflow: hidden;
    background: #171717;
    -webkit-overflow-scrolling: touch;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    -o-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
  }
}
@media only screen and (min-width: 1024px) {
  header {
    height: 72px;
  }
  header .logo-secondary {
    height: 28px;
    left: 22px;
    opacity: 0;
  }
  header ul.menuMain {
    width: auto;
    padding-left: 108px;
    float: left;
  }
  header ul.menuMain a {
    height: 100%;
  }
  header ul.menuMain > li {
    width: auto;
    height: 72px;
    float: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 4px 0 8px;
  }
  header ul.menuMain > li > a {
    height: 44px;
    line-height: 44px;
    padding: 0 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
  }
  header ul.menuMain > li:hover > a,
  header ul.menuMain > li:focus > a {
    color: #ffd204;
    background: #000;
  }
  header ul.menuMain > li:before {
    display: none;
  }
  header ul.menuMain > li.menu-item-has-children > a {
    padding: 0 32px 0 8px;
  }
  header ul.menuMain > li.menu-item-has-children > a:before {
    width: 24px;
    height: 24px;
    right: 4px;
  }
  header ul.menuMain > li.menu-item-has-children.open > a {
    color: #FFF;
  }
  header ul.menuMain > li.menu-item-has-children.open > a:before {
    -webkit-transform: translate(0, -50%) rotate(0);
    -moz-transform: translate(0, -50%) rotate(0);
    -o-transform: translate(0, -50%) rotate(0);
    -ms-transform: translate(0, -50%) rotate(0);
    transform: translate(0, -50%) rotate(0);
  }
  header ul.menuMain > li.current-menu-item > a {
    background: #000;
  }
  header ul.sub-menu {
    min-width: 160px;
    position: absolute;
    top: 76px;
    left: 0;
    margin: 0;
    padding: 0;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    -o-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
  }
  header ul.sub-menu li:before {
    width: auto;
    left: 16px;
    right: 16px;
    z-index: 5;
  }
  header ul.sub-menu li a {
    padding: 0 16px;
    z-index: 1;
  }
  header ul.sub-menu li a:hover {
    background: #000;
  }
  header ul.menuOrder {
    position: absolute;
    float: right;
    right: 12px;
  }
  header ul.menuOrder li {
    height: 72px;
  }
  header .mobileMenu,
  header .btnLocation {
    display: none;
  }
}
@media only screen and (min-width: 1200px) {
  header ul.menuMain {
    padding-left: 132px;
  }
  header ul.menuMain > li {
    padding: 0 32px 0 8px;
  }
}
.logo-primary {
  width: 110px;
  height: 110px;
  position: absolute;
  top: 16px;
  left: 32px;
  z-index: 11;
  display: none;
  -webkit-box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.16);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.logo-primary svg,
.logo-primary img {
  width: 100%;
  height: auto;
  float: left;
}
@media only screen and (min-width: 1024px) {
  .logo-primary {
    display: block;
  }
}
@media only screen and (min-width: 1200px) {
  .logo-primary {
    left: calc((100% - 1152px)/2);
  }
}
@media only screen and (min-width: 768px) {
  .scrolled header .logo-secondary {
    opacity: 1;
  }
}
.menuOpen {
  overflow: hidden;
}
.menuOpen header .mobileMenu .icon span:nth-child(1) {
  width: 0%;
  top: 9px;
  left: 50%;
}
.menuOpen header .mobileMenu .icon span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.menuOpen header .mobileMenu .icon span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.menuOpen header .mobileMenu .icon span:nth-child(4) {
  width: 0%;
  top: 9px;
  left: 50%;
}
@media only screen and (max-width: 1023px) {
  .menuOpen header .menuWrapper {
    max-height: 100vh;
    overflow: scroll;
  }
}
.btnGlobalSearch {
  width: 32px;
  height: 32px;
  position: absolute;
  z-index: 10;
  left: 160px;
  top: 50%;
  cursor: pointer;
  outline: none !important;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.btnGlobalSearch svg,
.btnGlobalSearch img {
  width: 32px;
  height: auto;
}
.btnGlobalSearch.active svg g {
  fill: #ffd204;
}
.btnGlobalSearch.active:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  display: block;
  width: 21px;
  height: 3px;
  background: #ffd204;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
@media only screen and (min-width: 768px) {
  .btnGlobalSearch {
    left: auto;
    right: 142px;
  }
}
.globalSearchWrapper {
  height: 72px;
  left: auto;
  padding: 14px 0;
  overflow: hidden;
  position: absolute;
  max-width: 0;
  right: 0;
  z-index: 11;
  background: #171717;
  width: 100%;
  display: block;
  opacity: 0;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.globalSearchWrapper .searchFormGlobal input[type="text"] {
  padding-right: 96px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
}
.globalSearchWrapper .searchFormGlobal .btn {
  padding: 0;
  min-width: 0;
  width: 96px;
  height: 36px;
  min-height: 0;
  line-height: 36px;
  position: absolute;
  right: 4px;
  top: 4px;
  font-size: 18px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.globalSearchWrapper .searchFormGlobal .btnClear {
  right: 100px;
}
.globalSearchWrapper .btn-icon {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
@media only screen and (min-width: 768px) {
  .globalSearchWrapper {
    height: 72px;
    left: auto;
    padding: 14px 0;
  }
}
.menuSearchWrapper {
  width: 100%;
  max-height: 0;
  overflow: hidden;
  top: 72px;
  left: 0;
  position: fixed;
  background: #FFF;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05), 0 4px 8px rgba(0, 0, 0, 0.05), 0 8px 16px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
@media only screen and (min-width: 768px) {
  .menuSearchWrapper {
    top: 72px;
  }
}
.menuSearchWrapper h6 {
  padding-left: 16px;
}
@media only screen and (min-width: 1024px) {
  .menuSearchWrapper .innerWrapper {
    padding: 0 48px 0 96px;
  }
  .menuSearchWrapper h6 {
    padding-left: 44px;
  }
}
@media only screen and (min-width: 1200px) {
  .menuSearchWrapper .innerWrapper {
    padding: 0 48px 0 142px;
  }
  .menuSearchWrapper h6 {
    padding-left: 44px;
  }
}
ul.menuSearch {
  margin: 0;
  padding: 0;
  width: 100%;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 14px;
}
ul.menuSearch li {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  border-bottom: solid 1px #e0e0e0;
}
ul.menuSearch li a {
  display: block;
  padding: 12px;
  color: #171717;
  padding-left: 16px;
}
ul.menuSearch li a:hover {
  background: rgba(255, 236, 169, 0.3);
}
@media only screen and (min-width: 1024px) {
  ul.menuSearch li a {
    padding-left: 44px;
  }
}
.globalSearchOpen .globalSearchWrapper {
  max-width: calc((100vw - 24px));
  opacity: 1;
  overflow: visible;
  padding: 14px 40px 14px 0;
}
@media only screen and (min-width: 768px) {
  .globalSearchOpen .globalSearchWrapper {
    padding: 14px 48px 14px 0;
  }
}
@media only screen and (min-width: 1024px) {
  .globalSearchOpen .globalSearchWrapper {
    padding: 14px 48px 14px 0;
    max-width: calc((100vw - 176px));
  }
}
@media only screen and (min-width: 1200px) {
  .globalSearchOpen .globalSearchWrapper {
    max-width: 1300px;
    padding: 14px 48px 14px 156px;
  }
}
.globalSearchOpen .menuSearchWrapper {
  max-height: 1000px;
  padding: 24px 0 0 0;
}
@media only screen and (max-width: 767px) {
  .globalSearchOpen .menuSearchWrapper {
    bottom: 0;
  }
}
@media only screen and (max-width: 1023px) {
  .globalSearchOpen .menuSearchWrapper .container {
    padding: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .globalSearchOpen .menuSearchWrapper {
    padding: 8px 24px 24px 24px;
  }
}
footer {
  position: relative;
  overflow: hidden;
  padding: 16px 0 0 0;
  background: #171717;
  color: #FFF;
  font-weight: 600;
  z-index: 12;
}
footer .container {
  position: relative;
  z-index: 1;
}
footer a {
  color: #ffd204;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
  color: #ffd204;
}
footer a:focus {
  text-decoration: none;
  color: #ffeca9;
}
footer hr {
  margin-bottom: 24px;
  border-bottom: solid 1px #414141;
}
footer ul.menuFooter {
  width: 100%;
  margin: 0;
  padding: 0;
  float: left;
  font-size: 14px;
}
footer ul.menuFooter li {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}
footer ul.menuSocial {
  margin: 0 0 44px 0;
  padding: 0;
  float: left;
}
footer ul.menuSocial li {
  margin: 0 16px 16px 0;
  padding: 0;
  list-style: none;
  width: 40px;
  height: 40px;
  float: left;
}
footer ul.menuSocial li a {
  width: 100%;
  height: 100%;
  display: block;
  background-size: cover !important;
  line-height: 500px;
  overflow: hidden;
}
footer ul.menuSocial li.facebook a {
  background: url(../img/icon-social-facebook.svg);
}
footer ul.menuSocial li.facebook a:hover {
  background: url(../img/icon-social-facebook-yellow.svg);
}
footer ul.menuSocial li.instagram a {
  background: url(../img/icon-social-instagram.svg);
}
footer ul.menuSocial li.instagram a:hover {
  background: url(../img/icon-social-instagram-yellow.svg);
}
footer ul.menuSocial li.youtube a {
  background: url(../img/icon-social-youtube.svg);
}
footer ul.menuSocial li.youtube a:hover {
  background: url(../img/icon-social-youtube-yellow.svg);
}
footer ul.menuSocial li.tiktok a {
  background: url(../img/icon-social-tiktok.svg);
}
footer ul.menuSocial li.tiktok a:hover {
  background: url(../img/icon-social-tiktok-yellow.svg);
}
footer ul.menuSocial li.snapchat a {
  background: url(../img/icon-social-snapchat.svg);
}
footer ul.menuSocial li.snapchat a:hover {
  background: url(../img/icon-social-snapchat-yellow.svg);
}
footer ul.menuSocial li.twitter a {
  background: url(../img/icon-social-twitter.svg);
}
footer ul.menuSocial li.twitter a:hover {
  background: url(../img/icon-social-twitter-yellow.svg);
}
footer ul.menuSocial li.threads a {
  background: url(../img/icon-social-threads.svg);
}
footer ul.menuSocial li.threads a:hover {
  background: url(../img/icon-social-threads-yellow.svg);
}
footer ul.menuApp {
  margin: 0 0 44px 0;
  padding: 0;
  float: left;
}
footer ul.menuApp li {
  margin: 0 44px 0 0;
  padding: 0;
  list-style: none;
  width: 32px;
  height: 32px;
  float: left;
}
footer ul.menuApp li a {
  width: 100%;
  height: 100%;
  display: block;
  background-size: auto 32px !important;
  background-position: left center !important;
  background-repeat: no-repeat !important;
  line-height: 500px;
  overflow: hidden;
}
footer ul.menuApp li.apple a {
  background: url(../img/icon-app-apple.svg);
}
footer ul.menuApp li.apple a:hover {
  background: url(../img/icon-app-apple-yellow.svg);
}
footer ul.menuApp li.android a {
  background: url(../img/icon-app-android.svg);
}
footer ul.menuApp li.android a:hover {
  background: url(../img/icon-app-android-yellow.svg);
}
footer ul.menuCountrySelector {
  margin: 0;
  padding: 0;
  float: left;
  font-size: 14px;
}
footer ul.menuCountrySelector li {
  padding: 0;
  list-style: none;
  height: 36px;
  float: left;
  flex-direction: column;
  justify-content: center;
  display: flex;
}
footer ul.menuCountrySelector li a {
  display: flex;
}
footer ul.menuCountrySelector li a .country,
footer ul.menuCountrySelector li a .text {
  display: inline-block;
  height: 24px;
  line-height: 24px;
  padding: 0 8px;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
}
footer ul.menuCountrySelector li a .flag,
footer ul.menuCountrySelector li a .icon {
  display: block;
  width: 36px;
  height: 24px;
  margin-right: 8px;
}
footer ul.menuCountrySelector li a .flag img,
footer ul.menuCountrySelector li a .icon img {
  width: 100%;
  height: auto;
  float: left;
}
footer ul.menuCountrySelector li a .arrow {
  display: block;
  width: 24px;
  height: 24px;
  background: url(../img/icon-chevron-down-yellow.svg);
  background-size: cover !important;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
footer ul.menuCountrySelector li a:hover span,
footer ul.menuCountrySelector li a:focus span {
  background: #000;
}
footer ul.menuCopyright {
  margin: 0 36px 0 0;
  padding: 0;
  font-size: 14px;
}
footer ul.menuCopyright li {
  list-style: none;
  margin: 0 0 24px 0;
  padding: 0;
  font-weight: normal;
}
footer ul.menuCopyright li a {
  color: #FFF;
  line-height: 36px;
}
footer ul.menuCopyright li a:hover {
  color: #FFF;
}
.btnBackToTop {
  width: 56px;
  height: 56px;
  position: fixed;
  z-index: 13;
  right: 16px;
  bottom: 72px;
  color: #FFF;
  text-align: center;
  background: rgba(23, 23, 23, 0.7);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.btnBackToTop .inner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.countrySelector {
  width: 100%;
  height: 100vh;
  left: 0;
  position: fixed;
  z-index: 2;
  padding: 16px 0 0 0;
  background: #171717;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  top: 100vh;
}
.countrySelector ul.menuCountrySelector {
  width: 100%;
}
.countrySelector.open {
  top: 0;
}
.countrySelectorOverlay {
  background: #000;
  opacity: 0.75;
  z-index: 11;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.countrySelectorOverlay.open {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media only screen and (min-width: 768px) {
  footer {
    padding: 30px 0 0 0;
  }
  footer ul.menuSocial,
  footer ul.menuApp {
    margin-bottom: 0;
  }
  .countrySelector {
    position: absolute;
    padding: 30px 0 0 0;
    height: 100%;
    top: 100%;
  }
  .countrySelector.open {
    top: 0;
  }
}
/** Sections **/
section {
  margin: 0;
  padding: 24px 0;
  position: relative;
}
@media only screen and (min-width: 768px) {
  section {
    padding: 56px 0;
  }
}
/** Slider **/
.swiper-button-prev,
.swiper-button-next {
  width: 32px;
  height: 32px;
  background-size: cover !important;
}
.swiper-button-next {
  right: 24px;
  background: url(../img/icon-chevron-right-black.svg);
}
.swiper-button-next:hover {
  background: url(../img/icon-chevron-right-grey.svg);
}
.swiper-button-next:focus {
  background: url(../img/icon-chevron-right-greylight.svg);
}
.swiper-button-next.light {
  background: url(../img/icon-chevron-right-white.svg);
}
.swiper-button-next.light:hover {
  background: url(../img/icon-chevron-right-white.svg);
}
.swiper-button-next.light:focus {
  background: url(../img/icon-chevron-right-white.svg);
}
.swiper-button-prev {
  left: 24px;
  background: url(../img/icon-chevron-left-black.svg);
}
.swiper-button-prev:hover {
  background: url(../img/icon-chevron-left-grey.svg);
}
.swiper-button-prev:focus {
  background: url(../img/icon-chevron-left-greylight.svg);
}
.swiper-button-prev.light {
  background: url(../img/icon-chevron-left-white.svg);
}
.swiper-button-prev.light:hover {
  background: url(../img/icon-chevron-left-white.svg);
}
.swiper-button-prev.light:focus {
  background: url(../img/icon-chevron-left-white.svg);
}
.swiper-button-disabled {
  opacity: 0 !important;
}
.swiper-container .swiper-pagination {
  width: 100%;
  height: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 8px 0 24px 0;
  position: relative;
}
.swiper-container .swiper-pagination .swiper-pagination-bullet {
  margin: 0 8px;
  background: #000;
  opacity: 0.5;
}
.swiper-container .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}
.swiper-container .swiper-pagination.light .swiper-pagination-bullet {
  background: #FFF;
}
.swiper-container .swiper-pagination.dark .swiper-pagination-bullet {
  background: #000;
}
@media only screen and (min-width: 768px) {
  .swiper-container .swiper-pagination {
    margin: 0;
    position: absolute;
  }
}
.swiper-single .swiper-button-prev,
.swiper-single .swiper-button-next,
.swiper-single .swiper-pagination {
  display: none;
}
.noSwiper .swiper-wrapper {
  display: block;
  width: auto;
  height: auto;
}
.noSwiper .swiper-wrapper .swiper-slide {
  width: auto;
  height: auto;
  display: block;
}
.noSwiper .swiper-button-prev,
.noSwiper .swiper-button-next,
.noSwiper .swiper-pagination {
  display: none;
}
/** Column Blocks **/
ul.tabs {
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: center;
  white-space: nowrap;
}
ul.tabs li {
  list-style: none;
  margin: 0 4px;
  display: inline-block;
}
/** Pagination **/
.pagination {
  width: 100%;
  height: 30px;
  text-align: center;
  font-size: 0px;
  margin: 10px 0 25px 0;
}
.pagination li {
  list-style: none;
  float: none;
  display: inline-block;
  font-size: 12px;
  margin: 0;
}
.pagination li a {
  cursor: pointer;
  margin: 0;
  padding: 0;
  border: solid 1px #e0e0e0;
  border-left: none;
  color: #2196F3;
  width: 30px;
  height: 30px;
  line-height: 30px;
}
.pagination li a:hover {
  border: solid 1px #e0e0e0;
  border-left: none;
}
.pagination li:first-child a {
  border-left: solid 1px #e0e0e0;
}
.pagination li:first-child a:hover {
  border-left: solid 1px #e0e0e0;
}
.pagination li.active a {
  background: #171717;
  border: solid 1px #171717;
}
.pagination li.active a:hover {
  background: #2196F3;
  border: solid 1px #2196F3;
}
.embed-video {
  padding-bottom: 74.622%;
}
.video {
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 1;
}
.video .video-js {
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.video .video-js .vjs-poster {
  background-size: cover !important;
}
.video .video-js .vjs-big-play-button {
  width: 44px;
  height: 44px;
  font-size: 20px;
  line-height: 24px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -8px;
  min-width: 0;
  background: none;
  border: solid 3px #FFF;
  color: #FFF;
  font-family: 'Sinibold', sans-serif;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.video .video-js .vjs-big-play-button .vjs-control-text {
  clip: initial;
  overflow: visible;
  width: 100px;
  position: absolute;
  left: 50%;
  top: 100%;
  margin-top: 16px;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.video .video-js .vjs-big-play-button .vjs-icon-placeholder:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 16px;
  border-color: transparent transparent transparent #FFF;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: 1px;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.video .video-js:hover .vjs-big-play-button {
  background: none;
  color: #FFF;
}
.video .video-js.vjs-youtube-mobile .vjs-big-play-button {
  display: block;
}
.video .video-js .vjs-text-track-display {
  background: rgba(0, 0, 0, 0);
  bottom: 0;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.video .video-js:hover .vjs-text-track-display {
  background: rgba(0, 0, 0, 0);
}
.video .video-js.vjs-has-started .vjs-text-track-display {
  background: none;
}
.videoLink {
  display: block;
  position: relative;
}
.videoLink:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.4;
  z-index: 1;
  background: #000;
}
.btnPlayVideo {
  width: 44px;
  height: 44px;
  font-size: 20px;
  line-height: 24px;
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  margin-top: -8px;
  min-width: 0;
  background: none;
  border: solid 3px #FFF;
  color: #FFF;
  font-family: 'Sinibold', sans-serif;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.btnPlayVideo:after {
  content: "Play Video";
  width: 100px;
  position: absolute;
  left: 50%;
  top: 100%;
  margin-top: 16px;
  text-align: center;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.btnPlayVideo:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 16px;
  border-color: transparent transparent transparent #FFF;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: 1px;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.vimeo-cover {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  background-size: cover !important;
  background-position: center !important;
  cursor: pointer;
}
.fancybox-container .fancybox-button--arrow_right {
  right: 16px;
}
.fancybox-container .fancybox-button--arrow_left {
  left: 16px;
}
.fancybox-container .fancybox-bg {
  background: #000;
  position: absolute;
}
.fancybox-container .fancybox-is-open .fancybox-bg {
  opacity: 0.85;
}
.fancybox-container .fancybox-infobar,
.fancybox-container .fancybox-toolbar,
.fancybox-container .fancybox-navigation {
  opacity: 1 !important;
  visibility: visible !important;
}
.fancybox-container .fancybox-infobar {
  text-align: right;
  font-weight: 600;
  color: #e0e0e0;
  margin-top: -44px;
  padding: 0;
  right: 0;
  left: auto;
}
.fancybox-container .fancybox-toolbar {
  top: 16px;
  right: 16px;
}
.fancybox-container .fancybox-title {
  position: absolute;
  text-align: left;
  margin: -44px 0 0 0;
  left: 0;
  top: 0;
}
.fancybox-container .fancybox-caption {
  color: #646464;
  font-weight: 600;
  text-align: left;
  padding: 0;
  margin: 0;
  background: none;
  bottom: -32px;
}
.fancybox-container .fancybox-button {
  background: none !important;
  color: #FFF;
  outline: none !important;
  padding: 0;
  width: 32px;
  height: 32px;
}
.fancybox-container .fancybox-button:link,
.fancybox-container .fancybox-button:visited {
  color: #FFF;
}
.fancybox-container .fancybox-button svg {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.fancybox-container .fancybox-button.fancybox-button--thumbs svg {
  width: 13px;
  height: 13px;
}
.fancybox-container .fancybox-navigation .fancybox-button {
  opacity: 1 !important;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.fancybox-container .fancybox-thumbs {
  background: none;
}
.fancybox-container .fancybox-thumbs__list {
  background: #000;
}
.fancybox-container .fancybox-thumbs__list a {
  margin: 4px;
}
.fancybox-container .fancybox-thumbs__list a:before {
  border: solid 2px #ffd204;
}
.accordion {
  width: 100%;
}
.accordion .item {
  border-bottom: solid 1px #e0e0e0;
}
.accordion .item:first-child {
  border-top: solid 1px #e0e0e0;
}
.accordion .item .title {
  width: 100%;
  padding: 24px 42px 24px 0;
  position: relative;
  cursor: pointer;
}
.accordion .item .title:before {
  content: "";
  width: 32px;
  height: 32px;
  background: url(../img/icon-chevron-down-black.svg);
  background-size: cover !important;
  text-align: center;
  position: absolute;
  right: 0;
  top: 50%;
  transform-origin: 50% 50%;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.accordion .item .content {
  width: 100%;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  -o-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.accordion .item.open .title:before {
  -webkit-transform: translate(0, -50%) rotate(180deg);
  -moz-transform: translate(0, -50%) rotate(180deg);
  -o-transform: translate(0, -50%) rotate(180deg);
  -ms-transform: translate(0, -50%) rotate(180deg);
  transform: translate(0, -50%) rotate(180deg);
}
.accordion .item.open .content {
  max-height: 20000px;
}
.horizontalScroll {
  padding-bottom: 50px;
  margin-bottom: -50px;
  overflow-x: scroll;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}
/**
 * CSS style for carouselTicker
 **/
.carouselTicker__list {
  margin: 10px 0;
  padding: 0;
  list-style-type: none;
  overflow: hidden;
}
.carouselTicker__loader {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #fff url("../images/loader.gif") center center no-repeat;
}
/**
 * CSS style for vertical direction
 **/
.carouselTicker_vertical .carouselTicker__list {
  margin: 0;
}
.carouselTicker_vertical .carouselTicker__item {
  margin: 0 0 5px 0;
  border: 4px solid red;
  width: 100px;
  height: 60px;
  line-height: 60px;
  text-align: center;
}
#carouselTicker .carouselTicker__item,
#carouselTicker-destructor-example .carouselTicker__item,
#carouselTicker-buttons-controls-example .carouselTicker__item {
  width: auto;
  height: auto;
  line-height: normal;
}
.carouselTicker__item img {
  vertical-align: top;
}
/** Full Width Banner **/
section.panel-banner {
  height: 0;
  padding: 0 0 140% 0;
  text-align: center;
  position: relative;
}
section.panel-banner .innerWrapper {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
section.panel-banner .contentWrapper {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 64px 0;
}
section.panel-banner .contentWrapper.justifyContentEnd {
  justify-content: flex-end;
}
section.panel-banner .background {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  z-index: 2;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}
section.panel-banner .background-video {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -o-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}
section.panel-banner .background-video video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}
@media only screen and (-ms-high-contrast: none), (-ms-high-contrast: active) and (min-width: 768px) {
  section.panel-banner .background-video video {
    width: 130%;
    height: auto;
    min-width: 100%;
    min-height: 100%;
  }
}
section.panel-banner .background-video .video-iframe-wrapper {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  height: 0;
  padding: 0 0 150% 0;
  display: block;
  overflow: hidden;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
section.panel-banner .background-video .video-iframe-wrapper iframe {
  pointer-events: none;
}
@media only screen and (max-width: 767px) {
  section.panel-banner .background-video .video-iframe-wrapper iframe {
    width: 100%;
  }
  section.panel-banner .background-video .video-iframe-wrapper.use-desktop-video iframe {
    width: 300%;
  }
}
@media only screen and (min-width: 768px) {
  section.panel-banner .background-video .video-iframe-wrapper {
    width: 110%;
    padding-bottom: 56.25%;
  }
}
section.panel-banner .swiper-slide-active .background-video,
section.panel-banner .swiper-single .background-video {
  opacity: 1;
}
section.panel-banner .overlay {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0.4;
  z-index: 4;
  background: #000;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
section.panel-banner .overlay.dark {
  opacity: 0.4;
}
section.panel-banner .overlay.light {
  opacity: 0.2;
}
section.panel-banner .overlay.none {
  opacity: 0;
}
section.panel-banner .btn {
  min-width: 178px;
}
@media only screen and (min-width: 768px) {
  section.panel-banner {
    height: 0;
    padding: 0 0 50% 0;
  }
  section.panel-banner .contentWrapper {
    padding: 96px 0;
  }
}
@media only screen and (min-width: 1250px) {
  section.panel-banner {
    height: 680px;
    padding-bottom: 0;
  }
  section.panel-banner .background.background-contain {
    background-size: auto 100% !important;
  }
}
section.panel-banner.panel-banner-small {
  padding: 0 0 72% 0;
}
@media only screen and (min-width: 768px) {
  section.panel-banner.panel-banner-small {
    padding: 0 0 23% 0;
  }
}
@media only screen and (min-width: 1250px) {
  section.panel-banner.panel-banner-small {
    height: 316px;
    padding-bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  section.panel-banner.panel-banner-mobile-medium {
    padding: 0 0 72.222% 0;
  }
}
/** Full Width Slider **/
section.panel-banner .swiper-container {
  width: 100%;
  height: 100%;
}
section.panel-banner .swiper-slide {
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
section.panel-banner .swiper-pagination {
  bottom: 48px;
}
@media only screen and (min-width: 768px) {
  section.panel-banner .swiper-pagination {
    bottom: 48px;
  }
}
@media only screen and (max-width: 767px) {
  section.panel-banner-two-column {
    height: auto;
    padding: 0;
  }
  section.panel-banner-two-column .innerWrapper {
    position: relative;
    height: auto;
    top: auto;
    left: auto;
  }
  section.panel-banner-two-column .background {
    width: 100%;
    padding-bottom: 77.78%;
    top: auto;
    left: auto;
    position: relative;
  }
  section.panel-banner-two-column .contentWrapper {
    position: relative;
    height: auto;
    top: auto;
    left: auto;
  }
}
@media only screen and (min-width: 1250px) {
  section.panel-banner-two-column .background {
    background-size: auto 100% !important;
  }
}
@media only screen and (max-width: 767px) {
  section.panel-banner-background-text {
    height: auto;
    padding: 0;
  }
  section.panel-banner-background-text .innerWrapper {
    position: relative;
    height: auto;
    top: auto;
    left: auto;
  }
  section.panel-banner-background-text .background {
    width: 100%;
    padding-bottom: 77.78%;
    top: auto;
    left: auto;
    position: relative;
  }
  section.panel-banner-background-text .contentWrapper {
    position: relative;
    height: auto;
    top: auto;
    left: auto;
  }
}
@media only screen and (min-width: 1250px) {
  section.panel-banner-background-text {
    height: 576px;
  }
  section.panel-banner-background-text .background {
    background-size: auto 100% !important;
  }
}
/** Base Modals **/
.modal .modal-content {
  background: #FFF;
  border: none;
  box-shadow: none;
  padding: 16px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
}
.modal .modal-content .modal-body {
  padding: 0;
  height: auto;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.modal .modal-content .modal-header {
  border: none;
  padding: 0 0 16px 0;
  display: table;
  width: 100%;
}
.modal .modal-content .modal-header .inner {
  display: table-cell;
  vertical-align: top;
}
.modal .modal-content .modal-header .btn-icon {
  margin-right: -8px;
}
.modal .modal-content .modal-footer {
  border: none;
  padding: 16px 0 0 0;
  text-align: center;
}
.modal .modal-content .modal-footer input[type="submit"],
.modal .modal-content .modal-footer input[type="button"],
.modal .modal-content .modal-footer button,
.modal .modal-content .modal-footer .button .btn,
.modal .modal-content .modal-footer a.button,
.modal .modal-content .modal-footer a.btn {
  width: 100%;
  margin: 8px 0 0 0;
}
@media only screen and (min-width: 768px) {
  .modal .modal-content .modal-footer input[type="submit"],
  .modal .modal-content .modal-footer input[type="button"],
  .modal .modal-content .modal-footer button,
  .modal .modal-content .modal-footer .button .btn,
  .modal .modal-content .modal-footer a.button,
  .modal .modal-content .modal-footer a.btn {
    width: auto;
    min-width: 172px;
    margin: 0 8px;
  }
}
.modal .modal-dialog {
  display: inline-block;
  text-align: left;
  vertical-align: middle;
}
.modal:before {
  display: inline-block;
  vertical-align: middle;
  content: "";
  height: 100%;
}
@media only screen and (max-width: 767px) {
  .modal.in .modal-dialog {
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    top: 50%;
    position: absolute;
  }
}
@media only screen and (min-width: 768px) {
  .modal {
    text-align: center;
  }
  .modal .modal-content {
    padding: 24px;
  }
  .modal .modal-content .modal-header {
    padding: 0 0 24px 0;
  }
  .modal .modal-content .modal-body {
    height: auto;
  }
  .modal .modal-content .modal-footer {
    padding: 24px 0 0 0;
  }
  .modal .modal-dialog {
    display: inline-block;
    text-align: left;
    vertical-align: middle;
  }
  .modal:before {
    display: inline-block;
    vertical-align: middle;
    content: "";
    height: 100%;
  }
}
.modal-backdrop.in {
  opacity: 0.7;
}
.bg-white {
  background: #FFF;
}
.bg-yellow {
  background: #ffd204;
}
.bg-black {
  background: #000;
}
.bg-greyExtraLight {
  background: #f4f4f4;
}
.bg-greyDark {
  background: #171717;
}
.shadow {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05), 0 4px 8px rgba(0, 0, 0, 0.05), 0 8px 16px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.shadow:hover {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 4px 8px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.16);
}
.noTextShadow {
  text-shadow: none;
}
.grid-isotope {
  width: 100%;
}
.tile {
  margin: 0 0 24px 0;
  color: #171717;
}
.tile .outerWrapper {
  width: 100%;
  float: left;
  height: auto;
  position: relative;
  overflow: hidden;
  background: #FFF;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-behavior: url(/ie/PIE.php);
}
.tile .imageWrapper {
  width: 100%;
  height: 0;
  float: left;
  padding-bottom: 59.782%;
  position: relative;
  overflow: hidden;
  margin: 0 0 24px 0;
  -webkit-border-radius: 8px 8px 0 0;
  -moz-border-radius: 8px 8px 0 0;
  border-radius: 8px 8px 0 0;
}
.tile .imageWrapper .image {
  width: 100%;
  height: 100%;
  position: absolute;
  background-size: cover !important;
  background-position: center !important;
  z-index: 1;
  overflow: hidden;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.tile .textWrapper {
  width: 100%;
  padding: 16px;
}
.tile .title {
  margin-bottom: 16px;
}
.tile:hover {
  color: #171717;
}
.tile:hover .imageWrapper .image {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -o-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}
.tile.tile-blog .imageWrapper {
  padding-bottom: 59.782%;
}
.tile.tile-blog .category {
  margin-bottom: 16px;
}
.tile.tile-blog .date {
  font-size: 13px;
}
.tile.tile-blog .title {
  min-height: 52px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tile.tile-blog .excerpt {
  min-height: 60px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tile.tile-food {
  -webkit-transition: margin-top 0.1s linear 0s;
  -moz-transition: margin-top 0.1s linear 0s;
  -o-transition: margin-top 0.1s linear 0s;
  transition: margin-top 0.1s linear 0s;
}
.tile.tile-food .imageWrapper {
  padding-bottom: 54.425%;
}
.tile.tile-food .category {
  margin-bottom: 16px;
}
.tile.tile-food .excerpt {
  min-height: 72px;
}
.tile.tile-food a.btnFillings {
  color: #171717;
  text-decoration: none;
  padding-right: 24px;
  position: relative;
}
.tile.tile-food a.btnFillings:before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url(../img/icon-chevron-down-black.svg);
  background-size: cover !important;
  background-position: center !important;
  position: absolute;
  top: 50%;
  right: 0;
  transform-origin: 50% 50%;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.tile.tile-food .content-fillings {
  width: 100%;
  overflow: hidden;
  max-height: 0;
}
.tile.tile-food.open a.btnFillings:before {
  -webkit-transform: translate(0, -50%) rotate(180deg);
  -moz-transform: translate(0, -50%) rotate(180deg);
  -o-transform: translate(0, -50%) rotate(180deg);
  -ms-transform: translate(0, -50%) rotate(180deg);
  transform: translate(0, -50%) rotate(180deg);
}
.tile.tile-food.open .content-fillings {
  max-height: 500px;
}
section.panel-content_testimonials .col-text {
  padding-top: 24px;
}
@media only screen and (min-width: 768px) {
  section.panel-content_testimonials .col-text {
    padding-top: 0;
  }
}
section.panel-content_testimonials .swiper-pagination {
  position: relative;
  bottom: 0;
  margin-top: 24px;
}
section.panel-content_two_column .col-text {
  padding-top: 24px;
}
@media only screen and (min-width: 768px) {
  section.panel-content_two_column .col-text {
    padding-top: 0;
  }
}
section.panel-banner-two-column .lockup {
  max-width: 220px;
}
@media only screen and (min-width: 768px) {
  section.panel-banner-two-column .lockup {
    max-width: 274px;
  }
}
@media only screen and (max-width: 767px) {
  section.panel-banner-background-text .contentWrapper {
    padding-top: 0;
  }
}
section.panel-content_three_column img {
  width: 48%;
  height: auto;
  margin: 0 auto;
}
section.panel-content_six_column img {
  margin: 0 auto;
}
section.panel-cta-subscribe .logo svg {
  height: 32px;
  width: auto;
}
section.panel-cta-subscribe label {
  display: none !important;
}
section.panel-cta-subscribe .btnClear {
  display: none !important;
}
section.panel-cta-subscribe input[type="text"],
section.panel-cta-subscribe input[type="email"] {
  border: solid 2px #ffd204;
  background: none;
  color: #FFF;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
section.panel-cta-subscribe input[type="text"]:hover,
section.panel-cta-subscribe input[type="email"]:hover {
  border: solid 2px #ffeca9;
}
section.panel-cta-subscribe input[type="text"]:focus,
section.panel-cta-subscribe input[type="email"]:focus {
  border: solid 2px #ffeca9;
}
section.panel-cta-subscribe .gform_wrapper {
  position: relative;
}
section.panel-cta-subscribe .gform_footer {
  width: 44px;
  height: 44px;
  position: absolute;
  top: 0;
  right: 0;
  margin: 0 !important;
  padding: 0 !important;
}
section.panel-cta-subscribe .gform_footer input[type="submit"] {
  width: 32px;
  height: 32px;
  min-height: 0;
  min-width: 0;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  background: url(../img/icon-arrow-right-yellow.svg) !important;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  line-height: 100px !important;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
section.panel-cta-subscribe .gform_footer input[type="submit"]:focus {
  background: url(../img/icon-arrow-right-white.svg) !important;
}
section.panel-cta-subscribe ::-webkit-input-placeholder {
  /* WebKit browsers */
  opacity: 1;
  font-weight: 400;
  font-style: italic;
  color: #acacac;
}
section.panel-cta-subscribe :-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  opacity: 1;
  font-weight: 400;
  font-style: italic;
  color: #acacac;
}
section.panel-cta-subscribe ::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  opacity: 1;
  font-weight: 400;
  font-style: italic;
  color: #acacac;
}
section.panel-cta-subscribe :-ms-input-placeholder {
  /* Internet Explorer 10+ */
  opacity: 1;
  font-weight: 400;
  color: #acacac;
}
section.panel-cta-subscribe .gform_confirmation_message {
  color: #208925;
  font-weight: 600;
}
@media only screen and (min-width: 768px) {
  section.panel-cta-subscribe .logo svg {
    height: 40px;
  }
  section.panel-cta-subscribe p {
    margin-bottom: 0;
  }
}
section.panel-cta-app .image-download img {
  max-height: 50px;
  margin-right: 16px;
}
@media only screen and (min-width: 768px) {
  section.panel-cta-app .image-download img {
    max-height: 33px;
  }
}
@media only screen and (min-width: 992px) {
  section.panel-cta-app .image-download img {
    max-height: 43px;
  }
}
@media only screen and (min-width: 1200px) {
  section.panel-cta-app .image-download img {
    max-height: 53px;
  }
}
@media only screen and (max-width: 767px) {
  section.panel-cta-app p.title-brand {
    margin-bottom: 12px;
  }
}
@media only screen and (min-width: 768px) {
  section.panel-cta-app p {
    margin-bottom: 0;
  }
}
section.panel-cta-app .col-app-links p {
  display: inline;
  float: left;
}
img.size-full {
  width: auto;
  height: auto;
  max-width: 100%;
}
img.alignleft {
  float: left;
  margin-right: 24px;
  margin-bottom: 24px;
}
@media only screen and (max-width: 767px) {
  img.alignleft {
    max-width: 50%;
  }
}
img.alignright {
  float: right;
  margin-left: 24px;
  margin-bottom: 24px;
}
@media only screen and (max-width: 767px) {
  img.alignright {
    max-width: 50%;
    height: auto;
  }
}
img.aligncenter {
  margin: 0 auto 24px auto;
}
.wp-caption img {
  margin-bottom: 0;
}
.wp-caption .wp-caption-text {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.25px;
  font-weight: 600;
  margin-top: 16px;
  color: #646464;
}
@media only screen and (max-width: 767px) {
  .blogLayout {
    display: flex;
    flex-direction: column;
  }
}
.searchBlogWrapper hr.top {
  margin-bottom: 8px;
}
.searchBlogWrapper hr.bottom {
  margin-top: 8px;
}
.searchBlogWrapper .searchFormBlog input[type="text"] {
  padding-right: 48px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
}
.searchBlogWrapper .searchFormBlog .btn {
  padding: 0;
  min-width: 0;
  width: 42px;
  height: 36px;
  line-height: 36px;
  position: absolute;
  right: 4px;
  top: 4px;
  font-size: 18px;
  min-height: 0;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.searchBlogWrapper .tabs {
  text-align: left;
  margin-bottom: 12px;
  margin-top: 8px;
}
@media only screen and (max-width: 767px) {
  .searchBlogWrapper .tabs {
    white-space: normal;
  }
  .searchBlogWrapper .tabs li {
    float: left;
    margin-bottom: 8px;
  }
}
@media only screen and (min-width: 768px) {
  .searchBlogWrapper .tabs {
    text-align: right;
  }
}
.searchBlogWrapper .blogFilters {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  -o-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.searchBlogWrapper .blogFilterToggle {
  display: inline-block;
  padding-right: 32px;
  position: relative;
  cursor: pointer;
  line-height: 44px;
}
.searchBlogWrapper .blogFilterToggle:before {
  content: "";
  width: 24px;
  height: 24px;
  background: url(../img/icon-chevron-down-black.svg);
  background-size: cover !important;
  text-align: center;
  position: absolute;
  right: 0;
  top: 50%;
  transform-origin: 50% 50%;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
@media only screen and (min-width: 768px) {
  .searchBlogWrapper .blogFilterToggle {
    float: right;
  }
}
.searchBlogWrapper.open .blogFilterToggle:before {
  -webkit-transform: translate(0, -50%) rotate(180deg);
  -moz-transform: translate(0, -50%) rotate(180deg);
  -o-transform: translate(0, -50%) rotate(180deg);
  -ms-transform: translate(0, -50%) rotate(180deg);
  transform: translate(0, -50%) rotate(180deg);
}
.searchBlogWrapper.open .blogFilters {
  max-height: 1000px;
}
@media only screen and (max-width: 767px) {
  .swiperRelatedStories .tile-blog.animated {
    opacity: 1 !important;
  }
}
.addtoany_shortcode a {
  display: inline-block;
  margin: 0 8px;
}
section.panel-content_gallery .col-image {
  margin-bottom: 16px;
}
@media only screen and (min-width: 768px) {
  section.panel-content_gallery .col-image {
    margin-bottom: 24px;
  }
}
section.panel-content_gallery .col-image .imageWrapper {
  width: 100%;
  height: 0;
  float: left;
  padding-bottom: 42.25%;
  position: relative;
  overflow: hidden;
}
section.panel-content_gallery .col-image .imageWrapper .image {
  width: 100%;
  height: 100%;
  position: absolute;
  background-size: cover !important;
  background-position: center !important;
  z-index: 1;
  overflow: hidden;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
section.panel-content_gallery .col-image .imageWrapper:hover .image {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -o-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}
@media only screen and (max-width: 767px) {
  section.panel-content_timeline {
    padding: 44px 0 0 0;
  }
}
section.panel-content_timeline .swiper-timeline {
  padding-left: 44px;
}
@media only screen and (min-width: 768px) {
  section.panel-content_timeline .swiper-timeline {
    padding-left: 8px;
  }
}
@media only screen and (min-width: 992px) {
  section.panel-content_timeline .swiper-timeline {
    padding-left: calc(((100vw - 1024px)/2) + 24px);
  }
}
@media only screen and (min-width: 1200px) {
  section.panel-content_timeline .swiper-timeline {
    padding-left: calc(((100vw - 1216px)/2) + 24px);
  }
  section.panel-content_timeline .swiper-timeline .swiper-slide {
    width: 292px !important;
  }
}
section.panel-content_timeline .swiper-timeline .swiper-slide {
  display: flex;
  height: auto;
}
section.panel-content_timeline .swiper-timeline .swiper-slide:first-of-type .tile-timeline .lineMask,
section.panel-content_timeline .swiper-timeline .swiper-slide:last-of-type .tile-timeline .lineMask {
  display: block;
  width: 50%;
  height: 4px;
  background: #f4f4f4;
  position: absolute;
  bottom: -38px;
  left: 0;
  z-index: 1;
}
section.panel-content_timeline .swiper-timeline .swiper-slide:first-of-type.yellow .tile-timeline .lineMask,
section.panel-content_timeline .swiper-timeline .swiper-slide:last-of-type.yellow .tile-timeline .lineMask {
  background: #ffd204;
}
section.panel-content_timeline .swiper-timeline .swiper-slide:first-of-type.dark .tile-timeline .lineMask,
section.panel-content_timeline .swiper-timeline .swiper-slide:last-of-type.dark .tile-timeline .lineMask {
  background: #171717;
}
section.panel-content_timeline .swiper-timeline .swiper-slide:first-of-type.white .tile-timeline .lineMask,
section.panel-content_timeline .swiper-timeline .swiper-slide:last-of-type.white .tile-timeline .lineMask {
  background: #FFF;
}
@media only screen and (min-width: 1200px) {
  section.panel-content_timeline .swiper-timeline .swiper-slide:nth-last-of-type(2) .tile-timeline .lineMask {
    display: block;
    width: 50%;
    height: 4px;
    background: #f4f4f4;
    position: absolute;
    bottom: -38px;
    left: 0;
    z-index: 1;
  }
  section.panel-content_timeline .swiper-timeline .swiper-slide:nth-last-of-type(2).yellow .tile-timeline .lineMask {
    background: #ffd204;
  }
}
section.panel-content_timeline .swiper-timeline .swiper-slide:last-of-type .tile.tile-timeline-icon .lineMask {
  left: auto;
  right: 0;
}
@media only screen and (min-width: 1200px) {
  section.panel-content_timeline .swiper-timeline .swiper-slide:nth-last-of-type(2) .tile.tile-timeline .lineMask {
    display: block;
    width: 50%;
    height: 4px;
    background: #f4f4f4;
    position: absolute;
    bottom: -38px;
    left: 0;
    z-index: 1;
    left: auto;
    right: 0;
  }
  section.panel-content_timeline .swiper-timeline .swiper-slide:nth-last-of-type(2).yellow .tile.tile-timeline .lineMask {
    background: #ffd204;
  }
}
@media only screen and (min-width: 992px) {
  section.panel-content_timeline .swiper-timeline .swiper-button-next {
    right: calc(((100vw - 1024px)/2) - 24px);
    margin-top: -50px;
  }
  section.panel-content_timeline .swiper-timeline .swiper-button-prev {
    left: calc(((100vw - 1024px)/2) - 24px);
    margin-top: -50px;
  }
}
@media only screen and (min-width: 1200px) {
  section.panel-content_timeline .swiper-timeline .swiper-button-next {
    right: calc(((100vw - 1216px)/2) - 24px);
  }
  section.panel-content_timeline .swiper-timeline .swiper-button-prev {
    left: calc(((100vw - 1216px)/2) - 24px);
  }
}
@media only screen and (min-width: 1300px) {
  section.panel-content_timeline .swiper-timeline .swiper-button-next {
    right: calc(((100vw - 1216px)/2) - 48px);
  }
  section.panel-content_timeline .swiper-timeline .swiper-button-prev {
    left: calc(((100vw - 1216px)/2) - 48px);
  }
}
.tile.tile-timeline {
  z-index: 2;
  display: flex;
  margin-bottom: 100px;
}
@media only screen and (max-width: 767px) {
  .tile.tile-timeline {
    margin-bottom: 80px;
  }
}
.tile.tile-timeline .outerWrapper {
  background: #FFF;
  z-index: 2;
  min-height: 300px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05), 0 4px 8px rgba(0, 0, 0, 0.05), 0 8px 16px rgba(0, 0, 0, 0.05) !important;
}
.tile.tile-timeline .textWrapper {
  float: left;
}
.tile.tile-timeline .imageWrapper {
  padding-bottom: 66.66667%;
  margin-bottom: 0;
}
.tile.tile-timeline .date {
  position: absolute;
  left: 50%;
  bottom: -72px;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.tile.tile-timeline .icon {
  width: 44px;
  height: auto;
}
.tile.tile-timeline .step {
  width: 44px;
  height: 44px;
  line-height: 44px;
  background: #ffd204;
  position: relative;
  margin-bottom: 24px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.tile.tile-timeline .step h4 {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.tile.tile-timeline .triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 20px;
  border-color: #FFF transparent transparent transparent;
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: -20px;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.tile.tile-timeline .triangleShadow {
  width: 40px;
  height: 40px;
  display: block;
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: -12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05), 0 4px 8px rgba(0, 0, 0, 0.05), 0 8px 16px rgba(0, 0, 0, 0.05);
  -webkit-transform: translate(-50%, 0) rotate(-45deg);
  -moz-transform: translate(-50%, 0) rotate(-45deg);
  -o-transform: translate(-50%, 0) rotate(-45deg);
  -ms-transform: translate(-50%, 0) rotate(-45deg);
  transform: translate(-50%, 0) rotate(-45deg);
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.tile.tile-timeline .circle {
  display: block;
  width: 16px;
  height: 16px;
  background: #171717;
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: -44px;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.tile.tile-timeline .line {
  display: block;
  width: 100%;
  height: 2px;
  background: #171717;
  position: absolute;
  left: 0;
  bottom: -37px;
  z-index: 1;
}
.tile.tile-timeline-icon .outerWrapper {
  border-top: solid 8px #ffd204;
}
.tile.tile-timeline-image .outerWrapper {
  display: flex;
  flex-direction: column;
  flex-grow: 1  ;
}
.tile.tile-timeline-image .textWrapper {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.tile.tile-timeline-image .textWrapper .footnote {
  flex: 1;
}
.tile.tile-timeline-image .textWrapper .footnote {
  display: flex;
  align-items: flex-end;
}
section.panel-ingredients {
  overflow: hidden;
}
section.panel-ingredients .swiper-ingredients {
  padding: 12px 0;
}
section.panel-ingredients .swiper-ingredients .swiper-wrapper {
  -webkit-transition-timing-function: linear!important;
  -o-transition-timing-function: linear!important;
  transition-timing-function: linear!important;
}
section.panel-ingredients .swiper-ingredients .swiper-slide {
  width: 172px !important;
}
.tile-ingredient {
  width: 172px;
  height: 184px;
  display: block;
  margin: 0;
  position: relative;
  float: left;
  text-align: center;
  color: #171717;
  text-decoration: none !important;
}
.tile-ingredient .contentWrapper {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.tile-ingredient .image {
  width: 122px;
  height: 122px;
  display: flex;
  margin: 0 auto;
  flex: 1;
}
.tile-ingredient .image img {
  width: auto;
  height: auto;
  max-width: 122px;
  max-height: 122px;
}
.tile-ingredient .title {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex: 1;
  padding: 0 16px 16px 16px;
}
.tile-ingredient .background {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  z-index: 1;
  background: #FFF;
  opacity: 0;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.tile-ingredient:hover {
  color: #171717;
}
.tile-ingredient:hover .background {
  opacity: 1;
}
@media only screen and (min-width: 768px) {
  .modal-ingredients .modal-dialog {
    width: 760px;
  }
}
.tile.tile-faq .outerWrapper {
  height: 100%;
}
.tile.tile-faq .icon {
  width: 44px;
  height: auto;
  margin-right: 16px;
}
.tile.tile-faq .title {
  display: flex;
  align-items: flex-start;
  flex-grow: 1;
  padding-top: 8px;
}
.tile.tile-faq a {
  color: #171717;
  text-decoration: none;
}
.tile.tile-four-column-image .outerWrapper {
  height: 100%;
}
.tile-visual-cta {
  margin: 0 0 24px 0;
}
.tile-visual-cta .textWrapper {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  padding: 16px;
  position: absolute;
  z-index: 2;
  align-items: center;
  justify-content: center;
}
.tile-visual-cta .imageWrapper {
  width: 100%;
  height: 0;
  float: left;
  padding: 0 0 70.9%;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.tile-visual-cta .imageWrapper .image {
  width: 100%;
  height: 100%;
  position: absolute;
  background-size: cover !important;
  background-position: center !important;
  z-index: 1;
  overflow: hidden;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.tile-visual-cta .imageWrapper .overlay {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0.4;
  z-index: 2;
  background: #000;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.tile-visual-cta .imageWrapper .overlay.dark {
  opacity: 0.4;
}
.tile-visual-cta .imageWrapper .overlay.light {
  opacity: 0.2;
}
.tile-visual-cta .imageWrapper .overlay.none {
  opacity: 0;
}
.tile-visual-cta:hover .imageWrapper .image {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -o-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}
.tile.tile-value .imageWrapper {
  padding-bottom: 83%;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.tile.tile-value .outerWrapper {
  height: 100%;
  border-top: solid 8px #ffd204;
}
@media only screen and (min-width: 768px) {
  .tile.tile-value .imageWrapper {
    width: 50%;
    position: absolute;
    top: 0;
    bottom: 0;
    height: auto;
    padding: 0;
    margin: 0;
    -webkit-border-radius: 0 0 0 8px;
    -moz-border-radius: 0 0 0 8px;
    border-radius: 0 0 0 8px;
  }
  .tile.tile-value .textWrapper {
    width: 50%;
    float: right;
  }
  .tile.tile-value .outerWrapper {
    min-height: 225px;
  }
}
section.panel-franchises .swiper-button-next,
section.panel-franchises .swiper-button-prev {
  display: none;
}
@media only screen and (min-width: 1260px) {
  section.panel-franchises .swiper-button-next {
    display: block;
    right: calc(((100vw - 1216px)/2) - 24px);
  }
  section.panel-franchises .swiper-button-prev {
    display: block;
    left: calc(((100vw - 1216px)/2) - 24px);
  }
}
section.panel-franchises .swiper-pagination {
  position: relative;
  bottom: 0;
  margin-top: 8px;
}
/** Locations **/
@media only screen and (max-width: 767px) {
  .panel-banner-locations .container,
  .panel-banner-search .container {
    width: 100%;
  }
  .panel-banner-locations .locationButtons .btn,
  .panel-banner-search .locationButtons .btn {
    width: 100%;
    max-width: 256px;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
.accordion-locations {
  background: #FFF;
  border-left: solid 1px #e0e0e0;
  border-right: solid 1px #e0e0e0;
}
.accordion-locations .item .title {
  background: #f4f4f4;
  padding: 24px 42px 24px 16px;
}
.accordion-locations .item .title:before {
  right: 16px;
}
.accordion-locations .coming-soon {
  background: #FFF;
  padding: 36px 24px;
  border-bottom: solid 1px #e0e0e0;
}
.accordion-locations .location {
  width: 100%;
  display: block;
  padding: 16px;
  border-top: solid 1px #e0e0e0;
}
.accordion-locations .location p {
  margin-bottom: 4px;
}
.accordion-locations .location .row {
  display: flex;
}
.accordion-locations .location .moreInfoLink-data {
  display: inline-block;
  text-decoration: none !important;
}
.accordion-locations .location .moreInfoLink-data:before {
  display: none !important;
}
.accordion-locations .location .moreInfo {
  display: flex;
  color: #171717;
  text-decoration: none !important;
}
.accordion-locations .location .moreInfo:before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  background: url(../img/icon-info.svg);
  background-size: cover;
  margin-right: 6px;
}
.accordion-locations .location .moreInfo:focus {
  color: #646464;
}
.accordion-locations .location .moreInfo:focus:before {
  background: url(../img/icon-info-grey.svg);
}
.accordion-locations .location .col-right {
  display: flex;
  flex-direction: column;
}
.accordion-locations .location .col-right div {
  flex: 1;
}
.accordion-locations .location .col-right div.cta {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.accordion-locations .location .col-right div.cta .btn {
  min-width: 0;
}
@media only screen and (min-width: 768px) {
  .modal-locations .modal-dialog {
    width: 760px;
  }
}
.modal-locations h5 {
  margin-bottom: 8px;
}
.modal-locations .table-services tr td {
  vertical-align: bottom;
  padding: 2px 8px 2px 0;
}
.modal-locations .table-services img {
  width: 24px;
  height: auto;
}
.modal-locations .table-hours tr td {
  vertical-align: middle;
  padding: 2px 8px 2px 0;
}
.modal-locations .map {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-bottom: 52.9%;
}
.modal-locations .map a[href^="http://maps.google.com/maps"] {
  display: none !important;
}
.modal-locations .map a[href^="https://maps.google.com/maps"] {
  display: none !important;
}
.modal-locations .gmnoprint a,
.modal-locations .gmnoprint span,
.modal-locations .gm-style-cc {
  display: none;
}
.modal-locations .gmnoprint div {
  background: none !important;
}
@media only screen and (max-width: 767px) {
  .modal-locations .modal-dialog {
    margin: 0;
    height: 100%;
    background: #FFF;
  }
  .modal-locations .modal-content {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
  }
}
.locationSearchResults {
  width: 100%;
  position: relative;
}
.locationSearchResults .innerSearchWrapper {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  background: #FFF;
  overflow: hidden;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
}
.locationSearchResults .autocomplete-restaurants,
.locationSearchResults .pac-container {
  left: 0 !important;
  top: 0 !important;
  position: relative !important;
}
.pac-container {
  width: 100% !important;
  box-shadow: none;
  font-family: 'Montserrat', sans-serif;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.pac-container:after {
  display: none !important;
}
.pac-container .pac-item {
  padding: 16px;
  border-bottom: solid 1px #e0e0e0;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.pac-container .pac-item:last-child {
  border-bottom: none;
}
.pac-container .pac-item:hover {
  background: rgba(255, 236, 169, 0.3);
}
.pac-container .pac-icon {
  width: 36px;
  height: 36px;
  background: url(../img/icon-location-generic.svg);
  background-size: cover !important;
  margin-right: 16px;
  float: left;
}
.pac-container span {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  display: block;
  color: #171717;
  -webkit-font-smoothing: antialiased;
  line-height: 20px;
}
.pac-container span.pac-item-query {
  font-size: 14px;
  font-weight: 600;
  padding: 0;
}
.pac-container span.pac-matched {
  display: inline;
  font-weight: 600;
}
.ui-autocomplete li {
  padding: 16px;
  border-bottom: solid 1px #e0e0e0;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.ui-autocomplete li:last-child {
  border-bottom: none;
}
.ui-autocomplete li:hover {
  background: rgba(255, 236, 169, 0.3);
}
.ui-autocomplete.autocomplete-restaurants {
  max-width: 564px;
  text-align: left;
}
.ui-autocomplete.autocomplete-restaurants .col-left {
  padding-right: 8px;
  width: 100%;
  display: flex;
  align-items: center;
}
.ui-autocomplete.autocomplete-restaurants .col-right {
  padding-right: 8px;
  width: 100%;
  padding-left: 52px;
}
.ui-autocomplete.autocomplete-restaurants .col-full {
  padding-right: 8px;
  width: 100%;
  display: flex;
  align-items: center;
}
.ui-autocomplete.autocomplete-restaurants .icon {
  width: 36px;
  height: 36px;
  background: url(../img/icon-gyg.svg);
  background-size: cover !important;
  margin-right: 16px;
  flex: 0 0 36px;
}
@media only screen and (max-width: 767px) {
  .ui-autocomplete.autocomplete-restaurants {
    width: auto !important;
    right: 16px !important;
  }
}
@media only screen and (min-width: 768px) {
  .ui-autocomplete.autocomplete-restaurants li {
    display: flex;
  }
  .ui-autocomplete.autocomplete-restaurants .col-left {
    padding-right: 8px;
    display: flex;
    align-items: center;
    width: 50%;
  }
  .ui-autocomplete.autocomplete-restaurants .col-right {
    padding-right: 8px;
    padding-left: 0;
    width: 50%;
  }
  .ui-autocomplete.autocomplete-restaurants .col-full {
    padding-right: 8px;
    display: flex;
    align-items: center;
    width: 100%;
  }
}
.loadingOverlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 100;
}
.loadingOverlay .loading {
  display: inline-block;
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 1;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
ul.locationsCountrySelector {
  width: 100%;
  margin: 0;
  padding: 0;
  float: left;
  font-size: 14px;
}
ul.locationsCountrySelector li {
  width: 100%;
  padding: 0 48px 0 0;
  list-style: none;
  height: 36px;
  float: left;
  flex-direction: column;
  justify-content: center;
  display: flex;
}
@media only screen and (min-width: 768px) {
  ul.locationsCountrySelector li {
    width: auto;
  }
}
ul.locationsCountrySelector li:last-child {
  padding-right: 0;
}
ul.locationsCountrySelector li a {
  display: flex;
  color: #171717;
  text-decoration: none;
}
ul.locationsCountrySelector li a .country,
ul.locationsCountrySelector li a .text {
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.25px;
  display: inline-block;
  height: 24px;
  margin: 0;
  padding: 0 8px;
  font-family: 'Sinibold', sans-serif;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
}
ul.locationsCountrySelector li a .flag,
ul.locationsCountrySelector li a .icon {
  display: block;
  width: 36px;
  height: 24px;
  margin-right: 8px;
}
ul.locationsCountrySelector li a .flag img,
ul.locationsCountrySelector li a .icon img {
  width: 100%;
  height: auto;
  float: left;
}
ul.locationsCountrySelector li a .arrow {
  display: block;
  width: 24px;
  height: 24px;
  background: url(../img/icon-chevron-down-yellow.svg);
  background-size: cover !important;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
ul.locationsCountrySelector li a:hover span,
ul.locationsCountrySelector li a:focus span {
  background: #000;
}
ul.carouselTicker__list {
  margin: 0;
  padding: 12px 0;
}
ul.carouselTicker__list li.carouselTicker__item {
  float: left;
  list-style: none;
  margin: 0;
  padding: 0;
}
section.panel-content_table ul.tabs li a.btn-tab:not(.active) {
  background: none;
}
.table-heading {
  width: 100%;
  display: block;
  padding: 12px;
}
.tableWrapper {
  position: relative;
}
.tableWrapper:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 24px;
  height: 100%;
  z-index: 2;
  opacity: 0.1;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0), #000000);
}
@media only screen and (max-width: 767px) {
  .container-table-data {
    padding-right: 0;
  }
}
table.table-data {
  width: 100%;
}
table.table-data td,
table.table-data th {
  padding: 12px;
}
table.table-data thead {
  background: #ffd204;
}
table.table-data thead th {
  font-size: 14px;
  line-height: 21px;
  font-weight: 700;
  height: 56px;
}
table.table-data tbody tr td {
  border: solid 1px #e0e0e0;
  font-family: 'Sinibold', sans-serif;
  text-align: center;
  font-size: 26px;
  padding: 8px;
  height: 56px;
}
table.table-data tbody tr td:first-child {
  font-size: 14px;
  font-weight: 700;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
}
table.table-data tbody tr:nth-child(even) {
  background: #f4f4f4;
}
table.table-data tbody tr:nth-child(odd) {
  background: #FFF;
}
section.search-results .accordion-locations {
  border: none;
}
section.search-results .accordion-locations .location {
  border-top: none;
  border-bottom: solid 1px #e0e0e0;
}
@media only screen and (min-width: 768px) {
  section.search-results .tile-blog {
    width: 50% !important;
  }
}
section.search-results .searchType {
  width: 100%;
  float: left;
}
@media only screen and (max-width: 767px) {
  section.search-results .searchType.page > .row {
    margin-left: -16px;
    margin-right: -16px;
  }
}
section.search-results ul.menuSuggestedPages {
  margin: 10px 0 0 0;
  padding: 0;
  width: 100%;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 14px;
}
section.search-results ul.menuSuggestedPages li {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  border-bottom: solid 1px #e0e0e0;
}
section.search-results ul.menuSuggestedPages li a {
  display: block;
  padding: 12px;
  color: #171717;
  text-decoration: none;
  padding-left: 32px;
}
section.search-results ul.menuSuggestedPages li a:hover {
  background: rgba(255, 236, 169, 0.3);
}
.tile.tile-search-result-page {
  text-decoration: none;
  padding: 16px;
  margin: 0;
  border-bottom: solid 1px #e0e0e0;
}
@media only screen and (min-width: 768px) {
  .tile.tile-search-result-page {
    padding: 16px;
  }
}
.tile.tile-search-result-page .image {
  width: 100%;
  height: 0;
  padding-bottom: 68%;
  background-size: cover !important;
  background-position: center !important;
  background-color: #ffd204;
  position: relative;
}
.tile.tile-search-result-page .image .placeholder {
  height: 90%;
  width: auto;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.tile.tile-search-result-page:hover {
  background: rgba(255, 236, 169, 0.3);
}
.search-result {
  display: none;
}
.yxt-SearchBar {
  height: 44px;
}
.yxt-SearchBar .yxt-SearchBar-container {
  border: none;
  height: 44px;
  background: none;
  overflow: visible;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.yxt-SearchBar .yxt-SearchBar-input {
  background: #FFF;
}
.yxt-SearchBar .js-yext-submit {
  background: #ffd204;
  color: #000;
  text-shadow: 1px 1px 0 #FFF;
  text-decoration: none;
  text-transform: uppercase;
  border: none;
  outline: none;
  box-shadow: none !important;
  -webkit-appearance: none;
  padding: 0;
  min-width: 0;
  width: 96px;
  height: 36px;
  line-height: 36px;
  position: absolute;
  right: 4px;
  top: 4px;
  text-align: center;
  font-size: 18px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.yxt-SearchBar .js-yext-submit:hover {
  background: #FFE167;
  color: #171717;
}
.yxt-SearchBar .js-yext-submit:focus {
  background: #FFECA9;
  color: #171717;
  outline: none !important;
}
.yxt-SearchBar .js-yext-submit:before {
  content: "Search";
  width: 100%;
}
.yxt-SearchBar .js-yext-submit .Icon {
  display: none;
}
.yxt-SearchBar .js-yxt-SearchBar-clear {
  width: 44px;
  height: 44px;
  line-height: 42px;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font-size: 18px;
  color: #e0e0e0;
  position: absolute;
  text-align: center;
  top: 0;
  right: 100px;
  cursor: pointer;
}
.yxt-SearchBar .js-yxt-SearchBar-clear .Icon--close {
  content: "";
  display: block;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  position: absolute;
  background: url(../img/icon-close-white.svg);
  background-size: 16px auto;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #acacac;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.yxt-SearchBar .js-yxt-SearchBar-clear .Icon--close svg {
  display: none;
}
.yxt-SearchBar .sr-only {
  clip: auto;
  line-height: 500px;
}
.yxt-SearchBar .yxt-SearchBar-autocomplete {
  margin-top: 14px;
  position: fixed;
  left: 0;
  right: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05), 0 4px 8px rgba(0, 0, 0, 0.05), 0 8px 16px rgba(0, 0, 0, 0.05);
}
.yxt-SearchBar .yxt-SearchBar-autocomplete .yxt-AutoComplete {
  overflow: visible;
  padding: 14px 40px 24px 0;
  margin: 0 auto;
  max-width: 1176px;
}
.yxt-SearchBar .yxt-SearchBar-autocomplete .yxt-AutoComplete:before {
  display: none;
}
@media only screen and (min-width: 768px) {
  .yxt-SearchBar .yxt-SearchBar-autocomplete .yxt-AutoComplete {
    padding: 14px 48px 24px 0;
  }
}
@media only screen and (min-width: 1024px) {
  .yxt-SearchBar .yxt-SearchBar-autocomplete .yxt-AutoComplete {
    padding: 14px 48px 24px 0;
  }
}
@media only screen and (min-width: 1200px) {
  .yxt-SearchBar .yxt-SearchBar-autocomplete .yxt-AutoComplete {
    padding: 14px 48px 24px 156px;
  }
}
.yxt-SearchBar .yxt-SearchBar-autocomplete ul li {
  padding-left: 44px;
  border-bottom: solid 1px #e0e0e0;
  height: 48px;
  display: flex;
  align-items: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.yxt-SearchBar .yxt-SearchBar-autocomplete ul li:hover {
  background: rgba(255, 236, 169, 0.3);
}
section.panel-jobs_iframe iframe.iframe-jobs {
  width: 100%;
  height: 75vh;
  border: none;
}
@media only screen and (min-width: 768px) {
  section.panel-jobs_iframe iframe.iframe-jobs {
    height: 1200px;
  }
}
section.panel-jobs_iframe .gfield_validation_message {
  display: none;
}
section.panel-jobs_iframe .gfield_error .gfield_validation_message {
  display: block;
}
@media only screen and (min-width: 768px) {
  section.panel-jobs_iframe .checkboxJobsWrapper {
    text-align: center;
  }
}
@media only screen and (min-width: 768px) {
  section.panel-jobs_iframe ul.gfield_checkbox .ginput_container {
    display: flex;
    justify-content: center;
  }
  section.panel-jobs_iframe ul.gfield_checkbox input[type=checkbox] {
    float: none;
  }
}
section.panel-jobs_iframe ul.gfield_checkbox .btnClear {
  display: none !important;
}
section.panel-jobs_iframe ul.gfield_checkbox label p {
  margin: 0;
}
/*# sourceMappingURL=compiled.css.map */