@CHARSET "UTF-8";

/* Add @import here - don't forget to start the address with //: to ensure HTTPS compatibility */
@import url('https://fonts.googleapis.com/css?family=Lato|Oswald');

/* Selected text */
*::selection, input::selection {
  background: rgba(255,255,255,0.4);
}

*::-moz-selection {
  background: rgba(255,255,255,0.4);
}

/* defaults */
body {
  margin: 0;
  padding: 181px 0;
  background: url(img/page-texture.jpg) center center no-repeat;
  background-size: cover;
  background-attachment: fixed;
  font-family: Lato, sans-serif;
  font-size: 13pt;
  color: #fff;
}

/* "back to top" arrow */
#up-arrow {
  position: fixed;
  font-size: 0;
  bottom: 10px;
  right: -100px;
  height: 60px;
  width: 60px;
  opacity: 0;
  cursor: pointer;
  transition: right 0.4s, opacity 0.3s, background 0.3s;
  z-index: 10000;

  border: 1px solid #333;
  background: #000;
  color: #fff;
  border-radius: 30px;
}

#up-arrow:after {
  display: block;
  position: absolute;
  content: '▲';
  font-size: 16pt;
  top: 12px;
  left: 22px;
}

body.menu-scrolled #up-arrow:hover {
  background: #333;
}

body.menu-scrolled #up-arrow {
  right: 10px;
  opacity: 1;
}

.expressslides-auto-onoff {
  display: none;
}

body .expressslides-pager {
  top: calc(50% - 50px);
  right: 0;
  bottom: 0;
  left: auto;
  background: transparent;
  vertical-align: middle;
}

body .expressslides-pager > span {
  display: block;
  margin-bottom: 7px;
}

/** Cookie warning */
.flexi-cookie {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 0 10px 10px;
  border: 1px solid #222;
  background: rgba(0,0,0,0.5);
  text-align: center;
  border-radius: 2px;
  z-index: 10000;
}

/** Main page canvas wrapper - defines page width */
.content.brokenout .pb-block-outer>div, .wrapper {
  width: 1000px;
  margin: 0 auto;
}

/** Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 20px;
  font-family: Oswald, sans-serif;
  text-transform: uppercase;
  font-size: 28px;
  letter-spacing: 2px;
}

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

.header em {
  font-style: normal;
  color: #ef0606;
}

.diamond .stroke-white {
  stroke: #fff;
  fill: #111;
  transition: fill 0.3s;
}

.diamond .stroke-grey {
  stroke: #a8a8a8;
  fill: #111;
  transition: fill 0.3s;
}

/** Menu */

.menubar {
  height: 0;
  width: 0;
}

body nav.menu.flyout {
  display: block;
  position: fixed;
  overflow-y: auto;
  overflow-x: hidden;
  top: 122px;
  left: -100%;
  bottom: 0;
  box-sizing: border-box;
  transition: left 0.5s, opacity 0.3s;
  width: 100%;
  margin: 0;
  text-align: left;
  opacity: 0;
  z-index: 99999;
  background: rgba(0,0,0,0.6);
}

nav.menu.flyout span.item span.submenu {
  display: block;
}
body nav.menu.flyout.open, body.menu-open nav.menu {
  left: 0 !important;
  opacity: 1 !important;
}

/* bar items */

nav.menu>span.item>a,
nav.menu span.item span.submenu a {
  text-align: center;
  color: #fff;
  transition: color 0.3s;
  padding: 20px;
  font-family: Oswald, sans-serif;
  font-size: 28px;
  letter-spacing: 2px;
  display: block !important;
}

nav.menu span.item {
  display: block;
}

nav.menu span.toplevel-sep {
  display: none;
}

nav.menu>span.item>a:hover,
nav.menu span.item span.submenu a:hover {
  color: #ef0606;
}

/** Flyout buttons */

.button.flyo-show {
  display: none;
}

.button.flyo-hide {
  display: none;
}

.flyo-header {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: right;
  padding: 10px;
  color: #aaa;
  display: block !important;
}

/** Menu when page is scrolled down */

/** Flexi widgets */
.flexi-system-widgets {
  padding: 2px 0;
  text-align: center;
  font-size: 0;
}

.flexi-system-widget {
  display: inline-block;
  border-left: 1px solid #333;
  padding: 5px 10px;
  font-size: 12pt;
}

.flexi-system-widget:first-child {
  border-left: 0;
}

/** General content styles */

hr {
  background: url(img/hr.png) center center no-repeat;
  height: 64px;
  border: none;
}

.page-outer {
  position: fixed;
  top: 121px;
  left: 0;
  bottom: 121px;
  right: 0;
  overflow-y: auto;
  overflow-x: hidden;
}

/** Remove top margin from the first element */
.content *:first-child {
  margin-top: 0;
}

.content {

}

.content p {
  line-height: 150%;
}

