
div.collection_display {
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: 20;
	left: 0;
	top: 0;
	background-color: rgb(0, 0, 0);
	background-color: rgba(0, 0, 0, 0.95);
	overflow-x: hidden;
	transition: 0.5s;
	display: none;
}

.closebtn {
	position: fixed;
	top: 1%;
	right: 2%;
	font-size: 80px;
	color: #f1f1f1;
	text-decoration: none;
	z-index: 25;
}

div.collection_container {
	width: 100%;
	height: 100%;
	margin-left: auto;
	margin-right: auto;
	margin-top: 1%;
	position: relative;
	border-radius: 2%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

div.carousel_content {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	width: 90%;
	height: 100%;
}

div.scroll_content{
    display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	width: 100%;
	height: 100%;
}

div.arrow_container {
	width: 5%;
	height: 100%;
	cursor: pointer;
	border-radius: 2%;
	display: flex;
	justify-content: center;
	align-items: center;
	-webkit-tap-highlight-color: transparent;
}

img.side_arrow {
	width: 100%;
}

div.scroll_image_container {
	height: auto;
	width: auto;
	max-height: 95%;
}

.scroll_image_container img {
    margin-bottom: 2%;
}

div.carousel_image_container {
	height: auto;
	width: auto;
	max-height: 92%;
}

img.carousel_image {
	max-height: 100%;
	max-width: 100%;
	display: block;
	margin-left: auto;
	margin-right: auto;
	border-radius: 2%;
}

div.carousel_title_container {
	height: 5%;
	width: 90%;
	font-size: 25px;
	color: white;
}

div.carousel_title {
	display: block;
	margin-left: auto;
	margin-right: auto;
	height: 100%;
	font-size: 1.5vw;
}

div.carousel_counter_container {
	height: 5%;
	width: 90%;
	font-size: 25px;
	color: white;
}

div.carousel_counter {
	display: block;
	margin-left: auto;
	margin-right: auto;
	height: 100%;
	font-size: 1.5vw;
	text-align: right;
}

.loader {
	border: 16px solid #f3f3f3;
	border-radius: 50%;
	border-top: 16px solid #3498db;
	width: 120px;
	height: 120px;
	-webkit-animation: spin 2s linear infinite;
	animation: spin 2s linear infinite;
}

div.video_display {
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: 20;
	left: 0;
	top: 0;
	background-color: rgb(0, 0, 0);
	background-color: rgba(0, 0, 0, 0.95);
	overflow-x: hidden;
	transition: 0.5s;
	display: none;
}

div.video_container {
	width: 100%;
	height: 100%;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	border-radius: 2%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

div.carousel_video_container {
	height: auto;
	width: auto;
	max-height: 92%;
}

div.video_content {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	width: 80%;
	height: 90%;
	margin: auto;
	margin-top: 10%;
	margin-bottom: 10%;
}

.video_play {
	width: 100%;
	height: 100%;
}

/* Safari */
@-webkit-keyframes spin {
	0% {
		-webkit-transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
	}
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}