#toggle-lineup-mode {
    width: 200px;
    text-align: center;
    transition: all ease 0.25s;
}

.lineup-widget-wrapper {
    position: relative;
}

.lineup-navigation-wrapper {
    display: none;
    position: fixed;
    gap: 0.5rem;
    bottom: 35px;
    left: 35px;
    z-index: 2;
}

#toggle-image-mode, #toggle-text-mode {
    text-decoration: none;
}

#toggle-image-mode, #toggle-text-mode {
    background: #ff7607;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: .25rem;
}

#toggle-image-mode:hover, #toggle-text-mode:hover {
    cursor: pointer;
}

#toggle-image-mode.active, #toggle-text-mode.active {
    text-decoration: underline;
}

.lineup-image-grid-wrapper, .lineup-text-grid-wrapper {
    display: none;
}

.lineup-image-grid-wrapper.active {
    display: flex;
    flex-direction: column;
    gap: 1rem;
} 

.lineup-text-grid-wrapper.active {
    display: flex;
    gap: 1rem;
}

.lineup-text-grid-wrapper.active {
    max-width: 1080px;
    margin: 0 auto;
    flex-direction: column;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.headliners, .subheadliners, .undercard {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.text-artist-wrapper {
    font-family: 'BN Carrol St';
    color: #ff7607;
    padding: 0.5rem 1rem;
    line-height: 1;
    text-align: center;
    transition: all 0.25s ease;
}

.text-artist-wrapper:hover {
    cursor: pointer;
    transform: scale(1.125);
    color: #ffffff;
}

.text-artist-name.headliner {
    font-size: 2.25rem;
    margin: 0 auto;
}

.text-artist-name.subheadliner {
    font-size: 1.5rem;
    margin: 0 auto;
}

.text-artist-name.undercard {
    font-size: 1rem;
    margin: 0 auto;
}

/* Lineup Image Grid Styles */
.image-artist-wrapper {
    display: grid;
    position: relative;
    grid-template-rows: auto;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    padding: 5px;
    background: #285e98;
    background-position: center center;
    background-size: cover;
    border-radius: 5px;
}

.image-artist-wrapper:hover {
    cursor: pointer;
}
.image-artist-image-wrapper {
    display: grid;
    padding: 5px 5px 0px 5px;
}

.image-artist-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
	border: 2px solid #02609D;
/*     background-image: url('/wp-content/uploads/2023/11/st-border.png'); */
    background-size: cover;
    z-index: 1;
    background: linear-gradient(rgba(0,0,0,0.0) 67%, rgba(0,0,0,1.0)) !important;
}

.image-artist-overlay.unannounced {
    /* box-shadow: inset 0 0 1000px rgba(0,0,0,0.75); */
    /* backdrop-filter: blur(15px); */
    /* -webkit-backdrop-filter: blur(15px); */
    /* z-index: 2; */

}

.unannounced .image-artist-text-wrapper {
    display: none;
}

.image-artist-image {
    aspect-ratio: 1 / 1;
    object-fit: cover;
}
.image-artist-image:hover {
    cursor: pointer;
}

.image-artist-text-wrapper {
    font-family: "BN Carrol St", Sans-serif;
    /* color: #d58b20; */
    color: #ffffff;
    display: grid;
    position: relative;
    z-index: 2;
    align-items: start;
    margin-top: -3.5rem;
}

@media only screen and (max-width: 800px) {
	.image-artist-text-wrapper {
		height: 100px;
		justify-content: center;
		align-items: center;
	}
	.image-artist-name {
		font-size: 2rem !important;
	}
}

.image-artist-name {
    font-size: 1.5rem !important;
	font-weight: 700;
    line-height: 1.125;
    padding: 0.5rem 1rem 0.5em 1rem;
    margin: 0;
    text-align: center;
    color: #ffffff;
    font-family: 'BN Carrol St';
    z-index: 3;
    margin-bottom: 0rem !important;
}

.undercard-grid {
    margin-top: 2.5rem;
}

.undercard-grid .image-artist-name {
    font-size: 1.25rem;
    padding: 0.5rem 0.5rem 0.5rem 0.5rem;
}

.undercard-grid .image-artist-text-wrapper {
    margin-top: -2rem;
}

.undercard-grid .image-artist-image-wrapper, .headliners-grid .image-artist-image-wrapper {
    position: relative;
}

.undercard-grid .image-artist-text-wrapper, .headliners-grid .image-artist-text-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}


