html {
    height:100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body{
    color:#000000;
    background-color: #f8f5f3;
    font-size: 1rem;
    line-height: 1.5rem;
}

.container-full img .container-full .reveal{
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.img-responsive{
    width:100%;
}

.box{
  height: 13px;
}

.extra-ticket-input{
  padding: 0 !important;
  margin-bottom: 1em;
}
.delete-extra-ticket{
  display: inline;
  position: absolute;
  right: 20px;
  padding: 2px 4px 0 4px;
  border-radius: 2px;
}

.desktop-is-hidden, .desktop .desktop-is-hidden{
    display: none;
}
.mobile .desktop-is-hidden{
    display: initial;
}

.mobile-is-hidden, .mobile .mobile-is-hidden{
    display: none;
}
.desktop .mobile-is-hidden{
    display: initial;
}
.home-content{
    padding-top: 165px;
}
.content{
    padding-top: 165px;
}


h2{
  margin-bottom: 1rem;
  font-size: 1.7rem;
  line-height: 2rem;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
}

.badge{
  color:#000;
  background-color: transparent;
  border: 1px solid #dad3d0;
  font-weight: normal;
  font-style: normal;
}
.badgelink:hover .badge{
  background-color: #333;
  color:#fff;
}
.badgelink:focus{
  outline: none;
}

.badge-full{
  background-color: #a6192e;
  color:#fff;
  border: 1px solid #791322;
}


.section-padding{
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.section-padding-bottom{
  padding-bottom: 2rem;
}

.column-padding-bottom{
  padding-bottom: 2rem;
}


.row-padding{
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.blue-bgnd{
  background-color: #e9ebec;
}

.btn-uppercase{
  text-transform: uppercase;
  letter-spacing: 1.5px;
}


.control-label{
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
}

.clean-label{
  font-family: 'Open Sans', sans-serif;
  font-weight: normal;
}
.alert{
  margin-bottom: 0 !important;
}
.alert-reserved{
  margin-bottom: 20px !important;
}

.alias {cursor: alias;}
.all-scroll {cursor: all-scroll;}
.auto {cursor: auto;}
.cell {cursor: cell;}
.context-menu {cursor: context-menu;}
.col-resize {cursor: col-resize;}
.copy {cursor: copy;}
.crosshair {cursor: crosshair;}
.default {cursor: default;}
.e-resize {cursor: e-resize;}
.ew-resize {cursor: ew-resize;}
.grab {cursor: grab;}
.grabbing {cursor: grabbing;}
.help {cursor: help;}
.move {cursor: move;}
.n-resize {cursor: n-resize;}
.ne-resize {cursor: ne-resize;}
.nesw-resize {cursor: nesw-resize;}
.ns-resize {cursor: ns-resize;}
.nw-resize {cursor: nw-resize;}
.nwse-resize {cursor: nwse-resize;}
.no-drop {cursor: no-drop;}
.none {cursor: none;}
.not-allowed {cursor: not-allowed;}
.pointer {cursor: pointer;}
.progress {cursor: progress;}
.row-resize {cursor: row-resize;}
.s-resize {cursor: s-resize;}
.se-resize {cursor: se-resize;}
.sw-resize {cursor: sw-resize;}
.text {cursor: text;}
.url {cursor: url(myBall.cur),auto;}
.w-resize {cursor: w-resize;}
.wait {cursor: wait;}
.zoom-in {cursor: zoom-in;}
.zoom-out {cursor: zoom-out;}




/* ---- FONTS ---- */

*{
    font-family: 'Open Sans', sans-serif;

    font-weight: normal;
    font-style: normal;
}
i, em{
    font-family: 'Open Sans', sans-serif;

    font-weight: normal;
    font-style: italic;
}
b, strong{
    font-family: 'Open Sans', sans-serif;

    font-weight: bold;
    font-style: normal;
}

/* ---- end FONTS ---- */




/* NIGHT */

.day{
    background-color: #f8f5f3;
}

.night{
    background-color: #f8f5f3;
}

/* end NIGHT */





/* PAGE */


/* END PAGE */







/*  SPONSER BANNER   */
.sponsorbanner{
  transform: translate3d(0, 100%, 0);
  transition: 0.5s all;
}

#sponsors{
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #f8f5f3;
  padding: 15px 0;
  z-index: 100;
  border-top: 1px solid #dad3d0;

}
#sponsors .remove{
  display: inline;
  padding: 1em;
  z-index: 500;
  font-size: 1em;
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
}

#sponsors img{
  margin-left: auto;
	margin-right: auto;
	display: block;
  width:auto;
  height:81px;
}
.sponsorText{
  font-size: 0.8rem !important;
  line-height: 1.2rem !important;
}
.sponsorbanner.banner-visible{
  transform: translate3d(0, 0, 0);
  animation: slidein 1s;
  -moz-animation: slidein 1s; /* Firefox */
  -webkit-animation: slidein 1s; /* Safari and Chrome */
  -o-animation: slidein 1s; /* Opera */
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
}


@keyframes slidein {
  0%    {   transform: translate3d(0, 120px, 0);  }
  100%  {   transform: translate3d(0, 0, 0);      }
}
@-moz-keyframes slidein { /* Firefox */
  0%    {   transform: translate3d(0, 120px, 0);  }
  100%  {   transform: translate3d(0, 0, 0);      }
}
@-webkit-keyframes slidein { /* Safari and Chrome */
  0%    {   transform: translate3d(0, 120px, 0);  }
  100%  {   transform: translate3d(0, 0, 0);      }
}
@-o-keyframes slidein { /* Opera */
    0%    {   transform: translate3d(0, 120px, 0);  }
    100%  {   transform: translate3d(0, 0, 0);      }
}

@media(max-width:767px){
  #sponsors img{
    width:100%;
    height:auto;
  }
}/*  END HEADER   */





