/*! Flickity v2.2.1
https://flickity.metafizzy.co
---------------------------------------------- */


.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus { outline: none; }

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* draggable */

.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

/* ---- flickity-button ---- */

.flickity-button {
  position: absolute;
  background: hsla(0, 0%, 100%, 0.75);
  border: none;
  color: #333;
}

.flickity-button:hover {
  background: white;
  cursor: pointer;
}

.flickity-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #19F;
}

.flickity-button:active {
  opacity: 0.6;
}

.flickity-button:disabled {
  opacity: 0.3;
  cursor: auto;
  /* prevent disabled button from capturing pointer up event. #716 */
  pointer-events: none;
}

.flickity-button-icon {
  fill: currentColor;
}

/* ---- previous/next buttons ---- */

.flickity-prev-next-button {
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  /* vertically center */
  transform: translateY(-50%);
}

.flickity-prev-next-button.previous { left: 10px; }
.flickity-prev-next-button.next { right: 10px; }
/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}
.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}

.flickity-prev-next-button .flickity-button-icon {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

/* ---- page dots ---- */

.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}

.flickity-rtl .flickity-page-dots { direction: rtl; }

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
  opacity: 1;
}
/* Magnific Popup CSS */

.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8; }

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box; }

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045; }

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto; }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

.mfp-hide {
  display: none !important; }

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044; }
  .mfp-preloader a {
    color: #CCC; }
    .mfp-preloader a:hover {
      color: #FFF; }

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation; }

button::-moz-focus-inner {
  padding: 0;
  border: 0; }

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace; }
  .mfp-close:hover,
  .mfp-close:focus {
    opacity: 1; }
  .mfp-close:active {
    top: 1px; }

.mfp-close-btn-in .mfp-close {
  color: #333; }

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; }

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap; }

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent; }
  .mfp-arrow:active {
    margin-top: -54px; }
  .mfp-arrow:hover,
  .mfp-arrow:focus {
    opacity: 1; }
  .mfp-arrow:before,
  .mfp-arrow:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent; }
  .mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px; }
  .mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7; }

.mfp-arrow-left {
  left: 0; }
  .mfp-arrow-left:after {
    border-right: 17px solid #FFF;
    margin-left: 31px; }
  .mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3F3F3F; }

.mfp-arrow-right {
  right: 0; }
  .mfp-arrow-right:after {
    border-left: 17px solid #FFF;
    margin-left: 39px; }
  .mfp-arrow-right:before {
    border-left: 27px solid #3F3F3F; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }
  .mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px; }
  .mfp-iframe-holder .mfp-close {
    top: -40px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }
  .mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure {
  line-height: 0; }
  .mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444; }
  .mfp-figure small {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    line-height: 14px; }
  .mfp-figure figure {
    margin: 0; }

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; }

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px; }

.mfp-image-holder .mfp-content {
  max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }
  .mfp-img-mobile img.mfp-img {
    padding: 0; }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box; }
    .mfp-img-mobile .mfp-bottom-bar:empty {
      padding: 0; }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; } }

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75); }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0; }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%; }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; } }
/*! normalize.css v5.0.0 | MIT License | github.com/necolas/normalize.css */

button,hr,input{overflow:visible}audio,canvas,progress,video{display:inline-block}progress,sub,sup{vertical-align:baseline}html{font-family:sans-serif;line-height:1.15;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0} menu,article,aside,details,footer,header,nav,section{display:block}h1{font-size:2em;margin:.67em 0}figcaption,figure,main{display:block}figure{margin:1em 40px}hr{box-sizing:content-box;height:0}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}a{background-color:transparent;-webkit-text-decoration-skip:objects}a:active,a:hover{outline-width:0}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}dfn{font-style:italic}mark{background-color:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}audio:not([controls]){display:none;height:0}img{border-style:none}svg:not(:root){overflow:hidden}button,input,optgroup,select,textarea{font-family:sans-serif;font-size:100%;line-height:1.15;margin:0}button,input{}[type=submit], [type=reset],button,html [type=button]{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:ButtonText dotted 1px}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}[hidden],template{display:none}
* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  min-height: 100%;
  position: relative;
}

