body {
  height: 100%;
  width: 100%;
	/*background: #616161;*/
	color: #f8f7f7;
	font-family: 'Roboto', sans-serif;
	margin: 0;

	background: var(--bg);
	background: radial-gradient(circle, rgba(238,174,202,1) 0%, rgba(148,187,233,1) 100%);
	background-attachment: fixed !important;
}
:root {
	--bg: rgb(238,174,202);
}
.fc-first {
	margin-top: 2%;
}
.fc-others {
	margin-top: 10px;
}
.flex-container {
	/*display: flex;
	align-items: center;
	justify-content: center;*/
	background: rgba(28, 28, 28, 0.45);
	width: 80%;
	margin-left: 10%;
	border-radius: 10px;
	padding: 10px;
	list-style: none;
	flex-direction: row;
	box-sizing: border-box;
}
.title {
	font-size: 30px;
	text-align: center;
}
.subtitle {
	font-size: 20px;
	text-align: center;
}
.row {
	width: 100%;
}
.flex-item {
	text-align: center;
}
/*@keyframes SocialPop {
	0% {
		top: unset;
	}
	50% {
		top: 5px;
	}
	100% {
		top: unset;
	}
}
.social:hover {
	position: absolute;
	animation: SocialPop 0.3s infinite;
}*/
.social {
	transition: 100ms filter linear;
}
.social.youtube:hover {
	filter: drop-shadow(5px 5px 6px #c62424);
}
.social.reddit:hover {
	filter: drop-shadow(5px 5px 6px #fb6818);
}
.social.deventart:hover {
	filter: drop-shadow(5px 5px 6px #0feb13);
}

.relative {
	position: relative;
}

a.no-text-dec {
	text-decoration: none;
}
a.link {
	color: #f8f7f7;
	text-decoration-color: #f8f7f7;
	transition: color 100ms linear;
}
a.link:hover {
	color: #c0bfbc;
	text-decoration-color: #c0bfbc;
	transition: color 100ms linear;
}
a.link:active {
	color: #9a9996;
	text-decoration-color: #9a9996;
	transition: color 100ms linear;
}
.btn {
	background: transparent;
	border: solid 1px whitesmoke;
	border-radius: 5px;
	color: whitesmoke;
	padding: 10px 15px;
	cursor: pointer;
	text-decoration: none;
	transition-duration: 0.2s;
}
.btn:hover {
	background: whitesmoke;
	color: black;
}
.btn.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.textinput {
	background: transparent;
	border: double 1px whitesmoke;
	border-radius: 10px;
	color: whitesmoke;
	outline: none;
	transition-duration: 0.2s;
}
.textinput:focus {
	border: double 1px blue;
}
.selectpanel {
	background: transparent;
	border: double 1px whitesmoke;
	border-radius: 10px;
	color: whitesmoke;
	outline: none;
	transition-duration: 0.2s;
	width: fit-content;
	padding: 5px;
}
.selectpanel > .spitem.selected {
	background: whitesmoke;
	border-radius: 5px;
	color: black;
	transition: color 100ms linear;
	padding: 1px;
}
.color-white {
	color: white;
}
table {
	width: 100%;
	table-layout: fixed;
	border-collapse: whitesmoke;
}
tr {
	border-bottom: 1px solid #ddd;
}
thead th:nth-child(1) {
	width: 60%;
}
thead th:nth-child(2): {
	width: 20%;
}
thead th:nth-child(3): {
	width: 20%;
}
