/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

@font-face {
  font-family: "Portico";
  src: url("../fonts/PorticoRegular.otf");
  /* url('fonts/Fonesia Regular.eot'); */
  /* IE */ }
/**
 * SCSS Functions
 */
/**
 * SCSS Mixins
 */
/**
 * Buttons
 */
.cta-button {
  display: inline-block;
  outline: none;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  font: 1rem Portico, sans-serif;
  padding: 15px 20px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  color: #000000 !important;
  border: none;
  border-bottom: solid 4px #a37d00;
  background: #ffc400; }
  .cta-button:hover {
    cursor: pointer;
    text-decoration: none;
    background: #cc9d00; }
  .cta-button:active {
    position: relative;
    top: 1px;
    color: #ffc400; }

.cta-button-icon {
  display: inline-block;
  outline: none;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  font: 1rem Portico, sans-serif;
  padding: 15px 20px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  color: #000000 !important;
  border: none;
  border-bottom: solid 4px #a37d00;
  background: #ffc400; }
  .cta-button-icon .fa {
    position: relative;
    top: 1px;
    margin-right: 8px; }
  .cta-button-icon .glyphicon {
    position: absolute;
    right: 15px;
    top: 14px;
    font-size: 1.4rem; }
  .cta-button-icon:hover {
    cursor: pointer;
    text-decoration: none;
    background: #cc9d00; }
  .cta-button-icon:active {
    position: relative;
    top: 1px;
    color: #ffc400; }

.cta-rounded-button-icon {
  display: inline-block;
  outline: none;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  font: 1rem Portico, sans-serif;
  padding: 15px 20px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  border-radius: 25px;
  color: #000000 !important;
  border: none;
  border-bottom: solid 4px #a37d00;
  background: #ffc400; }
  .cta-rounded-button-icon .glyphicon {
    right: 20px; }
  .cta-rounded-button-icon .fa {
    position: relative;
    top: 1px;
    margin-right: 8px; }
  .cta-rounded-button-icon .glyphicon {
    position: absolute;
    right: 15px;
    top: 14px;
    font-size: 1.4rem; }
  .cta-rounded-button-icon:hover {
    cursor: pointer;
    text-decoration: none;
    background: #cc9d00; }
  .cta-rounded-button-icon:active {
    position: relative;
    top: 1px;
    color: #ffc400; }

.cta-border-button {
  display: inline-block;
  outline: none;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  font: 1rem Portico, sans-serif;
  padding: 15px 20px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  position: relative;
  top: 2px;
  color: #000000 !important;
  border: solid 3px #ffc400;
  background: transparent; }
  .cta-border-button:hover {
    cursor: pointer;
    color: #ffffff !important;
    text-decoration: none;
    background: #ffc400; }
  .cta-border-button:active {
    position: relative;
    top: 1px;
    color: #ffc400; }

.btn-label .glyphicon {
  position: relative;
  top: 2px;
  padding-right: 8px; }

.btn-icon-only .glyphicon {
  font-size: 1rem;
  padding: 3px 0px; }

.btn-remove-form {
  display: inline-block;
  outline: none;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  font: 1rem Portico, sans-serif;
  padding: 15px 20px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  position: relative;
  top: 2px;
  color: #000000 !important;
  border: solid 3px #ffc400;
  background: transparent; }
  .btn-remove-form:hover {
    cursor: pointer;
    color: #ffffff !important;
    text-decoration: none;
    background: #ffc400; }
  .btn-remove-form:active {
    position: relative;
    top: 1px;
    color: #ffc400; }

.btn-add-form {
  display: inline-block;
  outline: none;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  font: 1rem Portico, sans-serif;
  padding: 15px 20px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  position: relative;
  top: 2px;
  color: #000000 !important;
  border: solid 3px #ffc400;
  background: transparent; }
  .btn-add-form:hover {
    cursor: pointer;
    color: #ffffff !important;
    text-decoration: none;
    background: #ffc400; }
  .btn-add-form:active {
    position: relative;
    top: 1px;
    color: #ffc400; }

/**
 * Links
 */
.link {
  color: #ffc400;
  text-decoration: none !important; }
  .link:visited {
    color: #ffc400;
    text-decoration: none !important; }
  .link:hover {
    color: #000000;
    text-decoration: none !important; }
  .link:active {
    color: #000000;
    text-decoration: none !important; }

/**
 * Icons
 */
.icon {
  color: #ffffff;
  padding: 15px;
  float: left;
  display: block;
  font-size: 1rem; }

.round-icon {
  color: #ffffff;
  padding: 15px;
  float: left;
  display: block;
  font-size: 1rem;
  border-radius: 100%;
  background-color: #ffc400; }

/**
 * Image
 */
.default-image {
  background-size: cover; }

.default-image:before {
  content: '';
  padding: 58.5% 0;
  /* vertical value as  100% equals width */
  display: inline-block; }

/**
 * Alignments
 */
.vertical-align {
  display: flex;
  align-items: center; }

/**
 * GENERAL CSS
 */
body, html {
  background-color: #0c0b0b; }

.no-border-top {
  border-top: none !important; }

.no-padding {
  padding: 0 !important; }

.no-padding-left {
  padding-left: 0 !important; }

.no-padding-right {
  padding-right: 0 !important; }

.no-margin-header {
  margin: 0 !important; }

/**
 * GENERAL HTML Styles
 */
b {
  font-weight: bold; }

i {
  font-style: italic; }

ul {
  list-style-type: disc; }

blockquote {
  font-size: 1.4rem;
  font-family: Montserrat, sans-serif; }
  blockquote .fa {
    font-weight: normal;
    padding: 5px 5px; }

.gap {
  margin-top: 30px; }

.gap-10 {
  margin-top: 10px; }

.gap-15 {
  margin-top: 15px; }

.gap-20 {
  margin-top: 20px; }

table {
  font-family: Roboto, sans-serif;
  line-height: 1.4rem; }

table th {
  background-color: #ffc400;
  color: #ffffff; }

table td {
  vertical-align: middle !important;
  font-family: auto; }

table td i span, table td span i {
  font-size: 11px; }

/**
 * Typography
 */
h1, h2, h3, h4, h5, h6 {
  font-family: Montserrat, sans-serif; }

h1 {
  font-size: 3rem;
  color: white; }

h2 {
  font-size: 2.5rem; }

h3 {
  font-size: 2.5rem; }

h4 {
  font-size: 2.5rem; }

h5 {
  font-size: 2rem; }

h6 {
  font-size: 1.5rem; }

p, li {
  font-family: Roboto, sans-serif;
  line-height: 1.4rem; }

label {
  color: white; }

/**
 * Generic CSS
 */
.clear {
  clear: both; }

.no-padding {
  padding-left: 0 !important;
  padding-right: 0 !important; }

.no-padding-left {
  padding-left: 0 !important; }

.no-padding-right {
  padding-right: 0 !important; }

.align-middle {
  margin: 0 auto; }

/**
 * Mobile CSS
 */
.hidden-mobile {
  display: none; }

/**
 * Default Admin Styles
 */
div.center {
  text-align: center;
  font-size: 1.4rem; }

.pagination ul {
  display: block;
  float: left; }

.pagination li {
  display: block;
  float: left;
  width: 40px !important;
  height: 43px !important;
  padding: 0 !important;
  font-size: 1.4rem !important;
  margin: 0px 5px !important; }

.pagination li a {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 40px !important;
  padding: 0 !important; }

.pagination li a {
  border-radius: 50%; }

.pagination li a:first-child {
  border-radius: 100%; }

.pagination li a:last-child {
  border-radius: 100%; }

.pagination .active {
  color: #0c0b0b;
  background-color: #337ab7; }

.total {
  font-size: 1rem;
  line-height: 1.4rem;
  text-align: center; }

.default-styles {
  font-family: Roboto, sans-serif;
  line-height: 1.4rem; }

.default-wrapper {
  background-color: #0c0b0b;
  padding: 20px 20px; }

.default-wrapper h1 {
  text-align: left !important;
  margin: 0 !important; }

.default-wrapper h4 {
  margin: 10px 0px 30px 0px; }

.default-wrapper h4 {
  padding-bottom: 3px; }

.default-wrapper h5 {
  padding-bottom: 5px; }

.default-wrapper ul {
  padding-left: 15px; }

.highlight-wrapper {
  border-bottom: none !important;
  border-top: none !important;
  background-color: #0c0b0b;
  font-family: Roboto, sans-serif;
  line-height: 1.4rem; }

.highlight {
  position: absolute;
  left: 0;
  top: 0;
  width: 7px;
  height: 100%;
  background-color: #ffc400; }

.highlight-green {
  background-color: #009e30; }

/**
 *  Custom CSS
 */
#header {
  background-image: url("../img/homepage-header.jpg");
  box-shadow: inset 2000px 0px 0px 5px rgba(0, 0, 0, 0.6);
  background-size: cover;
  background-attachment: fixed; }

#headerMusicCafe {
  background-image: url("../img/muziekCafe.jpg");
  height: 700px;
  box-shadow: inset 2000px 0px 0px 5px rgba(0, 0, 0, 0.6);
  background-size: cover;
  background-attachment: fixed; }

#headerVerhuur {
  background-image: url("../img/verhuur.jpg");
  height: 700px;
  box-shadow: inset 2000px 0px 0px 5px rgba(0, 0, 0, 0.6);
  background-size: cover;
  background-attachment: fixed; }

#headerRepeteren {
  background-image: url("../img/repeteren.jpg");
  box-shadow: inset 2000px 0px 0px 5px rgba(0, 0, 0, 0.6);
  background-size: cover;
  background-attachment: fixed; }

#headerMusicCafe #header-content {
  padding-top: 200px !important; }

#header-licht {
  background-image: url("../img/licht-header.jpg");
  height: 700px;
  box-shadow: inset 2000px 0px 0px 5px rgba(0, 0, 0, 0.6);
  background-size: cover;
  background-attachment: fixed; }

#header-studio {
  background-image: url("../img/studio.jpg");
  box-shadow: inset 2000px 0px 0px 5px rgba(0, 0, 0, 0.6);
  background-size: cover;
  background-attachment: fixed; }

#header-studio #header-content {
  padding-bottom: 100px !important; }

#header-concerten {
  background-image: url("../img/musician.jpg");
  box-shadow: inset 2000px 0px 0px 5px rgba(0, 0, 0, 0.6);
  background-size: cover;
  background-attachment: fixed; }

#header-feestje {
  background-image: url("../img/food.jpg");
  box-shadow: inset 2000px 0px 0px 5px rgba(0, 0, 0, 0.6);
  background-size: cover;
  background-attachment: fixed; }

#header-contact {
  background-image: url("../img/gitarGuy.jpg");
  box-shadow: inset 2000px 0px 0px 5px rgba(0, 0, 0, 0.6);
  background-size: cover;
  background-attachment: fixed; }

#header-contact #header-content {
  padding-bottom: 0px !important; }

#references {
  background-image: url("../img/gitarGuy.jpg");
  box-shadow: inset 2000px 0px 0px 5px rgba(0, 0, 0, 0.6);
  background-size: cover;
  background-attachment: fixed;
  padding: 100px 0px; }

.references-oudejaarsjam {
  background-image: url("../img/musicscool.jpg") !important; }

#references .round-icon {
  float: none;
  width: 60px;
  height: 60px;
  line-height: 65px;
  padding: 0;
  text-align: center;
  font-size: 1.4rem;
  color: #000000; }

#references .round-icon .glyphicon {
  position: relative;
  left: 1px; }

#references .ref-line {
  font-family: Montserrat, sans-serif;
  font-size: 2rem;
  margin: 25px 0px;
  padding: 25px 35px;
  color: #ffffff;
  border-top: 1px solid #0c0c0c;
  border-bottom: 1px solid #0c0c0c;
  text-align: center; }

#references .ref-line b {
  color: #ffc400; }

#references .carousel-inner {
  overflow: visible; }

#references .glyphicon-chevron-left, #references .glyphicon-chevron-right {
  margin-top: -15px; }

#references .glyphicon-chevron-left {
  left: 25px; }

#references .glyphicon-chevron-right {
  right: 25px; }

#references .events-title h1 {
  margin-top: 50px; }

#slider-controls .arrow-left, #slider-controls .arrow-right {
  position: absolute;
  font-size: 2rem;
  padding: 30px;
  background-color: rgba(0, 0, 0, 0.8);
  color: #ffffff;
  border-radius: 100%;
  top: 50%;
  z-index: 2; }

