html, body {
  font-family: "Config Regular", serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: #323234;
  box-sizing: border-box;
}

.no-scroll {
  overflow: hidden;
}

*, *::before, *::after {
  padding: 0;
  margin: 0;
  box-sizing: inherit;
}

img {
  vertical-align: bottom;
}

.w-100 {
  width: 100%;
}

.w-50 {
  width: 50%;
}

@media (max-width: 768px) {
  .w-50-sm {
    width: 50%;
  }
}

.margin-0 {
  margin: 0;
}

.margin-top-0 {
  margin-top: 0;
}

.margin-top-md {
  margin-top: 20px;
}

.margin-top-lg {
  margin-top: 40px;
}

.margin-btm-0 {
  margin-bottom: 0;
}

.margin-btm-sm {
  margin-bottom: 10px;
}

.margin-btm-md {
  margin-bottom: 20px;
}

.margin-btm-lg {
  margin-bottom: 40px;
}

.pad-rgt-md {
  padding-right: 20px;
}

.pad-lft-md {
  padding-left: 20px;
}

.align-right {
  text-align: right;
}

.align-center {
  text-align: center;
}

.ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ellipsis .guest {
  display: block;
  width: 100px;
}

.wrapper {
  max-width: 1700px;
  margin: 0 auto;
}

.page-indent {
  margin-left: 20px;
  margin-right: 20px;
}
@media (min-width: 768px) {
  .page-indent {
    margin-left: 10%;
    margin-right: 10%;
  }
}

.body {
  margin-bottom: 20px;
}

.divider {
  border: 0;
  height: 1px;
  background: #eaeaea;
}

.img-zoom {
  overflow: hidden;
}
@media (min-width: 768px) {
  .img-zoom__cell-first {
    border-right: 10px solid transparent;
  }
  .img-zoom__cell-last {
    border-left: 10px solid transparent;
  }
}
.img-zoom img, .img-zoom > div {
  transition: all 0.2s ease-out;
}
.img-zoom img:hover, .img-zoom > div:hover {
  transform: scale(1.05);
}

