/***
The MIT License (MIT)

Copyright (c) 2014 Therese Seares <therese.seares@gmail.com>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
***/
/*****************************************************
    Flex container mixins at a glance:
        display-flex
        flex-direction
        flex-wrap
        flex-flow
        justify-content
        align-items
        align-content
*****************************************************/
/***
    DISPLAY-FLEX
    Defines a flex container.
    Enables a flex context for all its direct children.
    $flex-type: flex | inline-flex
***/
/*** 
    FLEX-DIRECTION
    Defines main axis and the direction flex items are
    layed-out in the flex container.
    $direction: row | row-reverse | column | column-reverse
***/
/***
    FLEX-WRAP
    Determines whether the container should wrap overflowing
    flex items or not. Also determines direction if wrap is 
    enabled.
    $wrap: nowrap | wrap | wrap-reverse
***/
/***
    FLEX-FLOW
    A shorthand for flex-direction and flex-wrap
***/
/***
    JUSTIFY-CONTENT
    Define what alignment flex items should use relative to the main axis.
    $alignment: flex-start | flex-end | center | space-between | space-around
***/
/***
    ALIGN-ITEMS
    Define what alignment flex items should use relative to cross axis.
    $alignment: flex-start | flex-end | center | baseline | stretch
***/
/***
    ALIGN-CONTENT
    Define what alignment flex items should use relative to cross axis when flex items create multiple lines
    $alignment: flex-start | flex-end | center | space-between | space-around | stretch
***/
/**************************************************************************
    Flex item mixins at a glance:
        flex-grow
        flex-shrink
        flex-basis
        flex
        align-self
        *order: not included since it can be used right out of the box
**************************************************************************/
/***
    FLEX-GROW
    Defines how a flex item should grow relative to other items when necessary
    $proportion: 0 | <number>
    <number> negative numbers are invalid
***/
/***
    FLEX-SHRINK
    Defines how a flex item should shrink relative to other items when necessary
    $proportion: 1 | <number>
    <number> negative numbers are invalid
***/
/***
    FLEX-BASIS
    Defines default size of an item before remaining space is distributed
    $width: auto | <width>
***/
/***
    FLEX
    Shorthand for flex-grow, flex-shrink and flex-basis
    Optional: flex-shrink, flex-basis
    $length: 0 1 auto | $grow $shrink $basis
***/
/***
    ALIGN-SELF
    Defines alignment for a flex item, overriding its flex container's align-items definition
    $alignment: auto | flex-start | flex-end | center | baseline | stretch
***/
@font-face {
  font-family: "Arial Regular";
  src: url("fonts/arial-webfont.woff2") format("woff2"), url("fonts/arial-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Arial Regular Bold";
  src: url("fonts/arial_bold-webfont.woff2") format("woff2"), url("fonts/arial_bold-webfont.woff") format("woff");
  font-style: normal;
}
/* Mixins */
.small {
  font-family: "Arial Regular", sans-serif;
  font-size: 13px;
  font-weight: normal;
  line-height: 1.1;
  letter-spacing: 0.3px;
}

/* Overrides */
a:focus, img:focus, iframe:focus, button:focus {
  outline: none;
}

ol, ul, figure {
  padding-inline-start: 0px;
  margin-block-start: 0px;
  margin-block-end: 0px;
  -webkit-margin-before: 0px;
  -webkit-margin-after: 0px;
}

li {
  list-style: none;
  display: inline-block;
}

/* Layout */
:root {
  --plyr-color-main: black;
  --plyr-control-radius: 0px;
  --plyr-control-spacing: 15px;
  --plyr-control-icon-size: 14px;
  --plyr-audio-control-color: #000000;
  --plyr-audio-control-color-hover: #000000;
  --plyr-audio-control-background-hover: transparent;
  --plyr-range-fill-background: #000000;
  --plyr-range-thumb-background: black;
  --plyr-range-thumb-shadow: none;
  --plyr-range-thumb-height: 11px;
  --plyr-range-track-height: 1px;
  --plyr-audio-progress-buffered-background: black;
}

.plyr--audio {
  display: inline-block;
  width: 100%;
}

.plyr__volume {
  width: 100px;
  flex-shrink: 0;
}

.plyr--audio .plyr__controls {
  background: transparent;
  filter: drop-shadow(0px 0px 2px white);
}

.plyr__progress input[type=range] {
  cursor: pointer;
}

.plyr__controls {
  padding: 0px !important;
}

.plyr__time {
  width: 50px !important;
}

.plyr {
  padding-right: 10px;
}

.plyr .plyr__controls button {
  width: 34px;
  text-align: center;
  padding: 0px;
  background: transparent;
  box-shadow: none;
}
.plyr .plyr__controls button svg {
  display: inline-block;
  margin: 0 auto;
  width: 16px !important;
}
.plyr .plyr__controls button[data-plyr=play] svg {
  width: 9px !important;
}
.plyr .plyr__controls button[data-plyr=play][aria-label=Pause] svg {
  width: 10px !important;
}

body {
  font-family: "Arial Regular", sans-serif;
  font-size: 13px;
  font-weight: normal;
  line-height: 1.1;
  letter-spacing: 0.3px;
  color: black;
  background: white;
  -webkit-font-smoothing: antialiased;
  margin: 0px;
}
body.noscroll {
  overflow: hidden;
}

#back-button {
  position: fixed;
  z-index: 99991;
  top: calc(25px - 2px);
  right: calc(40px - 2px);
  cursor: pointer;
  text-align: center;
}
.noscroll #back-button {
  display: none;
}