/*  LINKS  */
a:hover{
  text-decoration: none;
}
a.lnk-red-hover-black:link, a.lnk-red-hover-black:visited{
  text-decoration: none;
  color:#a6192e;
}
a.lnk-red-hover-black:hover, a.lnk-red-hover-black:focus{
  color: #000;
}
.register-form-section a{
  text-decoration: none;
  color: #a6192e !important;
}
.register-form-section a:hover{
  color: #000 !important;
}
.contentblock a, .event_content a{
  text-decoration: none;
  color: #a6192e !important;
}
.contentblock a:hover, .event_content a:hover{
  color: #000 !important;
}

/*  END  LINKS  */




/*  FULL-WIDTH-IMAGE  */
#full-width-image{
    margin-bottom: 4rem;
}
.full-width-image{
  border-radius: 6px;
}
/*  END FULL-WIDTH-IMAGE  */



/* HOME INTRO */
#home-intro{
  margin-bottom: 2rem;
}





/* END HOME INTRO */




/* HOME EVENTS */
.home-event-list{
  margin-bottom: 2rem;
}

.home-event{
  margin-bottom: 0rem;
  border-bottom: 1px solid #dad3d0;
  padding:15px 0px 25px 0px;
}

.home-event .event_img{
  border-radius: 4px;
  margin-bottom: 1rem;
}
.home-event .event_date{
  text-transform:uppercase;
  letter-spacing: 1.5px;
  font-size: 0.85rem;
}
.home-event .event_title{
  font-weight: 600;
  font-style: normal;

  font-family: 'Open Sans', sans-serif;

  font-size: 1.7rem;
  line-height: 2rem;
  margin-bottom: 1rem;
}
.home-event .event_shortdescr{
}
.home-event .event_footer{
}
.home-event a:link, .home-event a:visited{
  color:#a6192e;
}
.home-event a:hover, .home-event a:focus{
    color: #000;
}
/* END HOME EVENTS */

.ticketing-block a:link, .ticketing-block a:visited{
  color:#a6192e;
}
.ticketing-block a:hover, .ticketing-block a:focus{
  color:#000;
}


/* EVENTS */
/*#event_details{
  padding-top: 65px;
}*/

#event_details .left-col{
    margin-bottom: 2rem;
}