@media only screen and (max-width: 1100px) {
    .undercard-grid .image-artist-text-wrapper {
        margin-top: -3rem;
    }
}


.headliners-grid {
    /* display: grid; */
    /* grid-template-columns: repeat(3, minmax(0, 1fr)); */
    gap: 0.5rem;

    display: flex;
    justify-content: center;
}

.headliner-wrapper {
    flex: 0.25;
}

.headliners-grid .image-artist-name {
    padding-top: 0.35rem;
}

.headliners-grid .image-artist-text-wrapper {
    margin-top: -4.5rem;
}

.headliners-grid .image-artist-day {
    text-align: center;
    text-transform: capitalize;    
    margin-bottom: 0 !important;
    padding: 0.5rem 1rem 0.0rem 1rem;
    background: #285e98;
    width: 90%;
    margin: 0 auto;
    padding: 0 !important;
    color: black;
    text-transform: uppercase;
    font-weight: 900;
    font-size: 1rem;
    margin-bottom: 0.5rem !important;
}

@media only screen and (max-width: 800px) {
    .headliners-grid {
        flex-direction: column;
    }
    .headliners-grid .image-artist-wrapper {
        flex: 1.0;
    }
}

.undercard-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
}

@media only screen and (max-width: 800px) {
    .image-artist-text-wrapper {
        margin-top: -5.5rem;
    }

    .undercard-grid .image-artist-text-wrapper {
        margin-top: -5.5rem;
    }
    .headliners-grid, .undercard-grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));  
    } 

    .headliners-grid .image-artist-text-wrapper {
        margin-top: -6rem;
    }

    .image-artist-name {
        font-size: 1.5rem !important;
    }

    .image-artist-text-wrapper {
        height: auto !important;
    }
}
/**
*   Desktop
*   max-width: none
*   min-width: 1024px
*/
@media screen and (min-width: 1024px) {
    .lineup-image-grid-wrapper {
        grid-template-columns: repeat(4, minmax(0,1fr));
    }
}

/**
*   Tablet
*   max-width: 1023px
*   min-width: 801px
*/
@media screen and (min-width: 801px) and (max-width: 1023px) {
    .lineup-image-grid-wrapper {
        grid-template-columns: repeat(3, minmax(0,1fr));
    }

    .undercard-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .headliners-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}



/* Modal */
.lineup-modal-wrapper {
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100vh;
	padding: 1rem;
    width: 100vw;
    background: rgba(0,0,0,.85);
    z-index: 99;
}

.lineup-modal-content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 85vw;
    aspect-ratio: 2 / 1;
    background: #285e98;
    color: #ffffff;
    max-width: 1500px;
}

#lineup-modal-artist-image {
    height: 100%;
    background-size: cover;
    background-position: center center;
}

.lineup-modal-right-column {
    padding: 1rem 1.5rem;
}

#lineup-modal-artist-name > p {
    font-family: "BN Carrol St", Sans-serif;
    font-size: 1.75rem;
    line-height: 1.25; font-weight: bold;
    margin: 0;
}

.lineup-modal-navigation {
    position: fixed;
    width: 99vw;
    display: flex;
    justify-content: space-between;
}

#lineup-modal-previous, #lineup-modal-next, #lineup-modal-close {
    display: flex;
    width: 3rem;
    height: 3rem;
    background: #ff7607;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0.75rem;
    border-radius: 0.25rem;
    transition: all ease 0.25s;
}

#lineup-modal-previous:hover, #lineup-modal-next:hover, #lineup-modal-close:hover {
    cursor: pointer;
    transform: scale(1.125);
}

#lineup-modal-close {
    position: fixed;
    top: 5%;
    right: 5%;
}

#lineup-modal-artist-bio {
    overflow-y: auto;
}

.lineup-modal-right-column {
    display: flex;
    flex-direction: column;
}

#lineup-modal-artist-name {
    flex: .1;
    display: flex;
    align-items: center;
    color: #ffffff;
}

.lineup-modal-links-container {
    flex: .125;
    display: flex;
    align-items: center;
}

.lineup-modal-links-container a {
    color: #ffffff !important;
    font-size: 1.25rem;
    margin-right: 1rem;
}

#lineup-modal-artist-bio {
    flex: .75;
    overflow-y: auto;
}

#lineup-modal-artist-bio > p {
    margin: 0;
}

.lineup-modal-left-column {
    min-height: 250px;
} 

.lineup-modal-content {
    border: 2px solid #ff7607;
}