#tarieven {
  padding: 50px 0px; }

#tarieven .table-wrapper h4 {
  color: #ffffff;
  font-size: 1.4rem;
  margin: 30px 0px; }

#tarieven .table-wrapper table {
  width: 100%; }

#tarieven .table-wrapper table th {
  background-color: #ffc400;
  color: #000000;
  font-weight: bolder;
  padding: 15px 15px; }

#tarieven .table-wrapper table tr td {
  padding: 15px 15px;
  color: #ffffff;
  vertical-align: top; }

#tarieven .vertical-aligned-table td, #tarieven .vertical-aligned-table th {
  vertical-align: middle; }

#tarieven .table-wrapper table tr:nth-child(odd) {
  background-color: #171515; }

#tarieven .table-wrapper table tr:nth-child(even) {
  background-color: #201d1d; }

#tarieven .table-wrapper table small {
  font-size: 0.8rem;
  font-style: italic; }

#slider-controls .arrow-left:hover, #slider-controls .arrow-right:hover {
  transition: 1000ms;
  cursor: pointer;
  background-color: rgba(255, 196, 0, 0.8); }

#slider-controls .arrow-left {
  left: 30px; }

#slider-controls .arrow-right {
  right: 30px; }

#navigation {
  padding-top: 40px !important;
  padding-left: 25px; }