#close-button {
  position: fixed;
  z-index: 99999;
  top: calc(25px - 2px);
  right: calc(40px - 2px);
  cursor: pointer;
  text-align: center;
}
body:not(.noscroll) #close-button {
  display: none;
}

html, body {
  height: 100%;
  margin: 0;
}

main#content {
  padding: 25px 40px;
  min-height: 100vh;
  margin: 0 auto;
}
@media screen and (max-width: 610px) {
  main#content {
    padding: 25px;
  }
}
section#recordings,
#product_content {
  -webkit-transition: 30ms linear padding-top;
  -moz-transition: 30ms linear padding-top;
  -ms-transition: 30ms linear padding-top;
  transition: 30ms linear padding-top;
  padding-top: calc(2 * (34px + 10px) + 40px);
}
@media screen and (max-width: 1000px) {
  body[data-state=play] section#recordings, body[data-state=pause] section#recordings,
body[data-state=play] #product_content,
body[data-state=pause] #product_content {
    padding-top: calc(4 * 34px + 3 * 10px + 40px);
  }
}
@media screen and (max-width: 610px) {
  body[data-state=play] section#recordings, body[data-state=pause] section#recordings,
body[data-state=play] #product_content,
body[data-state=pause] #product_content {
    padding-top: calc(5 * 34px + 3 * 10px + 40px);
  }
}

body:not(.category-page):not(.single) section#recordings {
  padding-top: calc(34px + 10px + 40px);
}

@media screen and (max-width: 1000px) {
  body:not(.category-page):not(.single)[data-state=play] #recordings,
body:not(.category-page):not(.single)[data-state=pause] #recordings {
    padding-top: calc(3 * 34px + 2 * 10px + 40px);
  }
}
@media screen and (max-width: 610px) {
  body:not(.category-page):not(.single)[data-state=play] #recordings,
body:not(.category-page):not(.single)[data-state=pause] #recordings {
    padding-top: calc(4 * 34px + 2 * 10px + 40px);
  }
}

#product_content {
  max-width: 100%;
}
#product_content h1, #product_content h2, #product_content h3, #product_content h4, #product_content h5, #product_content h6, #product_content p, #product_content address, #product_content time, #product_content a.wp-block-button__link {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  filter: none;
}
#product_content, #product_content #mc_embed_signup #mc-embedded-subscribe-form input {
  font-family: "Arial Regular", sans-serif;
  font-size: 16px;
  letter-spacing: 0.4px;
  line-height: 1.3;
}
#product_content #mc_embed_signup form {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  filter: none;
}
#product_content #mc_embed_signup .mc-field-group input {
  padding: 6px 0 7px 0px;
  background: white;
  border-radius: 0px;
  box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.25);
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  filter: none;
  border: 0px !important;
}
#product_content #mc_embed_signup #mc-embedded-subscribe-form input#mc-embedded-subscribe, #product_content #mc_embed_signup .mc-field-group label, #product_content #mc-embedded-subscribe, #product_content #mc_embed_signup #mc-embedded-subscribe-form div.mce_inline_error, #product_content #mc_embed_signup #mce-success-response, #product_content #mc_embed_signup #mce-error-response, #product_content #mc_embed_signup div.response, #product_content #mc_embed_signup div#mce-responses {
  font-family: "Arial Regular", sans-serif;
  font-size: 13px;
  font-weight: normal;
  line-height: 1.1;
  letter-spacing: 0.3px;
}
#product_content p:not(:last-child) {
  margin-bottom: 1em;
}
#product_content [class^=wp-image-] {
  display: block;
  margin: 17px 0px;
}
#product_content [class^=wp-image-] + #product_content [class^=wp-image-] {
  margin-top: 0px;
}

.columns {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
}
.columns > div {
  width: calc((100% - 120px) / 2);
}
.columns > div > *:not(:first-child) {
  margin-top: 1.3em;
}
@media screen and (max-width: 800px) {
  .columns {
    display: block;
  }
  .columns > div {
    width: 100%;
  }
  .columns > div:first-child {
    margin-bottom: 1em;
  }
}

section#products .snippet.product {
  margin-bottom: 60px;
}
main#content section#products {
  padding-top: 60px;
  display: inline-block;
}