@font-face {
  font-family: "Config Regular";
  src: url("fonts/config/Config-Regular.eot");
  src: url("fonts/config/Config-Regular.woff") format("woff"), url("fonts/config/Config-Regular.ttf") format("truetype"), url("fonts/config/Config-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Config Medium";
  src: url("fonts/config/Config-Medium.eot");
  src: url("fonts/config/Config-Medium.woff") format("woff"), url("fonts/config/Config-Medium.ttf") format("truetype"), url("fonts/config/Config-Medium") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Config SemiBold";
  src: url("fonts/config/Config-SemiBold.eot");
  src: url("fonts/config/Config-SemiBold.woff") format("woff"), url("fonts/config/Config-SemiBold.ttf") format("truetype"), url("fonts/config/Config-SemiBold") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Config Light";
  src: url("fonts/config/ConfigCondensed-Light.eot");
  src: url("fonts/config/ConfigCondensed-Light.woff") format("woff"), url("fonts/config/ConfigCondensed-Light.ttf") format("truetype"), url("fonts/config/ConfigCondensed-Light") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "FontAwesome";
  src: url("fonts/FontAwesome/fontawesome-webfont.eot?v=4.1.0");
  src: url("fonts/FontAwesome/fontawesome-webfont.eot?#iefix&v=4.1.0") format("embedded-opentype"), url("fonts/FontAwesome/fontawesome-webfont.woff?v=4.1.0") format("woff"), url("fonts/FontAwesome/fontawesome-webfont.ttf?v=4.1.0") format("truetype"), url("fonts/FontAwesome/fontawesome-webfont.svg?v=4.1.0#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal;
}
/*  Parent container*/
.row {
  display: flex;
}

.pos-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-wrap {
  flex-wrap: wrap;
}

.col {
  flex: 1 1 100%;
}

[class^=col] {
  min-width: 1px;
  /* IE11 hack */
}

.col-xs {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

.col-xs-1 {
  flex-basis: 8.333%;
}

.col-xs-2 {
  flex-basis: 16.667%;
}

.col-xs-3 {
  flex-basis: 25%;
}

.col-xs-4 {
  flex-basis: 33.33%;
}

.col-xs-5 {
  flex-basis: 41.667%;
}

.col-xs-6 {
  flex-basis: 50%;
}

.col-xs-7 {
  flex-basis: 58.333%;
}

.col-xs-8 {
  flex-basis: 66.6%;
}

.col-xs-9 {
  flex-basis: 75%;
}

.col-xs-10 {
  flex-basis: 83.333%;
}

.col-xs-11 {
  flex-basis: 91.667%;
}

.col-xs-12 {
  flex-basis: 100%;
}

@media all and (min-width: 576px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-sm-1 {
    flex-basis: 8.333%;
  }

  .col-sm-2 {
    flex-basis: 16.667%;
  }

  .col-sm-3 {
    flex-basis: 25%;
  }

  .col-sm-4 {
    flex-basis: 33.33%;
  }

  .col-sm-5 {
    flex-basis: 41.667%;
  }

  .col-sm-6 {
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    flex-basis: 58.333%;
  }

  .col-sm-8 {
    flex-basis: 66.6%;
  }

  .col-sm-9 {
    flex-basis: 75%;
  }

  .col-sm-10 {
    flex-basis: 83.333%;
  }

  .col-sm-11 {
    flex-basis: 91.667%;
  }

  .col-sm-12 {
    flex-basis: 100%;
  }
}
@media all and (min-width: 768px) {
  .col-md {
    flex-basis: auto;
    flex-grow: 0;
    max-width: 100%;
  }

  .col-md-1 {
    flex-basis: 8.333%;
  }

  .col-md-2 {
    flex-basis: 16.667%;
  }

  .col-md-3 {
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-md-4 {
    flex-basis: 33.33%;
    max-width: 33.33%;
  }

  .col-md-5 {
    flex-basis: 41.667%;
    max-width: 41.667%;
  }

  .col-md-6 {
    flex-basis: 50%;
    max-width: 50%;
    width: 50%;
  }

  .col-md-7 {
    flex-basis: 58.333%;
    max-width: 58.333%;
  }

  .col-md-8 {
    flex-basis: 66.6%;
  }

  .col-md-9 {
    flex-basis: 75%;
  }

  .col-md-10 {
    flex-basis: 83.333%;
  }

  .col-md-11 {
    flex-basis: 91.667%;
  }

  .col-md-12 {
    flex-basis: 100%;
  }
}
@media all and (min-width: 992px) {
  .col-lg-1 {
    flex-basis: 8.333%;
  }

  .col-lg-2 {
    flex-basis: 16.667%;
  }

  .col-lg-3 {
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    flex-basis: 33.33%;
  }

  .col-lg-5 {
    flex-basis: 41.667%;
  }

  .col-lg-6 {
    flex-basis: 50%;
  }

  .col-lg-7 {
    flex-basis: 58.333%;
  }

  .col-lg-8 {
    flex-basis: 66.6%;
  }

  .col-lg-9 {
    flex-basis: 75%;
  }

  .col-lg-10 {
    flex-basis: 83.333%;
  }

  .col-lg-11 {
    flex-basis: 91.667%;
  }

  .col-lg-12 {
    flex-basis: 100%;
  }
}
@media all and (min-width: 1700px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-xl-1 {
    flex-basis: 8.333%;
  }

  .col-xl-2 {
    flex-basis: 16.667%;
  }

  .col-xl-3 {
    flex-basis: 25%;
  }

  .col-xl-4 {
    flex-basis: 33.33%;
  }

  .col-xl-5 {
    flex-basis: 41.667%;
  }

  .col-xl-6 {
    flex-basis: 50%;
  }

  .col-xl-7 {
    flex-basis: 58.333%;
  }

  .col-xl-8 {
    flex-basis: 66.6%;
  }

  .col-xl-9 {
    flex-basis: 75%;
  }

  .col-xl-10 {
    flex-basis: 83.333%;
  }

  .col-xl-11 {
    flex-basis: 91.667%;
  }

  .col-xl-12 {
    flex-basis: 100%;
  }
}
.icon-badge {
  background: #000;
  color: #fcfcfd;
  border-radius: 50%;
  height: 70px;
  width: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-badge__icon {
  font-size: 1.5rem;
}

.page-title {
  font-family: "Config Light";
  font-size: 1.571rem;
  font-weight: 500;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .page-title {
    font-size: 2.143rem;
  }
}
.page-title--smaller {
  font-size: 1.375rem;
}

.sub-title {
  font-size: 1rem;
  font-weight: 600;
  color: #000;
  text-transform: uppercase;
}

.text-smaller {
  font-size: 14px;
}

.text-small {
  font-size: 12px;
}

.text-italic {
  font-style: italic;
}

.text-upper {
  text-transform: uppercase;
}

.text-capitalize {
  text-transform: capitalize;
}

.body-text .page-title {
  margin-bottom: 20px;
}
.body-text h2 {
  font-size: 1rem;
  font-weight: 600;
  color: #000;
  text-transform: uppercase;
  margin-bottom: 10px;
  margin-top: 20px;
  word-break: break-all;
}
.body-text p {
  margin-bottom: 20px;
}
.body-text ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

.mandatory {
  font-size: 12px;
}

.error {
  color: #e02020;
}
.error__border {
  border: 1px solid #e02020;
}

.btn {
  display: inline-block;
  line-height: 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  padding: 7px 12px 6px;
  height: 40px;
  text-transform: uppercase;
  cursor: pointer;
  background-color: #D1D1D1;
  border: 1px solid transparent;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.5s ease;
}
.btn:hover {
  background-color: #a4a4a8;
}

.btn--primary,
.btn--primary:visited {
  background-color: #ffbb4d;
  color: #323234;
}
.btn--primary:hover,
.btn--primary:visited:hover {
  background-color: #ff9d00;
}
.btn--primary:disabled,
.btn--primary:visited:disabled {
  background: #ccc;
  border-color: #ccc;
  color: #999;
}
.btn--primary:disabled:hover,
.btn--primary:visited:disabled:hover {
  background: #999;
  border-color: #999;
  color: #333;
}

.btn--secondary {
  color: #323234;
  background-color: #fcfcfd;
  border-color: #fcfcfd;
}
.btn--secondary:hover {
  background-color: #D1D1D1;
  border-color: #D1D1D1;
}
.btn--secondary:disabled {
  background: #ccc;
  border-color: #ccc;
  color: #999;
}
.btn--secondary:disabled:hover {
  background: #999;
  border-color: #999;
  color: #333;
}

.btn--light {
  background-color: transparent;
  border: 1px solid transparent;
}
.btn--light:hover {
  background-color: transparent;
  color: #7d7d82;
}

a.btn--primary {
  color: #323234 !important;
}

a.btn--secondary {
  color: #323234 !important;
}

.btn--no-text {
  max-width: 40px;
  min-width: 40px;
}
.btn--no-text span {
  display: none;
}

.card_display-intro {
  align-items: center;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .card_display-intro {
    margin-bottom: 0px;
  }
}
.card_display-intro__no-results-text {
  margin-top: 20px;
}

.card-holder {
  margin-left: -10px;
  margin-right: -10px;
}

.card {
  border: 1px solid #eaeaea;
  margin-bottom: 20px;
  margin: 0 10px 20px;
  padding: 20px;
  transition: box-shadow 0.3s ease-out, transform 0.3s ease-out, opacity 0.2s ease-out;
  transition-delay: 0.1s;
  box-shadow: rgba(45, 45, 45, 0.2) 0px 2px 2px, rgba(49, 49, 49, 0.09) 0px 4px 4px;
}
.card a {
  text-decoration: none;
  color: inherit;
}
.card__img {
  width: 100%;
  height: 200px;
  object-fit: contain;
}
.card .product-labels {
  display: flex;
  flex-wrap: wrap;
  margin: 10px 0 0;
  font-size: 0.857rem;
}
.card .product-labels li {
  padding: 3px 0;
  line-height: 1rem;
  text-transform: uppercase;
}
.card .product-labels__name {
  flex-basis: 70%;
}
.card .product-labels__price {
  flex-basis: 30%;
  text-align: right;
}
.card .product-labels__brand {
  flex-basis: 70%;
}
.card .product-labels__sku {
  flex-basis: 30%;
  text-align: right;
}
.card .product-labels__emphasis {
  font-weight: 600;
  font-size: 1.143rem;
  margin-bottom: 5px;
}

.card:hover {
  transform: translate(0, -4px);
  box-shadow: rgba(45, 45, 45, 0.09) 0px 2px 2px, rgba(49, 49, 49, 0.09) 0px 4px 4px, rgba(42, 42, 42, 0.09) 0px 8px 8px, rgba(32, 32, 32, 0.09) 0px 16px 16px, rgba(49, 49, 49, 0.09) 0px 32px 32px, rgba(35, 35, 35, 0.09) 0px 64px 64px;
}

.footer {
  overflow: hidden;
  position: relative;
}
.footer a:link, .footer a:visited {
  color: #fcfcfd;
}
.footer__wave {
  width: calc(100% + 8px);
  position: relative;
  left: -4px;
  top: 1px;
}
.footer__outer {
  background-color: #263133;
  padding-bottom: 40px;
}
.footer__inner {
  max-width: 1700px;
  margin: 0 auto;
}
.footer__body {
  color: #fcfcfd;
  padding-top: 20px;
  text-align: center;
}
@media (min-width: 768px) {
  .footer__body {
    text-align: left;
  }
}
@media (min-width: 768px) {
  .footer__cell-left {
    text-align: left;
  }
}
.footer__title {
  font-weight: 300;
  font-size: 0.875rem;
  text-transform: uppercase;
  line-height: 2.5rem;
}
.footer__social-media {
  padding: 0;
  margin: 0 auto;
  list-style: none;
  margin-bottom: 20px;
  justify-content: center;
}
@media (min-width: 768px) {
  .footer__social-media {
    padding-right: 20px;
    margin: 0;
    width: auto;
    justify-content: flex-start;
  }
}
.footer__social-media li {
  flex: 0 0 44px;
}
.footer__social-media li span {
  display: none;
}
.footer__social-media li a {
  display: block;
}
.footer__links {
  padding: 0;
  margin: 0;
  list-style: none;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .footer__links {
    padding-left: 20px;
  }
}
.footer__links li {
  display: block;
  line-height: 2.5rem;
}
.footer__links li a {
  display: block;
  text-decoration: none;
}
@media (min-width: 768px) {
  .footer__cell-right {
    text-align: right;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .footer__cell-right img[src$=".svg"] {
    width: 72px;
    height: 81px;
  }
}
.footer__cell-right img {
  width: 72px;
}
.footer li a:hover {
  color: #b0b0ca;
}

input[type=text] {
  height: 40px;
  border: 1px solid #D1D1D1;
  font-size: inherit;
  padding: 0 5px;
  width: 100%;
}

input[type=date] {
  -webkit-appearance: none;
  color: #95a5a6;
  font-family: "Open Sans", arial, helvetica, sans-serif;
  font-size: 14px;
  border: 1px solid #ccc;
  background: #fcfcfd;
  padding: 5px;
  height: 40px;
  width: 100%;
}

.form-label {
  display: inline-block;
}
.form-label--upper {
  text-transform: uppercase;
}
.form-label--error {
  color: #e02020;
}
.form-label__icon {
  font-size: inherit;
}

.checkbox {
  display: flex;
  align-items: center;
  background: url(../../images/icon-check-off.svg) no-repeat;
  background-size: 30px auto;
  min-height: 30px;
}
.checkbox .form-label {
  padding-left: 40px;
}
.checkbox.selected {
  background: url(../../images/icon-check-on.svg) no-repeat;
  background-size: 30px auto;
}
.checkbox input {
  display: none;
}
.checkbox--error {
  background: url(../../images/icon-check-off-error.svg) no-repeat;
  background-size: 30px auto;
}

textarea {
  width: 100%;
  font-size: inherit;
  font-family: "Open Sans", arial, helvetica, sans-serif;
  margin: 0;
  padding: 5px;
  border: 1px solid #D1D1D1;
}

.textarea__label {
  padding-bottom: 10px;
}

.select-custom-mask {
  border: 1px solid #D1D1D1;
  position: relative;
  height: 40px;
}
.select-custom-mask:before {
  display: flex;
  align-items: center;
  justify-content: center;
  content: "\f078";
  font-family: FontAwesome;
  position: absolute;
  right: 0;
  width: 40px;
  height: 100%;
}
.select-custom-mask select {
  opacity: 0;
  width: 100%;
  height: 100%;
}
.select-custom-mask label {
  position: absolute;
  pointer-events: none;
  line-height: 40px;
  padding-left: 10px;
}
.select-custom-mask--error {
  border: 1px solid #e02020;
}

.header--welcome {
  position: relative;
}
.header--welcome__inner {
  max-width: 1700px;
  margin: 0 auto;
  position: relative;
}
.header--welcome .title-holder {
  position: relative;
}
.header--welcome .title-holder--img {
  width: 100%;
  max-width: 400px;
  display: block;
  margin: -20px auto 0 auto;
}
@media (min-width: 768px) {
  .header--welcome .title-holder--img {
    margin: 0;
  }
}
@media (min-width: 1024px) {
  .header--welcome .title-holder--img {
    max-width: 600px;
  }
}
@media (min-width: 1700px) {
  .header--welcome .title-holder--img {
    padding-left: 50px;
  }
}
.header--welcome .title-holder .title {
  font-family: Config Light;
  font-weight: 400;
  font-size: 2.5rem;
  color: #000;
  line-height: 3rem;
  letter-spacing: 0.15rem;
  text-transform: uppercase;
  text-align: center;
  z-index: 1000;
  position: relative;
}
@media (min-width: 768px) {
  .header--welcome .title-holder .title {
    text-align: right;
    position: absolute;
    right: 0;
    top: 10%;
    margin-right: 100px;
  }
}
@media (min-width: 1024px) {
  .header--welcome .title-holder .title {
    top: 20%;
  }
}
@media (min-width: 1200px) {
  .header--welcome .title-holder .title {
    font-size: 4rem;
  }
}
@media (min-width: 1700px) {
  .header--welcome .title-holder .title {
    right: 50px;
  }
}
.header--welcome .title-holder .title span {
  display: block;
  font-size: 4rem;
  font-weight: 700;
  color: #c3002f;
  text-align: center;
}
@media (min-width: 768px) {
  .header--welcome .title-holder .title span {
    text-align: right;
    margin-right: -100px;
  }
}
@media (min-width: 1200px) {
  .header--welcome .title-holder .title span {
    top: 10%;
    font-size: 5.625rem;
    margin-top: 1.4rem;
  }
}
.header--welcome .title-holder .sub-line {
  text-align: center;
  font-weight: 300;
  line-height: 2rem;
  border-radius: 10px;
  margin-top: -20px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-size: 1.25rem;
}
@media (min-width: 768px) {
  .header--welcome .title-holder .sub-line {
    text-align: right;
    background: rgba(255, 255, 255, 0.7);
    position: absolute;
    right: 0;
    bottom: 20%;
    max-width: 55%;
  }
}
@media (min-width: 1024px) {
  .header--welcome .title-holder .sub-line {
    bottom: 30%;
  }
}
@media (min-width: 1200px) {
  .header--welcome .title-holder .sub-line {
    font-size: 1.625rem;
    bottom: 20%;
  }
}
@media (min-width: 1700px) {
  .header--welcome .title-holder .sub-line {
    right: 50px;
  }
}

.header {
  height: 30vh;
  position: relative;
}
@media (min-width: 768px) {
  .header {
    min-height: 200px;
    height: 50vh;
  }
}
.header__inner {
  max-width: 1700px;
  margin: 0 auto;
  position: relative;
  height: 100%;
  top: -30vh;
}
@media (min-width: 768px) {
  .header__inner {
    top: -50vh;
  }
}
.header::after {
  content: "";
  position: absolute;
  bottom: -2px;
  width: 100%;
  height: 100%;
  background: url(../../images/wave-aqua.svg) no-repeat;
  background-size: 102%;
  background-position: bottom;
}
@media (min-width: 1700px) {
  .header::after {
    background: none;
  }
}
.header .title-holder {
  text-shadow: 2px 2px rgba(0, 0, 0, 0.3);
}
@media (max-width: 767px) {
  .header .title-holder {
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-align: center;
  }
}
@media (min-width: 768px) {
  .header .title-holder {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 20px;
  }
}
.header .title-holder .title {
  font-family: "Config Light";
  font-weight: 400;
  font-size: 2rem;
  color: #fcfcfd;
  line-height: 3.2rem;
  letter-spacing: 0.15rem;
}
@media (max-width: 767px) {
  .header .title-holder .title {
    margin-top: -40px;
  }
}
.header .title-holder .title span {
  display: block;
  font-size: 4rem;
  font-weight: 500;
  text-transform: uppercase;
}

a {
  color: #000;
}
a:visited {
  color: #000;
}
a:hover {
  color: #000;
}
a:active, a:focus {
  color: #000;
}

.message {
  margin-bottom: 1rem;
  padding: 14px 10px;
  display: flex;
  align-items: center;
}
.message--success {
  color: #2bab6b;
  background: rgba(43, 171, 107, 0.1);
}
.message--info {
  color: #4a90e2;
  background: rgba(74, 144, 226, 0.1);
  border: none;
}
.message--error {
  color: #e02020;
  background: rgba(224, 32, 32, 0.1);
}
.message--small {
  padding-top: 5px;
  padding-bottom: 5px;
}
.message__text {
  font-size: 0.857em;
  margin-left: 10px;
  margin-bottom: 0;
}
.message__text strong {
  text-transform: uppercase;
  font-weight: 600;
}
.message__icon {
  font-size: 1.5rem;
}

.overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  top: -150vh;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  z-index: 4000;
}
.overlay__inner {
  width: 70%;
}
.overlay__header {
  margin-bottom: 10px;
}
.overlay__img-holder img {
  width: 100%;
}

.overlay--light {
  background: #fcfcfd;
}

.overlay--dark {
  background: rgba(0, 0, 0, 0.8);
}

.active {
  top: 0;
}

.modal {
  display: flex;
  flex-direction: column;
  background: #fcfcfd;
  width: 90%;
  max-width: 600px;
  padding: 20px;
  pointer-events: all;
  box-shadow: rgba(45, 45, 45, 0.3) 0px 2px 12px, rgba(49, 49, 49, 0.6) 5px 5px 12px;
}
.modal__autoWidth {
  max-width: 70%;
}
@media (min-width: 768px) {
  .modal {
    padding-bottom: 50px;
  }
}
.modal__header .btn--close, .modal__header .btn--close--parent {
  float: right;
}
.modal__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.modal__body .modal__text {
  font-size: 16px;
}

.button-holder {
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 767px) {
  .button-holder .btn {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .button-holder .btn--primary {
    width: 100%;
    max-width: 300px;
  }
}
@media (max-width: 767px) {
  .button-holder__modal {
    width: 80%;
  }
}
@media (min-width: 768px) {
  .button-holder__modal > div {
    padding: 0 5px;
  }
}
@media (min-width: 768px) {
  .button-holder__modal .btn {
    width: 100%;
  }
}

.load-icon {
  display: block;
}

.videoWrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  padding-top: 25px;
  height: 0;
  width: 100%;
}

.videoWrapper iframe,
.videoWrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.nav {
  background-color: #000;
}
.nav__inner {
  max-width: 1700px;
  margin: 0 auto;
}
.nav__logo-box {
  padding-left: 20px;
  padding-right: 20px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 992px) {
  .nav__menu_box {
    height: 60px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
}
@media (min-width: 992px) {
  .nav .btn--menu-toggle {
    display: none;
  }
}
.nav__menu {
  display: none;
  z-index: 2000;
}
@media (max-width: 992px) {
  .nav__menu {
    position: absolute;
    width: 100%;
    background: #fcfcfd;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.5);
  }
}
@media (min-width: 992px) {
  .nav__menu {
    padding-right: 20px;
    display: flex !important;
  }
}
.nav__menu li {
  flex: 1 1 100%;
  list-style: none;
}
@media (max-width: 992px) {
  .nav__menu li {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
  }
}
@media (min-width: 992px) {
  .nav__menu li {
    flex: 0 0 auto;
  }
}
.nav__menu li a {
  color: #fcfcfd;
  display: block;
  padding: 15px 20px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.875rem;
  transition: background-color 0.3s ease;
  color: #888;
}
@media (max-width: 992px) {
  .nav__menu li a {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .nav__menu li a:hover {
    background: #eee;
  }
}
@media (min-width: 992px) {
  .nav__menu li a {
    padding: 5px 10px;
    color: #fcfcfd;
  }
  .nav__menu li a:hover {
    color: #eee;
  }
}
.nav__back {
  background-color: #fcfcfd;
  text-decoration: none;
  line-height: 2.5rem;
  text-transform: uppercase;
  font-size: 0.875rem;
}
.nav__back a {
  text-decoration: none;
  display: block;
  padding-left: 20px;
}
.nav__back a:hover {
  text-decoration: underline;
}
.nav__back i {
  margin-right: 10px;
}

.price-table {
  border-bottom-color: red;
}
.price-table__bgrd {
  background: #D1D1D1;
}
.price-table div {
  padding: 10px;
  display: flex;
  justify-content: space-between;
}
.price-table div + div {
  border-top: 1px solid #fcfcfd;
}
.price-table__label {
  flex-basis: 80%;
}
.price-table__total-row {
  font-size: 1.143rem;
  font-weight: 600;
}

.slick-prev, .slick-next {
  z-index: 200;
  width: 50px;
  height: 100%;
  opacity: 0.5;
}

.slick-dotted.slick-slider {
  margin-bottom: 0;
  padding-bottom: 30px;
}

.slick-prev {
  left: 0;
}

.slick-next {
  right: 0px;
}
@media (min-width: 992px) {
  .slick-next {
    right: 15px;
  }
}

.slick-prev:before, .slick-next:before {
  font-size: 30px;
  color: #000;
}

.slick-prev:hover, .slick-next:hover {
  opacity: 1;
}

.slick-dots {
  bottom: -30px;
}

.header .your-class {
  height: 100%;
}
.header .slick-list {
  height: 100%;
}
.header .slick-slide img {
  width: 109%;
}
.header .slick-dotted.slick-slider {
  margin-bottom: 0;
  padding-bottom: 0;
}
.header .slick-dots {
  bottom: 20%;
  z-index: 2000;
}
@media (max-width: 767px) {
  .header .slick-dots {
    display: none !important;
  }
}
.header .slick-dots li {
  width: 30px;
  height: 30px;
}
.header .slick-dots li button {
  width: 30px;
  height: 30px;
}
.header .slick-dots li button::before {
  width: 30px;
  height: 30px;
  color: white;
  font-size: 19px;
}

.welcome-text-outer {
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
}
@media (min-width: 1024px) {
  .welcome-text-outer {
    margin-bottom: 70px;
  }
}
.welcome-text-outer:before {
  content: "";
  position: absolute;
  top: 0;
  background: #F5F7F5;
  width: 100%;
  height: 100%;
  z-index: -100;
}
@media (min-width: 1024px) {
  .welcome-text-outer:before {
    right: -50%;
  }
}

.welcome-text {
  background: #F5F7F5;
  padding: 40px 0 30px 0;
}
@media (min-width: 1024px) {
  .welcome-text {
    margin-left: 12%;
    border-radius: 10px;
    padding: 40px 40px 30px 40px;
  }
}
.welcome-text::first-letter {
  font-size: 300%;
  font-family: "Config Light";
  line-height: 0px;
  color: #000;
}
.welcome-text .first-line {
  color: #000;
  text-transform: uppercase;
}
.welcome-text p:not(:last-child) {
  margin-bottom: 10px;
}

.faq {
  border-bottom: 1px solid #e2e2e2;
}

.faq__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq__header .sub-title {
  margin-top: 20px;
}

.faq__body {
  display: none;
}

.job-list-header {
  align-items: center;
}

.job-list-items {
  margin-bottom: 20px;
}
.job-list-items li {
  list-style: none;
}
.job-list-items a {
  background-color: #F4F4F4;
  margin-bottom: 10px;
  padding: 10px 20px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.job-list-items a span {
  font-weight: 400;
  text-transform: initial;
  display: block;
}
@media (min-width: 576px) {
  .job-list-items a span {
    display: inline-block;
    padding-left: 10px;
  }
}
.job-list-items a:hover {
  background-color: #cecece;
}

.shortcuts {
  background-color: #f4f4f4;
  overflow: hidden;
  padding-top: 10px;
}
.shortcuts__inner {
  max-width: 1700px;
  margin: 0 auto;
}
.shortcuts__section {
  margin-left: -10px;
  margin-right: -10px;
}
.shortcuts__box {
  position: relative;
  height: 150px;
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
}
.shortcuts a {
  display: block;
  margin: 10px;
  text-decoration: none;
}
.shortcuts .page-title {
  margin-top: 10px;
  text-align: center;
}
.shortcuts__faq::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
}
.shortcuts__faq::after {
  content: "\f086";
  font-family: FontAwesome;
  font-size: 5rem;
  position: absolute;
  color: #fcfcfd;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

#shortcut-bg-img-1 {
  background-image: url(../../images/shortcut-1.jpg);
  background-position: 50% 40%;
}

#shortcut-bg-img-2 {
  background-image: url(../../images/shortcut-2.jpg);
}

#shortcut-bg-img-3 {
  background-image: url(../../images/shortcut-3.jpg);
  background-position: 50% 40%;
}

#shortcut-bg-img-4 {
  background-color: #000;
  background-image: url(../../images/25th_Email_banner_black_bg.png);
  background-size: contain;
}

.summary-panel {
  padding: 10px;
  background: #f5f5f5;
  overflow: hidden;
}
@media (min-width: 768px) {
  .summary-panel {
    margin-bottom: 20px;
  }
}

.summary {
  display: none;
}
.summary__row {
  display: flex;
}
.summary__row--header {
  background: #4b4b4e;
  color: #fcfcfd;
  display: none;
}
.summary__row--header .summary__list {
  font-size: 11px;
  font-weight: 400;
}
@media (min-width: 768px) {
  .summary__row--header {
    display: flex;
  }
}
.summary__row--body {
  background: #fcfcfd;
}
.summary__cell-left {
  flex-basis: 100px;
  max-width: 100px;
}
.summary__cell-right {
  flex-grow: 1;
}
.summary__list {
  margin: 0;
  padding: 10px 5px 10px 0;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  flex: 1;
  width: 100%;
}
.summary__list li {
  flex: 1 1 10%;
  white-space: nowrap;
  padding-right: 2px;
  /* cell width - padding 100px - 10px */
}
.summary__list li.item-gift {
  flex-grow: 0;
  max-width: 25px;
  flex-basis: 0;
  padding-right: 0;
}
@media (min-width: 768px) {
  .summary__list li.item-gift {
    flex-basis: 25px;
  }
}
.summary__list li.item-gift i {
  padding-right: 10px;
}
.summary__list li.item-photo img {
  max-width: 90px;
  width: 90px;
  padding-left: 5px;
}
.summary__list li.item-name {
  flex-grow: 4;
  flex-basis: 100%;
  order: -1;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 768px) {
  .summary__list li.item-name {
    flex-basis: 20%;
    order: 0;
  }
}
.summary__list li.item-date {
  overflow: hidden;
  text-overflow: ellipsis;
}
.summary__list li.item-quantity {
  text-align: center;
}
.summary__list li.item-size {
  text-align: center;
}
.summary__list li.item-color {
  text-align: center;
}
.summary__list li.item-price {
  padding-right: 10px;
}
@media (min-width: 768px) {
  .summary__list li.item-price {
    text-align: right;
  }
}
.summary__list li.item-delete {
  xflex-grow: 0;
  max-width: 50px;
  padding-right: 5px;
}
.summary__list li.item-edit {
  fxlex-grow: 0;
  max-width: 44px;
  text-align: right;
}
.summary__list li.item-date, .summary__list li.item-quantity, .summary__list li.item-size, .summary__list li.item-color {
  display: none;
}
@media (min-width: 768px) {
  .summary__list li.item-date, .summary__list li.item-quantity, .summary__list li.item-size, .summary__list li.item-color {
    display: block;
  }
}

.summary-header {
  padding: 10px 0;
  display: flex;
  align-items: center;
}
.summary-header__text {
  font-size: 0.857em;
  margin-left: 10px;
  margin-bottom: 0;
}
.summary-header__text strong {
  text-transform: uppercase;
  font-weight: 600;
  padding-left: 10px;
}
.summary-header__icon {
  font-size: 1.5rem;
}
.summary-header__icon--smaller {
  font-size: 1rem;
}

.testimonial-quote {
  background: #F4F4F4;
  position: relative;
  padding-top: 20px;
}
.testimonial-quote__header {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.testimonial-quote .testimonial__body {
  padding: 30px 20px;
}
.testimonial-quote::after {
  content: "";
  position: absolute;
  height: 400px;
  width: 100%;
  background: #F4F4F4;
  display: block;
  z-index: -200;
}

.testimonial-inset {
  background: #F4F4F4;
}
.testimonial-inset .testimonial-inset__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
}
@media (min-width: 768px) {
  .testimonial-inset .testimonial-inset__inner {
    padding-top: 50px;
    padding-bottom: 50px;
    max-width: 60%;
  }
}

.quote-mark {
  font-size: 6rem;
  position: absolute;
  opacity: 0.2;
}
.quote-mark.fa-quote-right {
  right: 0;
  top: calc(100% - 100px);
}
@media (min-width: 768px) {
  .quote-mark.fa-quote-left {
    top: -30px;
    left: -70px;
  }
  .quote-mark.fa-quote-right {
    right: -70px;
  }
}

.testimonial-scroller > div {
  margin: 0 10%;
}

.testimonial {
  position: relative;
}
.testimonial > .row {
  margin-top: 20px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .testimonial > .row {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
.testimonial__text-block {
  padding-top: 10px;
}
@media (min-width: 768px) {
  .testimonial__text-block--odd {
    padding-left: 10px;
  }
}
.testimonial__text-block--even {
  order: 2;
}
@media (min-width: 768px) {
  .testimonial__text-block--even {
    order: 0;
    padding-right: 10px;
    text-align: right;
  }
}
.testimonial__name {
  color: #000;
  font-weight: 600;
  text-transform: uppercase;
}
.testimonial__country {
  color: #000;
  font-weight: 600;
  display: block;
}
.testimonial__position {
  color: #000;
}
.testimonial__tag {
  font-weight: 300;
  font-size: 1.5rem;
  color: #000;
}
@media (min-width: 768px) {
  .testimonial__header--even {
    padding-left: 10px;
    padding-right: 20%;
  }
  .testimonial__header--odd {
    padding-right: 10px;
    padding-left: 20%;
  }
}
.testimonial__img {
  width: 100%;
}

.crew-photo {
  position: relative;
  max-height: 70vh;
  overflow: hidden;
}
.crew-photo .close-btn-panel {
  float: right;
  position: absolute;
  right: 0;
  top: 20px;
}
.crew-photo img {
  width: 100%;
}
.crew-photo .title-holder {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .crew-photo .title-holder {
    background: rgba(255, 255, 255, 0.5);
    position: absolute;
    top: 30%;
    padding: 10px 30px 10px 0;
  }
  .crew-photo .title-holder:after {
    content: "x";
    position: absolute;
    top: 0;
    left: -1000px;
    width: 1000px;
    height: 100%;
    background: inherit;
  }
}
.crew-photo .title-holder .title {
  font-weight: 400;
  font-size: 1.875rem;
  color: #000;
  line-height: 2.5rem;
  font-family: "Config Light";
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .crew-photo .title-holder .title span {
    display: block;
  }
}

@media (min-width: 992px) {
  .terms-conditions__text {
    column-count: 2;
    column-gap: 20px;
  }
}

/*# sourceMappingURL=careers-styles.css.map */