.logoSmallScreen {
  display: none; }

#navigation img {
  position: relative;
  display: block;
  width: 180px;
  height: 68px;
  margin: 0 auto;
  top: -22px; }

#navigation ul {
  float: left;
  display: block;
  margin-left: 40px;
  list-style-type: none; }

#navigation li {
  float: left;
  padding-right: 30px; }

#navigation li:first-child {
  padding-left: 30px; }

#navigation a {
  color: #FFFFFF;
  text-decoration: none !important;
  font-size: 1.1rem;
  text-shadow: 0px 0px 15px #000000;
  font-family: Luckiest Guy, sans-serif; }
  #navigation a:visited {
    color: #FFFFFF;
    text-decoration: none !important; }
  #navigation a:hover {
    color: #000000;
    text-decoration: none !important; }
  #navigation a:active {
    color: #000000;
    text-decoration: none !important; }

#navigation a:hover {
  text-decoration: none;
  color: #ffc400;
  border-bottom: 2px solid #ffc400;
  padding-bottom: 1px; }

#navigation .active, #navigation .active:visited {
  color: #ffc400;
  border-bottom: 2px solid #ffc400;
  padding-bottom: 1px; }

.facebook-icon {
  position: relative;
  margin-left: 10px;
  top: -8px;
  float: left;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: #333;
  color: #ffffff; }
  .facebook-icon:hover {
    cursor: pointer;
    background-color: #ffc400;
    color: #ffffff; }

.facebook-icon-mobile {
  position: absolute;
  top: 15px !important;
  right: 30px; }

.facebook-icon i {
  width: 100%;
  height: 100%;
  display: block;
  text-align: center;
  line-height: 40px;
  font-size: 1.4rem; }

.youtube-icon {
  position: relative;
  margin-left: 10px;
  top: -8px;
  float: left;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: #333;
  color: #ffffff; }
  .youtube-icon:hover {
    cursor: pointer;
    background-color: #ffc400;
    color: #ffffff; }

.youtube-icon-mobile {
  position: absolute;
  top: 15px !important;
  right: 80px; }

.youtube-icon i {
  width: 100%;
  height: 100%;
  display: block;
  text-align: center;
  line-height: 40px;
  font-size: 1.4rem; }

.logo {
  float: left;
  position: relative;
  display: block;
  margin-top: 25px; }

#header-content {
  padding: 100px 0px 250px 0px; }

#header-content h1 {
  font-weight: bold;
  color: #ffffff;
  text-align: center;
  text-shadow: 2px 2px 5px #000000; }

#header-content p {
  padding: 20px 0px;
  text-align: center;
  color: #ffffff;
  line-height: 1.5rem;
  text-shadow: 2px 2px 5px #000000; }

#header-content a {
  margin-top: 10px;
  box-shadow: 0px 0px 5px 0px #000000; }

#header-content-costum {
  padding: 100px 0px 0px 0px; }

#header-content-costum h1 {
  font-weight: bold;
  color: #ffffff;
  text-align: center;
  text-shadow: 2px 2px 5px #000000; }

#header-content-costum p {
  padding: 20px 0px;
  text-align: center;
  color: #ffffff;
  line-height: 1.5rem;
  text-shadow: 2px 2px 5px #000000; }

#header-content-costum a {
  margin-top: 10px;
  box-shadow: 0px 0px 5px 0px #000000; }

#agenda-content {
  background-color: rgba(0, 0, 0, 0.5);
  padding-bottom: 100px; }

#agenda-content .agenda-row {
  padding: 20px 0px;
  border-bottom: 1px solid #000; }

#agenda-content h3 {
  display: block;
  float: left;
  color: #ffffff;
  font-size: 1.5rem;
  position: relative;
  top: 11px;
  margin-left: 15px; }