#event_details .event_images{
    margin-bottom: 1em;
}

#event_details .event_images .event_img{
    margin-bottom: 1em;
    border-radius: 6px;
}
#event_details .event_date{
  text-transform:uppercase;
  letter-spacing: 1.5px;
  font-size: 0.85rem;
}
#event_details .event_title{
  font-size: 1.9rem;
  line-height: 2.2rem;
  margin-bottom: 1rem;

  font-family: 'Open Sans', sans-serif;

  font-weight: 600;
  font-style: normal;
}

#event_details .event_summary{
  font-size: 0.8rem;
  line-height: 1.2rem;
}

#event_details .event_summary .contentblock{
    margin-bottom: 1em;
}

#event_details .event_summary .contentblock ul{
    margin:0;
    padding:0;
    list-style: none;
}
#event_details .event_summary .contentblock ul li{
    padding-left: 1em;
    text-indent: -0.5em;
}

#event_details .event_summary .contentblock ul li:before{
    content: '\00b7';
    display: inline-block;
/*    margin-left: -0.7em;
    padding-left: 0em;*/
    margin-right: 0.2em;
/*    width: 0.7em;
*/
}
#event_details .event_summary .contentblock .summ_title{
    font-family: 'Open Sans', sans-serif;
    text-transform: uppercase;
    font-weight: normal;
    font-style: normal;
    letter-spacing: 1.5px;
}


.event_subscribe_section{
  padding:30px 0px;
}

.event_map{
  height: 400px;
}
/* END EVENTS */







/*  TEXT  BLOCK */
.text-block{
  padding:0rem 0px 4rem 0px;
}
.text-block h2{
  margin-top: 0 !important;
}
.text-block a {
  text-decoration: none;
  color:#a6192e !important;
}
.text-block a:hover {
  color:#000 !important;
}
.text-block .img-wrapper{
  margin-bottom: 2rem;
  border-radius: 6px;
}
.text-block .caption{
  font-size: 0.9rem;
}

.text-block ol {
padding-left: 1.5em ;
}

/*  END TEXT BLOCK */









/* HEADER */
#header h2{
    font-size: 1.4rem;
    font-weight: normal;
    margin-top: 15px;
    margin-bottom: 0;
}

#header h3{
    font-size: 1.4rem;
    font-weight: normal;
    margin-bottom: 0;
}
#header h3 a{
    border-bottom: #000 solid 1px;
}
#header .row-gutter{
    margin-bottom: 60px;
}
/* END HEADER */




/* OVERVIEW */
.overview-block .overlay h3{
  font-size: 1.1em;
}
/* END OVERVIEW */




/* REGISTER */
.register-text-section{
    padding-bottom: 2rem;
}

.register-form-section{
    padding-top: 2rem;
    padding-bottom: 2rem;
}


/* REGISTER */








/* CART */
.cart-row{
  padding-top:1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #dad3d0;
}

.cart-row .event_img{
  border-radius: 5px;
}

.cart-row .event_title{
  font-size: 1.4rem;
  line-height: 1.6rem;
  margin-bottom: 1rem;
}

.cart-row a.lnk-remove:link, .cart-row a.lnk-remove:visited{
  text-decoration: none;
  color:#000000;
}
.cart-row a.lnk-remove:hover, .cart-row a.lnk-remove:focus{
  color:#a6192e;
}

.cart-head-item{
  font-family: 'Open Sans', sans-serif;
  text-transform: uppercase;
  font-weight: normal;
  font-style: normal;
  letter-spacing: 1.5px;
}

/* END CART */









/* FOOTER */


footer{
  margin-top: 4em;
  padding: 3rem 0 160px 0;
}

footer .colophon{
    font-size: 0.8rem;
}

footer a:link, footer a:visited{
  text-decoration: none;
  color:#a6192e;
}
footer a:hover, footer a:focus{
  color: #000;
}

/* END FOOTER */





/* ANIMATIONS  */