section#recordings {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto auto auto auto;
  grid-template-columns: auto auto auto auto;
  column-gap: 40px;
  text-align: center;
  padding-bottom: 25px;
}
@media screen and (min-width: 1400px) {
  section#recordings {
    -ms-grid-columns: auto auto auto auto auto;
    grid-template-columns: auto auto auto auto auto;
  }
}
@media screen and (max-width: 1000px) {
  section#recordings {
    -ms-grid-columns: auto auto auto;
    grid-template-columns: auto auto auto;
  }
}
@media screen and (max-width: 610px) {
  section#recordings {
    column-gap: 65px;
    -ms-grid-columns: auto auto;
    grid-template-columns: auto auto;
    justify-content: center;
    -ms-grid-columns: 150px 150px;
    grid-template-columns: 150px 150px;
    column-gap: 40px;
  }
}
@media screen and (max-width: 400px) {
  section#recordings {
    -ms-grid-columns: 150px;
    grid-template-columns: 150px;
  }
}
.IE section#recordings {
  display: block;
}
.IE section#recordings .corner {
  display: none;
}
.IE section#recordings .file .play {
  margin-left: -6px;
  margin-top: 0px;
}
.IE section#recordings article.snippet {
  display: inline-block;
  padding-left: calc((100% - 5 * 80px) / (4 * 2));
  padding-right: calc((100% - 5 * 80px) / (4 * 2));
}
@media screen and (min-width: 1400px) {
  .IE section#recordings article.snippet {
    padding-left: calc((100% - 6 * 80px) / (5 * 2));
    padding-right: calc((100% - 6 * 80px) / (5 * 2));
  }
}
@media screen and (max-width: 1000px) {
  .IE section#recordings article.snippet {
    padding-left: calc((100% - 4 * 80px) / (3 * 2));
    padding-right: calc((100% - 4 * 80px) / (3 * 2));
  }
}
@media screen and (max-width: 610px) {
  .IE section#recordings article.snippet {
    padding-left: calc((100% - 3 * 80px) / (2 * 2));
    padding-right: calc((100% - 3 * 80px) / (2 * 2));
  }
}

.product_icon {
  width: 100%;
  height: auto;
  -webkit-animation: 33s linear rotate infinite;
  -moz-animation: 33s linear rotate infinite;
  -ms-animation: 33s linear rotate infinite;
  animation: 33s linear rotate infinite;
}

article {
  z-index: 2;
}
article.snippet {
  color: black;
  width: 80px;
  overflow: visible;
  max-width: 100%;
  margin: 0 auto;
  height: 105px;
  margin-bottom: 158px;
  display: inline-block;
  vertical-align: text-top;
  text-align: center;
}
article.snippet.product > a:hover .caption, article.snippet.product > a:active .caption {
  color: white;
}
article.snippet.product > a:hover .caption > *, article.snippet.product > a:active .caption > * {
  background: rgba(0, 0, 0, 0.4);
}
article.snippet.product > a > div {
  width: 80px;
  height: 105px;
}
@media screen and (max-width: 610px) {
  article.snippet {
    margin-left: calc((100vw - 2 * 80px) / 4 - 40px);
    margin-right: calc((100vw - 2 * 80px) / 4 - 40px);
  }
  article.snippet:nth-child(4n+1) {
    margin-left: calc((100vw - 2 * 80px) / 4 - 40px);
  }
}
@media screen and (max-width: 400px) {
  article.snippet {
    margin-left: calc((100vw - 2 * 80px) / 4 - 40px);
    margin-right: calc((100vw - 2 * 80px) / 4 - 25px);
  }
  article.snippet:nth-child(4n+1) {
    margin-left: calc((100vw - 2 * 80px) / 4 - 40px);
  }
}

.caption {
  text-align: left;
  width: 150px;
  margin-top: 10px;
  pointer-events: none;
}
.caption, .caption h1 {
  font-family: "Arial Regular", sans-serif;
  font-size: 13px;
  font-weight: normal;
  line-height: 1.1;
  letter-spacing: 0.3px;
  line-height: 1.3;
}
.caption a, .caption a:hover {
  margin-bottom: 0px;
  border-bottom: none;
}
.caption * {
  display: inline-block;
  width: auto;
}
@media (pointer: fine) {
  .file:hover + .caption > * {
    color: white;
    background: rgba(0, 0, 0, 0.4);
    -webkit-filter: none;
    -moz-filter: none;
    -ms-filter: none;
    filter: none;
  }
  .file:hover + .caption > * address {
    filter: none;
  }
}
.file:hover + .caption > address {
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}

/* Elements */
button, a.wp-block-button__link {
  display: inline-block;
  -webkit-appearance: none;
  border: none;
  box-shadow: none;
  font-family: "Arial Regular", sans-serif;
  font-size: 16px;
  letter-spacing: 0.4px;
  line-height: 1.3;
  cursor: pointer;
  background-color: transparent;
  color: inherit;
  border-color: inherit;
  height: auto;
  padding: 0px;
  border: none;
  text-align: center;
  margin: auto;
}
.type-small button, .type-small a.wp-block-button__link {
  font-family: "Arial Regular", sans-serif;
  font-size: 13px;
  font-weight: normal;
  line-height: 1.1;
  letter-spacing: 0.3px;
}
button > div, a.wp-block-button__link > div {
  height: 45px;
  border-color: inherit;
  padding: 0px 30px 1px 30px;
  border: 2px solid;
  color: inherit;
  background-color: inherit;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flex;
  display: inline-flex;
  -webkit-direction: column;
  -moz-direction: column;
  -ms-direction: column;
  direction: column;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}