body {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  background: #ffffff;
  color: #111111;
  font: normal 100%/1.5 "Open Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}

hr {
  background-color: 1px solid #e2e2e2;
  border-style: none;
  border: none;
  height: 1px;
  margin: 16px 0;
  padding: 0;
  width: 100%;
}

header {
  -webkit-transition: background 0.25s ease-in;
  transition: background 0.25s ease-in;
}
header a {
  -webkit-transition: color 0.25s ease-in-out;
  transition: color 0.25s ease-in-out;
}
header a:after {
  -webkit-transition: background 0.25s ease-in-out;
  transition: background 0.25s ease-in-out;
}
header svg {
  -webkit-transition: fill 0.25s ease-in-out;
  transition: fill 0.25s ease-in-out;
}

a {
  color: #444444;
  text-decoration: none;
}
a:hover, a:focus {
  color: #1b1b1b;
}

.button, submit, input[type='submit'], button {
  border-radius: 0;
  font-size: 16px;
  line-height: 24px;
  font-size: 1rem;
  line-height: 1.5rem;
  -webkit-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
  background-color: #000000;
  border: none;
  color: #FFFFFF;
  display: inline-block;
  font-weight: 600;
  height: 56px;
  line-height: 56px;
  margin: 0;
  padding: 0 16px;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  width: 100%;
}
.button.minimal-button, submit.minimal-button, input[type='submit'].minimal-button, button.minimal-button {
  background: none;
  color: #111111;
  border: none;
  font-size: 13px;
  padding: 0;
  width: auto;
}
.button.minimal-button:not(:disabled):hover, .button.minimal-button:not(:disabled):active, .button.minimal-button:not(:disabled):focus, submit.minimal-button:not(:disabled):hover, submit.minimal-button:not(:disabled):active, submit.minimal-button:not(:disabled):focus, input[type='submit'].minimal-button:not(:disabled):hover, input[type='submit'].minimal-button:not(:disabled):active, input[type='submit'].minimal-button:not(:disabled):focus, button.minimal-button:not(:disabled):hover, button.minimal-button:not(:disabled):active, button.minimal-button:not(:disabled):focus {
  -webkit-transform: none;
  transform: none;
  box-shadow: none;
  background: none;
  text-decoration: underline;
}
.button:not(:disabled):hover, .button:not(:disabled):active, .button:not(:disabled):focus, submit:not(:disabled):hover, submit:not(:disabled):active, submit:not(:disabled):focus, input[type='submit']:not(:disabled):hover, input[type='submit']:not(:disabled):active, input[type='submit']:not(:disabled):focus, button:not(:disabled):hover, button:not(:disabled):active, button:not(:disabled):focus {
  background-color: #444444;
}
.button:disabled, .button.disabled, submit:disabled, submit.disabled, input[type='submit']:disabled, input[type='submit'].disabled, button:disabled, button.disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

a[href], label[for], select, button, .pointer {
  cursor: pointer;
}

form, input, textarea, submit, input[type='submit'], input[type='text'], button, select {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-size: 1rem;
  line-height: 1.5rem;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type='text'], input[type='textarea'], textarea {
  border-radius: 0;
  font-size: 16px;
  line-height: 24px;
  font-size: 1rem;
  line-height: 1.5rem;
  background-color: rgba(255, 255, 255, 0);
  border: 1px solid #444444;
  color: #444444;
  margin: 0;
  white-space: nowrap;
  text-indent: 16px;
}
input[type='text']:focus, input[type='text']:hover, input[type='textarea']:focus, input[type='textarea']:hover, textarea:focus, textarea:hover {
  border: 1px solid #1b1b1b;
  color: #1b1b1b;
}

input[type='textarea'], textarea {
  padding: 16px;
  text-indent: 0px;
  white-space: normal;
}

.select {
  border: 1px solid #444444;
  color: #444444;
  margin-bottom: 16px;
  position: relative;
}
.select:hover, .select:focus, .select:focus-within {
  border: 1px solid #1b1b1b;
  color: #1b1b1b;
}
.select:hover select, .select:focus select, .select:focus-within select {
  color: #1b1b1b;
}
.select:hover svg, .select:focus svg, .select:focus-within svg {
  fill: #1b1b1b;
}
.select select {
  background: none;
  border: 0px;
  border-radius: 0px;
  color: #444444;
  font-weight: 600;
  height: 56px;
  line-height: 56px;
  padding: 0 55px 0 12px;
  position: relative;
  width: 100%;
  z-index: 2;
}
.select select option {
  color: #000;
  background: #FFF;
}
.select select::-ms-expand {
  display: none;
}
.select svg {
  fill: #444444;
  height: 14px;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  z-index: 1;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Dosis", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
}
@media only screen and (max-width: 800px) {
  h1, h2, h3, h4, h5, h6 {
    letter-spacing: 0.1em;
    text-indent: 0.1em;
    white-space: normal;
  }
}

cite {
  font-style: normal;
}

h1 {
  font-size: 28px;
  line-height: 42px;
  font-size: 1.75rem;
  line-height: 2.625rem;
}

h2 {
  font-size: 24px;
  line-height: 36px;
  font-size: 1.5rem;
  line-height: 2.25rem;
}

h3 {
  font-size: 20px;
  line-height: 30px;
  font-size: 1.25rem;
  line-height: 1.875rem;
}

h4 {
  font-size: 16px;
  line-height: 24px;
  font-size: 1rem;
  line-height: 1.5rem;
}

h5 {
  font-size: 12px;
  line-height: 18px;
  font-size: 0.75rem;
  line-height: 1.125rem;
}

h6 {
  font-size: 12px;
  line-height: 18px;
  font-size: 0.75rem;
  line-height: 1.125rem;
}

.errors {
  background: #a92d22;
  color: #FFFFFF;
  list-style-type: none;
  text-align: center;
  padding: 16px;
}

.standalone {
  height: auto;
  margin: 0 auto;
  max-width: 500px;
  padding-top: 120px;
  text-align: center;
}
.standalone div {
  padding: 0 32px;
}
.announcement-message {
  background-color: #000000;
  color: #FFFFFF;
  display: none;
  padding: 20px 144px;
  position: relative;
  text-align: center;
  width: 100%;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .announcement-message {
    padding: 20px 64px;
  }
}
.announcement-message.visible {
  display: block;
}

.button.announcement-message-close {
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: none;
  transition: none;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  background: none;
  height: 32px;
  padding: 0;
  position: absolute;
  right: 16px;
  top: 50%;
  width: 32px;
}
@media screen and (max-width: 800px) {
  .button.announcement-message-close {
    right: 4px;
  }
}
.button.announcement-message-close:hover, .button.announcement-message-close:focus {
  background: none !important;
  opacity: 0.7;
}
.button.announcement-message-close:hover svg, .button.announcement-message-close:focus svg {
  fill: #FFFFFF;
}
.button.announcement-message-close svg {
  display: block;
  fill: #FFFFFF;
  height: 14px;
  width: 14px;
}

header {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  border-bottom: 1px solid transparent;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  height: 88px;
  padding: 0 32px;
  margin-top: 0;
  width: 100%;
  z-index: 999;
}
header.page-head-scrolled {
  position: fixed;
  top: 0;
}
header a {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  color: #ffffff;
  position: relative;
}
header a:after {
  background: transparent;
  bottom: 3px;
  content: " ";
  left: 0;
  height: 1px;
  position: absolute;
  width: 100%;
}
header a:hover, header a:focus {
  color: #ffffff;
}
@media screen and (min-width: 801px) {
  header a:hover:after, header a:focus:after {
    background: #ffffff;
  }
}
header a:hover svg, header a:focus svg {
  fill: #ffffff;
}
header svg {
  fill: #ffffff;
}
@media screen and (max-width: 800px) {
  header {
    padding: 0 16px;
  }
}
header.overlay, header.page {
  background-color: #ffffff;
  border-bottom: 1px solid #e2e2e2;
}
header.overlay a, header.overlay .button, header.page a, header.page .button {
  color: #656565;
}
header.overlay a:hover, header.overlay a:focus, header.overlay .button:hover, header.overlay .button:focus, header.page a:hover, header.page a:focus, header.page .button:hover, header.page .button:focus {
  color: #1b1b1b;
}
@media screen and (min-width: 801px) {
  header.overlay a:hover:after, header.overlay a:focus:after, header.overlay .button:hover:after, header.overlay .button:focus:after, header.page a:hover:after, header.page a:focus:after, header.page .button:hover:after, header.page .button:focus:after {
    background: #1b1b1b;
  }
}
header.overlay a:hover svg, header.overlay a:focus svg, header.overlay .button:hover svg, header.overlay .button:focus svg, header.page a:hover svg, header.page a:focus svg, header.page .button:hover svg, header.page .button:focus svg {
  fill: #1b1b1b;
}
header.overlay svg, header.page svg {
  fill: #656565;
}
header .logo {
  font-size: 24px;
  line-height: 36px;
  font-size: 1.5rem;
  line-height: 2.25rem;
  font-family: "Dosis", sans-serif;
  text-align: left;
  z-index: 98;
  width: 25%;
}
@media only screen and (max-width: 800px) {
  header .logo {
    font-size: 18px;
    line-height: 27px;
    font-size: 1.125rem;
    line-height: 1.6875rem;
    line-height: 25px;
    width: 50%;
  }
}
header .logo a {
  max-width: 500px;
}
header .logo a:after {
  content: none !important;
}
header .logo.image img {
  display: block;
  max-height: 100%;
  max-width: 100%;
}
header .logo.image a {
  height: 66px;
  max-width: 208px;
}
header .sections {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 0 32px;
  position: relative;
  width: 50%;
  z-index: 97;
}
@media only screen and (max-width: 800px) {
  header .sections {
    display: none;
  }
}
header .sections .navigation {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
header .sections .navigation li {
  display: block;
  margin: 0 16px;
}
header .sections .navigation li a {
  padding: 4px 0;
  position: relative;
  text-align: center;
}

.utility {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  position: relative;
  white-space: nowrap;
  width: 25%;
  z-index: 99;
}
@media only screen and (max-width: 800px) {
  .utility {
    width: 50%;
  }
}
.utility ul {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.utility ul li {
  margin-left: 32px;
}
@media screen and (max-width: 800px) {
  .utility ul li {
    margin-left: 21.33333px;
  }
}
.utility ul li:last-child {
  display: none;
}
@media screen and (max-width: 800px) {
  .utility ul li:last-child {
    display: block;
  }
}
.utility ul li a {
  padding: 4px 0;
}
.utility ul li button {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 8px 4px !important;
  width: auto;
  height: auto;
}
.utility ul li.cart .cart-link > span {
  margin-left: 6px;
}
@media screen and (max-width: 800px) {
  .utility ul li.cart .desktop {
    display: none;
  }
}

.slideshow {
  height: calc((var(--vh, 1vh) * 100));
  margin: 0;
  padding: 0;
  position: relative;
  width: 100%;
  z-index: 1;
}

header.has_featured + .slideshow {
  top: -88px;
}

_:-ms-fullscreen, :root .slideshow {
  height: 100vh;
}

.carousel {
  width: 100%;
  height: calc((var(--vh, 1vh) * 100));
}

_:-ms-fullscreen, :root .carousel {
  height: 100vh;
}

.carousel-cell {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  width: 100%;
}

.flickity-page-dots {
  bottom: 24px;
  z-index: 5;
}
.flickity-page-dots .dot {
  background: transparent;
  border: 2px solid #ffffff;
  cursor: pointer;
  height: 18px;
  margin: 8px;
  opacity: 0.5;
  width: 18px;
}
.flickity-page-dots .dot:hover {
  opacity: 1;
  opacity: 0.8;
}
.flickity-page-dots .dot.is-selected {
  background: #ffffff;
  opacity: 0.8;
}
.flickity-page-dots .dot:only-child {
  display: none;
}

.flickity-viewport:after {
  background-color: rgba(0, 0, 0, 0.3);
  background-image: url("https://assets.bigcartel.com/theme_assets/91/2.2.2/images/overlay_pattern.png");
  background-repeat: repeat;
  background-size: 4px;
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}

.featured {
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  color: #ffffff;
  left: 50%;
  top: calc(50% + 88px);
  padding: 0 32px;
  position: absolute;
  max-width: 1280px;
  text-align: center;
  z-index: 2;
  width: 100%;
}

.welcome-subheader {
  font-family: "Dosis", sans-serif;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1.25em;
  margin-right: -0.2em;
  padding: 0 16px 24px 16px;
  text-transform: uppercase;
}
.welcome-subheader {
  font-size: 16px;
}
@media screen and (min-width: 320px) {
  .welcome-subheader {
    font-size: calc(16px + 4 * ((100vw - 320px) / 880));
  }
}
@media screen and (min-width: 1200px) {
  .welcome-subheader {
    font-size: 20px;
  }
}
@media only screen and (max-width: 800px) {
  .welcome-subheader {
    letter-spacing: 0.1em;
    margin-right: -0.1em;
  }
}

.welcome-header {
  font-family: "Dosis", sans-serif;
  font-weight: bold;
  letter-spacing: 0.2em;
  line-height: 1.3em;
  margin: 0 -0.2em 24px 0;
  text-transform: uppercase;
}
.welcome-header {
  font-size: 20px;
}
@media screen and (min-width: 320px) {
  .welcome-header {
    font-size: calc(20px + 40 * ((100vw - 320px) / 880));
  }
}
@media screen and (min-width: 1200px) {
  .welcome-header {
    font-size: 60px;
  }
}
@media only screen and (max-width: 800px) {
  .welcome-header {
    letter-spacing: 0.1em;
    padding: 0 16px;
    white-space: normal;
  }
}

a.shop-now-button {
  -webkit-transition: background 0.2s linear, border 0.2s linear;
  transition: background 0.2s linear, border 0.2s linear;
  border: 1px solid #ffffff;
  background: transparent;
  color: #ffffff;
  height: auto;
  padding: 0 32px;
  width: auto;
}
a.shop-now-button:hover, a.shop-now-button:focus {
  border: 1px solid #444444;
  background: #444444;
  color: #FFFFFF;
}

#home h1 {
  margin-bottom:  48px ;
}

.content {
  -webkit-flex: 1;
  flex: 1;
  margin: 0 auto;
  max-width: 1364px;
  padding-bottom: 64px;
  padding-top: 56px;
  position: relative;
  width: 100%;
}
@media only screen and (max-width: 800px) {
  .content {
    padding-bottom: 32px;
    padding-top: 32px;
  }
}
.content.no-featured-products {
  padding: 0;
}
.content h1 {
  color: #111111;
  display: block;
  margin: 0 auto;
  text-align: center;
}
.content h1.bottom-margin {
  margin-bottom: 32px;
}
.content .subheader {
  padding: 0 32px 32px 32px;
  margin: 32px auto 0 auto;
}
@media only screen and (max-width: 800px) {
  .content .subheader {
    margin: 16px auto 0 auto;
  }
}
.content .subheader p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

_:-ms-fullscreen, :root .content {
  -webkit-flex: 1 0 auto;
  flex: 1 0 auto;
}

.social-links {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  font-size: 16px;
  line-height: 24px;
  font-size: 1rem;
  line-height: 1.5rem;
  line-height: normal;
  list-style: none;
  margin: 0 auto 32px auto;
  max-width: 800px;
  padding: 0;
  text-align: center;
  width: 100%;
}
.social-links li {
  border: 1px solid #e2e2e2;
  border-width: 1px 0 1px 1px;
  height: 56px;
  width: 56px;
}
.social-links li:last-child {
  border-width: 1px;
}
.social-links li a {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 56px;
  height: 56px;
}
.social-links li a:hover, .social-links li a:focus {
  background-color: #1b1b1b;
  color: #ffffff;
}
.social-links li a:hover svg, .social-links li a:focus svg {
  fill: white;
}
.social-links li a svg {
  display: block;
  cursor: pointer;
  fill: #444444;
  height: 22px;
  position: relative;
  width: 22px;
}

footer {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  display: grid;
  border-top: 1px solid #e2e2e2;
  position: relative;
  padding: 64px;
  gap: 32px;
}
@media screen and (max-width: 800px) {
  footer {
    padding: 48px 32px;
  }
}
footer .bigcartel-credit {
  font-size: 14px;
  line-height: 1em;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  gap: 8px;
  outline-offset: 4px;
  padding: 2px 0;
  order: 1;
}
@media screen and (max-width: 800px) {
  footer .bigcartel-credit {
    margin: 32px 0;
    order: 3;
  }
}
footer .bigcartel-credit__text {
  position: relative;
}
footer .bigcartel-credit__lockup {
  display: block;
  fill: currentColor;
  padding-top: 1px;
  width: 80px;
}
footer ul {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  column-gap: 32px;
  row-gap: 12px;
}
footer .social_footer {
  display: -webkit-flex;
  display: flex;
}
footer .social_footer a {
  color: #444444;
  display: block;
  padding: 4px 8px;
}
footer .social_footer a:hover, footer .social_footer a:focus {
  color: #1b1b1b;
}
footer .social_footer svg {
  display: block;
  fill: currentColor;
  height: 24px;
  width: 24px;
}
footer .social_footer svg.tumblr-icon {
  width: 15px;
}
footer .footernav ul {
  max-width: 800px;
  flex-wrap: wrap;
}

.blur-up {
  -webkit-transition: filter 0.2s ease;
  transition: filter 0.2s ease;
  filter: blur(5px);
}
.blur-up.lazyloaded {
  filter: blur(0);
}

.sr-only {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.centered-message {
  text-align: center;
}
.maintenance-page {
  -webkit-align-items: center;
  align-items: center;
  padding: 100px 20px;
}

.maintenance-content {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  font-size: 1.5em;
  line-height: 1.25em;
  padding: 32px 16px;
  max-width: 600px;
  min-height: 200px;
  text-align: center;
  width: 100%;
}

.social-links {
  margin: 32px 0 0;
}
.social-links li {
  border: 0;
}
.social-links li a:hover, .social-links li a:focus {
  background: none;
  color: inherit;
}
.social-links li a:hover svg, .social-links li a:focus svg {
  fill: #1b1b1b;
}
.categories {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 960px;
  text-align: center;
  padding: 0;
}
.categories li {
  display: inline-block;
  margin: 4px 0;
  white-space: nowrap;
}
.categories li a {
  display: inline-block;
  padding: 6px 8px;
}
.categories li a:hover {
  text-decoration: underline;
}
.categories li:after {
  content: "/";
  display: inline-block;
  padding: 0 2px;
}
.categories li:last-child:after {
  content: "";
  padding: 0;
}

.product-list-container {
  margin: 0 6%;
}
@media screen and (max-width: 1024px) {
  .product-list-container {
    margin: 0 32px;
  }
}

.product-list {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  margin: 0 -3%;
}
@media screen and (max-width: 1024px) {
  .product-list {
    margin: 0 -24px;
  }
}
@media screen and (max-width: 800px) {
  .product-list {
    margin: 0 -16px;
  }
}

.product-list-thumb {
  color: #444444;
  display: block;
  font-size: 0;
  padding: 16px 3%;
  padding-bottom: 32px;
  position: relative;
  text-align: center;
  vertical-align: middle;
  width: calc(100% / 3);
  word-break: break-word;
}
@media screen and (max-width: 1024px) {
  .product-list-thumb {
    padding: 16px;
    padding-bottom: 32px;
    width: calc(100% / 2);
  }
}
@media screen and (max-width: 800px) {
  .product-list-thumb {
    padding: 16px;
  }
}
@media screen and (max-width: 500px) {
  .product-list-thumb {
    width: 100%;
  }
}

_:-ms-fullscreen, :root .product-list-thumb {
  width: calc(100% / 3 - .1px);
}
@media screen and (max-width: 1024px) {
  _:-ms-fullscreen, :root .product-list-thumb {
    width: calc(100% / 2 - .1px);
  }
}
@media screen and (max-width: 500px) {
  _:-ms-fullscreen, :root .product-list-thumb {
    padding: 10px;
    width: 100%;
  }
}

.product-list-link {
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
  color: #444444;
  text-decoration: none;
}
.product-list-link:hover, .product-list-link:focus {
  color: #1b1b1b;
  text-decoration: none;
}
.product-list-link:hover .product-list-thumb-name, .product-list-link:hover .product-list-thumb-price, .product-list-link:focus .product-list-thumb-name, .product-list-link:focus .product-list-thumb-price {
  color: #1b1b1b;
}

.product-list-image-container {
  overflow: hidden;
  position: relative;
}
.product-list-image-container.product-list-image-container-default:before {
  display: none;
}
.product-list-image-container:before {
  display: block;
  width: 100%;
  content: "";
  padding-bottom: 100%;
  height: 0;
}

.product-list-image {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.product-list-image.grid-default {
  position: relative;
}
.product-list-image.grid-cover {
  object-fit: cover;
}
.product-list-image.grid-contain {
  object-fit: contain;
}

.product-list-thumb-info {
  font-size: 16px;
  line-height: 1.25em;
  padding: 16px 0;
  position: relative;
}

.product-list-thumb-name {
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
  color: #444444;
  font-weight: bold;
  overflow-wrap: break-word;
  position: relative;
}

.product-list-thumb-price {
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
  color: #111111;
  margin-top: 6px;
}

.product-list-thumb-status {
  color: #444444;
  display: inline-block;
  font-style: italic;
  font-weight: normal;
}

.pagination {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  border-top: 1px solid #e2e2e2;
  font-family: "Dosis", sans-serif;
  line-height: 40px;
  margin: 0 auto 32px auto;
  max-width: 640px;
  padding-top: 32px;
  text-transform: uppercase;
}
@media screen and (max-width: 1024px) {
  .pagination {
    font-size: 15px;
    padding: 16px;
  }
}

@media screen and (min-width: 501px) {
  .pagination-caption {
    display: none;
  }
}
.page-numbers {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  margin: 0 20px;
}
@media screen and (max-width: 500px) {
  .page-numbers {
    display: none;
  }
}
.page-numbers .previous, .page-numbers .next {
  display: none;
}
.page-numbers > a, .page-numbers > span {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 0;
  border: 1px solid transparent;
  color: #444444;
  text-align: center;
  height: 40px;
  margin-right: 8px;
  order: 1;
  position: relative;
  text-decoration: none;
  width: 40px;
}
.page-numbers > a.current, .page-numbers > span.current {
  border: 1px solid #1b1b1b;
  color: #1b1b1b;
}
.page-numbers > a.disabled, .page-numbers > span.disabled {
  cursor: not-allowed;
  opacity: 0.4;
}
.page-numbers > a:hover, .page-numbers > a:focus {
  color: #1b1b1b;
  text-decoration: underline;
}

.page-link {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  color: #444444;
  line-height: 40px;
  text-align: center;
  height: 40px;
  padding: 0;
  position: relative;
  text-decoration: none;
}
.page-link:not(.disabled):hover, .page-link:not(.disabled):focus {
  background: none;
  color: #1b1b1b;
  text-decoration: underline;
}
.page-link:not(.disabled):hover svg, .page-link:not(.disabled):focus svg {
  fill: #1b1b1b;
}
.page-link.next-page-link span {
  margin-right: 5px;
}
.page-link.previous-page-link span {
  margin-left: 5px;
}
.page-link.previous-page-link svg {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.page-link.disabled {
  cursor: not-allowed;
  opacity: 0;
  visibility: hidden;
}
.page-link svg {
  display: block;
  fill: #444444;
  height: 12px;
  width: 12px;
}

.no_results {
  text-align: center;
  margin-bottom: 128px;
}
.product-container {
  padding-left: 32px;
  padding-right: 32px;
}
.product-container:after {
  content: "";
  display: table;
  clear: both;
}
@media screen and (max-width: 800px) {
  .product-container {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.product-container h1 {
  margin-bottom: 16px;
}
.product-container .product-subheader {
  font-size: 18px;
  line-height: 27px;
  font-size: 1.125rem;
  line-height: 1.6875rem;
  font-weight: bold;
  font-family: "Dosis", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
  margin: 16px auto 64px auto;
  padding: 0;
  text-align: center;
}
@media only screen and (max-width: 800px) {
  .product-container .product-subheader {
    margin: 16px auto 16px auto;
  }
}
.product-container .product-subheader em {
  font-style: normal;
  color: #444444;
}

.product-description {
  font-size: 16px;
  line-height: 24px;
  font-size: 1rem;
  line-height: 1.5rem;
  float: right;
  margin: 0 0 64px;
  padding-left: 32px;
  width: 40%;
  text-align: left;
}
@media screen and (max-width: 1024px) {
  .product-description {
    width: 45%;
  }
}
@media only screen and (max-width: 800px) {
  .product-description {
    float: none;
    margin-bottom: 32px;
    padding-left: 0;
    width: 100%;
  }
}
.product-description a {
  text-decoration: underline;
}
.product-description img, .product-description iframe {
  max-width: 100%;
}
.product-description p {
  margin-bottom: 16px;
  padding: 0;
  text-align: left;
}
.product-description p:first-child {
  margin-top: 0;
  padding-top: 0;
}
.product-description ul {
  font-size: 14px;
  line-height: 21px;
  font-size: 0.875rem;
  line-height: 1.3125rem;
  margin: 0;
  padding: 0 16px;
}
.product-description ul li {
  list-style-position: inside;
}

ul.product-availability {
  list-style: none;
  margin: 0 0 16px 0;
  padding: 0;
}
ul.product-availability li {
  font-size: 14px;
  line-height: 21px;
  font-size: 0.875rem;
  line-height: 1.3125rem;
  border: 1px solid #e2e2e2;
  border-width: 1px 1px 0 1px;
  height: 56px;
  list-style: none;
  padding: 8px 12px;
  position: relative;
  width: 100%;
}
ul.product-availability li:last-child {
  margin-bottom: 0;
  border-width: 1px;
}
ul.product-availability li div {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99;
}
ul.product-availability li span {
  display: inline;
}
ul.product-availability li span.sold_out {
  margin-right: 8px;
  text-decoration: line-through;
}
ul.product-availability li span.sold_out_text {
  white-space: nowrap;
}
ul.product-availability li b {
  display: block;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: 1;
  top: 0;
}
ul.product-availability li b b {
  opacity: 0.5;
  background-color: #e2e2e2;
  display: block;
  height: 55px;
  left: 0;
  position: relative;
  top: 0;
  z-index: 1;
}

.product-artists {
  font-family: "Dosis", sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.product-artists a {
  font-weight: bold;
}

.product-images {
  float: left;
  margin: 0 0 32px 0;
  overflow: hidden;
  width: 60%;
}
@media screen and (max-width: 1024px) {
  .product-images {
    width: 55%;
  }
}
@media only screen and (max-width: 800px) {
  .product-images {
    float: none;
    margin-bottom: 32px;
    width: 100%;
  }
}

.default-product-image {
  display: block;
  width: 100%;
}
.default-product-image img {
  display: block;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}

.product-thumbnails {
  font-size: 0;
  list-style: none;
  margin: 20px -20px;
  text-align: center;
  padding: 0;
}
.product-thumbnails:after {
  content: "";
  display: table;
  clear: both;
}
@media only screen and (max-width: 800px) {
  .product-thumbnails {
    margin: 5px -10px;
  }
}
.product-thumbnails li {
  display: inline-block;
  padding: 0 10px;
  vertical-align: top;
  width: 25%;
}
@media only screen and (max-width: 800px) {
  .product-thumbnails li {
    padding: 5px;
  }
}
.product-thumbnails li a {
  display: block;
}
.product-thumbnails li img {
  display: block;
  width: 100%;
}

.product-section-subheader {
  border-bottom: 1px solid #e2e2e2;
  margin: 32px auto;
  padding: 16px 0;
  text-align: center;
  text-transform: uppercase;
  font-family: "Dosis", sans-serif;
  font-weight: bold;
  letter-spacing: 0.2em;
}

.share-pinterest a {
  cursor: pointer;
  display: inline-block;
  position: relative;
}
.share-pinterest a:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.share-pinterest a svg {
  height: 16px;
  width: 16px;
}

.secondary-product-images {
  margin-top: 32px;
}

.secondary-product-image {
  display: block;
  width: 100%;
}

.reset-selection-button-container {
  text-align: center;
  width: 100%;
}

button.reset-selection-button {
  display: none;
  height: auto;
  max-width: 100%;
  line-height: normal;
  margin: 20px auto 0;
  padding: 4px;
}

option[disabled-type="unavailable"] {
  display: none;
}

.product-form.show-sold-out option[disabled-type="sold-out"] {
  display: block;
}
.product-form.hide-sold-out option[disabled-type="sold-out"] {
  display: none;
}

#instant-checkout-button {
  margin-top: 12px;
}

.mfp-top-bar {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 5px 0;
  position: absolute;
  top: 48px;
  width: 100%;
}

.mfp-title {
  display: none;
}

.mfp-counter {
  color: #F7F7F7;
  font-size: 15px;
  position: relative;
}

.mfp-arrow:before, .mfp-arrow:after {
  display: none;
}

.mfp-image-holder button.mfp-close {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  background: none !important;
  margin-left: auto;
  opacity: 1;
  padding: 6px;
  right: 0;
  position: relative;
  width: auto !important;
}
.mfp-image-holder button.mfp-close svg {
  fill: #F7F7F7;
  pointer-events: none;
}

img.mfp-img {
  padding: 100px 0 40px;
}

.mfp-figure:after {
  display: none;
}

.mfp-arrow {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  background: #FFF !important;
  height: 65px;
  margin-top: 0;
  opacity: 0.7;
  width: 65px;
}
.mfp-arrow:active {
  margin-top: 0;
}
.mfp-arrow svg {
  display: block;
  fill: #000;
  height: 20px;
  margin: 0 auto;
  pointer-events: none;
  width: 20px;
}
.mfp-arrow:hover {
  opacity: 1;
}
@media (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }
}

.mfp-container {
  padding: 0 10px !important;
}

.mfp-arrow-left {
  left: 40px;
}
@media (max-width: 1024px) {
  .mfp-arrow-left {
    left: 14px;
  }
}

.mfp-arrow-right {
  right: 40px;
}
@media (max-width: 1024px) {
  .mfp-arrow-right {
    right: 14px;
  }
}

.mfp-preloader {
  -webkit-animation: loading-animation 1.5s infinite ease-in-out;
  animation: loading-animation 1.5s infinite ease-in-out;
  border-radius: 100%;
  background: #FFF;
  height: 40px;
  margin: 0 auto;
  opacity: 1;
  width: 40px;
}

@-webkit-keyframes loading-animation {
  0% {
    -webkit-transform: scale(0.1, 0.1);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.2, 1.2);
    opacity: 0;
  }
}
@keyframes loading-animation {
  0% {
    -webkit-transform: scale(0.1, 0.1);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.2, 1.2);
    opacity: 0;
  }
}
.custom-content {
  font-size: 16px;
  line-height: 24px;
  font-size: 1rem;
  line-height: 1.5rem;
  max-width: 800px;
  padding-left: 32px;
  padding-right: 32px;
  padding-bottom: 64px;
}
@media only screen and (max-width: 800px) {
  .custom-content {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.custom-content a {
  text-decoration: underline;
}
.custom-content h1 {
  clear: both;
  margin-bottom: 64px;
}
.custom-content h2, .custom-content h3, .custom-content h4, .custom-content h5, .custom-content h6 {
  margin: 16px auto 32px auto;
  padding: 0;
  text-align: center;
}
.custom-content p {
  margin: 0 auto 16px auto;
  width: 100%;
  max-width: 800px;
}
.custom-content p img {
  display: block;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 16px;
  max-width: 100%;
}
@media only screen and (max-width: 800px) {
  .custom-content p img {
    width: 100%;
  }
}
.custom-content iframe {
  display: block;
  margin: 0 auto;
  text-align: center;
  max-width: 100%;
}
@media only screen and (max-width: 800px) {
  .custom-content iframe {
    width: 100%;
  }
}
#cart .content {
  max-width: 928px;
}

.cart-container {
  margin: 0 auto;
  max-width: 928px;
  padding: 32px 64px 64px;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .cart-container {
    padding: 16px 16px 32px;
  }
}

.empty-cart-message {
  display: none;
}
.empty-cart-message a {
  text-decoration: underline;
}
.empty-cart .empty-cart-message {
  display: block;
}

.cart-items {
  border-top: 1px solid #e2e2e2;
  padding: 0;
  margin: 0;
}

.cart-item {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  border-bottom: 1px solid #e2e2e2;
  padding: 24px 0;
}
@media screen and (max-width: 1024px) {
  .cart-item {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    padding: 16px 0;
  }
}

.cart-item-image {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  display: block;
  height: 90px;
  margin-right: 16px;
  width: 90px;
}
@media screen and (max-width: 1024px) {
  .cart-item-image {
    height: 60px;
    margin-right: 8px;
    width: 60px;
  }
}
.cart-item-image img {
  display: block;
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.cart-item-details {
  line-height: 1.25em;
  padding-right: 24px;
  width: 55%;
}
@media screen and (max-width: 1024px) {
  .cart-item-details {
    -webkit-flex: 1;
    flex: 1;
    -webkit-flex-basis: 30%;
    flex-basis: 30%;
    padding-right: 16px;
  }
}

_:-ms-fullscreen, :root .cart-item-details {
  width: calc(55% - 106px);
}

.cart-item-details-name {
  font-size: 16px;
}

.cart-item-details-option {
  font-size: 15px;
  margin-top: 5px;
}

.cart-item-quantity-price {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  width: 45%;
}
@media screen and (max-width: 1024px) {
  .cart-item-quantity-price {
    -webkit-flex: 1;
    flex: 1;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: flex-end;
    align-items: flex-end;
    width: 45%;
  }
}

_:-ms-fullscreen, :root .cart-item-quantity-price {
  width: calc(45% - 106px);
}

.cart-item-details-price {
  margin-right: 24px;
  padding-left: 16px;
}
@media screen and (max-width: 1024px) {
  .cart-item-details-price {
    margin-right: 0;
    margin-top: 16px;
  }
}

.cart-item-quantity-holder {
  margin-right: auto;
}
@media screen and (max-width: 1024px) {
  .cart-item-quantity-holder {
    margin-right: 0;
  }
}
.cart-item-quantity-holder input {
  height: 48px;
  padding: 10px;
  text-align: center;
  text-indent: 0;
  width: 64px;
}
@media screen and (max-width: 1024px) {
  .cart-item-quantity-holder input {
    height: 40px;
    padding: 5px;
    width: 56px;
  }
}

button.cart-item-remove {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  background: none;
  border-radius: 50%;
  height: 32px;
  padding: 0;
  width: 32px;
}
@media screen and (max-width: 1024px) {
  button.cart-item-remove {
    display: none;
  }
}
button.cart-item-remove:hover, button.cart-item-remove:focus {
  background: none;
}
button.cart-item-remove:hover .cart-item-remove-icon, button.cart-item-remove:focus .cart-item-remove-icon {
  fill: #1b1b1b;
}
button.cart-item-remove .cart-item-remove-icon {
  display: block;
  fill: #444444;
  height: 16px;
  width: 16px;
}

button.cart-item-remove-text {
  color: #444444;
  display: none;
  font-size: 14px;
  height: auto;
  line-height: normal;
  margin: 0;
  margin-top: 6px;
  padding: 0;
  text-decoration: underline;
  width: auto;
}
@media screen and (max-width: 1024px) {
  button.cart-item-remove-text {
    display: inline-block;
  }
}

.cart_footer {
  clear: both;
  text-align: right;
}
.cart_footer:after {
  content: "";
  display: table;
  clear: both;
}
.cart_footer .cart_total {
  font-weight: 500;
  margin: 0;
  font-size: 24px;
  padding: 48px 0;
  text-align: right;
}
@media screen and (max-width: 1024px) {
  .cart_footer .cart_total {
    padding: 32px 0;
  }
}
.cart_footer .cart_total > span {
  display: inline-block;
  margin-left: 8px;
}
.cart_footer button, .cart_footer .button {
  margin-left: 12px;
  padding: 0 35px;
}
@media screen and (max-width: 1024px) {
  .cart_footer button, .cart_footer .button {
    float: none;
    margin: 5px 0;
    width: 100%;
  }
}
.cart_footer button.checkout_btn, .cart_footer .button.checkout_btn {
  max-width: 300px;
  width: 48%;
}
@media screen and (max-width: 1024px) {
  .cart_footer button.checkout_btn, .cart_footer .button.checkout_btn {
    margin: 0 0 10px;
    max-width: 100%;
    width: 100%;
  }
}

a.button.continue_shopping {
  border: 1px solid #444444;
  color: #444444;
  float: left;
  font-size: 16px;
  margin-left: 0;
  max-width: 300px;
  width: 48%;
}
a.button.continue_shopping:hover, a.button.continue_shopping:focus {
  border-color: #1b1b1b;
  color: #1b1b1b;
}
@media screen and (max-width: 1024px) {
  a.button.continue_shopping {
    border: 1px solid transparent !important;
    float: none;
    margin: 0;
    max-width: 100%;
    width: 100%;
  }
}

.empty-cart {
  line-height: 1.3em;
  text-align: center;
}
#contact .content {
  max-width: 664px;
  padding-left: 32px;
  padding-right: 32px;
}
@media only screen and (max-width: 800px) {
  #contact .content {
    padding-left: 16px;
    padding-right: 16px;
  }
}
#contact .content h1 {
  margin: 0 auto 64px auto;
}

.contact-form-block {
  display: block;
  margin: 32px auto;
  position: relative;
}
.contact-form-block input[type='text'], .contact-form-block textarea {
  height: 50px;
  padding: 8px;
  text-indent: 0;
  width: 100%;
}
.contact-form-block textarea {
  height: 256px;
}

.contact-label {
  display: block;
  margin-bottom: 8px;
}

.send-message-button {
  display: block;
  margin: 64px auto;
  max-width: 320px;
}
@media screen and (max-width: 800px) {
  .send-message-button {
    margin-top: 32px;
    max-width: 100%;
  }
}

.recaptcha-note {
  font-size: 14px;
  line-height: 21px;
  font-size: 0.875rem;
  line-height: 1.3125rem;
  margin-top: 16px;
}
.recaptcha-note a {
  text-decoration: underline;
}
body.no-scroll {
  overflow: hidden;
}

.full-screen-overlay {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  background-color: rgba(0, 0, 0, 0.95);
  display: none;
  height: 100%;
  left: 0;
  overflow-y: scroll;
  padding: 96px 96px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10000;
}
.full-screen-overlay.open {
  display: block;
}

button.close-overlay {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  background: #000000;
  height: 44px;
  padding: 0;
  position: absolute;
  right: 24px;
  top: 24px;
  width: 44px;
}
button.close-overlay:hover, button.close-overlay:focus {
  background: #222222;
}
button.close-overlay:hover .close-icon, button.close-overlay:focus .close-icon {
  fill: #FFFFFF;
}
button.close-overlay .close-icon {
  display: block;
  fill: #FFFFFF;
  height: 18px;
  width: 18px;
}

#search-input {
  border: 1px solid #ABABAB;
  color: #FFFFFF;
  display: block;
  margin: 0 auto;
  max-width: 600px;
  width: 100%;
  padding: 16px;
  font-size: 18px;
  text-indent: 0;
  background: #222;
}
#search-input:hover, #search-input:focus {
  border: 1px solid #FFFFFF;
}

.mobile-navigation-list {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}
.mobile-navigation-list li {
  display: block;
  margin: 10px 0;
}
.mobile-navigation-list a {
  color: #FFF;
  display: block;
  font-size: 16px;
  line-height: 1.5em;
  padding: 10px;
}
.mobile-navigation-list a:hover, .mobile-navigation-list a:focus {
  text-decoration: underline;
}
/*










 */
/*============================================================
  Custom Styles - add and override styles below.
============================================================*/

