/* ----------------- AUTHOR: KUBA KLIN ------------------ */
/* ------------------ October  2014 ------------------- */
/* ----------------------- VARIABLES ----------------------- */
.button {
  color: #fff;
  background-color: #4d4d4d;
  text-transform: uppercase;
  padding: 7px;
  font-size: 12px;
  text-shadow: none;
  display: inline-block;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
button.button {
    border: 0;
}
.button:hover {
  background-color: #00adef;
  text-decoration: none;
  color: #fff;
}
.button:hover span {
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
.transition {
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
/* ----------------------- BASIC ----------------------- */
body {
  font-family: 'Lato', sans-serif;
  padding-top: 100px;
  background-image: url('../img/bg.png');
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #00adef;
  font-weight: 400;
}
h1 {
  font-size: 36px;
}
h2 {
  font-size: 30px;
}
h3 {
  font-size: 24px;
}
h4 {
  font-size: 18px;
}
h5 {
  font-size: 14px;
}
.error-message {
  color: red;
}
a {
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
a:hover {
  text-decoration: none;
}
.modal-content {
  border-radius: 3px;
  border: 3px solid #00adef;
}
.modal-content .modal-header {
  border: none;
}
.modal-content .modal-footer {
  border: none;
}
.modal-content .button {
  border: none;
}
/* ----------------------- HEADER ----------------------- */
header {
  background-color: #fff;
  border: none;
  height: 100px;
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
}
header .container {
  position: relative;
}
header .container .navbar-header {
  position: relative;
  z-index: 1;
}
header .logo {
  position: relative;
  bottom: 20px;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
header .logo:hover {
  bottom: 15px;
}
header .logo img {
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
header nav {
  float: right;
  position: absolute;
  right: 0;
  top: 50px;
}
header nav ul li a {
  color: #00adef !important;
  text-transform: uppercase;
  font-weight: 700;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-size: 17px;
}
header nav ul li a:hover {
  color: #0080b3 !important;
}
header .user-login {
  background-color: #00adef;
  position: absolute;
  top: 0;
  right: 0;
  padding: 5px 7px;
  z-index: 999;
}
header .user-login .user-login-link {
  float: left;
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
  margin-top: 2px;
}
header .user-login .user-login-link:hover {
  opacity: 0.5;
}
header .user-login .lang {
  margin-left: 25px;
  float: right;
}
header .user-login .lang a {
  color: #fff;
  font-size: 12px;
  margin-left: 5px;
  opacity: 0.6;
}
header .user-login .lang a:hover {
  opacity: 0.5;
}
header .user-login .lang .active {
  opacity: 1;
}
header .user-menu {
  width: 90%;
  position: absolute;
  bottom: 92px;
  right: 0;
  display: block;
  background-color: #00adef;
}
header .user-menu ul {
  list-style: none;
  float: right;
  margin: 0;
}
header .user-menu ul li {
  float: left;
}
header .user-menu ul li a {
  color: #fff;
  display: block;
  padding: 5px 15px;
  text-transform: uppercase;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
header .user-menu ul li a:hover {
  background-color: #0080b3;
}
header .navbar-toggle {
  background-color: #00adef;
}
header .navbar-toggle .icon-bar {
  background-color: #fff;
}
/* ----------------------- SLIDER ----------------------- */
.carousel {
  height: 500px;
  margin-bottom: 0px;
}
.carousel .active.left {
  left: 0;
  opacity: 0;
  z-index: 2;
}
.carousel .next {
  left: 0;
  opacity: 1;
  z-index: 1;
}
.carousel .carousel-indicators .active {
  background-color: #00adef;
}
.carousel .carousel-indicators li {
  background-color: #333;
  width: 13px;
  height: 13px;
}
.carousel .carousel-caption {
  z-index: 10;
  text-align: left;
  bottom: 10%;
}
.carousel .carousel-caption h2 {
  background-color: #4d4d4d;
  text-shadow: none;
  color: #fff;
  display: inline-block;
  padding: 15px;
  margin: 0;
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 700;
}
.carousel .carousel-caption p {
  display: inline-block;
  background-color: #fff;
  margin: 0;
  padding: 15px;
  color: #333333;
  text-shadow: none;
  max-width: 600px;
  font-size: 15px;
}
.carousel .left.carousel-control,
.carousel .right.carousel-control {
  background: none;
}
.carousel .left.carousel-control span,
.carousel .right.carousel-control span {
  position: absolute;
  top: 50%;
}
.carousel .item {
  height: 500px;
  background-color: none;
  -webkit-transition: opacity 500ms;
  -moz-transition: opacity 500ms;
  -ms-transition: opacity 500ms;
  -o-transition: opacity 500ms;
  transition: opacity 500ms;
}
.carousel .item img {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  height: auto;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
/* ----------------------- CONTENT ----------------------- */
.content {
  background-color: #fff;
  padding: 0;
  padding-top: 15px;
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
}
.content .box-header {
  background-color: #00adef;
  width: 100%;
  display: block;
  float: left;
  padding: 10px 15px 8px;
}
.content .box-header h3 {
  color: #fff;
  float: left;
  margin: 0;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 22px;
}
.content .box-header h3 i {
  padding-right: 10px;
}
.content .box-header .more {
  float: right;
  color: #fff;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-size: 12px;
  position: relative;
  top: 6px;
}
.content .box-header .more:hover {
  opacity: 0.6;
}
.content .breadcrumbs {
  display: block;
  float: left;
  width: 100%;
  margin-bottom: 15px;
  padding-left: 15px;
}
.content .breadcrumbs a {
  float: left;
  color: #666;
  background-color: #f3f3f3;
  font-size: 11px;
  padding: 3px;
}
.content .breadcrumbs a:before {
  content: "> ";
  margin-right: 3px;
}
.content .breadcrumbs a:hover {
  text-decoration: underline;
}
.content .breadcrumbs a:first-of-type:before {
  content: "";
}
.content .left {
  padding-left: 0;
}
.content .left .film-poster img {
  width: 100%;
  height: auto;
  max-width: 250px;
}
.content .left .film .box-header h3 {
  text-transform: initial;
}
.content .left .film .film-description-category {
  font-weight: 700;
  float: left;
  clear: both;
}
.content .left .film .film-description {
  font-size: 14px;
}
.content .left .film .film-description-short {
  display: block;
  float: left;
  margin-top: 25px;
  font-size: 14px;
}
.content .left .film-date {
  font-size: 18px;
  margin-top: 5px;
}
.content .left .film-date .date,
.content .left .film-date .time,
.content .left .film-date .place {
  line-height: 40px;
}
.content .left .film-date i {
  color: #00adef;
  margin-right: 5px;
  font-size: 24px;
}
.content .left .film-date .check-in a {
  font-size: 18px;
  text-transform: initial;
}
.content .left .film-date .check-in a span {
  font-size: 24px;
  margin-right: 4px;
}
.content .left .film-date .checked a {
  background-color: #00adef;
}
.content .left .news-feed .news-box {
  padding: 15px;
  display: block;
  float: left;
}
.content .left .news-feed .news-box .news-photo {
  position: relative;
  padding: 0;
  background-color: #00adef;
  min-height: 235px;
}
.content .left .news-feed .news-box .news-photo img {
  width: 100%;
  height: auto;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
.content .left .news-feed .news-box .news-photo img:hover {
  opacity: 0.6;
}
.content .left .news-feed .news-box .news-photo .news-time {
  position: absolute;
  left: 0px;
  bottom: 0;
  background-color: #00adef;
  color: #fff;
  padding: 5px;
}
.content .left .news-feed .news-box .news-content {
  font-size: 16px;
}
.content .left .news-feed .news-box .news-content .news-title {
  margin-top: 0;
  text-transform: uppercase;
}
.content .left .news-feed .news-box .news-content .news-title a {
  color: #00adef;
}
.content .left .news-feed .news-box .news-content .news-title a:hover {
  color: #0080b3;
}
.content .left .news-feed .news-box .news-content .button {
  float: right;
  clear: both;
  margin-top: 15px;
}
.content .left .news-feed .news-box .news-content-all {
  font-size: 16px;
  margin: 15px 0 25px 0;
}
.content .left .news-feed .news-box .news-content-all .news-content-all {
  padding: 0;
}
.content .left .news-feed .news-box .button {
  float: left;
}
.content .left .news-feed .news-box .gallery div {
  /*height:130px;
                        overflow:hidden;*/
  margin: 10px 0;
}
.content .left .news-feed .news-box .gallery img {
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
.content .left .news-feed .news-box .gallery img:hover {
  opacity: 0.6;
}
.content .left .gallery-feed {
  margin-top: 35px;
  float: left;
  width: 100%;
}
.content .left .gallery-feed button.gallery-box {
  border: none;
  background: none;
}
.content .left .gallery-feed button.gallery-box:focus {
  border: none;
  outline: 0;
}
.content .left .gallery-feed .gallery-box {
  margin-top: 10px;
  margin-bottom: 10px;
  position: relative;
  float: left;
}
.content .left .gallery-feed .gallery-box a {
  margin: 7px 0;
}
.content .left .gallery-feed .gallery-box img {
  position: relative;
  z-index: 10;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  width: 100%;
  height: auto;
}
.content .left .gallery-feed .gallery-box img:hover {
  opacity: 0.5;
}
.content .left .gallery-feed .gallery-box .fa {
  z-index: 5;
  font-size: 50px;
  position: absolute;
  top: 30%;
  left: 40%;
}
.content .left .gallery-feed .gallery-box span {
  color: #333333;
}
.content .film-date .row {
  margin-bottom: 15px;
}
.content aside .bomb {
  text-align: center;
  margin-bottom: 25px;
}
.content aside .bomb h4 {
  color: #333;
  text-transform: uppercase;
  margin: 0px 0px 10px 0;
  color: #333333;
  padding-bottom: 20px;
  background-image: url('../img/wave.png');
  background-position: bottom;
  background-repeat: repeat-x;
}
.content aside .bomb .cell {
  text-transform: uppercase;
  text-align: center;
  font-size: 10px;
  display: inline-block;
}
.content aside .bomb .cell span {
  background-color: #333;
  color: #fff;
  padding: 7px;
  border-radius: 3px;
  margin: 5px;
  display: inline-block;
  font-size: 16px;
}
.content aside .random-film-box {
  margin: 0 auto;
  padding: 11px;
  display: inline-block;
}
.content aside .random-film-box span {
  font-size: 12px;
  color: #333333;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
.content aside .random-film-box span:hover {
  opacity: 0.6;
}
.content aside .random-film-box h4 {
  margin: 8px 0 2px;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
.content aside .random-film-box h4:hover {
  opacity: 0.6;
}
.content aside .random-film-box img {
  background-color: #00adef;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  width: 100%;
  height: auto;
}
.content aside .random-film-box img:hover {
  opacity: 0.7;
}
.content aside .guest-box {
  width: 100%;
  float: left;
  margin-top: 25px;
  position: relative;
}
.content aside .guest-box .guest {
  margin: 7px 0;
  padding: 0 7px;
  min-height: 125px;
}
.content aside .guest-box .guest img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 10;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  background-color: #00adef;
}
.content aside .guest-box .guest img:hover {
  opacity: 0.6;
}
.content aside .guest-box .guest span {
  width: 100%;
  background-color: #00adef;
  padding: 4px;
  color: #fff;
  font-size: 12px;
  display: block;
  min-height: 45px;
}
.content aside .guest-box .guest .fa {
  position: absolute;
  top: 30%;
  left: 39%;
  z-index: 5;
  font-size: 36px;
  color: #fff;
}
.content .social {
  margin: 20px 0;
}
.content .social div {
  margin: 10px 0;
}
.content .social .contact-info {
  padding: 25px 35px;
}
.content .social .contact-info img {
  float: left;
  min-width: 110px;
}
.content .social .contact-info p {
  float: right;
}
.content .sponsors .other-sponsors {
  /*			div {
				height: 90px;
			}*/
}
.content .sponsors .other-sponsors a {
  display: block;
}
.content .sponsors .other-sponsors img {
  float: left;
  max-height: 50px;
  width: auto;
  margin: 5px 20px 5px 0px;
}
.content .sponsors .mini-other-sponsors img {
  max-height: 40px;
}

.containerPaddingBottom {
    padding-bottom: 30px;
}



/* ----------------------- EKKO-LIGHTBOX ----------------------- */
.ekko-lightbox-container {
  position: relative;
}
.ekko-lightbox-nav-overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
}
.ekko-lightbox-nav-overlay a {
  z-index: 100;
  display: block;
  width: 49%;
  height: 100%;
  padding-top: 45%;
  font-size: 30px;
  color: #fff;
  text-shadow: 2px 2px 4px #000;
  opacity: 0;
  filter: dropshadow(color=#000000, offx=2, offy=2);
  -webkit-transition: opacity 0.5s;
  -moz-transition: opacity 0.5s;
  -o-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
.ekko-lightbox-nav-overlay a:empty {
  width: 49%;
}
.ekko-lightbox a:hover {
  text-decoration: none;
  opacity: 1;
}
.ekko-lightbox .glyphicon-chevron-left {
  left: 0;
  float: left;
  padding-left: 15px;
  text-align: left;
}
.ekko-lightbox .glyphicon-chevron-right {
  right: 0;
  float: right;
  padding-right: 15px;
  text-align: right;
}
.ekko-lightbox .modal-footer {
  text-align: left;
}
.modal-backdrop.in {
  -webkit-opacity: 0.95;
  -moz-opacity: 0.95;
  opacity: 0.95;
  background-color: #333333;
}
.ekko-lightbox .modal-content {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  border: none;
  background-color: transparent;
}
.ekko-lightbox .modal-header {
  border: 0;
  padding-left: 0;
  padding-right: 0;
}
.ekko-lightbox .modal-header .close {
  -webkit-opacity: 0.5;
  -moz-opacity: 0.5;
  opacity: 0.5;
  color: #fff;
  text-shadow: 0;
  font-weight: 100;
  margin-top: 5px;
}
.ekko-lightbox .modal-header .close:hover {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
}
.ekko-lightbox .modal-header h4.modal-title {
  font-weight: 100;
  color: #fff;
  padding: 0;
}
.ekko-lightbox .modal-body {
  padding: 0;
}
.ekko-lightbox .modal-footer {
  -webkit-opacity: 0.9;
  -moz-opacity: 0.9;
  opacity: 0.9;
  border: 0;
  color: #fff;
  font-weight: 100;
  padding: 0;
}
.ekko-lightbox-nav-overlay a {
  -webkit-opacity: 0.9;
  -moz-opacity: 0.9;
  opacity: 0.9;
  text-shadow: none;
}
/* ----------------------- SUB ----------------------- */
#sub .carousel {
  height: 350px;
}
#sub .carousel .item {
  height: 350px;
}
#sub .calendar-filters .filter {
  border: 1px solid #ccc;
  padding: 10px 0px;
  display: block;
  text-align: center;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  color: #333;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  margin: 5px;
}
#sub .calendar-filters .filter:hover {
  background-color: #0080b3;
  color: #fff;
  cursor: pointer;
}
#sub .calendar-filters .calendar-day-filter > div,
#sub .calendar-filters .calendar-place-filter > div {
  padding: 0;
}
#sub .calendar-filters .filter-label {
  line-height: 40px;
  text-align: center;
  color: #00adef;
  text-transform: uppercase;
  font-weight: 700;
}
#sub .calendar-filters .filter-label i {
  font-size: 20px;
  margin-right: 5px;
}
#sub .calendar-filters .checked {
  background-color: #00adef;
  color: #fff;
}
/* ----------------------- FILM-CATALOG ----------------------- */
.calendar-filters {
  float: left;
  display: block;
  width: 100%;
}
.film-catalog {
  float: left;
  width: 100%;
  display: block;
}
.film-catalog .film-single-film:nth-child(odd) {
  background-color: #f3f3f3;
}
.film-catalog .film-single-film {
  padding: 0;
  float: left;
  display: block;
  width: 100%;
}
.film-catalog .film-single-film .cell {
  padding-top: 12px;
  padding-bottom: 10px;
}
.film-catalog .film-single-film .cell.film-time {
  border-right: 2px dashed #ccc;
  text-align: center;
}
.film-catalog .film-single-film .cell.film-time i {
  color: #00adef;
  font-size: 20px;
  margin-right: 5px;
}
.film-catalog .film-single-film .cell.film-title {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}
.film-catalog .film-single-film .cell.film-title span {
  font-size: 12px;
  font-weight: 400;
  margin-left: 10px;
}
.film-catalog .film-single-film .cell.film-more a {
  background: none;
  color: #333;
  text-align: left;
  text-transform: uppercase;
  font-size: 12px;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
.film-catalog .film-single-film .cell.film-more a:hover {
  opacity: 0.5;
}
.film-catalog .film-single-film .film-check {
  text-align: right;
}
.film-catalog .film-single-film .film-check a {
  color: #333;
  font-size: 16px;
  font-weight: 700;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
.film-catalog .film-single-film .film-check a:hover {
  opacity: 0.5;
}
.film-catalog .film-single-film .film-check span {
  font-size: 24px;
  color: #00adef;
  margin: 1px 2px 0 0;
}
/* ----------------------- USER ----------------------- */
.user-side .carousel {
  height: 250px !important;
}
.user-side .carousel .item {
  height: 250px !important;
}
.user-side .user-option {
  margin: 15px 0;
  padding: 15px;
}
.user-side .user-option a {
  background-color: #00adef;
  display: block;
  overflow: hidden;
}
.user-side .user-option a:hover {
  color: #fff;
  opacity: 1;
}
.user-side .user-option span {
  position: absolute;
  left: 50px;
  color: #fff;
  text-transform: uppercase;
  font-size: 20px;
  bottom: 35px;
  z-index: 1;
}
.user-side .user-option span:hover {
  color: #fff;
  opacity: 1;
}
.user-side .user-option img {
  width: 100%;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
.user-side .user-option img:hover {
  opacity: 0.6;
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1s);
}
/* ----------------------- FOOTER ----------------------- */
footer .copyright {
  position: relative;
  background-color: #00adef;
  padding: 15px 10px;
  margin-top: 50px;
}
footer .copyright .container {
  position: relative;
}
footer .copyright p,
footer .copyright a {
  color: #fff;
  margin: 0;
}
footer .copyright .pull-right a {
  /*            background-image:url('../img/sdf.png');
            background-position:left;
            padding-left:25px;
            background-repeat:no-repeat;*/
  margin-left: 5px;
}
footer .copyright .pull-right a:hover {
  opacity: 0.5;
}
footer .copyright .to-top {
  position: absolute;
  border: none;
  right: 0;
  top: -48px;
}
/* ----------------------- paging ----------------------- */
.pagination {
  margin: 25px 0 10px 0;
  padding-top: 10px;
  border-top: 1px dashed #ccc;
  display: block;
  clear: both;
}
.pagination .current {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background-color: #00adef;
}
.pagination span:first-of-type,
.pagination span:last-of-type {
  font-size: 13px;
  color: #333;
}
.pagination span {
  font-size: 16px;
  padding: 3px 7px;
}
.pagination span:hover a {
  color: #666;
}
.gallery.guests .col-lg-4 {
    min-height: 250px; 
}
/* ----------------------- RESPONSIVE ----------------------- */
@media (min-width: 991px) and (max-width: 1200px) {
  .contact-info {
    padding: 0;
  }
  .contact-info img {
    float: right !important;
  }
  .contact-info p {
    float: right;
  }
}
@media (max-width: 991px) {
  header .logo img {
    width: 150px !important;
  }
  header nav ul li a {
    font-size: 14px;
    font-weight: 400;
    padding: 10px !important;
  }
  .content .social .contact-info img {
    margin: 0 auto;
    float: none;
    display: inherit;
  }
  .content .social .contact-info p {
    float: none;
    text-align: center;
  }
  .instagram iframe {
    display: inherit;
  }
}
@media (max-width: 769px) {
  /*  .navbar-nav { float: right; }*/
  .navbar-collapse {
    width: 80%;
    margin-left: 0 !important;
    margin-right: 0 !important;
    /*top:-51px;
        border-bottom:3px solid @color-basic;
        border-left:3px solid @color-basic;
        border-right:3px solid @color-basic;
        position:relative;*/
    text-align: center;
    background-color: #fff;
  }
}
@media (max-width: 767px) {
  .navbar-toggle {
    margin-top: 47px;
  }
  .carousel .left.carousel-control span,
  .carousel .right.carousel-control span {
    top: 20%;
  }
  .navbar-collapse {
    width: 100%;
    margin-left: 0 !important;
    margin-right: 0 !important;
    top: -51px;
    border-bottom: 3px solid #00adef;
    border-left: 3px solid #00adef;
    border-right: 3px solid #00adef;
    position: relative;
    text-align: center;
    background-color: #fff;
  }
  .content .left .news-feed .news-box .news-content .news-title a {
    margin-top: 15px;
    display: block;
  }
  .main-sponsors img {
    float: left;
  }
  header .logo img {
    width: 120px !important;
  }
  header .user-menu {
    bottom: -7px;
    width: 100%;
    z-index: 10;
  }
  header .user-menu a {
    font-size: 12px;
  }
  .content .left .gallery-feed .gallery-box .fa {
    display: none;
  }
}
@media (max-width: 700px) {
  .carousel .item img {
    position: relative;
  }
  .carousel .item .carousel-caption {
    position: relative;
    left: initial;
    right: initial;
  }
  .carousel {
    height: auto;
  }
  .carousel .item {
    height: auto;
  }
}
/* ----------------------- COOKIES ----------------------- */
#cookies_box {
  z-index: 999999999;
  background-color: #282727 !important;
  color: #e7e6e6 !important;
  position: fixed;
  left: 0;
  bottom: 0px;
  width: 100%;
  text-align: center;
  opacity: 0.9;
}
#cookies_box a {
  color: #FFB700;
}
#wrapper-cookie {
  width: 80%;
  margin: 0px auto;
}
#cookies_box #wrapper div:nth-child(2) {
  float: left;
  width: 70px;
  padding-left: 10px;
}
#button_close_cookies {
  width: 60px;
  height: 60px;
  margin: 10px 0;
  float: right;
  background: rgba(68, 68, 68, 0.5);
  cursor: pointer;
}
#button_close_cookies:hover {
  background: #FFB700;
  color: #333;
}
.cookie-tekst {
  width: 80%;
  display: inline-block;
  text-align: left;
  padding: 10px;
  font-size: 12px;
}
.x {
  display: block;
  font-size: 69px;
  margin-top: -6px;
  font-size: 48px;
}
@media (max-width: 767px) {
  #wrapper-cookie {
    width: 98%;
  }
  #button_close_cookies {
    width: 100%;
    height: 40px;
  }
  .cookie-tekst {
    width: 100%;
    padding: 5px 0;
    text-align: center;
  }
  .x {
    margin-top: -14px;
    font-size: 44px;
  }
  nav.navbar-collapse.collapse.in {
    margin-top: 30px;
  }
}

.videoWrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    padding-top: 25px;
    height: 0;
}
.videoWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
