/**************************************************************************
Name:			sponsors.css
Description:	Styling for showpage sponsor section.
Date Created: 	02.05.2020 Brynn Chivers
Modified:		11/08/2023 by Jessica (WRIS) - Added styles for carousel
**************************************************************************/

.clientImage {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.imageWrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 200px;
}

/*
.sponsorContainer
{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;

	-webkit-box-orient: vertical;

	-webkit-box-direction: normal;

	    -ms-flex-direction: column;

	        flex-direction: column;

	width: 100%;
}

.sponsorTitle
{
	margin: 25px 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-ms-flex-line-pack: center;
	    align-content: center;
}

.sponsorTitle p
{
	-webkit-box-sizing: content-box;
	        box-sizing: content-box;
	max-width: 230px;
	padding: 10px 40px;
	margin: 0;
	border-bottom: 1px #CCCCCC solid;

	color: #000000;
	font-size: 15px;
	line-height: 18px;
	letter-spacing: .15px;
}
.sponsorContentWrapper
{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;

    width: 80vw;
	margin-bottom: 75px;
}
.sponsorCarousel
{
	height: inherit;
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 66vw;
	        flex: 1 1 66vw;
	margin: 0 !important;
}

.sponsorTile.swiper-slide
{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	height: auto;
}

.sponsorTile .imageWrapper
{
	height: inherit;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}

.sponsorNavButton.hide
{
	display: none;
}

.sponsorNavButton.edgeHide
{
	opacity: 0;
}

.sponsorNavButton
{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: -webkit-fit-content;
	height: -moz-fit-content;
	height: fit-content;

	margin: 0px 30px;
	opacity: 1;
}

.sponsorNavButton img
{
	width: 40px;
	height: 25px;
	cursor: pointer;
}

.sponsorNavButton.sponsorPrev
{
	-webkit-transform: rotate(90deg);
	    -ms-transform: rotate(90deg);
	        transform: rotate(90deg);
}

.sponsorNavButton.sponsorNext
{
	-webkit-transform: rotate(-90deg);
	    -ms-transform: rotate(-90deg);
	        transform: rotate(-90deg);
}

*/

@media only screen and (max-width: 1400px)
{
	.sponsorContentWrapper
	{
		width: 90vw;
	}
}

@media only screen and (max-width: 1024px)
{
	.sponsorNavButton.hide
	{
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
	.sponsorNavButton.edgeHide
	{
		opacity: 0;
	}
}

@media only screen and (max-width: 768px)
{
    /* WRIS EDIT */
    
    /*
	.sponsorContainer
	{
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		height: auto;
	}
	.sponsorContentWrapper
	{
		margin: 20px 0;
	}
	.sponsorTitle
	{
		-webkit-box-flex: 0;
		    -ms-flex: none;
		        flex: none;
		width: 50%;
	}
    */
}

@media only screen and (max-width: 568px)
{
	.sponsorTitle
	{
		margin-left: 10px;
	}
}