#agenda-content .first-agenda-row .cta-rounded-button-icon {
  float: right; }

#agenda-content .agenda-row h4 {
  color: #ffffff; }

#agenda-content .agenda-row h5 {
  font-size: 1rem;
  color: #ffc400;
  text-transform: uppercase;
  padding: 5px 0px; }

#agenda-content .agenda-row .date {
  font-family: Roboto, sans-serif;
  color: #ffe89b;
  font-weight: bold;
  margin-top: 10px; }

#agenda-content .agenda-row .date .icon {
  color: #ffe89b;
  padding: 0px 10px 0px 0px; }

.content-divider {
  float: left;
  width: 95%;
  margin-left: 2.5%;
  margin-right: 2.5%;
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 0px 20px;
  border-top: 1px solid #111111; }

#aanbod-content {
  font-size: 1.6rem;
  line-height: 2rem;
  color: #ffffff;
  font-weight: bold;
  padding: 50px 30px 30px 30px;
  text-align: center; }

#aanbod-content h3 {
  float: left;
  margin-bottom: 10px; }

#aanbod-content .cta-button-icon {
  position: relative;
  top: -5px;
  margin-left: 15px; }

#aanbod-content #aanbod-items-wrapper {
  padding: 50px 0px; }

#aanbod-content #aanbod-items-wrapper a {
  color: #ffffff; }

