html {
    min-height: 100%;
    position: relative;
}

#header {
    background: linear-gradient(to right, #ac91ff, #212131);
    box-shadow: 0 0 10px rgba(0, 0, 0, .6);
    padding-top: 15px;
    padding-bottom: 15px;
	margin-bottom: 2rem;
}

#header h1 {
	width: 100%;
	text-align: center;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

#footer {
    box-shadow: 0 0 10px rgba(0, 0, 0, .6);
    width: 100%;
	margin-top: auto;
}

#content {
    color: #3c3c3c;
	padding-bottom: 30px;
}

.form-control {
    border-radius: 2px;
    border: none;
    background: #f8f5f8;
    border-bottom: 2px solid #b5b1b5;
}

.form-control:focus {
    box-shadow: none;
    background: #f8f5f8;
}

label {
    width: 100%;
    text-align: center;
    margin: 0;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.alert {
    border-radius: 2px;
    border: none;
}

.alert-danger {
    background: #ffcccc;
    color: #e04646;
}

.alert-info {
    background: #c8f0ff;
    color: #475e88;
}

.btn {
    border: none;
	font-weight: 600;
    text-transform: uppercase;
}

.btn:active, .btn:focus {
    box-shadow: none !important;
}

.btn-primary {
    background: #ac91ff;
}

.btn-primary.disabled, .btn-primary:disabled {
    background: #736897;
}

.btn-secondary {
	background: #665998;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    background: #8975cb !important;
	border: none !important;
}

.btn-secondary:hover, .btn-secondary:focus, .btn-secondary:active {
	background: #51467a !important;
	border: none !important;
}

.text-gray {
    color: #f8f5f8;
}

a.text-gray {
    transition: 0.3s;
}

a.text-gray:hover {
    text-decoration: none;
    color: #f8f5f8;
    padding-left: 6px;
}

.well {
    background: #e8e3e8;
    padding: 15px;
}

.table .thead-dark th {
    color: #f8f5f8;
    background: #211e21;
    border: none;
}

.table-striped tr {
    background: #e8e3e8;
}

.table-striped tbody tr:nth-of-type(odd) {
    background: #fffaff;
}

.modal-content {
    background: #e8e3e8;
    border: 2px solid #b5b1b5;
}

.modal * {
    border-radius: 2px;
}

li > ul.list-unstyled {
    margin-left: 20px;
    transition: 0.3s;
}

a {
    color: #ac91ff;
    transition: 0.3s;
}

a:not(.btn):hover {
    color: #c5b3fc !important;
    text-decoration: none;
}

a.back {
    transition: 0.3s;
    margin-left: 8px;
    margin-right: 0;
}

a.back:hover {
    margin-left: 0;
    margin-right: 8px;
}

#copy-element-parent {
    position: fixed;
    right: 0;
    width: 300px;
    bottom: 65px;
}

#copy-element {
    position: absolute;
    right: -320px;
    transition: 420ms;
    box-shadow: 0 0 10px rgba(0, 0, 0, .45);
    background: #4f4f4f;
    padding: 10px;
    border-radius: 2px;
    text-shadow: 0 0 3px rgba(0, 0, 0, .45);
}

#copy-element[data-type="success"] {
    background: #6ccb00;
}

#copy-element[data-type="danger"] {
    background: #bf2540;
}

#copy-element.slide {
    right: 10px;
}

.btn {
    box-shadow: 0 0 10px rgba(0, 0, 0, .3);
    border-radius: 0;
}

.btn-discord, .btn-discord:hover {
    margin-left: 8px;
    background: #7289DA;
    color: whitesmoke;
}

.btn-discord:hover {
    background: #5e6cbb;
}

.text-discord {
    color: #7289DA;
}

.well, .alert, table, input, select, textarea, .form-control:focus {
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    border-radius: 2px;
}

ol.unverified > li {
    margin-top: 10px;
}

.clickable {
    cursor: pointer;
}

.spinner {
    border: 5px solid #979797;
    border-top: 5px solid #212131;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 0 0.75rem);
    animation: spinner 420ms linear infinite;
}

#faq-container h1:not(:first-child) {
	margin-top: 50px;
}

@keyframes spinner {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.glow-text {
	text-shadow: 0 0 5px;
}

.bg-dark {
	background: #2b2b36 !important;
}

#footer h6 {
	border-bottom: 1px solid #ac91ff;
	padding-bottom: 10px;
	color: white;
}

#footer ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.form-control:focus {
	border-color: #ac91ff;
}

input.form-control::placeholder {
	color: white;
}

code {
	color: #ac91ff;
}

.btn-info {
	background: #51467a;
}

.btn-info:hover, .btn-info:focus, .btn-info:active {
	background: #403761 !important;
	border: none !important;
}

.full-flex {
	display: flex;
}

.full-flex > * {
	flex: 1 1 auto;
}

.changelog-header h2 {
	display: inline !important;
	margin-right: 20px;
}

.changelog-header input {
	display: inline !important;
	width: 200px;
}

.change-set {
	padding-left: 20px;
	position: relative;
	margin-bottom: 30px;
}

.change-set::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 5px;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}

.change-set-added::before {
	background: #59ff59;
}

.change-set-updated::before {
	background: #ffb759;
}

.change-set-fixed::before {
	background: #53bdff;
}

.change-set-removed::before {
	background: #ff5959;
}

.change-set textarea {
	background: #141419;
	resize: none;
    overflow: hidden;
    min-height: 25px;
	box-shadow: none;
	border-bottom: none;
}

.change-set > span {
	padding: 0.375rem 0.75rem;
	display: block;
}

.custom-control-input:checked~.custom-control-label::before {
	border-color: #ac91ff;
    background-color: #ac91ff;
}

.custom-control-input:focus~.custom-control-label::before {
	box-shadow: none;
}

.text-discord {
	color: #7289da;
}

.application-container {
  box-shadow: 0 0 20px -7px black;
  position: relative;
}
.application-container .application-image {
  width: 100%;
}
.application-container .additional-information {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.25rem 0.33rem;
  background: rgba(0, 0, 0, 0.8);
  box-shadow: 0 0 20px -2px black;
  border-bottom-left-radius: 5px;
  text-align: right;
}
.application-container .controls {
  background: rgba(0, 0, 0, 0.8);
  box-shadow: 0 0 20px -2px black;
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  padding: 0 0.33rem;
  border-top-left-radius: 5px;
}
.application-container .controls .control {
  flex: 1;
  cursor: pointer;
}
.application-container .controls .control .icon {
  display: inline-block;
  transform: translateY(2px);
}

.glass {
	background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px -7px black;
}

.nav-item:has(a):hover{
    background-color: white;
}

.nav-item a.nav-link {
	transition: none !important;
}

.nav-item:hover a.nav-link {
	color: #665998 !important;	
}
