:root {
	--bg-color: rgb(5, 0, 0);
	--color: blanchedalmond;
}

::-webkit-scrollbar {
    background-color: #202324;
}

::-webkit-scrollbar-thumb {
    background-color: #454a4d;
}	

html, body {
	margin: 0;
	padding: 0;
	background: var(--bg-color, rgb(43, 21, 21));
	color: var(--color);
	height: 100vh;
	width: 100%;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	background-color: #000;
	color: blanchedalmond;
}

.main-content {
	display: flex;
	align-items: center;
	justify-content: center;
}

.flex {
	display: flex;
}

.header {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 10;
	display: flex;
}

.header div img {
	padding: 10px;
}

.header a {
	text-decoration: none;
}

.footer {
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
}

.footer div div img, .header div img {
	cursor: pointer;
}

.right-side {
	margin-left: auto;
}

.justify {
	display: flex;
	justify-content: space-evenly;
}

.spread {
	display: flex;
	justify-content: space-between;
}

.space {
	display: flex;
	justify-content: space-around;
}

.baseline {
	align-items: baseline;
}

.inline {
	display: inline;
}

.inline-block {
	display: inline-block;
}

.row-wrap{
	flex-wrap: wrap;
}

.scroll{
	overflow: auto;
}

.picture-row{
	width: 400px;
	display: flex;
	justify-content: space-around;
}

.spinning-loader {
	width: var(--s-loader-width);
	height: var(--s-loader-height);
	border: 5px solid var(--s-loader-border-color-trans);
	border-left-color: var(--s-loader-border-color-full);
	border-radius: 50%;
	background: transparent;
	animation-name: rotate-s-loader;
	animation-iteration-count: infinite;
	animation-duration: 1s;
	animation-timing-function: linear;
	position: relative;
}

@keyframes rotate-s-loader {
	from {
		transform: rotate(0);
	}
	to {
		transform: rotate(360deg);
	}
}

form, .center {
	margin: auto;
	text-align: center;
}

.hor-center {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.even-sides {
	margin-left: auto;
	margin-right: auto;
}

h1 {
	margin: 4px;
	text-align: center;
}

input[type="text"], input[type="password"], input[type="date"], input[type="datetime"], input[type="email"], input[type="number"], input[type="search"], input[type="tel"], input[type="time"], input[type="url"], input, textarea, select {
	background: rgba(255, 255, 255, 0.1);
	border: none;
	font-size: 16px;
	height: auto;
	margin: 0;
	outline: 0;
	padding: 15px;
	background-color: #454748;
	color: blanchedalmond;
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03) inset;
	margin-bottom: 30px;
}

input[type="radio"], input[type="checkbox"] {
	margin: 0 4px 8px 0;
}

select {
	padding: 6px;
	height: 32px;
	border-radius: 2px;
}

form button {
	padding: 19px 39px 18px 39px;
	color: #FFF;
	background-color: #4bc970;
	font-size: 18px;
	text-align: center;
	font-style: normal;
	border-radius: 5px;
	width: 100%;
	border: 1px solid #3ac162;
	border-width: 1px 1px 3px;
	box-shadow: 0 -1px 0 rgba(255, 255, 255, 0.1) inset;
	margin-bottom: 10px;
}

fieldset {
	margin-bottom: 30px;
	border: none;
}

legend {
	font-size: 1.4em;
	margin-bottom: 10px;
}

label {
	display: inline-block;
	margin-bottom: 8px;
}

label.light {
	font-weight: 300;
	display: inline;
}

.number {
	background-color: #5fcf80;
	color: #fff;
	height: 30px;
	width: 30px;
	display: inline-block;
	font-size: 0.8em;
	margin-right: 4px;
	line-height: 30px;
	text-align: center;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
	border-radius: 100%;
}

.multi-content-box {
	flex-wrap: wrap;
	display: flex;
	flex-direction: row;
}

body.user {
	overflow: auto;
}

.video {
	max-width: 100%;
	max-height: calc(100vh - 60px);
}

.column {
	flex-direction: column;
}

.caption-input {
	width: calc(100% - 80px);
	text-align: center;
	margin-bottom: 2px;
}

.trash {
	position: relative;
	top:  calc(-100% + 87px);
	left: calc(100% - 40px);
	display: flex;
	align-items: center;
}

.trash img{
	cursor: pointer;
}

.label-wrap {
	word-break: break-all;
	width: min-content;
	min-width: 100%;
}

.video-box {
	flex: auto;
}

.scroll {
	/* height: 100vh; */
	overflow: auto;
}

.link{
	text-decoration: none;
}

.link label{
	color: #ccc;
}

.link:visited label{
	color: #444
}

.link label {
	cursor: pointer;
}

.link2
{
	color:#52C792;
	text-decoration: none;
}

#description{
	position: absolute;
	top: 40px;
}