.reveal/*,
.scroll-top img.reveal, .scroll-top video.reveal*/{
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  opacity: 0;

}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100px, 0);
    -ms-transform: translate3d(0, 100px, 0);
    transform: translate3d(0, 100px, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}


@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100px, 0);
    -ms-transform: translate3d(0, 100px, 0);
    transform: translate3d(0, 100px, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.revealed/*,
.scroll-top img.revealed, .scroll-top video.revealed*/{
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  opacity: 1;
}






/* END ANIMATIONS  */












/* UI ITEMS */

.funkyradio div {
  clear: both;
  overflow: hidden;
}

.funkyradio label {
  width: 100%;
  border-radius: 3px;
  border: 1px solid #D1D3D4;
  font-weight: normal;
}

.funkyradio input[type="radio"]:empty,
.funkyradio input[type="checkbox"]:empty {
  display: none;
}

.funkyradio input[type="radio"]:empty ~ label,
.funkyradio input[type="checkbox"]:empty ~ label {
  position: relative;
  line-height: 2.0em;
  /*text-indent: 3.25em;*/
  padding-left: 3.25em;
  padding-bottom: 0.5rem;
  padding-right: 0.5rem;
  margin-top: 1em;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.funkyradio .description{
  line-height: 1.4em;
}

.funkyradio input[type="radio"]:empty ~ label:before,
.funkyradio input[type="checkbox"]:empty ~ label:before {
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  content: '';
  width: 2.5em;
  background: #D1D3D4;
  border-radius: 3px 0 0 3px;
}

.funkyradio input[type="radio"]:hover:not(:checked) ~ label,
.funkyradio input[type="checkbox"]:hover:not(:checked) ~ label {
  /* color: #888; */
}

.funkyradio input[type="radio"]:hover:not(:checked) ~ label:before,
.funkyradio input[type="checkbox"]:hover:not(:checked) ~ label:before {
  content: '\2714';
  text-indent: .9em;
  color: #C2C2C2;
}

.funkyradio input[type="radio"]:checked ~ label,
.funkyradio input[type="checkbox"]:checked ~ label {
  color: #000;
}

.funkyradio input[type="radio"]:checked ~ label:before,
.funkyradio input[type="checkbox"]:checked ~ label:before {
  content: '\2714';
  text-indent: .9em;
  color: #333;
  background-color: #ccc;
}

.funkyradio input[type="radio"]:focus ~ label:before,
.funkyradio input[type="checkbox"]:focus ~ label:before {
  box-shadow: 0 0 0 3px #999;
}

.funkyradio-default input[type="radio"]:checked ~ label:before,
.funkyradio-default input[type="checkbox"]:checked ~ label:before {
  color: #333;
  background-color: #ccc;
}

.funkyradio-primary input[type="radio"]:checked ~ label:before,
.funkyradio-primary input[type="checkbox"]:checked ~ label:before {
  color: #fff;
  background-color: #337ab7;
}

.funkyradio-success input[type="radio"]:checked ~ label:before,
.funkyradio-success input[type="checkbox"]:checked ~ label:before {
  color: #fff;
  background-color: #5cb85c;
}

.funkyradio-danger input[type="radio"]:checked ~ label:before,
.funkyradio-danger input[type="checkbox"]:checked ~ label:before {
  color: #fff;
  background-color: #d9534f;
}

.funkyradio-warning input[type="radio"]:checked ~ label:before,
.funkyradio-warning input[type="checkbox"]:checked ~ label:before {
  color: #fff;
  background-color: #f0ad4e;
}

.funkyradio-info input[type="radio"]:checked ~ label:before,
.funkyradio-info input[type="checkbox"]:checked ~ label:before {
  color: #fff;
  background-color: #5bc0de;
}



/* END UI ITEMS */


/*  AGENDA   */
.agenda_month_coll{
  padding: 65px 0;
}
.agenda_month_coll:nth-child(even) {
  background-color: #e9ebec;
}
.agenda_month_coll:last-child {
  padding-bottom: 5rem;
}
.activity-splitter{
  margin-bottom: 4em;
}
.agenda_month_label{
  font-size: 1.4em;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.08em;

}
.title_agenda{
  padding-bottom: 2rem;
}
.act_date {
  font-weight: 400;
  letter-spacing: 0.1em;
  font-size: 0.7em;
  text-transform: uppercase;
  margin: 0em 0px 0.5em 0px;
}
.agenda_month_coll img{
  border-radius: 6px;
  margin-bottom: 2em;
}
a.imagelink:hover img {
-webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.6);
box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.6);
-moz-box-shadow: 0px 0px 10px rgba(0,0,0,0.6);
}
.act_title {
  font-weight: 600;
font-style: normal;
font-family: 'Open Sans', sans-serif;
font-size: 1.7rem;
line-height: 2rem;
margin-bottom: 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    -webkit-hyphens: auto;

}
.act_shortdescr {
  font-weight: 300;
  letter-spacing: 0.05em;
  padding: 0px 0px 10px 0px;
}
.act_footer {
  font-weight: 400;
  font-size: 1em;
  padding: 5px 0px 5px 0px;
  border-width: 1px 0px 1px 0px;
  border-style: solid;
  border-color: #dad3d0;
}
/*.act_subscribers {
  font-size: 0.7em;
  display: inline-block;
  border: 1px solid #dddddd;
  text-align: right;
  padding: 0px 5px 0px 5px;
}*/
.agenda_activity .act_readmore {
  text-transform: uppercase;
  font-size: 0.7em;
  letter-spacing: 0.1em;
}