/**
*   Tablet
*   max-width: 1024px
*   min-width: 801px
*/
@media screen and (min-width: 801px) and (max-width: 1024px) {
    #lineup-modal-close {
        position: fixed;
        top: 2.5%;
        right: 5%;
    }

    .lineup-modal-content {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        aspect-ratio: auto;
        height: 85vh;
    }

    .lineup-modal-left-column {
        min-height: 400px;
    }

    #lineup-modal-artist-image {
        background-size: 450px 450px;
        background-repeat: no-repeat;
    }
}

/**
*   Mobile
*   max-width: 800px 
*   min-width: none
*/
@media screen and (max-width: 800px) {
    #lineup-modal-close {
        position: fixed;
        top: 0;
        right: 0;
    }

    .lineup-text-grid-wrapper.active {
        padding-top: 6rem;
    }

    .lineup-image-grid-wrapper {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        aspect-ratio: auto;
    }

    .lineup-modal-content {
        width: 95vw;
		height: 100vh;
		width: 100vw;
        grid-template-columns: repeat(1, minmax(0, 1fr));
		padding-top: 0rem;
/* 		padding: 1rem 0rem; */
    }

    #lineup-modal-artist-image {
/*         background-size: 325px 325px; */
		background-size: 100%;
        background-repeat: no-repeat;
    }

    .lineup-modal-left-column {
        min-height: 250px;
    }

    #lineup-modal-artist-bio {
        overflow-y: auto;
        max-height: 250px !important;
        min-height: 250px !important;
    }

    .lineup-modal-navigation {
        width: 100%;
        top: 19rem;
    }
    #lineup-modal-previous, #lineup-modal-next, #lineup-modal-close {
        width: 3rem;
        height: 3rem;
        border-radius: 0px;
    }
	
	.lineup-modal-left-column {
		aspect-ratio: 1/1;
	}
	
	#artist-modal-artist-name {
		padding-top: 0.5rem;
	}
	
/* 	.lineup-modal-content {
		aspect-ratio: 1/1 !important;
	} */
	
}

/* Card Flip */
.image-artist-wrapper {
    display: grid;
    position: relative;
    grid-template-rows: auto;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    padding: 5px;
    background: transparent;
}

.front, .back
{
  position:absolute;
  /* width:250px; */
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
}
.front {
    background: #285e98;
    border-radius: 5px;
    z-index: 1;
	color: #ffffff !important;
}
.back
{
    background: #285e98;
    border: 2px solid #02609D;
    border-radius: 5px;
    padding: 10px 15px;
    width: 100%;
    font-family: 'BN Carrol St';
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px !important;
}

.back .back-artist-name {
    font-family: 'BN Carrol St' !important;
    font-size: 1.5rem;
    margin-bottom: 10px;
    line-height: 1.5rem;
    text-align: center;
    color: #ffffff !important;
}

.image-artist-card-links a {
    color: #ffffff !important;
    font-size: 1rem;
    margin-right: .25rem;
}

.back-artist-bio p {
    font-family: 'BN Carrol St';
    font-size: .75rem;
    max-height: 8rem;
    line-height: 1rem;
    overflow: hidden;
    margin-top: .5rem;
    text-overflow: ellipsis !important;
    word-wrap: break-word;
    line-clamp: 8 !important;
    -webkit-line-clamp: 8 !important;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

#open-bio-modal {
    margin-top: 5px;
    font-size: 1.0rem;
	font-weight: 700;
    font-family: 'BN Carrol St';
    background: #02609D;
    padding: 0.5rem 0.5rem;
    border-radius: .25rem;
    width: 150px;
    text-align: center;

}

#open-bio-modal p {
    margin-bottom: 0px !important;
}

#open-bio-modal:hover {
    cursor: pointer;
}


.lineup-day-filter-wrapper {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    margin: 25px 0px;
	flex-wrap: wrap;
    margin: 0 auto;
    max-width: 900px;
}

.lineup-filter-button {
    padding: 10px 10px;
    background: #02609D;
    color: #ffffff;
    border-radius: 7px;
    transition: all 0.5s ease-in-out;
    font-family: 'BN Carrol St' !important;
    font-weight: bold;
}

.lineup-filter-button:hover {
    cursor: pointer;
    transform: scale(1.125);
}

.lineup-filter-button h4 {
    margin: 0;
    font-family: 'BN Carrol St' !important;
    font-weight: bold;
    font-size: 1.25rem;
} @media only screen and (max-width: 1024px) { #lineup-modal-content { display: flex; flex-direction: column; height: 100vh; width: 100vw; }}