.icon.file {
  -webkit-transition: opacity 1ms linear;
  -moz-transition: opacity 1ms linear;
  -ms-transition: opacity 1ms linear;
  transition: opacity 1ms linear;
  width: 80px;
  height: 105px;
  margin: 0px;
  background-size: cover;
  -webkit-clip-path: polygon(0 0, 60px 0%, 100% 25px, 100% 100%, 0 100%);
  -moz-clip-path: polygon(0 0, 60px 0%, 100% 25px, 100% 100%, 0 100%);
  -ms-clip-path: polygon(0 0, 60px 0%, 100% 25px, 100% 100%, 0 100%);
  clip-path: polygon(0 0, 60px 0%, 100% 25px, 100% 100%, 0 100%);
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  box-shadow: inset 2px 2px 2px rgba(255, 255, 255, 0.7), inset -2px -2px 2px rgba(0, 0, 0, 0.7);
  background-position: center center;
  background-repeat: no-repeat;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-direction: column;
  -moz-direction: column;
  -ms-direction: column;
  direction: column;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  -ms-justify-content: space-around;
  justify-content: space-around;
  cursor: pointer;
}
@media (pointer: fine) {
  .icon.file:hover {
    background-image: unset !important;
  }
}
.snippet[data-state=play] .icon.file, .snippet[data-state=pause] .icon.file {
  background-image: unset !important;
}
.snippet[data-state=unstarted]:not(:hover) .icon.file .icon.play, .snippet[data-state=play] .icon.file .icon.play {
  display: none;
}
@media (pointer: none), (pointer: coarse) {
  .icon.file .snippet .icon.play {
    display: block !important;
  }
  .snippet[data-state=play] .icon.file .icon.play {
    display: none !important;
  }
}
.snippet[data-state=pause] .icon.file .icon.pause, .snippet[data-state=unstarted] .icon.file .icon.pause {
  display: none;
}
.snippet[data-state=pause] .icon.file .icon.play {
  display: block;
}
.icon.file * {
  pointer-events: none;
}
.icon.file:not(:hover) .icon.play, .icon.file audio.playing ~ .icon.play {
  display: none;
}
.icon.file audio:not(.playing) ~ .icon.pause {
  display: none;
}
@media (pointer: none), (pointer: coarse) {
  .icon.file audio ~ .icon.play {
    display: block !important;
  }
  .icon.file audio.playing ~ .icon.play {
    display: none !important;
  }
}
.icon .corner {
  display: block;
  position: absolute;
  margin-left: 60px;
  width: 25px;
  height: inherit;
}
.icon .corner svg {
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.4);
}
.icon .corner svg path {
  fill: #a5a5a5;
}
.icon.pause {
  height: 17px;
  width: auto;
  margin: 0 auto;
  -webkit-filter: drop-shadow(0px 0px 2px white);
  -moz-filter: drop-shadow(0px 0px 2px white);
  -ms-filter: drop-shadow(0px 0px 2px white);
  filter: drop-shadow(0px 0px 2px white);
}
.icon.play {
  height: 17px;
  width: auto;
  margin: 0 auto;
  padding-left: 8px;
  -webkit-filter: drop-shadow(0px 0px 2px white);
  -moz-filter: drop-shadow(0px 0px 2px white);
  -ms-filter: drop-shadow(0px 0px 2px white);
  filter: drop-shadow(0px 0px 2px white);
}

#header {
  padding: 2px;
  position: fixed;
  z-index: 99998;
  pointer-events: none;
  top: 0px;
  left: 0px;
  right: 0px;
  padding: calc(25px - 2px) calc(40px - 2px);
  height: auto;
  overflow: scroll;
}
#header > * {
  pointer-events: all;
}
@media screen and (max-width: 610px) {
  #header {
    padding: calc(25px - 2px);
  }
}
.noscroll #header {
  background: linear-gradient(to bottom, #7BAEDC 70%, rgba(255, 255, 255, 0.1));
  bottom: 0px;
  pointer-events: all;
}
#header nav {
  position: relative;
  z-index: 6;
  display: inline-block;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flex;
  display: inline-flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