a.inv:hover {
  text-decoration: none;
}




/*  END AGENDA   */



/*  BOARD  */
.board_image {
  margin-bottom: 1rem;
}
.board_image img{
  border-radius: 6px;
}

.management a{
  text-decoration: none;
  color: #a6192e !important;
}
.management a:hover{
  color: #000 !important;
}


/*  END BOARD  */



/*  POPOVERS  */
.popover{
  min-width: 200px;
}
.popover-content{
  max-height: 180px;
  overflow: auto;
}
/*  END POPOVERS  */




/*  COOKIES WALL */
.cookiewall{
  position: fixed;
  top:0px;
  left:0px;
  width:100%;
  height:100vh;
  background-color: rgba(248,245,243,0.95);
  z-index: 2000;
}
.cookie_cookie_accept_OK .cookiewall{
  display:none;
}


.cookiebox{
  text-align: center;
  margin-top:15vh;
  background-color: #fff;
  border-radius: 10px;
  padding:80px 80px;
}
.cookiebox .cookielogo{

}
.cookiebox .cookietext{
  font-size: 1.4rem;
  line-height: 1.8rem;
  padding-top: 25px;
  padding-bottom: 25px;
}



.cookiebox .cookie_add{
  text-transform: uppercase;
  letter-spacing: 1px;

}
.cookiebox .cookie_add:hover{

}




/*  END COOKIES WALL */



.alert-box{
  border-top: 1px solid #dad3d0;
  border-bottom: 1px solid #dad3d0;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.red-text{
  color: #a6192e;
}

.green-text{
  color: #4cae4c;
}


@media(max-width:767px){
  html{
    font-size: 14px;
  }
  #event_details .event_summary{
    font-size: 1rem;
  }
  .home-content{
      padding-top: 100px;
  }
  .content{
      padding-top: 100px;
  }
  .cookiebox{
    padding:40px 20px;
  }


}
@media(min-width:768px){
  html{
    font-size: 15px;
  }
  .home-content{
      padding-top: 165px;
  }
  .content{
      padding-top: 165px;
  }


}
@media(max-width:992px){

  .sponsorText{
    text-align: center;
    width: 100%;
    height: 10px;
    display: block;
  }
  .back-btn a{
    display: block;
    margin-bottom: 20px;
  }

}
@media(min-width:992px){
  html{
    font-size: 16px;
  }
  .home-content{
      padding-top: 165px;
  }
  .content{
      padding-top: 220px;
  }

}
@media(min-width:1200px){
  html{
    font-size: 15px;
  }
  .sponsorText{
    padding-top: 1rem;
  }
}
@media(max-width:1200px){

}
