:root {
	--bs-dark-rgb: #202020;
	--secondary-color: #F69A6B;
	/*--bs-bg-opacity: 0;*/
	/*--bs-secondary-rgb: 212, 20, 90;*/
}

html, body {
	font-family: 'Inter', sans-serif;
	color: white;
	background: var(--bs-dark-rgb);
}

h1 {
	font-size: 4rem;
	font-weight: bold;
}

h2 {
	font-size: 2.5rem;
	font-weight: bold;
}

h3 {

	font-size: 1.5rem;
	font-weight: bold;
}

h4 {
	font-size: 1.25rem;
	font-weight: normal;
	color: var(--secondary-color);
}

h5 {
	font-size: 1.15rem;
	font-weight: normal;
}

.b1 {
	margin-bottom: 0;
	font-size: 1.5rem;
}

.b2 {
	margin-bottom: 0;
	font-size: 1.25rem;
}

.b3 {
	margin-bottom: 0;
	font-size: 1.125rem;
}

.b4 {
	font-weight: normal;
}

.text-secondary {
	color: var(--secondary-color) !important;
}

.card {
	background: transparent;
	border: none;
}

.card .card-body {
	background: #323232;
	border-radius: 20px;
}




footer {
	background: transparent;
	color: white;
	min-height: 250px;
}

.footer-img {
	width: auto;
	height: 100px;
}

a {
	color: white;
}

.no-underline {
	text-decoration: none;
}

.social-icon {
	color: white;
	fill: white;
	max-height: 30px;
	filter: brightness(100%) contrast(1%);
	cursor: pointer;
}

.sidenav .nav-link {
	border: 2px solid var(--bs-dark-rgb);
	transition: all 0.3s ease;
	border-radius: 7px;
}


.sidenav .router-link-active {
	border: 2px solid #FAB43B;
	font-weight: bold !important;
}

.sidenav .router-link-exact-active {
	border-color: var(--bs-dark-rgb);
	background: linear-gradient(90deg, #EA3205 17.8%, #FAB43B 67.97%);
	font-weight: bold !important;
	color: black !important;
}

.bg-primary, .btn.btn-primary {
	background: linear-gradient(45deg, #EA3205 17.8%, #FAB43B 67.97%);
	background-size: 600%;
	-webkit-animation: anime 8s linear infinite;
	animation: anime 8s linear infinite;
}

.btn.btn-primary {
	border: none;
	transition: all 0.3s ease-out;
	color: black;
	font-weight: bold;
	border-radius: 4px;
}

.btn.btn-primary:hover, .btn.btn-primary:active, .btn.btn-primary:focus {
	color: white;
}

.btn.btn-primary:focus {
	box-shadow: 0 0 0 0.25rem rgba(238, 75, 6, 0.5);
}

@keyframes anime {
	0% {
		background-position: 0 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0 50%;
	}
}



@keyframes fadeIn {
	0% {opacity: 0}
	100% {opacity: 1}
}

.xsmall {
	font-size: 0.8rem;
}


.scroll-container {
	overflow-x: hidden;
	overflow-y: scroll;
	height: 500px;
}

.btn.btn-outline-info {
	background: black !important;
	color: white;
}

.btn-phantom img {
	float: left;
	width: 2rem;
	margin-left: 1%;
	height: auto;
}

.alert.alert-primary {
	border: none;
	background: black;
	color: white;
}

table tr {
	color: white;
	font-size: 0.8rem;
}

/* width */
::-webkit-scrollbar {
	width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
}

/* Handle */
::-webkit-scrollbar-thumb {
	background: #000;
	transition: all	0.3s ease;
	border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
	background: #222;
}



.active .option-inner {
	background: transparent !important;
}


.switch {
	position: relative;
	display: inline-block;
	width: 60px;
	height: 34px;
}

.switch input {
	opacity: 0;
	width: 0;
	height: 0;
}

.slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: transparent;
	-webkit-transition: .4s;
	transition: .4s;
	border: 4px solid white;
}

.slider:before {
	position: absolute;
	content: "";
	height: 18px;
	width: 18px;
	left: 4px;
	bottom: 4px;
	background-color: white;
	-webkit-transition: .4s;
	transition: .4s;
}

input:checked + .slider {
	background-color: var(--secondary-color);
	border-color: var(--secondary-color);
}

input:focus + .slider {
	box-shadow: 0 0 1px var(--secondary-color);
}

input:checked + .slider:before {
	background-color: var(--bs-dark-rgb);
	-webkit-transform: translateX(26px);
	-ms-transform: translateX(26px);
	transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
	border-radius: 34px;
}

.slider.round:before {
	border-radius: 50%;
}