#header nav.block {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
}
#header nav > * {
  margin: 0px;
  margin-right: 10px;
  margin-bottom: 10px;
}
#header #toggle-cities, #header #toggle-info, #header #ctrl-info {
  position: relative;
}
#header #toggle-cities > span, #header #toggle-info > span, #header #ctrl-info > span {
  text-align: center;
}
#header #toggle-cities > span:last-child, #header #toggle-info > span:last-child, #header #ctrl-info > span:last-child {
  opacity: 0;
  width: calc(100% - 16px * 2);
  position: absolute;
}
#header #ctrl-info.open, #header #ctrl-info.open:hover, #header #ctrl-info.open:active {
  background: #FF1E1E;
}
#header #ctrl-info.open > span:first-child {
  opacity: 0;
}
#header #ctrl-info.open > span:last-child {
  opacity: 1;
}
.isCities #header #toggle-cities {
  background: #FF1E1E;
}
.isCities #header #toggle-cities > span:first-child {
  opacity: 0;
}
.isCities #header #toggle-cities > span:last-child {
  opacity: 1;
}
.isInfo #header #toggle-info {
  background: #FF1E1E;
}
.isInfo #header #toggle-info > span:first-child {
  opacity: 0;
}
.isInfo #header #toggle-info > span:last-child {
  opacity: 1;
}
#header::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}

#control {
  z-index: 5;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flex;
  display: inline-flex;
  -webkit-direction: column;
  -moz-direction: column;
  -ms-direction: column;
  direction: column;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  vertical-align: top;
  background: white;
  width: 555px;
  margin-right: 70px;
  -webkit-transition: 100ms linear opacity;
  -moz-transition: 100ms linear opacity;
  -ms-transition: 100ms linear opacity;
  transition: 100ms linear opacity;
}
@media screen and (max-width: 1000px) {
  #control[data-id] + nav.block {
    margin-top: 10px;
  }
}
#control:not([data-id]) {
  display: none;
}
@media screen and (max-width: 635px) {
  #control {
    max-width: 100%;
  }
}
#control:not(.expanded) #content-info {
  display: none;
  height: 0px;
}
#control:not(.expanded) > div {
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  height: 34px;
  overflow: none;
}
@media screen and (max-width: 1000px) {
  #control:not(.expanded) > div {
    height: calc(2 * 34px);
  }
}
@media screen and (max-width: 635px) {
  #control:not(.expanded) > div {
    height: calc(3 * 34px);
  }
}
#control > div {
  height: 34px;
  min-width: 34px;
  padding: 0px 16px;
  border-radius: 0px;
  font-family: "Arial Regular", sans-serif;
  font-size: 13px;
  font-weight: normal;
  line-height: 1.1;
  letter-spacing: 0.3px;
  background: white;
  -webkit-transition: 150ms linear background-color;
  -moz-transition: 150ms linear background-color;
  -ms-transition: 150ms linear background-color;
  transition: 150ms linear background-color;
  box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.25);
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flex;
  display: inline-flex;
  -webkit-direction: column;
  -moz-direction: column;
  -ms-direction: column;
  direction: column;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  -ms-justify-content: space-around;
  justify-content: space-around;
  height: auto;
  min-height: 34px;
  padding: 0px;
}
#control > div.rounded {
  border-radius: 0px 34px 34px 0px;
  padding-right: 18px;
}
#control > div.rounded.reverse {
  padding-left: 18px;
  padding-right: 16px;
  border-radius: 34px 0px 0px 34px;
}
#control > div svg {
  height: inherit;
  width: inherit;
}
#control > div:hover, #control > div:active {
  background: #00ff37;
}
@media (pointer: none), (pointer: coarse) {
  #control > div:hover, #control > div:active {
    background-color: #00ff37;
  }
}
#control > div.active, a.active #control > div {
  background: #00ff37;
}
#control > div:hover, #control > div:active {
  background: white;
}
#control .btn-group {
  display: flex;
  flex-shrink: 0;
}
#control .btn-group > span {
  height: 34px;
  min-width: 34px;
  padding: 0px 16px;
  border-radius: 0px;
  font-family: "Arial Regular", sans-serif;
  font-size: 13px;
  font-weight: normal;
  line-height: 1.1;
  letter-spacing: 0.3px;
  background: white;
  -webkit-transition: 150ms linear background-color;
  -moz-transition: 150ms linear background-color;
  -ms-transition: 150ms linear background-color;
  transition: 150ms linear background-color;
  box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.25);
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flex;
  display: inline-flex;
  -webkit-direction: column;
  -moz-direction: column;
  -ms-direction: column;
  direction: column;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  -ms-justify-content: space-around;
  justify-content: space-around;
  box-shadow: -1px 0px 1px 0px rgba(0, 0, 0, 0.25);
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-shrink: 0;
  flex-shrink: 0;
  margin: 0px;
  white-space: nowrap;
}
#control .btn-group > span.rounded {
  border-radius: 0px 34px 34px 0px;
  padding-right: 18px;
}
#control .btn-group > span.rounded.reverse {
  padding-left: 18px;
  padding-right: 16px;
  border-radius: 34px 0px 0px 34px;
}
#control .btn-group > span svg {
  height: inherit;
  width: inherit;
}
#control .btn-group > span:hover, #control .btn-group > span:active {
  background: #00ff37;
}
@media (pointer: none), (pointer: coarse) {
  #control .btn-group > span:hover, #control .btn-group > span:active {
    background-color: #00ff37;
  }
}
#control .btn-group > span.active, a.active #control .btn-group > span {
  background: #00ff37;
}
#control header {
  position: relative;
  width: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
}
#control header > span {
  display: inline-block;
  height: 34px;
  min-width: 34px;
}
@media screen and (max-width: 1000px) {
  #control header {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #control header #content-name {
    width: 380px;
    -webkit-flex-grow: 1;
    -moz-flex-grow: 1;
    -ms-flex-grow: 1;
    flex-grow: 1;
  }
  #control header .btn-group {
    order: 2;
  }
  #control header .plyr {
    order: 3;
    width: 100%;
    min-width: 0px;
    height: 34px;
  }
  #control header .plyr .plyr__volume {
    min-width: 0px;
    width: 34px;
    margin: 0px;
  }
  #control header .plyr .plyr__volume input {
    display: none;
  }
  #control header .js-marquee-wrapper {
    -webkit-animation: none !important;
    -moz-animation: none !important;
    -ms-animation: none !important;
    animation: none !important;
    margin-left: 10px !important;
  }
  #control header .js-marquee-wrapper .js-marquee:last-child {
    display: none !important;
  }
}
@media screen and (max-width: 635px) {
  #control header #content-name {
    width: 100%;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-grow: 0;
    flex-grow: 0;
  }
  #control header .btn-group {
    order: unset;
    width: 100%;
  }
  #control header .btn-group > span {
    width: 50%;
    min-width: 0px;
    position: relative;
    text-align: center;
    flex-shrink: 1;
  }
  #control header .btn-group #ctrl-info > span:first-child {
    width: 100%;
  }
  #control header .plyr {
    order: unset;
  }
}
#control #content-name {
  width: 100px;
  display: inline-block;
  flex-shrink: 0;
  overflow: hidden;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flex;
  display: inline-flex;
  -webkit-direction: column;
  -moz-direction: column;
  -ms-direction: column;
  direction: column;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  -ms-justify-content: space-around;
  justify-content: space-around;
}
@media screen and (max-width: 1000px) {
  #control #content-name {
    width: 380px;
  }
}
@media screen and (max-width: 635px) {
  #control #content-name {
    width: 100%;
  }
}

