@font-face {
  font-family: "Roboto";
  src: url("fonts/RobotoMono.woff2") format("woff2"),
	   url("fonts/RobotoMono.woff") format("woff"),
	   url("fonts/RobotoMono.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

*{
	font-family: "Roboto";
	font-size: 16px;
	margin: 0;
	padding: 0;
	text-decoration: none;
}

body {
	margin: 0px;
	padding: 0px;
	line-height: 1.5;
	background: #222;
}

.container{
	width: 100%;
	position: relative;
}

.success, form{
	margin: auto;
	max-width: 1650px;
	border: 1px solid #ceecff;
	min-height: calc(100vh - 22px);
	margin-top: 10px;
	background: #222;
}

.header{
	padding: 0 20px;
	max-width: 1650px;
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	border-bottom: 2px solid #ceecff55;
}

.logo{
	flex: 3 1 auto;
	padding: 10px 0;
}

.logo img {
	height: 80px;
}

.logo.logo-center{
	flex: 1 1 auto;
	text-align: center;
}

.logo.logo-center img {
	height: 200px;
}

.menu{
	flex: 7 1 0;
}

.menu ul{
	display: flex;
	list-style: none;
	
}

.menu ul li{
	font-weight: bold;
	text-transform: uppercase;
	align-items: center;
	height: 50px;
	padding: 0 20px;
	line-height: 50px;
	flex: 1 1 auto;
	white-space: nowrap;
}

.menu ul li a{
	display: inline-block;
	height: 50px;
	line-height: 50px;
	font-size: 16px;
	color: #ceecff;
	padding: 0 20px;
}

.menu ul li a:hover{
	color: #ffa800;
}

.content{
	margin: auto;
	max-width: 1650px;
	display: flex;
	flex-wrap: wrap;
}

.content h1{
	flex: 1 1 100%;
	font-size: 30px;
	text-transform: uppercase;
	background: linear-gradient(135deg, #ed0059 0%, #a700ed, 20%, #00b2ed, 40%, #00edb8 60%, #00ed32 80%, #ed8600 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
	text-align: center;
	padding: 20px;
}

.configuration{
	flex: 1 1 50%;
	height: 100%;
	padding: 20px 50px;
	box-sizing: border-box;
}

legend{
	color: #cd0079;
	font-weight: bold;
	text-transform: uppercase;
	font-size: 16px;
	padding: 20px 10px;
}

fieldset{
	border: 1px solid #edf6ff;
	border-radius: 10px;
	padding: 20px 40px;
	box-sizing: border-box;
}

.form-group {
	width: 100%;
	padding: 10px;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
}

.form-group label{
	flex: 2 1 0;
	line-height: 36px;
	color: #edf6ff;
	min-width: 125px;
}

.form-group input{
	flex: 8 1 0;
	border: 0;
	outline: none;
	font-size: 16px;
}

.form-group select{
	flex: 8 1 0;
	outline: none;
	font-size: 16px;
}

.form-group p{
	flex: 1 1 auto;
	margin-top: 10px;
	padding: 0px 10px;
	color: #ff0000;
	background: #fff38e;
}

.form-group input, .form-group select{
	min-width: 350px;
	height: 36px;
	border-radius: 10px;
	padding-left: 10px;
}

.form-group + .border-top{
	margin-top: 20px;
}

.buttons{
	padding: 20px 40px;
	margin-top: 20px;
	border-radius: 10px;
	border: 1px solid #edf6ff;
	display: flex;
  justify-content: flex-end;
}

.buttons button{
	flex: 0 1 auto;
	outline: none;
	padding: 10px 30px;
	font-size: 15px;
	text-transform: uppercase;
  border-radius: 5px;
	color: #edf6ff;
	background: #06264d;
	border: 1px solid #edf6ff;
}

.buttons button:hover{
	background: #097f00;
}

.popup{
	position: absolute;
	top: 15%;
	left: calc(50% - 500px);
	width: 1000px;
	box-sizing: border-box;
  background: #fff; 
	border-radius: 20px;
	transform: translateY(-10px);
	opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
	pointer-events: none;
	overflow: hidden;
}

.popup-title{
	color: #fff;
	padding: 10px;
	font-weight: bold;	
	text-transform: uppercase;
	line-height: 30px;
	height: 30px;
}

.popup-content{
	padding: 20px;
	height: 600px;
	overflow-y: scroll;
	scrollbar-width: none;
}

.popup-footer{
	color: #fff;
	height: 5px;
	padding: 10px;
	font-weight: bold;	
	text-transform: uppercase;
}

.changelog .popup-content{
	border-left: 5px solid #a500ab;
	border-right: 5px solid #a500ab;
}

.system .popup-content{
	border-left: 5px solid #1d1b6d;
	border-right: 5px solid #1d1b6d;
}

.changelog .popup-title, .changelog .popup-footer{
	background: #a500ab;
}

.system .popup-title, .system .popup-footer{
	background: #1d1b6d;
}

.popup.show{
	pointer-events: auto;
	opacity: 1;
	transform: translateY(0);
}

.table{
	width: 100%;
	border: 1px solid #000;
	border-collapse: collapse;
}

.table tr, .table td{
	border: 1px solid #000;
	line-height: 40px;
	height: 40px;
	padding: 0 10px;
}

.table + .table {
	margin-top: 20px;
}

.loading{
	margin: auto;
	flex: 1 1 100%;
	position: relative;
	max-width: 500px;
	aspect-ratio: 1 / 1;
}

.loading + p{
	flex: 1 1 100%;
	text-align: center;
	color: #edf6ff;
}

.circle{
	position: absolute;
	width: 250px;
	height: 250px;
	border-radius: 125px;
	border: 5px solid transparent;
}

@keyframes clockwise{
	0%{
		transform: rotate(0deg);
	}
	100%{
		transform: rotate(360deg); 
	}
}

@keyframes counter_clockwise{
	0%{
		transform: rotate(360deg);
	}
	100%{
		transform: rotate(0deg); 
	}
}

.circle:nth-child(1){
	left: calc(50% - 120px);
	top: calc(50% - 200px);
	border-bottom: 5px solid #ff0;
	animation: clockwise 4s linear infinite;
}

.circle:nth-child(2){
	left: calc(50% - 40px);
	top: calc(50% - 80px);
	border-top: 5px solid #f0f;
	animation: clockwise 4s linear infinite;
}

.circle:nth-child(3){
	left: calc(50% - 200px);
	top: calc(50% - 80px);
	border-top: 5px solid #0ff;
	animation: counter_clockwise 4s linear infinite;
}

.circle:nth-child(1):before{
	content: '';
	position: absolute;
	bottom: 20px;
	left: 30px;
	width: 20px;
	height: 20px;
	background: #fff;
	border-radius: 10px;
}

.circle:nth-child(2):before{
	content: '';
	position: absolute;
	top: 20px;
	right: 30px;
	width: 20px;
	height: 20px;
	background: #fff;
	border-radius: 10px;
}

.circle:nth-child(3):before{
	content: '';
	position: absolute;
	top: 20px;
	left: 30px;
	width: 20px;
	height: 20px;
	background: #fff;
	border-radius: 10px;
}
