/*

Usage:
@include breakpoint(laptop) {
  // styles for laptop and wider
}
@include breakpoint(laptop, 800px) {
  // styles for laptop width and screens up to 800px tall
  // useful for targeting shorter laptop screens
}

@include breakpoint(desktop, 900px) {
  // styles for desktop width but shorter screens
}
  */
/*-----------------------
EASING 
---------------------- */
.events-functions-container {
  overflow: hidden;
}
.events-functions-container.alignfull {
  padding-left: var(--padding-horizontal);
  padding-right: var(--padding-horizontal);
}
@media (min-width: 1024px) {
  .events-functions-container.alignfull {
    padding-left: 0;
    padding-right: 0;
  }
}
.events-functions-container .functions-list {
  display: flex;
  flex-direction: column;
}
.events-functions-container .functions-list.slick-slider {
  display: flex !important;
  flex-direction: column !important;
}
.events-functions-container .functions-list.slick-slider .slick-dots {
  order: 1;
}
.events-functions-container .functions-list.slick-slider .slick-list {
  order: 2;
  overflow: visible;
}
.events-functions-container .functions-list .slick-slide {
  transition: opacity 0.3s ease-in-out;
  opacity: 0.6;
  width: 28.2rem !important;
  margin-right: 2.2rem;
}
.events-functions-container .functions-list .slick-slide:only-child {
  width: calc(100vw - var(--padding-horizontal) * 2) !important;
}
.events-functions-container .functions-list .slick-slide.slick-active {
  opacity: 1;
}
.events-functions-container .function-item {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  padding: 3.5rem 0;
  width: 100%;
}
@media (min-width: 1024px) {
  .events-functions-container .function-item {
    padding: 3.5rem var(--padding-horizontal);
    border-top: 1px solid var(--color-black);
  }
  .events-functions-container .function-item:nth-child(even) .function-content {
    flex-direction: row-reverse;
    justify-content: flex-end;
  }
}
.events-functions-container .function-item .function-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .events-functions-container .function-item .function-content {
    flex-direction: row;
    align-items: center;
    justift-content: flex-start;
    gap: 4rem;
    align-items: stretch;
  }
}
@media (min-width: 1100px) {
  .events-functions-container .function-item .function-content {
    gap: 6rem;
  }
}
.events-functions-container .function-item .function-image-container {
  position: relative;
  width: 100%;
  min-height: 28.2rem;
  border-radius: var(--border-radius);
  overflow: hidden;
}
@media (min-width: 1024px) {
  .events-functions-container .function-item .function-image-container {
    width: 48%;
    min-height: 28.2rem;
  }
}
@media (min-width: 1100px) {
  .events-functions-container .function-item .function-image-container {
    min-height: 46.8rem;
  }
}
.events-functions-container .function-item .function-image-container .tag {
  position: absolute;
  z-index: 2;
  top: 2.1rem;
  left: 2.1rem;
  border-radius: var(--border-radius-button-glass);
  padding: 0.6rem 1.3rem;
}
@media (min-width: 1024px) {
  .events-functions-container .function-item .function-image-container .tag {
    font-size: 1.8rem;
  }
}
.events-functions-container .function-item .function-image-container .function-modal-trigger {
  --spacing: 3rem;
  position: absolute;
  bottom: var(--spacing);
  left: var(--spacing);
  right: var(--spacing);
  z-index: 2;
}
.events-functions-container .function-item .function-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 3rem;
}
@media (min-width: 1024px) {
  .events-functions-container .function-item .function-details {
    gap: 2rem;
  }
}
.events-functions-container .function-item .function-title {
  font-size: var(--font-size-md);
}
@media (min-width: 1024px) {
  .events-functions-container .function-item .function-title {
    --font-size-md: 2.7rem;
  }
}
.events-functions-container .function-item .function-sponsor {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .events-functions-container .function-item .function-sponsor {
    gap: 5rem;
  }
}
.events-functions-container .function-item .function-sponsor .sponsor-label {
  --font-size-sm: 2.1rem;
  font-size: var(--font-size-sm);
}
.events-functions-container .function-item .function-sponsor .sponsor-logo {
  max-height: 12rem;
  width: auto;
  max-width: 15rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.events-functions-container .function-item .function-description p {
  margin-bottom: 1rem;
}
.events-functions-container .function-item .function-description p:last-child {
  margin-bottom: 0;
}

.modal-player .modal-content.function {
  padding: 0;
  width: auto;
}
.modal-player .modal-content.function .modal-header {
  padding: var(--padding-horizontal);
  align-items: flex-start;
}
@media (min-width: 1100px) {
  .modal-player .modal-content.function .modal-header {
    padding: 9rem;
  }
}
.modal-player .modal-content.function .modal-header-left {
  width: 100%;
}
@media (min-width: 1024px) {
  .modal-player .modal-content.function .modal-header-left {
    width: 50%;
  }
}
.modal-player .modal-content.function .modal-header-right {
  width: 100%;
}
@media (min-width: 1024px) {
  .modal-player .modal-content.function .modal-header-right {
    width: 50%;
  }
}
.modal-player .modal-content.function .modal-details {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .modal-player .modal-content.function .modal-details {
    gap: 4rem;
  }
}
.modal-player .modal-content.function .modal-details .detail-item h3 {
  font-size: 1.3rem;
  text-transform: uppercase;
  margin: 0;
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.modal-player .modal-content.function .modal-details .detail-item p {
  font-size: var(--font-size-sm);
}
.modal-player .modal-content.function .modal-details .detail-item.detail-day-time h3::before {
  content: "";
  display: block;
  width: 2.2rem;
  height: 2.2rem;
  background: url("../../images/icon-calendar-blue.svg") no-repeat center center;
  background-size: cover;
}
.modal-player .modal-content.function .modal-details .detail-item.detail-location h3::before {
  content: "";
  display: block;
  width: 1.93rem;
  height: 1.93rem;
  background: url("../../images/icon-location-blue.svg") no-repeat center center;
  background-size: cover;
}
.modal-player .modal-content.function .modal-body {
  padding: 0;
  gap: 0;
}
.modal-player .modal-content.function .modal-banner {
  height: 20rem;
}
@media (min-width: 1024px) {
  .modal-player .modal-content.function .modal-banner {
    height: 25rem;
  }
}
@media (min-width: 1100px) {
  .modal-player .modal-content.function .modal-banner {
    height: 32.7rem;
  }
}
.modal-player .modal-content.function .modal-gallery {
  padding: 0 0 var(--padding-horizontal) var(--padding-horizontal);
}
@media (min-width: 1100px) {
  .modal-player .modal-content.function .modal-gallery {
    padding: 0 0 9rem 9rem;
  }
}
.modal-player .modal-content.function .function-gallery-slider {
  position: relative;
}
.modal-player .modal-content.function .function-gallery-slider .slider-arrows {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2.4rem;
}
.modal-player .modal-content.function .function-gallery-slider .function-gallery-slider-list {
  width: 100%;
}
.modal-player .modal-content.function .function-gallery-slider .function-gallery-slider-list .slick-track {
  display: flex;
  gap: 2rem;
  align-items: stretch;
}
.modal-player .modal-content.function .function-gallery-slider .function-gallery-slider-list .slick-list {
  overflow: visible;
}
.modal-player .modal-content.function .function-gallery-slider .function-gallery-slider-list .gallery-slide {
  height: auto;
  display: flex !important;
  align-items: flex-start !important;
  flex-direction: column;
}
.modal-player .modal-content.function .function-gallery-slider .function-gallery-slider-list .gallery-slide > div {
  display: flex;
  align-items: stretch;
  flex-direction: column;
}
.modal-player .modal-content.function .function-gallery-slider .function-gallery-slider-list .gallery-image-wrap {
  width: 100%;
  height: 50rem;
  overflow: hidden;
  background-color: var(--color-blue-gray);
  border-radius: var(--border-radius);
}
.modal-player .modal-content.function .function-gallery-slider .function-gallery-slider-list .gallery-image-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.modal-player .modal-content.function .function-gallery-slider .function-gallery-slider-list .gallery-caption {
  padding: 1.5rem 0 0 0;
}
.modal-player .modal-content.function .function-gallery-slider .function-gallery-slider-list .gallery-caption p {
  font-size: var(--font-size-sm);
  color: var(--color-text);
  margin: 0;
  line-height: 1.4;
}