/**
 *
 * MAIN stylesheet for muziekgieterij agenda
 *
 */
:root {
  --mga-img-size: 110px;
  --mga-transition: all .2s;
  --mga-transition-anim: all .25s ease-out;
  --mga-archive-item-border: 1px solid rgba(255, 255, 255, 0.4);
  --mga-archive-button-background-color: #c17b30;
  --mga-anim-marker-translatey: 20px;
  --mgs-buy-tickets-background-color: #fce03d;
  --mgs-buy-tickets-background-color-hover: #656355;
  --mgs-buy-tickets-color: black;
  --mgs-buy-tickets-padding-top: 12px;
  --mgs-buy-tickets-padding-right: 24px;
  --mgs-buy-tickets-padding: 12px 24px;
}

.mg-events .mg-event-date {
  padding: 10px;
  font-size: 1em;
  white-space: nowrap;
}
.mg-events .mg-post-data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  -ms-flex-line-pack: start;
      align-content: flex-start;
}
.mg-events .mg-event-image {
  min-width: 110px;
  max-width: 110px;
}
.mg-events .mg-event-mobile {
  margin: 10px 0px 0px 0px;
}
.mg-events .mg-event-mobile .mg-event-date {
  padding: 0;
  text-align: left;
}
.mg-events .mg-event-mobile .mg-event-date > div {
  display: inline-block;
  background-color: black;
  color: white;
  font-size: 12px;
  text-transform: uppercase;
  padding: 8px 4px 4px 4px;
  line-height: 12px;
}
.mg-events .mg-event-mobile .mg-event-ticketstatus {
  text-align: center;
}
.mg-events .mg-event-mobile .mg-event-ticketstatus > div {
  text-transform: uppercase;
  display: inline-block;
  font-size: 12px;
  line-height: 12px;
  padding: 8px 4px 4px 4px;
}
.mg-events .mg-event-mobile .mg-event-link {
  text-align: right;
}
.mg-events .mg-event-mobile .mg-event-link > div {
  display: inline-block;
  font-weight: 700;
  font-size: 12px;
  line-height: 12px;
  padding: 8px 4px 4px 4px;
}
.mg-events .mg-event-mobile .mg-event-link > div.tickets {
  background-color: var(--mgs-buy-tickets-background-color);
  color: black;
}
.mg-events .mg-event-mobile .mg-event-started-message {
  display: inline-block;
  max-width: 170px;
  background-color: unset;
  color: white;
  font-size: 1em;
  line-height: 1.2;
}
.mg-events .mg-event-prod .inner-content {
  margin: 10px 20px 10px 0px;
}
.mg-events .mg-event-prod .inner-content .mg-event-prod-title {
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
}
.mg-events .mg-event-prod .inner-content .mg-event-prod-content {
  opacity: 0.7;
  line-height: 1.1;
}
.mg-events .mg-event-prod .mg-livestream-link,
.mg-events .mg-event-prod .mg-ticketshop-link {
  padding: 6px 8px 4px 8px;
  margin: 20px 10px;
}
.mg-events .mg-event-prod .mg-ticketstatus {
  padding: 6px 0px 4px 8px;
  margin: 20px 10px;
}
.mg-events .mg-event-prod .mg-livestream-link,
.mg-events .mg-event-prod .mg-ticketshop-link {
  font-size: 12px;
  line-height: 12px;
  background-color: var(--mgs-buy-tickets-background-color);
  color: black;
  font-weight: 700;
  text-transform: uppercase;
}
.mg-events .mg-event-prod .mg-ticketstatus {
  font-size: 14px;
  line-height: 14px;
  font-weight: 700;
  text-transform: uppercase;
}
.mg-events .mg-event-prod .mg-event-started-message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: right;
  padding: 10px;
  font-size: 1em;
  line-height: 1.2;
}
@media (max-width: 640px) {
  .mg-events .mg-event-prod h2.mg-event-prod-title {
    font-size: 22px;
  }
  .mg-events .mg-event-prod .mg-event-prod-content {
    font-size: 15px;
    line-height: 1.2em;
  }
}
.mg-events .pulse-loading {
  background-color: white;
  -webkit-animation-name: color;
          animation-name: color;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
@-webkit-keyframes color {
  0% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.1;
  }
  100% {
    opacity: 0.4;
  }
}
@keyframes color {
  0% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.1;
  }
  100% {
    opacity: 0.4;
  }
}
.mg-events > a {
  margin: 0;
  -webkit-transition: var(--mga-transition);
  transition: var(--mga-transition);
  border-bottom: var(--mga-archive-item-border);
}
.mg-events > a:first-child {
  border-top: var(--mga-archive-item-border);
}

