body {
	height: 100%;
	margin: 0;
	padding: 0;
	background-attachment: fixed;
}

	body.body_format {
		display: flex;
		flex-direction: column;
		background: rgb(0,0,0);
		background: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(255,0,0,1) 100%);
		margin: 0px;
	}

.body_reverse {
	width: 95%;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 10px;
	border-radius: 20px;
	background: linear-gradient(180deg, rgba(255,0,0,1) 0%, rgba(0,0,0,1) 100%);
}

span {
	color: #000000;
	font-family: 'Quicksand', sans-serif;
	font-size: 18px
}

.highlight:hover {
	background: yellow !important;
	cursor: pointer;
}

.button {
	cursor: pointer;
	outline: none;
	color: white;
	font-family: 'Quicksand', sans-serif;
	font-size: 18px;
	font-weight: bold;
	padding: 7px;
	background-color: red;
	border: 0px solid red;
	border-radius: 10px;
}

.button_black {
	cursor: pointer;
	outline: none;
	color: white;
	font-family: 'Quicksand', sans-serif;
	font-size: 18px;
	font-weight: bold;
	padding: 7px;
	background-color: black;
	border: 0px solid black;
	border-radius: 10px;
}

.box_black_stretch {
	background-color: rgba(0, 0, 0, 0.4);
	border-radius: 20px;
	flex: 1;
}

.box_black {
	background-color: rgba(0, 0, 0, 0.4);
	border-radius: 20px;
}

.box_white {
	background-color: rgba(255, 255, 255, 0.80);
	border-radius: 20px;
	flex: 1;
}

.pointer {
	cursor: pointer;
}

.shadow-large {
	box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}

.shadow-medium {
	box-shadow: rgba(0, 0, 0, 0.25) 0px 8px 16px, rgba(0, 0, 0, 0.20) 0px 6px 6px;
}

.shadow-small {
	box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 8px, rgba(0, 0, 0, 0.15) 0px 2px 4px;
}

.checkbox {
	-webkit-appearance: none;
	background-color: #FCFCFC;
	border: 1px solid #CDCDCD;
	padding: 8px;
	border-radius: 5px;
	display: inline-block;
	position: relative;
	cursor: pointer;
	margin: 0px;
}

	.checkbox:checked {
		background-color: #FCFCFC;
		border: 1px solid #CDCDCD;
		color: #3B3B3B;
		font-weight: bold;
		cursor: pointer;
		margin: 0px;
	}

		.checkbox:checked:after {
			content: '\2714';
			background-color: #FCFCFC;
			font-size: 13px;
			position: absolute;
			top: 0px;
			left: 3px;
			color: #3B3B3B;
			font-weight: bold;
			cursor: pointer;
			margin: 0px;
		}

.form-drop-down {
	outline: none;
	border: 1px solid black;
	border-radius: 10px;
	background-color: #FCFCFC;
	font-family: 'Quicksand', sans-serif;
	font-size: 13px;
	color: #3B3B3B;
	padding: 4px;
}

.bump {
	transition: transform 0.1s ease;
}

	.bump:hover {
		transform: scale(1.05);
	}

::-webkit-scrollbar {
	width: 9px;
	height: 9px;
	border-radius: 5px;
}

::-webkit-scrollbar-track {
	background: silver;
	border-radius: 5px;
}

::-webkit-scrollbar-thumb {
	background: #000000;
	border-radius: 5px;
}

	::-webkit-scrollbar-thumb:hover {
		background: silver;
	}

.expanding {
	width: 100%;
	max-height: 15px;
}

	.expanding:hover {
		max-height: 100%;
	}

.search_box {
	width: 300px;
	padding: 10px 14px;
	font-size: 16px;
	font-weight: bold;
	color: #fff;
	background: #000;
	border: 1px solid #e50914;
	border-radius: 25px;
	outline: none;
	transition: all 0.3s ease;
}

	.search_box::placeholder {
		color: #aaa;
		font-weight: normal;
	}

	.search_box:focus {
		border-color: #ff2e2e;
	}