body {
  font-family: 'Volkhov', serif;
  background-color: #92c5ea;
  color: #FFFFFF;
  padding-top: 87px; }

a {
  color: #FFFFFF;
  text-decoration: underline; }

a:hover, a:focus {
  color: #FFFFFF; }

img {
  max-width: 100%;
  height: auto; }

.twitter {
  background-image: url(../img/icons/twitter.svg?v=1); }

.twitter:hover {
  background-image: url(../img/icons/twitter_rot.svg); }

.facebook {
  background-image: url(../img/icons/facebook.svg?v=1); }

.facebook:hover {
  background-image: url(../img/icons/facebook_rot.svg); }

.instagram {
  background-image: url(../img/icons/instagram.svg?v=1); }

.instagram:hover {
  background-image: url(../img/icons/instagram_rot.svg); }

.youtube {
  background-image: url(../img/icons/youtube.svg?v=1); }

.youtube:hover {
  background-image: url(../img/icons/youtube_rot.svg); }

.spotify {
  background-image: url(../img/icons/spotify.svg?v=1); }

.spotify:hover {
  background-image: url(../img/icons/spotify_rot.svg); }

.music {
  background-image: url(../img/icons/music.svg?v=1); }

.music:hover {
  background-image: url(../img/icons/music_rot.svg); }

.apple {
  background-image: url(../img/icons/apple.svg?v=1); }

.apple:hover {
  background-image: url(../img/icons/apple_rot.svg); }

.youtubemusic {
  background-image: url(../img/icons/youtubemusic.svg?v=1); }

.youtubemusic:hover {
  background-image: url(../img/icons/youtubemusic_rot.svg); }

.nav-menu {
  width: 20%;
  position: fixed;
  background: #92c5ea;
  border: 5px solid #FFFFFF;
  z-index: 20;
  height: 100%;
  top: 0;
  right: -20%;
  padding: 30px;
  -webkit-transition: right 0.3s;
  -moz-transition: right 0.3s;
  -ms-transition: right 0.3s;
  -o-transition: right 0.3s;
  transition: right 0.3s; }
  .nav-menu a {
    text-decoration: none;
    font-size: 1.2rem; }
  .nav-menu li {
    list-style-type: none; }
  .nav-menu ul.sub-menu {
    padding-left: 20px; }
  .nav-menu > ul > li {
    margin-bottom: 15px; }
    .nav-menu > ul > li a {
      font-size: 1.1rem; }

body.open-nav {
  overflow: hidden; }

body.open-nav .nav-menu {
  right: 0%;
  overflow: auto; }

.mobile-nav-darker {
  width: 100%;
  height: 100%;
  background: #000000;
  z-index: 19;
  top: 0;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  -ms-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s; }

body.open-nav .mobile-nav-darker {
  position: fixed;
  opacity: 0.5; }

#nav-button {
  background: none;
  border: none;
  outline: none;
  cursor: pointer; }
  #nav-button span {
    width: 40px;
    height: 4px;
    margin-bottom: 5px;
    display: block;
    background-color: #FFFFFF; }
    #nav-button span:last-of-type {
      margin: 0; }

header {
  background-color: #92c5ea;
  padding: 15px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10; }
  header .col {
    display: flex; }
  header nav {
    margin-top: auto;
    margin-left: auto; }
    header nav a {
      color: #FFFFFF;
      font-size: 1.3rem;
      text-decoration: none; }
    header nav a:hover, header nav a:focus {
      text-decoration: none; }
    header nav > ul {
      margin-bottom: 0; }
      header nav > ul > li {
        display: inline-block;
        margin-left: 15px; }
      header nav > ul li.menu-item-has-children:hover > a {
        border-bottom: 3px solid white;
        padding-bottom: 13px; }
      header nav > ul li.menu-item-has-children:hover ul {
        display: block; }
      header nav > ul ul.sub-menu {
        position: absolute;
        list-style-type: none;
        display: none;
        z-index: -1;
        background: #92c5ea;
        padding: 20px 10px 10px;
        margin-left: -5px;
        text-align: left; }
  header .language-switcher li {
    display: inline-block; }
    header .language-switcher li:first-child:after {
      content: "|";
      padding-left: 5px; }
  header .language-switcher a {
    font-size: 1rem; }

.nav-menu .language-switcher li {
  display: inline-block; }
  .nav-menu .language-switcher li:first-child:after {
    content: "|";
    padding-left: 5px; }
.nav-menu .language-switcher a {
  font-size: 1rem; }

.front-page {
  height: calc(100vh - 87px); }
  .front-page .some-icons {
    position: absolute;
    right: 20px;
    top: 20px; }
    .front-page .some-icons .icon {
      width: 33px;
      height: 33px;
      margin-bottom: 10px;
      display: block; }