@media (min-width: 640px) {
  .mg-events .mg-event-date, .mg-events .mg-event-prod-title, .mg-events .mg-event-prod-content, .mg-events .mg-event-image, .mg-events .mg-event-stats {
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }

  .mg-events:hover .mg-event-date {
    color: rgba(255, 255, 255, 0.2);
  }
  .mg-events:hover a.mg-hover-effects:hover .mg-event-date {
    color: white;
  }
  .mg-events:hover .mg-event-image {
    opacity: 0.2;
  }
  .mg-events:hover a.mg-hover-effects:hover .mg-event-image {
    opacity: 1;
  }
  .mg-events:hover h2.mg-event-prod-title {
    color: rgba(255, 255, 255, 0.2);
  }
  .mg-events:hover a.mg-hover-effects:hover h2.mg-event-prod-title {
    color: white;
  }
  .mg-events:hover .mg-event-prod-content {
    color: rgba(255, 255, 255, 0.2);
  }
  .mg-events:hover a.mg-hover-effects:hover .mg-event-prod-content {
    color: white;
  }
  .mg-events:hover .mg-event-stats {
    opacity: 0.2;
  }
  .mg-events:hover a.mg-hover-effects:hover .mg-event-stats {
    opacity: 1;
  }
}
.mg-filters {
  position: relative;
  z-index: 100;
}
.mg-filters .filter.horizontal-dropper {
  position: relative;
}
.mg-filters .filter.horizontal-dropper .placeholder {
  display: none;
  padding: 10px;
  border: 1px solid black;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.mg-filters .filter.horizontal-dropper .options {
  display: block;
}
.mg-filters .filter.horizontal-dropper .options .option {
  display: inline-block;
  margin-right: -5px;
}
.mg-filters .filter.horizontal-dropper .options input[type=radio] {
  display: none;
}
.mg-filters .filter.horizontal-dropper .options input[type=radio] + label {
  padding: 12px 18px 8px;
  background-color: white;
  color: black;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 700;
  border-left: 1px solid #000;
}
.mg-filters .filter.horizontal-dropper .options input[type=radio] + label:hover {
  cursor: pointer;
}
.mg-filters .filter.horizontal-dropper .options input[type=radio] + label:first-child {
  border-left: none;
}
.mg-filters .filter.horizontal-dropper .options input[type=radio]:checked + label {
  background-color: black;
  color: white;
}

@media (max-width: 640px) {
  .mg-post-data {
    width: 100% !important;
  }

  .mg-filters .filter.horizontal-dropper {
    background-color: unset;
  }
  .mg-filters .filter.horizontal-dropper .placeholder {
    display: block;
    color: white;
    border: 1px solid white;
  }
  .mg-filters .filter.horizontal-dropper .placeholder:after {
    position: absolute;
    top: 50%;
    right: 20px;
    margin-top: -8px;
    height: 16px;
    width: 16px;
    content: "";
    background-image: url(/wp-content/plugins/mg-agenda-stager/assets/caret-down.svg);
    background-size: cover;
    background-repeat: none;
  }
  .mg-filters .filter.horizontal-dropper .options {
    display: none;
    position: absolute;
    width: 100%;
  }
  .mg-filters .filter.horizontal-dropper .options .option {
    display: block;
    width: 100%;
  }
  .mg-filters .filter.horizontal-dropper .options .option input[type=radio] + label {
    width: 100%;
    margin-top: -5px;
    display: block;
    text-transform: none;
  }
  .mg-filters .filter.horizontal-dropper.open .placeholder:after {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .mg-filters .filter.horizontal-dropper.open .options {
    display: block;
  }
}
body .mg-buy-tickets span.fl-button-text {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}
body .mg-buy-tickets a.fl-button, body .mg-buy-tickets a.fl-button:visited {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 0;
  border-radius: 0px;
  background-color: var(--mgs-buy-tickets-background-color);
  color: var(--mgs-buy-tickets-color);
}
body .mg-related > a .container {
  width: 100%;
  padding-top: 100%;
}
body .mg-related .bgcover {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
body .mg-related .bgoverlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.2);
}
body .mg-related .item-date {
  font-size: 24px;
  font-weight: 700;
}

.ast-container, .ast-container-fluid {
  padding-left: unset !important;
  padding-right: unset !important;
}