#aanbod-content .single-aanbod-item {
  background-size: cover;
  padding-bottom: 66.667%;
  border-radius: 5px !important; }

#aanbod-content h4 {
  padding: 2px 0px 20px 0px;
  font-size: 1rem;
  font-weight: normal;
  text-align: center; }

#aanbod-content .zoom {
  cursor: pointer;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s; }

#aanbod-content .zoom:hover {
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1); }

#aanbod-content .zoom:hover h4 {
  color: #ffc400; }

#google-maps-content {
  position: relative;
  height: 500px;
  margin-bottom: -250px; }

.gm-style-iw div {
  overflow: hidden !important; }

.gm-style-iw h3 {
  padding-top: 15px;
  font-weight: bold;
  text-align: left; }

.gm-style-iw .google-maps-text-item {
  padding: 10px 0px;
  line-height: 1.1rem;
  text-align: left; }

#musicscool-content {
  background-image: url("../img/musicscool.jpg");
  background-size: cover;
  background-attachment: fixed;
  background-color: #333;
  box-shadow: inset 2000px 0px 0px 5px rgba(0, 0, 0, 0.5);
  padding-bottom: 150px; }

#musicscool-content h3 {
  font-family: Montserrat, sans-serif;
  font-weight: bold;
  color: #ffffff;
  font-size: 4rem;
  text-shadow: 5px 5px 5px #000;
  margin-top: 140px; }

#musicscool-content .highlight {
  color: #ffc400 !important; }

#musicscool-content .sub-text {
  padding: 30px 0px !important; }

#musicscool-content .sub-text p {
  font-size: 1.4rem;
  line-height: 2.2rem;
  font-weight: bold;
  color: #ffffff;
  text-shadow: 5px 5px 5px #000; }

#footer {
  font-family: Montserrat, sans-serif;
  font-size: 0.8rem;
  padding: 60px 0px;
  color: #ffffff;
  background-color: #100e0e; }

#footer .fb-page {
  display: block;
  margin: 20px auto 0px auto;
  width: 300px; }

#footer .logo-footer {
  display: block;
  margin: 0 auto;
  position: relative;
  width: 200px;
  height: 68px; }

#ContentWrapper .container {
  padding-top: 50px;
  padding-bottom: 50px; }