.news-box {
  width: 500px;
  background: #5aade0;
  color: #FFFFFF;
  padding: 20px;
  bottom: 100px;
  display: inline-block;
  position: absolute; }
  .news-box a, .news-box a:hover, .news-box a:focus {
    text-decoration: none;
    color: #FFFFFF; }
  .news-box h1 {
    text-align: center; }
  .news-box #toggle {
    position: absolute;
    top: 1px;
    right: 10px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    outline: none; }
  .news-box #toggle::after {
    font-family: "FontAwesome";
    font-weight: 400;
    color: #FFFFFF;
    font-size: 22px; }
  .news-box.out #toggle::after {
    content: "\f00d"; }
  .news-box.in #toggle {
    top: -4px; }
    .news-box.in #toggle::after {
      content: "\f105";
      font-size: 33px; }

.news-box-col a, .news-box-col a:hover, .news-box-col a:focus {
  text-decoration: none;
  color: #FFFFFF; }
.news-box-col h1 {
  text-align: center; }

.gigpress-table {
  border-top: none !important; }
  .gigpress-table th {
    border-bottom: none !important; }
  .gigpress-table .vevent:last-child tr.gigpress-info td {
    border-bottom: none !important; }

.show_type-1 th, .show_type-1 td {
  background-color: #e98e8e; }

.show_type-2 th, .show_type-2 td {
  background-color: #8fc297; }

.show_type-3 th, .show_type-3 td {
  background-color: #fbbe5e; }

th.gigpress-heading {
  border-bottom: none !important;
  background-color: #268ac8 !important; }

tr.gigpress-tour td {
  background-color: #5aade0 !important; }

.gigpress-links-cell .gigpress-calendar-add {
  display: none; }

.gigpress-date abbr[data-original-title], .gigpress-date abbr[title] {
  text-decoration: none;
  cursor: auto; }

tr.gigpress-info td {
  color: #FFFFFF !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4) !important; }

.gigpress-country span {
  padding-left: 20px; }

.gigpress-subscribe {
  display: none; }

.gigpress-row td {
  border-bottom: none !important; }

tr.gigpress-divider.gigpress-row td {
  border-top: none !important; }

span.gigpress-info-label {
  color: #FFFFFF !important; }

.gigpress-country .ch {
  background: url("../img/flags/ch.png") 3px center no-repeat; }

.gigpress-country .de {
  background: url("../img/flags/de.png") 0 center no-repeat; }

.gigpress-country .fr {
  background: url("../img/flags/fr.png") 0 center no-repeat; }

.gigpress-country .at {
  background: url("../img/flags/at.png") 0 center no-repeat; }

.gigpress-country .it {
  background: url("../img/flags/it.png") 0 center no-repeat; }

.gigpress-country .sp {
  background: url("../img/flags/es.png") 0 center no-repeat; }

.gigpress-country .sl {
  background: url("../img/flags/sl.png") 0 center no-repeat; }

.gigpress-country .us {
  background: url("../img/flags/us.png") 0 center no-repeat; }

.border-top {
  border-top: 1px solid #CCC; }

.news-excerpt a {
  text-decoration: none; }

.slide-toggle {
  text-decoration: none;
  background-color: #0089cf;
  padding: 1px 7px;
  display: inline-block;
  cursor: pointer; }

.link-button {
  background: #0089cf;
  text-decoration: none;
  padding: 3px 11px;
  margin-bottom: 10px;
  display: inline-block; }
  .link-button.shop {
    width: 230px; }
  .link-button:hover {
    text-decoration: none; }

.label-above .nf-field-label {
  margin-bottom: 0 !important; }

.nf-error-msg, .ninja-forms-req-symbol {
  color: #FFFFFF !important; }

#ninja_forms_required_items, .nf-field-container {
  margin-bottom: 15px !important; }

footer .partner {
  text-align: center; }
  footer .partner img {
    width: 77px;
    margin: 0 15px 20px; }
footer .some-icons {
  text-align: center;
  margin: 30px 0; }
  footer .some-icons .icon {
    width: 33px;
    height: 33px;
    margin: 0 5px;
    display: inline-block; }
footer .newsletter-form .newsletter-form-title {
  display: block;
  font-size: 20px; }
footer .newsletter-form input[type=text], footer .newsletter-form input[type=email] {
  border: none;
  padding: 3px;
  margin-bottom: 10px; }
footer .newsletter-form button {
  background-color: #0089cf;
  color: white;
  border: none;
  padding: 3px 11px; }
footer .newsletter-form .message-div-success-optin {
  background-color: #5aade0 !important; }
  footer .newsletter-form .message-div-success-optin .info {
    display: none; }
  footer .newsletter-form .message-div-success-optin div {
    display: block !important;
    width: 100% !important; }
  footer .newsletter-form .message-div-success-optin span {
    font-size: 16px !important;
    font-family: inherit !important; }

@media (max-width: 1200px) {
  .nav-menu {
    width: 30%;
    right: -30%;
    padding: 30px; } }
@media (max-width: 768px) {
  .nav-menu {
    width: 65%;
    right: -65%; }

  footer .newsletter-form input[type=text], footer .newsletter-form input[type=email] {
    width: 100%; } }
@media (max-width: 576px) {
  body {
    padding-top: 65px; }

  .front-page {
    height: calc(100vh - 65px); }

  #logo img {
    width: 230px; } }

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