.content h1,
.content h2,
.content h3,
.content h4 {
  font-family: Oswald, sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/** Important for breakout/breakins */
.content:empty {
  display: none;
}

.content a:focus {
  outline: none !important;
}

.content a {
  color: #ef0606;
  transition: color 0.3s;
}

.content a:hover {
  color: #ef5757;
}

.footer {
  color: #fff;
  font-family: Oswald, sans-serif;
  padding: 20px;
  background: url(img/footer-texture.jpg) center center no-repeat;
  background-size: cover;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 0;
  transition: bottom 0.3s;
}

.menu-open .footer {
  bottom: -122px;
}

.footer .flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.col2.right {
  text-align: right;
}

.footer a {
  color: #fff;
  transition: color 0.3s;
  text-decoration: none;
  padding: 20px;
  font-size: 28px;
  text-transform: uppercase;
}

.footer img {
  padding: 0 30px;
}

.footer a:hover {
  color: #ef0606;
}

span.powered {
  display: inline-block;
  margin-left: 1em;
}

/** Buttons and button-type things */
button, input[type="submit"], .button, .formandu-button, input[type="button"], a.button, .eshop_userauth_buttonbox a {
  background: rgba(0,0,0,0.2);
  color: #fff;
  transition: color 0.3s, border 0.3s, background 0.3s;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  padding: 10px 20px;
  display: inline-block;
  text-decoration: none;
  border: 1px solid #fff;
  cursor: pointer;
  font-family: Oswald, sans-serif;
  text-transform: uppercase;
  font-size: 28px;
}

button:hover, input[type="submit"]:hover, .button:hover, .formandu-button:hover, input[type="button"]:hover, a.button:hover, .eshop_userauth_buttonbox a:hover {
  border-color: #ef0606;
  color: #ef0606;
  background: rgba(0,0,0,0.5);
}

.button.borderless {
  background: transparent;
  border: none;
  transition: color 0.3s;
}

.button.borderless:hover {
  color: #ef0606;
  border: none;
}

.button.borderless:hover .diamond polygon {
  fill: #DAA4A4;
}

.button.borderless svg {
  margin-right: 5px;
  vertical-align: bottom;
}

#menu-toggle {
  position: relative;
}

#menu-toggle .sparkle {
  position: absolute;
  top: 50%;
  left: 50px;
  height: 0px;
  width: 0px;
  display: block;
  background: #f00;
  box-shadow: 0 0 0 rgba(255, 255, 255, 0);
  z-index: -1;
  transition: box-shadow 0.3s;
  border-radius: 50%;
}

#menu-toggle:hover .sparkle, body.menu-open #menu-toggle .sparkle{
  box-shadow: 0 0 30px 20px #fff;
}

/** Text controls */
.formandu-text, .formandu-dropdown, .formandu-textarea, select {
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.8);
  transition: border 0.3s;
  font-size: 14pt;
  font-family: Lato, sans-serif;
  margin: 10px;
  padding: 8px;
  width: calc(100% - 20px);
  box-sizing: border-box;
}

.formandu-text:hover, .formandu-text:focus, .formandu-dropdown:hover, .formandu-dropdown:focus, .formandu-textarea:hover, .formandu-textarea:focus, select:hover, select:focus {
  border: 1px solid #ef0606;
}

/*******************************************************************************
 ** Responsive */

/** Phone/tablet */

@media (max-width: 1000px) {
  .content.brokenout .pb-block-outer>div, .wrapper, .flexi-cookie-inner {
    width: 100%;
  }
  #up-arrow, .search .form {
    display: none;
  }
}

/** Menus */

@media (max-width: 975px) {
  #menu-toggle {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 100000;
  }
  .header {
    padding-top: 20px;
  }
  .menubar {
    height: 0;
    padding: 0;
  }
  body .button.flyo-show {
    display: none !important;
  }

  body .button.flyo-hide {
    display: none !important;
  }
  body nav.menu.flyout {
    display: block;
    position: fixed;
    overflow-y: auto;
    overflow-x: hidden;

    left: -100%;
    bottom: 40px !important;
    box-sizing: border-box;
    transition: left 0.5s, opacity 0.3s;
    width: 100% !important;
    margin: 0;
    text-align: left;
    opacity: 0;
    z-index: 99999;
    padding: 60px 0 50px;
    background: rgba(0,0,0,0.6);
    max-width: none !important;
  }

  nav.menu.flyout span.item span.submenu {
    display: block;
  }
  body nav.menu.flyout.open {
    left: 0;
    opacity: 1;
  }
  body .flyo-header {
    position: fixed;
    background: rgba(0,0,0,0.6);
    color: #fff;
  }
}

/** Big phone */

@media (max-width: 600px) {
  .header {
    position: static;
  }
  body nav.menu.flyout {
    top: 0 !important;
  }
  #menu-toggle {
    font-size: 0 !important;
    position: fixed;
    top: 0;
    left: 0;
    padding: 10px !important;
    z-index: 100000;
  }
  #menu-toggle .sparkle {
    left: 40px;
  }
  body {
    padding: 0;
  }
  .formandu-text, .formandu-textarea, .formandu-dropdown, .formandu-static-text, .formandu-listbox {
    width: 95%;
  }
  .footer {
    position: static;
  }
  .footer .flex {
    display: block !important;
  }
  .footer .flex img {
    display: none;
  }
  .footer a {
    padding: 10px;
    font-size: 16pt;
    text-align: center;
    display: block;
  }
  .page-outer {
    position: static;
    top: auto;
    left: auto;
    bottom: auto;
    right: auto;
    overflow-y: initial;
  }
  .flexi-cookie-msg {
    float: none;
    font-size: 0.8em;
    padding: 0;
    width: auto;
  }
  .flexi-cookie-buttons {
    width: auto;
    float: none;
    text-align: center;
    padding: 5px 0;
  }
  .content h1, .content h2, .content h3, .content p {
    padding-left: 3px;
    padding-right: 3px;
  }
  .footer, .col2.right, .header {
    text-align: center;
  }
  .flexi-system-widgets {
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
  }
  .flexi-system-widget {
    border-left: 0;
    display: block;
  }
  span.powered {
    display: block;
    margin-left: 0;
  }
}