.TitleBox-Title h1 {
  font-weight: bold;
  color: #ffffff;
  text-align: center;
  text-shadow: 2px 2px 5px #000000; }

.Title-Subtekst p {
  margin-top: 30px;
  color: #ffffff;
  text-align: center; }

.PictureContentBox {
  padding: 80px 0px;
  background-image: url("../img/homepage-header.jpg");
  background-attachment: fixed;
  background-size: cover;
  box-shadow: inset 2000px 0px 0px 5px rgba(0, 0, 0, 0.8); }

.PictureContentBoxMusicCafe {
  padding: 80px 0px;
  background-image: url("../img/audience.jpg");
  background-attachment: fixed;
  background-size: cover;
  box-shadow: inset 2000px 0px 0px 5px rgba(0, 0, 0, 0.8); }

.PictureContentBoxTarievenRepeteer {
  padding: 80px 0px;
  background-image: url("../img/repeteren.jpg");
  background-attachment: fixed;
  background-size: cover;
  box-shadow: inset 2000px 0px 0px 5px rgba(0, 0, 0, 0.8); }

.PictureContentBoxRepeteer {
  padding: 80px 0px;
  background-image: url("../img/repeteer.jpg");
  background-attachment: fixed;
  background-size: cover;
  box-shadow: inset 2000px 0px 0px 5px rgba(0, 0, 0, 0.8); }

.OpeningstijdenBox {
  min-width: 200px; }

.OpeningstijdenWrapper {
  font-size: 1rem;
  margin-top: 30px;
  margin-bottom: 30px;
  border-radius: 3px;
  border-style: solid;
  border-width: 3px;
  border-color: #ffc400;
  padding: 20px; }

.OpeningstijdenWrapper h4 {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 30px;
  text-align: center; }

.OpeningstijdenRow {
  margin-top: 5px; }

.OpeningstijdenRow .Left p {
  color: #ffc400 !important; }

.OpeningstijdenRow .Right p {
  color: #ffffff !important;
  word-break: break-all; }

.OpeningstijdenLine {
  margin-top: 0.2em;
  margin-bottom: 0.2em;
  height: 1px;
  background: #ffc400;
  background: -webkit-gradient(linear, 0 0, 100% 0, from(rgba(255, 196, 0, 0)), to(rgba(255, 196, 0, 0)), color-stop(50%, #ffc400)); }

.ThreeContentBoxes-content {
  padding-top: 60px; }

#optredenClinicsWrapper ul {
  color: #ffffff;
  margin: 20px 0px;
  padding: 0px 30px; }

#optredenClinicsWrapper {
  color: #ffffff; }

.ThreeContentBoxes-Box {
  margin-bottom: 50px; }

.ThreeContentBoxes-Box h4 {
  color: #ffffff;
  margin: 20px 0px;
  text-align: center;
  text-transform: uppercase;
  font-size: 1.4rem;
  text-align: center; }

.ThreeContentBoxes-Box p {
  color: #ffffff;
  text-align: center; }

ul.OpsommingInconentBox {
  color: #ffffff;
  list-style-position: inside;
  list-style-type: circle; }

.ThreeContentBox {
  margin-top: 25px; }

.glyphicon-ring {
  width: 170px;
  height: 170px;
  line-height: 170px;
  font-size: 4rem;
  border-radius: 50%;
  border: 4px solid;
  color: #000;
  text-align: center;
  margin: 0 auto; }

.glyphicon-white {
  background: #F5B019;
  border: 8px solid #F5B019; }

.glyphicon-left {
  left: 15px;
  right: auto !important; }

.google-maps {
  margin-top: 100px; }

#wrapper-contact {
  padding-bottom: 100px;
  margin-top: 300px; }

#wrapper-contact h4 {
  margin-bottom: 30px; }

#wrapper-contact h4, #wrapper-contact p {
  color: #ffffff; }

.c-menu__items {
  margin: 0 !important; }

.c-menu--slide-left.is-active, .c-menu--push-left.is-active {
  background-color: #0c0b0b; }

.c-menu--slide-left {
  background-color: #0c0b0b !important; }

.c-menu__items li {
  padding: 0 !important;
  margin: 0 !important;
  text-align: center !important;
  width: 100% !important;
  border: none !important;
  display: block; }

.c-menu__items li:first-child {
  margin-top: 15px !important; }

.c-menu__items li:first-child a {
  border-top: 1px solid #010000; }

.c-menu__items li a {
  color: #ffffff;
  display: block;
  padding: 10px 0px !important;
  width: 100%;
  height: 100%;
  border-bottom: 1px solid #010000; }

.c-menu__items li:hover a {
  color: #ffffff;
  text-decoration: none !important; }

.o-wrapper {
  margin-top: 15px; }

.o-wrapper {
  display: none; }

.o-wrapper .glyphicon {
  color: #ffffff;
  font-size: 2rem; }

.o-wrapper .glyphicon:hover {
  cursor: pointer; }

#c-button--slide-left {
  display: block;
  float: left;
  width: 30px;
  height: 30px;
  top: 15px;
  left: 15px;
  position: relative; }

.c-menu__close {
  background-color: #ffc400 !important; }

.fixedButton {
  position: fixed;
  bottom: 2%;
  right: 2%;
  display: inline-block;
  outline: none;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  font: 1rem Portico, sans-serif;
  padding: 15px 20px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  color: #000000 !important;
  border: none;
  border-bottom: solid 4px #a37d00;
  background: #ffc400; }

#back-top {
  position: fixed;
  bottom: 2%;
  right: 2%;
  display: inline-block;
  outline: none;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  font: 1rem Portico, sans-serif;
  padding: 15px 20px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  color: #000000 !important;
  border: none;
  border-bottom: solid 4px #a37d00;
  background: #ffc400;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity .3s 0s, visibility 0s .3s;
  -moz-transition: opacity .3s 0s, visibility 0s .3s;
  transition: opacity .3s 0s, visibility 0s .3s; }

#back-topi {
  font-size: 40px; }

#back-top.is-visible,
#back-top.is-fade-out,
#back-top:hover {
  -webkit-transition: opacity .3s 0s, visibility 0s 0s;
  -moz-transition: opacity .3s 0s, visibility 0s 0s;
  transition: opacity .3s 0s, visibility 0s 0s; }

#back-top.is-visible {
  /* the button becomes visible */
  visibility: visible;
  opacity: 1; }

#back-top:hover {
  background-color: #CC9D00;
  opacity: 1; }

#back-top:hover,
#back-top:active,
#back-top:focus {
  outline: none;
  text-decoration: none; }

.the-login-wrapper {
  position: fixed;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform: -webkit-translate(-50%, -50%);
  transform: -ms-translate(-50%, -50%);
  margin-bottom: 100px; }

.tarieven-table-2 {
  padding: 0 !important; }

.tarieven-table-2 .container {
  padding-top: 0 !important; }

@media screen and (max-width: 1411px) {
  .logoSmallScreen {
    position: relative;
    display: block;
    margin: 0 auto;
    right: 15px; }

  .image-logo {
    position: relative;
    top: -20px;
    display: block;
    float: left;
    width: 150px;
    height: 60px;
    background-image: url("../img/logo-mads.png");
    background-size: 100% 100%; }

  .image-logo:hover {
    cursor: pointer;
    text-decoration: none !important;
    border: none !important; } }
/** 1280px+ **/
@media screen and (min-width: 1281px) {
  #navigation img {
    width: 120px;
    height: 60px; }

  #navigation ul {
    position: relative;
    top: -5px;
    margin-left: 0px; }

  #navigation li {
    padding-left: 15px;
    padding-right: 15px; }

  #navigation a {
    font-size: 1rem; }

  .facebook-icon {
    top: -13px; }

  .youtube-icon {
    top: -13px; }

  #references .glyphicon-chevron-left, #references .glyphicon-chevron-right {
    margin-top: -15px; }

  #tarieven .container {
    margin: 0;
    width: auto; } }
