@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=Cinzel|Poppins:300');

/* Selected text */
*::selection, input::selection {
  background: #c0336b;
  color: #fff;
}

*::-moz-selection {
  background: #c0336b;
  color: #fff;
}

/* defaults */
body {
  margin: 0;
  padding: 0;
  background-color: #fff;
  font-family: Poppins, sans-serif; 
  font-size: 12pt;
  color: #000;
}

/* "back to top" arrow */
#up-arrow {
  position: fixed;
  bottom: 10px;
  right: -100px;  
  padding: 17px 24px 22px;
  opacity: 0;
  cursor: pointer;
  transition: right 0.4s, opacity 0.3s, background 0.1s;
  z-index: 10000;
    
  background: #eee;
  color: #333;
  border-radius: 100px;
  box-shadow: 4px 4px 8px rgba(40,40,40,0.7);
}

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

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

/** Cookie warning */
.flexi-cookie {
  position: fixed;
  border-top: 1px solid #3a0c66;
  border-right: 1px solid #3a0c66;
  background: #191919;
  color: #fff;
  padding: 0 10px;
  text-align: center;
  bottom: 0;
  left: 0;  
  z-index: 998;
}

.flexi-cookie-buttons {
  text-align: right;
}

.flexi-cookie-inner {
  padding-bottom: 10px;
}

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

/** Header */
.header {
  border-top: 10px solid #000;
  background: #fff;  
}

.header .wrapper {
}

.header .row {
  padding: 0;
}

/** Menu */

.menubar, nav.menu {
  text-transform: uppercase;
  font-weight: normal;
  font-family: Cinzel, serif;
  text-align: right;
}

/* bar items */

nav.menu>span.item>a {
  color: #000;
  transition: background 0.3s, color 0.3s, padding 0.3s;
  padding: 70px 20px;
}

nav.menu>span.item>a:hover {  
  color: #e24b88;
}

/* submenus */

nav.menu>span.item>span.submenu {
}

nav.menu span.item span.submenu a, 
nav.menu span.item.subitem {
  display: block;
}

nav.menu span.item span.submenu a {
  background: #000;
  color: #fff;
  text-align: center;
  transition: background 0.3s, color 0.3s;
  padding: 10px;
}

nav.menu span.item span.submenu a:hover {
  background: #e24b88;
  color: #000;
}

/** Flyout buttons */

.button.flyo-show {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  border-radius: 0;
  text-align: left;
}

.button.flyo-hide {
  border-radius: 0;
}

.flyo-header {
  text-align: center;
  padding-top: 5px;
}

/** Menu when page is scrolled down */

body.menu-scrolled div.menubar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #fff url(img/logo-icon.png) 10px center no-repeat;
  background-size: 54px 54px;
}

body.menu-scrolled nav.menu>span.item>a {
  padding: 20px;
}

/** 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 { 
  border: none;
  margin: 20px auto;
  border-top: 2px solid #000;
  width: 40%;
}

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

.content {
  
}

.content h1, 
.content h2, 
.content h3, 
.content h4 {
  font-family: Cinzel, serif;
  font-weight: normal;
  text-transform: uppercase;
}

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

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

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

.footer {
  color: #fff;
  background: #000;
  position: relative;
  padding: 20px 0;
}

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

.footer-sticky .footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
}

.footer a {
  color: #fff;
  transition: color 0.3s;
  text-decoration: none;
}

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

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: #000;
  color: #fff;
  transition: background 0.3s;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  padding: 8px 16px;
  display: inline-block;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-size: 12pt;
  font-family: Poppins, sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  border-radius: 3px;
}

button:hover, input[type="submit"]:hover, .button:hover, .formandu-button:hover, input[type="button"]:hover, a.button:hover, .eshop_userauth_buttonbox a:hover {
  background: #c0336b;
  color: #000;
}

/** Text controls */
.formandu-text, .formandu-dropdown, .formandu-textarea, select {
  background: #fff;
  border: 3px solid transparent;
  transition: border 0.3s, box-shadow 0.2s;  
  font-size: 12pt;
  margin: 10px;
  padding: 8px;
  width: calc(100% - 20px);
  box-sizing: border-box;
  box-shadow: 3px 3px 7px rgba(0,0,0,0.8);
  font-size: 12pt;
  font-family: Poppins, sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  border-radius: 3px;
  color: #111;
}

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

.formandu-text:focus, .formandu-dropdown:focus, .formandu-textarea:focus, select:focus {
  box-shadow: 0 0 2px #e24b88;  
}

/*******************************************************************************
 ** 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) {
  body {
    padding-top: 40px;
  }
  .header {
    border-top: none;
    padding: 10px 0;
  }
  .menubar {
    height: 0;
    padding: 0;    
  }
  nav.menu {
    padding: 0;
    background: #fff;
    border-right: 2px solid #aaa;
    text-align: left;
  }
  nav.menu span.item span.submenu a, nav.menu>span.item>a, nav.menu>span.item.has-submenu>a:hover {
    text-align: left;
    background: #fff;
    color: #000;
    transition: background 0.3s, color 0.3s;
    padding: 15px;
  }  
  
  nav.menu span.item span.submenu a:hover , nav.menu>span.item>a:hover {
    background: #e24b88;
    color: #fff;
  }
  
  nav.menu.flyout span.item span.submenu {
    padding: 0 0 5px 20px;
  }  
}

/** Big phone */

@media (max-width: 750px) {
  .formandu-text, .formandu-textarea, .formandu-dropdown, .formandu-static-text, .formandu-listbox {
    width: 95%;
  }
  .footer {
    padding: 0 5px;
  }
  .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;
  }
}

/** Small phone */

@media (max-width: 600px) {
  .content {
    padding: 0 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;
  }
}