.category-canceller {
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flex;
  display: inline-flex;
}
.category-canceller > span {
  height: 34px;
  min-width: 34px;
  padding: 0px 16px;
  border-radius: 0px;
  font-family: "Arial Regular", sans-serif;
  font-size: 13px;
  font-weight: normal;
  line-height: 1.1;
  letter-spacing: 0.3px;
  background: white;
  -webkit-transition: 150ms linear background-color;
  -moz-transition: 150ms linear background-color;
  -ms-transition: 150ms linear background-color;
  transition: 150ms linear background-color;
  box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.25);
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flex;
  display: inline-flex;
  -webkit-direction: column;
  -moz-direction: column;
  -ms-direction: column;
  direction: column;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  -ms-justify-content: space-around;
  justify-content: space-around;
}
.category-canceller > span.rounded {
  border-radius: 0px 34px 34px 0px;
  padding-right: 18px;
}
.category-canceller > span.rounded.reverse {
  padding-left: 18px;
  padding-right: 16px;
  border-radius: 34px 0px 0px 34px;
}
.category-canceller > span svg {
  height: inherit;
  width: inherit;
}
.category-canceller > span:hover, .category-canceller > span:active {
  background: #00ff37;
}
@media (pointer: none), (pointer: coarse) {
  .category-canceller > span:hover, .category-canceller > span:active {
    background-color: #00ff37;
  }
}
.category-canceller > span.active, a.active .category-canceller > span {
  background: #00ff37;
}
.category-canceller > span:hover, .category-canceller > span:active {
  background: white;
  cursor: normal;
}

#additionalContent {
  padding: 2px;
  padding-top: 42px;
  padding-bottom: 25vh;
  background-position: fixed;
  font-family: "Arial Regular", sans-serif;
  font-size: 16px;
  letter-spacing: 0.4px;
  line-height: 1.3;
  -webkit-transition: 300ms linear opacity;
  -moz-transition: 300ms linear opacity;
  -ms-transition: 300ms linear opacity;
  transition: 300ms linear opacity;
  opacity: 1;
}
#additionalContent:not(.visible) {
  opacity: 0;
  pointer-events: none;
}

#ctrl-info {
  cursor: pointer;
  clear: right;
  text-align: right;
}
#ctrl-info > span {
  width: 43px;
  display: inline-block;
  text-align: center;
}
#ctrl-info:not(.visible) {
  display: none;
  height: 0px;
}

#content-info {
  padding: 10px;
  padding-top: 0px;
}
@media screen and (max-width: 635px) {
  #content-info {
    padding-top: 10px;
  }
}
#content-info .caption {
  padding: 0px;
}
#content-info .caption h1, #content-info .caption h1 + br {
  display: none;
  height: 0px;
  padding: 0px;
}