/** 1024px - 1280px **/
@media screen and (max-width: 1280px) {
  #navigation img {
    width: 120px;
    height: 60px; }

  #navigation ul {
    position: relative;
    top: -5px;
    margin-left: 0px; }

  #navigation li {
    padding-left: 15px;
    padding-right: 15px; }

  #navigation a {
    font-size: 1rem; }

  .facebook-icon {
    top: -13px; }

  .youtube-icon {
    top: -13px; }

  #references .glyphicon-chevron-left, #references .glyphicon-chevron-right {
    margin-top: -15px; }

  #tarieven .container {
    margin: 0;
    width: auto; } }
@media screen and (max-width: 1200px) {
  .facebook-icon {
    margin-top: 23px;
    margin-left: -10px; }

  .youtube-icon {
    margin-top: 23px; }

  #navigation li {
    padding-left: 10px;
    padding-right: 10px; }

  #navigation .facebook-icon {
    margin-left: 10px; }

  #navigation .facebook-icon, #navigation .youtube-icon {
    margin-top: 0px; }

  #navigation li:first-child {
    padding-left: 20px; }

  #navigation a {
    font-size: 0.9rem !important; }

  .image-logo {
    width: 120px;
    height: 40px;
    top: -10px; } }
/** 720px - 1024px **/
@media screen and (max-width: 1024px) {
  #references .carousel-inner .carousel-content {
    font-size: 2rem; }

  #references .glyphicon-chevron-left, #references .glyphicon-chevron-right {
    margin-top: -15px; } }
@media screen and (max-width: 1023px) {
  #navigation {
    display: none; }

  #navigationSmallScreen {
    display: none; }

  .o-wrapper {
    display: block; }

  .logo-devices {
    position: relative;
    display: block;
    margin: 0 auto;
    right: 15px; }

  #references .carousel-inner .carousel-content {
    font-size: 1.5rem; }

  #references .glyphicon-chevron-left, #references .glyphicon-chevron-right {
    margin-top: -10px; }

  #tarieven .table-wrapper table tr td {
    font-size: 0.9rem;
    padding: 15px 10px; }

  .youtube-icon {
    margin-top: 3px; }

  .facebook-icon {
    margin-top: 3px; } }
@media screen and (max-width: 800px) {
  #references .glyphicon-chevron-left, #references .glyphicon-chevron-right {
    margin-top: -10px; }

  #references .carousel-inner .carousel-content {
    font-size: 1rem; } }
/** 480px - 720px **/
@media screen and (max-width: 720px) {
  h1 {
    font-size: 2rem; }

  h2 {
    font-size: 1.8rem; }

  h3 {
    font-size: 1.6rem; }

  h4 {
    font-size: 1.4rem; }

  h5 {
    font-size: 1.2rem; }

  h6 {
    font-size: 1rem; }

  #header p {
    font-size: 1rem; }

  #header-content {
    padding-bottom: 100px; }

  .cta-rounded-button-icon .glyphicon {
    display: none; }

  .cta-button-icon .glyphicon {
    display: none; }

  .date {
    font-size: 0.8rem;
    position: relative;
    top: 3px; }

  #musicscool-content {
    padding-bottom: 100px; }

  #musicscool-content h3 {
    margin-top: 80px;
    font-size: 1.8rem;
    text-align: center; }

  #musicscool-content p {
    font-size: 1rem !important;
    text-align: center; }

  #google-maps-content {
    height: 300px; }

  .hidden-mobile {
    display: none; }

  #header-licht a .glyphicon {
    display: block; }

  #contact {
    padding: 0;
    margin-top: 30px; }

  #contact textarea {
    height: 150px; }

  #wrapper-contact h4 {
    font-size: 1.2rem;
    font-weight: bold; } }
