body {
	margin: 0;
	background-color: #000;
	color: #fff;
	font-family: Monospace;
	font-size: 13px;
	line-height: 24px;
	overscroll-behavior: none;
}

#container {
	height: 100%;
	height: -webkit-calc(100% - 150px);
	height: -moz-calc(100% - 150px);
	height: calc(100% - 150px);
}

a {
	color: #ff0;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

button {
	cursor: pointer;
	text-transform: uppercase;
}

a,
button,
input,
select {
	pointer-events: auto;
}

.dg.ac {
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
	z-index: 2 !important;
}

#overlay {
	position: absolute;
	z-index: 2;
	top: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	height: -webkit-calc(100%);
	height: -moz-calc(100%);
	height: calc(100%);
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.7);
}

#overlay button {
	background: #ffffff;
	border: 0;
	border-radius: 25px;
	color: #000000;
	padding: 16px 20px;
	text-transform: uppercase;
	cursor: pointer;
}

#drop-zone {
	position: fixed;
	z-index: 2;
	left: 0;
	right: 0;
	margin: auto;
	height: 150px;
	border: 2px dotted rgb(255, 255, 255);
	background-color: #0000002a;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: 1s;
}

.button {
	z-index: 3;
	background-color: #00000030;
	border: 0;
	color: #000000;
	width: 48px;
	height: 48px;
	position: fixed;
	z-index: 3;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 25px;
	transition: 1s;
}

.close {
	top: -155px;
}

.open {
	top: 0px;
}

.buttonClose {
	top: 155px;
}

.arrow {
	position: absolute;
	width: 35px;
	height: 35px;
	filter: invert(1);
	transform: scaleY(-1);
	transition: 1s;
}

.addTrans {
	transform: scaleY(1);
}

#loading-text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 25px;
	height: 25px;
	border: 4px solid #f3f3f3;
	border-top: 4px solid #3498db;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	display: none;
}

.Fullscreen {
	position: absolute;
	right: 20px;
	bottom: 20px;
	width: 48px;
	height: 48px;
	background-color: #00000030;
	background-image: url("./images/Fullscreen.png");
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: center;
	border: none;
	outline: none;
	transition: transform 0.125s ease-out;
	border-radius: 25px;
}

.Fullscreen img {
	z-index: 5;
	opacity: 0.85;
}

.Fullscreen:hover {
	transform: scale(1.05);
}

@keyframes spin {
	0% {
		transform: translate(-50%, -50%) rotate(0deg);
	}

	100% {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
button {
	font-family: 'Lato', sans-serif;
}

.volume {
	position: fixed;
	bottom: 20px;
	left: 20px;
	z-index: 0;
	width: 48px;
	height: 48px;
	background-color: #00000030;
	border-radius: 25px;
	transition: transform 0.125s ease-out;
}

.volume img {
	z-index: 5;
	opacity: 0.85;
}

.volume:hover {
	transform: scale(1.05);
}

#mute {
	display: none;
}

#play {
	display: none;
}

.modal {
	display: block;
	position: fixed;
	z-index: 9999;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #fefefe;
	margin: auto;
	padding: 20px;
	border: 1px solid #888;
	border-radius: 8px;
	max-width: 400px;
	width: 90%;
	text-align: center;
}

.modal-content h2,
p {
	color: #888;
}

.closer {
	position: absolute;
	top: 10px;
	right: 10px;
	font-size: 24px;
	font-weight: bold;
	color: #888;
	cursor: pointer;
}

.button-container {
	margin-top: 20px;
}

.modal-content button {
	background: #888;
	border: 0;
	border-radius: 25px;
	color: #ffffff;
	padding: 16px 20px;
	text-transform: uppercase;
	cursor: pointer;
}

#openModalBtn {
	position: absolute;
	background: #ffffff;
	border: 0;
	border-radius: 25px;
	color: #000000;
	padding: 16px 20px;
	text-transform: uppercase;
	cursor: pointer;
	z-index: 1000;
}

#openModalBtn:hover {
	background-color: #45a049;
}