#copylink {
  margin-right: 10px;
  cursor: pointer;
}
#copylink > span {
  pointer-events: none;
}

#MFInfo.collapsed {
  display: none;
}
#MFInfo h1, #MFInfo h2, #MFInfo h3, #MFInfo h4, #MFInfo h5, #MFInfo h6, #MFInfo p, #MFInfo address, #MFInfo time, #MFInfo a.wp-block-button__link {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  filter: none;
}

#cities.collapsed {
  display: none;
}
#cities li:last-child {
  margin-bottom: 25px;
}
#cities li a.pill:hover {
  background: #00ff37;
}
#cities::-webkit-scrollbar {
  width: 0;
  background: transparent;
}
#cities::-moz-scrollbar {
  width: 0;
  background: transparent;
}
#cities::scrollbar {
  width: 0;
  background: transparent;
}

.countryWrap {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.countryGroup {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-direction: column;
  -moz-direction: column;
  -ms-direction: column;
  direction: column;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 147px;
  margin-right: 25px;
  margin-bottom: 40px;
}
@media screen and (max-width: 610px) and (min-width: 401px) {
  .countryGroup {
    width: calc((100% - 25pxpx)/2);
  }
  .countryGroup:nth-child(even) {
    margin-right: 0px;
  }
}
.countryGroup label {
  height: 34px;
  min-width: 34px;
  padding: 0px 16px;
  border-radius: 0px;
  font-family: "Arial Regular", sans-serif;
  font-size: 13px;
  font-weight: normal;
  line-height: 1.1;
  letter-spacing: 0.3px;
  background: white;
  -webkit-transition: 150ms linear background-color;
  -moz-transition: 150ms linear background-color;
  -ms-transition: 150ms linear background-color;
  transition: 150ms linear background-color;
  box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.25);
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flex;
  display: inline-flex;
  -webkit-direction: column;
  -moz-direction: column;
  -ms-direction: column;
  direction: column;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  -ms-justify-content: space-around;
  justify-content: space-around;
  padding: 0px;
  cursor: default;
  box-shadow: none;
}
.countryGroup label.rounded {
  border-radius: 0px 34px 34px 0px;
  padding-right: 18px;
}
.countryGroup label.rounded.reverse {
  padding-left: 18px;
  padding-right: 16px;
  border-radius: 34px 0px 0px 34px;
}
.countryGroup label svg {
  height: inherit;
  width: inherit;
}
.countryGroup label:hover, .countryGroup label:active {
  background: #00ff37;
}
@media (pointer: none), (pointer: coarse) {
  .countryGroup label:hover, .countryGroup label:active {
    background-color: #00ff37;
  }
}
.countryGroup label.active, a.active .countryGroup label {
  background: #00ff37;
}
.countryGroup label, .countryGroup label:hover {
  background: transparent;
}

.cityWrap {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-direction: column;
  -moz-direction: column;
  -ms-direction: column;
  direction: column;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.cityWrap li {
  margin-bottom: 10px;
}

#backgrounds, #previews {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0px;
  left: 0px;
  z-index: -1;
}
#backgrounds[data-count="1"] .background-image, #previews[data-count="1"] .background-image {
  opacity: 1;
}
#backgrounds[data-count="2"] .background-image, #previews[data-count="2"] .background-image {
  opacity: 0.5;
}
#backgrounds[data-count="3"] .background-image, #previews[data-count="3"] .background-image {
  opacity: 0.33;
}
#backgrounds[data-count="4"] .background-image, #previews[data-count="4"] .background-image {
  opacity: 0.25;
}

.bkg-wrap {
  position: fixed;
  z-index: 0;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  pointer-events: none;
}
#product_content .bkg-wrap {
  z-index: -1;
}
.snippet:not([data-state=play]):hover + .bkg-wrap, .snippet:not([data-state=play]):active + .bkg-wrap {
  z-index: 1;
}
.bkg-wrap.remain {
  z-index: -1;
}
.bkg-wrap.remain.new {
  z-index: 1;
}

.background-image {
  background-size: cover;
  background-position: center center;
  height: 100%;
  width: 100%;
  pointer-events: none;
  background-attachment: fixed;
  -webkit-transition: 800ms opacity;
  -moz-transition: 800ms opacity;
  -ms-transition: 800ms opacity;
  transition: 800ms opacity;
  opacity: 0;
}
@media screen and (max-width: 610px) {
  .background-image {
    background-attachment: initial;
  }
}
.snippet:not([data-state=play]):hover + .bkg-wrap .background-image {
  opacity: 0.5;
}
.bkg-wrap.remain .background-image {
  opacity: 1;
}
body:not([data-state=play]) .snippet:hover + .bkg-wrap .background-image {
  opacity: 1;
}
@media (pointer: none), (pointer: coarse) {
  body:not([data-state=play]) .snippet:hover + .bkg-wrap .background-image {
    opacity: 0;
  }
}
body:not(.preloaded) .background-image {
  background-image: unset !important;
}