/** 320px - 480px **/
@media screen and (max-width: 480px) {
  h1 {
    font-size: 1.4rem; }

  h2 {
    font-size: 1.5rem; }

  h3 {
    font-size: 1.4rem; }

  h4 {
    font-size: 1.3rem; }

  h5 {
    font-size: 1.2rem; }

  h6 {
    font-size: 1.1rem; }

  #header p {
    font-size: 0.9rem; }

  #all-events-button {
    display: none; }

  #agenda-content > div {
    padding: 0; }

  .vertical-align {
    display: block;
    align-items: baseline; }

  #agenda-content .cta-rounded-button-icon {
    margin-top: 20px;
    padding: 8px 0px; }

  .hidden-mobile {
    display: block; }

  #header-licht a .glyphicon {
    display: block; }

  #references .glyphicon-chevron-left, #references .glyphicon-chevron-right {
    display: none; }

  #references .carousel-inner .carousel-content {
    line-height: 1.4rem; }

  #tarieven .table-wrapper {
    padding: 0; }

  .logo-devices {
    width: 150px;
    margin-top: 10px; }

  .o-wrapper .glyphicon {
    top: 5px;
    left: -15px; }

  .youtube-icon {
    right: 50px; }

  .facebook-icon-mobile {
    right: 5px; } }
@media screen and (max-width: 479px) {
  .youtube-icon {
    width: 30px;
    height: 30px;
    right: 50px;
    margin-top: 8px; }

  .facebook-icon-mobile {
    width: 30px;
    height: 30px;
    right: 15px;
    margin-top: 8px; }

  .facebook-icon i, .youtube-icon i {
    font-size: 1.2rem;
    line-height: 30px; } }
@media screen and (max-width: 470px) {
  span .break {
    display: block; } }
/** 0px - 320px **/
@media screen and (max-width: 320px) {
  h1 {
    font-size: 1.2rem; }

  h2 {
    font-size: 1.1rem; }

  h3 {
    font-size: 1rem; }

  h4 {
    font-size: 0.9rem; }

  h5 {
    font-size: 0.8rem; }

  h6 {
    font-size: 0.7rem; }

  #agenda-content .agenda-row h5 {
    font-size: 0.8rem; }

  #agenda-content .agenda-row .date {
    font-size: 0.7rem !important; }

  #agenda-content .round-icon {
    display: none; }

  .date .glyphicon {
    position: relative;
    top: 0px; }

  #agenda-content h3 {
    display: block;
    width: 100%;
    margin-left: 0;
    text-align: center; }

  #agenda-content .agenda-row .cta-rounded-button-icon {
    width: 100%;
    left: 0; }

  #agenda-content #all-events-mobile-button {
    padding: 7px 0px;
    font-size: 0.9rem;
    margin-top: 20px;
    margin-bottom: 40px; }

  #aanbod-content h3 {
    text-align: center; }

  #aanbod-content .cta-button-icon {
    width: 100%;
    left: 0;
    margin-left: 0;
    padding: 8px 0px;
    margin-top: 5px; }

  #aanbod-content .zoom {
    width: 100%; }

  #musicscool-content .sub-text p {
    font-size: 0.8rem !important;
    line-height: 1rem !important; }

  #musicscool-content .cta-button-icon {
    width: 100%;
    left: 0;
    font-size: 0.8rem; }

  .hidden-mobile {
    display: block; }

  #header-licht a .glyphicon {
    display: block; }

  .o-wrapper .glyphicon {
    top: 5px;
    left: -15px; }

  .facebook-icon-mobile {
    right: 15px;
    top: 17px !important; } }
.col-xs-5ths,
.col-sm-5ths,
.col-md-5ths,
.col-lg-5ths {
  position: relative;
  min-height: 1px;
  padding-right: 10px;
  padding-left: 10px; }

.col-xs-5ths {
  width: 20%;
  float: left; }

@media (min-width: 768px) {
  .col-sm-5ths {
    width: 20%;
    float: left; } }
@media (min-width: 992px) {
  .col-md-5ths {
    width: 20%;
    float: left; } }
@media (min-width: 1200px) {
  .col-lg-5ths {
    width: 20%;
    float: left; } }

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