@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=Quicksand');

/* Selected text */
*::selection, input::selection {
  background: #006f88;
  color: #006f88;
}

*::-moz-selection {
  background: #006f88;
  color: #006f88;
}

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

/* "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 #0094d2;
  background: #fff;
  color: #0094d2;
  border-radius: 30px;
  box-shadow: 0 0 5px rgba(255,255,255,0.8);
}

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

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

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

/** Cookie warning */
.flexi-cookie {
  position: fixed;
  bottom: 10px;
  left: 10px;
  padding: 0 10px 10px;
  border: 1px solid #0094d2;
  background: #fff;
  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 {
  background: #fff url(img/header-bg.jpg) top right no-repeat;
  color: #006f88;
}

.header .wrapper {
  padding-top: 10px;
  padding-bottom: 10px;
}

.header p {
  margin: 0 0 8px;
}

.header a img {
  transition: opacity 0.3s;
}

.header a:hover img {
  opacity : 0.8;
}

.header:before {
  display: block;
  height: 11px;
  background: #1e5799;
  background: -moz-linear-gradient(left, #1e5799 0%, #defff1 0%, #a0e1e8 30%, #0596d3 98%, #0094d2 100%);
  background: -webkit-linear-gradient(left, #1e5799 0%,#defff1 0%,#a0e1e8 30%,#0596d3 98%,#0094d2 100%);
  background: linear-gradient(to right, #1e5799 0%,#defff1 0%,#a0e1e8 30%,#0596d3 98%,#0094d2 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1e5799', endColorstr='#0094d2',GradientType=1 );  
  content: '';
}

.header .wrapper {
  
}

/** Menu */

.menubar {
  background: #80cae9;
  font-size: 0;
  text-align: center;
}

/* bar items */

nav.menu>span {
  font-size: 18pt;
}

nav.menu>span.item>a {
  color: #fff;
  transition: background 0.3s, color 0.3s;
  padding: 10px 20px;
  content: '';
}

nav.menu>span.item:before {
  position: absolute;
  left: 0;
  top: 5px;
  bottom: 5px;
  width: 0;
  border-right: 1px solid #0094d2;
  content: '';
}

nav.menu>span.item:last-child>a:after {
  position: absolute;
  right: 0;
  top: 5px;
  bottom: 5px;
  width: 10px;
  border-right: 1px solid #0094d2;
  content: '';
}

nav.menu>span.item>a:hover {
  background: #0094d2;
  color: #fff;
}

/* submenus */

nav.menu>span.item>span.submenu {
  border-top: 1px solid #0094d2;
}

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

nav.menu span.item span.submenu a {
  background: #80cae9;
  color: #fff;
  transition: background 0.3s, color 0.3s;
  padding: 10px;
}

nav.menu span.item span.submenu a:hover {
  background: #0094d2;
}

/** Flyout buttons */

.button.flyo-show {
  position: fixed;
  top: 0;
  right: 0;
  border-radius: 0 0 0 5px;
}

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

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

/** Menu when page is scrolled down */

body.menu-scrolled div.menubar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}


/** General content styles */

hr {  
  border: none;
  border-top: 1px solid #83d6ff;
  margin: 32px 0;
}

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

.content {
  
}

.content h1, 
.content h2, 
.content h3, 
.content h4 {
  
}

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

.content a, .header a {
  color: #006f88;
  text-decoration: none;
  transition: color 0.3s;  
}

.content a:hover, .header a:hover {
  color: #006f88;
  text-decoration: underline;
}

.footer {
  color: #fff;
  background: #006f88;
  position: relative;
  padding: 40px 0;
}

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

.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: #1e5799;
  background: -moz-linear-gradient(left, #1e5799 0%, #83d6ff 0%, #45b7ea 49%, #0094d2 100%);
  background: -webkit-linear-gradient(left, #1e5799 0%,#83d6ff 0%,#45b7ea 49%,#0094d2 100%);
  background: linear-gradient(to right, #1e5799 0%,#83d6ff 0%,#45b7ea 49%,#0094d2 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1e5799', endColorstr='#0094d2',GradientType=1 );  color: #fff;
  transition: opacity 0.3s;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  padding: 14px 22px;
  display: inline-block;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-size: 18pt;
  font-family: Quicksand, sans-serif;
  border-radius: 5px;
  text-decoration: none;
}

button:hover, input[type="submit"]:hover, .button:hover, .formandu-button:hover, input[type="button"]:hover, a.button:hover, .eshop_userauth_buttonbox a:hover {
  color: #fff;
  opacity: 0.9;
  text-decoration: none;
}

/** Text controls */
.formandu-text, .formandu-dropdown, .formandu-textarea, select {
  background: #fff;
  color: #4e4e4e;
  border: 1px solid #aaa;
  transition: border 0.3s;  
  font-size: 18pt;
  font-family: Quicksand, sans-serif;
  margin: 10px;
  padding: 12px;
  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 #83d6ff; 
}

/*******************************************************************************
 ** 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 {
    font-size: 13pt;
  }
  .header .wrapper {
    padding-top: 30px;
    font-size: 16pt;
  }
  .menubar {
    height: 0;
    padding: 0;    
  }
  nav.menu {
    padding: 0;
    background: #fff;
    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: #4e4e4e;
    transition: background 0.3s, color 0.3s;
    font-weight: normal;
  }  
  nav.menu>span.item:before, nav.menu>span.item:last-child a:after {
    display: none;
  }
  nav.menu>span.item.has-submenu>a {
    font-weight: bold !important;
  }
  nav.menu span.item span.submenu a:hover , nav.menu>span.item>a:hover {
    background: #45b7ea;
    color: #fff;
  }
  
  nav.menu.flyout span.item span.submenu {
    padding: 0 0 5px 20px;
    border: 0 !important;
  }  
}

/** 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 h1, .content h2, .content h3, .content p {
    padding-left: 3px;
    padding-right: 3px;
  }
  .footer, .col2.right, .header {
    text-align: center;
  }
  span.powered {
    display: block;
    margin-left: 0;
  }
}