/* Typography */
h1, h2, h3, h4, h5, h6, p, address, time, a.wp-block-button__link {
  margin: 0px;
  margin-block-start: 0px;
  margin-block-end: 0px;
  font-size: 1em;
  font-style: inherit;
  font-weight: inherit;
  -webkit-filter: drop-shadow(0px 0px 2px white);
  -moz-filter: drop-shadow(0px 0px 2px white);
  -ms-filter: drop-shadow(0px 0px 2px white);
  filter: drop-shadow(0px 0px 2px white);
}

address {
  font-style: normal;
}

address, u, .underline {
  text-decoration: underline;
}

sup {
  font-size: 10px;
  margin-left: 6px;
}

button, .pill, .pagination-link, .wp-block-buttons .wp-block-button {
  height: 34px;
  min-width: 34px;
  padding: 0px 16px;
  border-radius: 0px;
  font-family: "Arial Regular", sans-serif;
  font-size: 13px;
  font-weight: normal;
  line-height: 1.1;
  letter-spacing: 0.3px;
  background: white;
  -webkit-transition: 150ms linear background-color;
  -moz-transition: 150ms linear background-color;
  -ms-transition: 150ms linear background-color;
  transition: 150ms linear background-color;
  box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.25);
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flex;
  display: inline-flex;
  -webkit-direction: column;
  -moz-direction: column;
  -ms-direction: column;
  direction: column;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  -ms-justify-content: space-around;
  justify-content: space-around;
}
button.rounded, .pill.rounded, .pagination-link.rounded, .wp-block-buttons .wp-block-button.rounded {
  border-radius: 0px 34px 34px 0px;
  padding-right: 18px;
}
button.rounded.reverse, .pill.rounded.reverse, .pagination-link.rounded.reverse, .wp-block-buttons .wp-block-button.rounded.reverse {
  padding-left: 18px;
  padding-right: 16px;
  border-radius: 34px 0px 0px 34px;
}
button svg, .pill svg, .pagination-link svg, .wp-block-buttons .wp-block-button svg {
  height: inherit;
  width: inherit;
}
button:hover, button:active, .pill:hover, .pill:active, .pagination-link:hover, .pagination-link:active, .wp-block-buttons .wp-block-button:hover, .wp-block-buttons .wp-block-button:active {
  background: #00ff37;
}
@media (pointer: none), (pointer: coarse) {
  button:hover, button:active, .pill:hover, .pill:active, .pagination-link:hover, .pagination-link:active, .wp-block-buttons .wp-block-button:hover, .wp-block-buttons .wp-block-button:active {
    background-color: #00ff37;
  }
}
button.active, a.active button, .pill.active, a.active .pill, .pagination-link.active, a.active .pagination-link, .wp-block-buttons .wp-block-button.active, a.active .wp-block-buttons .wp-block-button {
  background: #00ff37;
}
button.active, .pill.active, .pagination-link.active, .wp-block-buttons .wp-block-button.active {
  color: black;
}

#product_content a,
a.snippet:not(.product),
.columns p a {
  text-decoration: underline;
  cursor: pointer;
}
#product_content a:hover, #product_content a:active, #product_content a.active,
a.snippet:not(.product):hover,
a.snippet:not(.product):active,
a.snippet:not(.product).active,
.columns p a:hover,
.columns p a:active,
.columns p a.active {
  color: #00ff37;
}

a {
  text-decoration: none;
  color: inherit;
}
a.active {
  color: #00ff37;
}
a.pagination-link {
  padding: 0px;
  text-align: center;
  min-width: 34px;
  margin: 0px 10px 10px 0px;
}
.caption a, .caption a:hover {
  border-bottom: none !important;
  pointer-events: all;
}
.caption a:hover {
  color: #00ff37;
}

figure {
  margin-inline-start: 0px;
  margin-inline-end: 0px;
}
#MFInfo figure:first-child img {
  height: 15px;
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  filter: none;
}
#MFInfo p + figure, #MFInfo p + figure + figure {
  margin: 10px 27px 0px 0px !important;
  display: inline-block;
  vertical-align: middle;
}
#MFInfo p + figure img, #MFInfo p + figure + figure img {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  filter: none;
}
#MFInfo p + figure img {
  height: 12px;
}
#MFInfo p + figure + figure img {
  height: 27px;
}
figure img {
  height: 20px;
}

img {
  -webkit-filter: drop-shadow(0px 0px 2px white);
  -moz-filter: drop-shadow(0px 0px 2px white);
  -ms-filter: drop-shadow(0px 0px 2px white);
  filter: drop-shadow(0px 0px 2px white);
}

svg.close {
  height: 11px;
  width: 11px;
  margin-bottom: 4px;
  margin-left: -2px;
}
svg.close path {
  fill: black;
}

a:hover path.turngreen {
  fill: #00ff37;
}

.text-center {
  text-align: center;
}

@keyframes rotate {
  0% {
    transform: rotateZ(0deg);
  }
  100% {
    transform: rotateZ(360deg);
  }
}

/*# sourceMappingURL=base.css.map */
