/* Core */
.material-symbols-outlined {
	font-size: inherit;
}

::placeholder {
	color: #adadad;
}

a {
	color: inherit;
	transition: all 0.1s linear;
	text-decoration: none;
	border-bottom: 1px dashed #606060;
}

a:hover {
	color: inherit;
	border-color: #139dff;
}

* {
	box-sizing: border-box;
}

html {
	line-height: 1.4;
	height: -webkit-fill-available;
	font-size: 17px;
}

body {
	background: linear-gradient(18deg, rgb(0 16 52) 50%, rgb(52 0 78) 100%);
	background-attachment: fixed;
	background: #001732;
	margin: 0px;
	padding: 0px;
	color: white;
	font-family: "Roboto Condensed";
	font-weight: 300;
	display: flex;
	flex-direction: column;
	height: 100%;
    height: -webkit-fill-available;
}

footer {
	background: #00000024;
}

footer > div {
	flex-direction: row;
	flex-wrap: wrap;
	max-width: 1200px;
	flex-wrap: wrap;
}

input, select {
	width: 100%;
	background: transparent;
	height: 40px;
	margin: 0.2rem auto;
	outline: none;
	border: 1px solid #ffffff47;
	border-radius:0.5rem;
	font-size: 1.2rem;
	font-family: inherit;
	color: inherit;
	font-weight: inherit;
	/* transition: 0.2s linear all; */
	text-align: center;
}
input:focus, select:hover {
	/* border-bottom: 2px solid #008be37a; */
}
input[type=checkbox] {
	appearance: none;
	-webkit-appearance: none;
	border-radius: 10rem;
	border-width: 2px;
	height: 25px;
    width: 25px;
}
input[type=checkbox]:checked {
	appearance: auto;
	clip-path: circle(50% at 50% 50%);
	
  }
select {
	cursor: pointer;
}
select option, select optgroup {
	font-weight: inherit;
	background: #181818;
}
select option {
	color:white;
}
select optgroup {
	color:#939393;
}
input:disabled {
	color:gray;
}
input[type=range] {
	-webkit-appearance: none;
	border: none;
    border-radius: 5px;
}

input[type=range]::-webkit-slider-runnable-track {
	height: 12px;
	cursor: pointer;
	background: #0085dc8a;
	border-radius: 0.5rem;
	box-shadow: inset 0px 1px 5px #00000080
}

input[type=range]::-webkit-slider-thumb {
	height: 25px;
	width: 25px;
	border-radius: 2rem;
	background: #ffffff;
	cursor: pointer;
	-webkit-appearance: none;
	margin-top: -0.4rem;
}

input[type=radio] {
	height: auto;
	width: auto;
}
input[type="color"]::-webkit-color-swatch-wrapper {
	padding: 0;
}
input[type="color"]::-webkit-color-swatch {
	border: none;
}
input[type="color"] {
    -webkit-appearance: none;
    border: none;
    margin: 0px;
	width: 0px;
	height: 0px;
}
.input-block > span {
	padding: 0.3rem;
	display: block;
}
fieldset {
	border: 1px solid #4c4c4c;
}

fieldset legend {
	font-size: 1.1rem;
	padding: 0.5rem;
}

.hidden-input {
	top:0px;
	position: absolute;
    opacity: 0;
    height: 100%;
	width: 100%;
}

h1,
h2 {
	padding: 1.5rem;
	margin: 0;
	font-family: inherit;
	font-weight: inherit;
	font-size: 2.2rem;
}

p {
	margin: 0px;
	padding: 0px;
}

b {
	font-weight: 500;
}
.button {
	color: white;
	padding: 0.4rem;
	border: none;
	border-radius: 0.3rem;
	white-space: nowrap;
	width: fit-content;
	text-align: center;
	display: block;
}

.button:hover {
	color: inherit;
	filter: brightness(0.8);
	-webkit-filter: brightness(0.8);
}

.button.bgreen {
	background: #006300;
}

.button.bblue {
	background: #0053b378;
}

.button.bred {
	background: #e51e1e78;
}
.bold {
	font-weight: 400;
}
.p-r {
	position: relative;
}

.p-a {
	position: absolute;
}

.m-auto {
	margin: auto;
}

.m-05-auto {
	margin: 0.5rem auto;
}

.m-05 {
	margin: 0.5rem;
}

.m-1-auto {
	margin: 1rem auto;
}

.m-2-auto {
	margin: 2rem auto;
}

.m-1 {
	margin: 1rem;
}

.m-2 {
	margin: 2rem;
}

.m-1-r-auto {
	margin: 1rem;
	margin-right: auto;
}

.m-right-1 {
	margin-right: 1rem;
}
.m-top-1 {
	margin-top:1rem;
}
.m-bot-1 {
	margin-bottom: 1rem;
}
.p-03 {
	padding: 0.3rem;
}

.p-05 {
	padding: 0.5rem;
}

.p-1 {
	padding: 1rem;
}

.p-15 {
	padding: 1.5rem;
}

.f-size-1 {
	font-size: 1rem;
}

.f-size-12 {
	font-size: 1.2rem;
}

.f-size-15 {
	font-size: 1.5rem;
}

.f-size-2 {
	font-size: 2rem;
}

.f-size-25 {
	font-size: 2.5rem;
}
.f-size-3 {
	font-size: 3rem;
}
.f-size-4 {
	font-size: 4rem;
}
.f-weight-400 {
	font-weight: 400;
}
.no-border {
	border: none;
}

.white {
	color: white;
}

.green {
	color: #008d00;
}

.red {
	color: red;
}

.gray {
	color: gray;
}

.text-center {
	text-align: center;
	text-align: -moz-center;
	text-align: -webkit-center;
}

.flex {
	display: flex;
}

.justify-center {
	justify-content: center
}
.flex-column {
	display: flex;
	flex-direction: column;
}
.flex-row {
	display: flex;
	flex-direction: row;
}
.flex-wrap {
	flex-wrap: wrap;
}

.align-center {
	align-items: center;
}

.space-between {
	justify-content: space-between;
}
.d-block {
	display: block;
}

.d-none {
	display: none;
}
.backdrop-blur {
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}

.logo-cloud {
	display: block;
}

.logo-cloud .cloud {
	color: #139dff;
	margin-left: 8px;
}
.w-100 {
	width:100%;
}
.h-100 {
	height:100%;
}
.h-30 {
	height:30px;
}
.block-absolute-top {
	position: absolute;
	top:0px;
	left:0px;
}
.flex-1 {
	display: flex;
	flex:1;
	-webkit-box-flex:1; 
	-webkit-flex:1;
}

/*Loader*/
.loading-anim {
	-webkit-animation: symbol-loading 2s linear infinite both;
	animation: symbol-loading 2s linear infinite both;
	font-size: 2rem;
}

@-webkit-keyframes symbol-loading {

	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}

	100% {
		-webkit-transform: rotate(-360deg);
		transform: rotate(-360deg);
	}
}

@keyframes symbol-loading {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}

	100% {
		-webkit-transform: rotate(-360deg);
		transform: rotate(-360deg);
	}
}