.no-js-text {
	position: fixed;
	font-size: 1rem;
    top: 46.5%;
	left: 50%;
    transform: translate(-50%, -50%);
	text-shadow: 0 0 25px rgba(0, 0, 0, .5);
	z-index: 100000;
	transition: .25s ease;
}

.no-js-text:hover {
	font-size: 1.02rem;
}

.no-js-background {
	position: absolute;
	width: 100%;
	height: 100%;
	filter: blur(1000px);
	backdrop-filter: blur(1000px);
	background-color: black;
	z-index: 99999;
}

/*  ---  */

.js-cont {
    position: relative;
    width: 100%;
    height: 100%;
}

.js-scroll {
    position: fixed;
    z-index: 200;
    top: 0;
    left: 0;
    overflow: hidden;
    width: 100%;
    will-change: transform;
}

/*  ---  */

* {
	font-family: "Lexend Deca";
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: -moz-none;
    -o-user-select: none;
    user-select: none;
	color: #fff;
}

body {
	opacity: 0;
	font-family: "Lexend Deca";
	height: 100vh;
	width: 100vw;
	overflow: overlay;
	overflow-x: hidden;
	background: linear-gradient(15deg, #000000 0%, #000000 100%);
	transition: transform 1.6s, opacity 3.2s;
}

canvas {
	position: absolute;
	width: 156%;
	height: 100vh;
	top: 0;
	left: -28%;
	border-bottom-left-radius: 65% 1220px;
	border-bottom-right-radius: 65% 1220px;
}

sync-overlay {
	content: url("../../dist/resources/logo.png");
	position: fixed;
	opacity: .06;
	width: 50%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	webkit-filter: blur(6px) contrast(400%);
	filter: blur(6px) contrast(400%);
	z-index: -99;
}

a {
	text-decoration: none;
}

.no-drag {
	user-drag: none;
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

/**/

.container {
	position: relative;
	display: block;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	overflow: hidden;
	max-width: 250px;
	transition: .5s ease;
}

.section-container {
	position: relative;
	display: block;
	margin-left: auto;
	margin-right: auto;
	overflow: hidden;
	min-height: 100vh;
}

.svg-container {
	position: absolute;
    bottom: -4px;
    min-height: 0;
    width: 100%;
	filter: drop-shadow(0 -50px 25px rgb(255 255 255 / 65%));
	z-index: -1;
}

.tilt {
	width: 100%;
	min-height: 100vh;
	transform: scale(.5);
	transition: .75s ease-out;
}

.main-div {
	background: rgba(255, 255, 255, .05);
	backdrop-filter: blur(9px);
	box-shadow: 0 .75rem 2rem 0 rgba(0, 0, 0, .1);
	border-radius: 5rem;
	border: 1px solid rgba(255, 255, 255, .125);
	padding: 75px;
}

@media (max-width: 380px) {
	.main-div {
		padding: 11vw;
	}
	
    .blur {
		padding: 5%;
		padding-top: 50px;
		padding-bottom: 50px;
	}
}

/*  ---  */

.arrow-container {
	position: absolute;
	left: 50%;
	transform: translate(-50%, 0%);
    bottom: 1.5rem;
    background: rgba(255, 255, 255, .05);
	backdrop-filter: blur(50px);
	box-shadow: 0px 4px 16px rgba(0, 0, 0, .09);
	border: 1px solid rgba(255, 255, 255, .125);
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    border-radius: 50%;
	cursor: pointer;
	z-index: 1000;
	opacity: .85;
	animation: pulse 1.5s infinite;
	transition: .15s ease-in-out;
}

.arrow-container:hover {
	padding: .05rem;
	opacity: .5;
}

.arrow {
	position: relative;
	text-shadow: 0 0 12px rgba(0, 0, 0, .5);
	top: 0;
	left: 50%;
	transform: translate(-50%, 0%);
	transition: .3s;
}

.arrow:before {
	content: "▼";
	font-size: .8rem;
	color: white;
	transition: .3s ease-in-out;
}

.arrow-container:hover > .arrow {
	top: 5px;
}

/*  ---  */

@keyframes pulse {
  0% {
    box-shadow: 0px 4px 16px rgba(0, 0, 0, .09), 0 0 0 0px rgba(255, 255, 255, .15);
  }
  100% {
    box-shadow: 0px 4px 16px rgba(0, 0, 0, .09), 0 0 0 20px rgba(255, 255, 255, 0);
  }
}

@keyframes blink {
	50% {
		border-color: white;
	}
}

.translate-down:hover {
	transform: translate(0, -3px);
}

/*  ---  */

.headline {
	position: relative;
	color: white;
	font-weight: 700;
	font-size: 3.5rem;
	justify-content: center;
	perspective: 1000px;
	text-decoration: none;
	text-shadow: 4px 3px #000000;
	cursor: default;
	transition: .5s ease;
}

.headline:hover {
	transform: scale(1.05);
}

.headline-description {
	opacity: .5;
	font-size: 1.5rem;
	margin-top: 12px;
}

.word, .char {
	-webkit-animation-delay: var(--del);
        animation-delay: var(--del);
		
	-webkit-animation-direction: var(--dir, normal);
        animation-direction: var(--dir, normal);
		
	-webkit-animation-duration: var(--dur);
        animation-duration: var(--dur);
		
	-webkit-animation-iteration-count: var(--it, infinite);
        animation-iteration-count: var(--it, infinite);
		
	-webkit-animation-name: var(--name);
        animation-name: var(--name);
		
	-webkit-animation-timing-function: var(--tf);
        animation-timing-function: var(--tf);
		
	-webkit-animation-fill-mode: var(--fill, forwards);
        animation-fill-mode: var(--fill, forwards);
	
	display: inline-block;
	position: relative;
	transform-origin: 50% 100%;
}

.rotate > .wrap {
	text-shadow: 4px 3px #000000, 0 0 15px rgb(255 255 255 / 65%);
	border-right: .1em solid transparent;
	animation: blink .7s infinite;
}

.float .char {
  --name: float;
  --dur: 2200ms;
  --del: calc(var(--char-index) * -.5s);
  --tf: ease-in-out;
  --dir: alternate;
  text-shadow: 4px 3px #000000, 0 0 15px rgb(255, 255, 255, .65);
}

@keyframes float {
  from {
    transform: translate(2%, -8%) rotate(-1deg);
  }
  to {
    transform: translate(-2%, 3%) rotate(3deg);
  }
}

/*  ---  */

.button {
	font-family: "Lexend Deca";
	font-size: 14px;
	font-weight: 600;
	display: inline-block;
	position: relative;
	width: 140px;
	height: 45px;
	margin: 6px;
	text-align: center;
	padding-bottom: 4px;
    text-decoration: none;
	background-color: transparent /*#1b5bb3*/;
	border: 0;
    border-radius: 56px;
	color: #fff;
	backdrop-filter: blur(900px);
    cursor: pointer;
	transition: all .7s;
	vertical-align: top;
	box-shadow: rgb(255 255 255 / 20%) 0 13px 15px inset, rgb(0 0 0 / 10%) 0 3px 5px, rgb(0 0 0 / 10%) 0 1px 13px;
	z-index: 10;
}

.button:hover {
	margin-top: 6px;
	box-shadow: rgb(255 255 255 / 20%) 0 3px 15px inset, rgb(0 0 0 / 10%) 0 3px 5px, rgb(0 0 0 / 10%) 0 1px 13px;
	transform: scale(1.05);
	opacity: .5;
}

/* --- */

.pricing-container {
	position: relative;
	display: none;
    justify-content: center;
    margin: 0 auto;
	line-height: 22px;
	transition: .5s ease;
	text-shadow: 4px 3px 8px #000000;
}

.pricing-box {
	position: relative;
	background: rgba(255, 255, 255, .05);
	backdrop-filter: blur(9px);
	box-shadow: 0 .75rem 2rem 0 rgba(0, 0, 0, .1);
	border-radius: 2.5rem;
	border: 1px solid rgba(255, 255, 255, .125);
	margin-left: 17px;
	margin-right: 17px;
	min-width: 275px;
	overflow: hidden;
	max-width: 275px;
	transition: .5s ease;
}

@media (max-width: 622px) {
	.pricing-container {
		justify-content: start;
		overflow-x: scroll;
		width: 100vw;
		padding-bottom: 40px;
	}
	
	.pricing-box {
		margin-top: 20px;
	}
}

/*-*/

::-webkit-scrollbar {
    background: linear-gradient(315deg, #000000 0%, #000000 100%);
    width: .35rem;
    height: 3px;
}
::-webkit-scrollbar-thumb:horizontal {
    background: transparent;
	backdrop-filter: blur(900px);
	box-shadow: rgb(255 255 255 / 20%) 0 13px 15px inset, rgb(0 0 0 / 10%) 0 3px 5px, rgb(0 0 0 / 10%) 0 1px 13px;
	border-radius: 10px;
}

::-webkit-scrollbar-thumb {
	background: rgba(255, 255, 255, .35);
	backdrop-filter: blur(900px);
	box-shadow: 0 .75rem 2rem 0 rgba(0, 0, 0, .1);
	border: 1px solid rgba(255, 255, 255, .125);
	border-radius: 50px;
}

/*-*/

.pricing-box:hover {
	transform: scale(1.02);
}

.pricing-upper {
	padding: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, .125);
	transition: .45s ease;
}

.pricing-lower {
	padding: 15px;
}

@media (max-width: 1400px) {
	.pricing-lower {
		padding-left: 0;
		padding-right: 0;
	}
}

.pricing-header {
	position: relative;
	color: white;
	font-weight: 600;
	font-size: 1.25rem;
	margin-bottom: 20px;
	text-decoration: none;
	padding-bottom: 5px;
	border-bottom: 1px solid rgba(255, 255, 255, .125);
	transition: .25s ease;
}

.pricing-box:hover .pricing-header {
	font-size: 1.27rem;
	text-shadow: 4px 3px 8px #000000, 0 0 15px rgb(255, 255, 255, .65);
}

.pricing-description {
	opacity: .5;
}

.pricing-amount {
	padding: 20px 0;
	font-size: 1.8rem;
	font-weight: 600;
	transition: .25s ease;
}

.pricing-length {
	opacity: .5;
	font-size: .95rem;
	font-weight: 300;	
}

.pricing-smalltext {
	font-weight: 200;
	font-size: .6rem;
	opacity: .3;
	text-shadow: 3px 2px 12px #000000;
}

/**/

.payment-container {
	position: relative;
	display: none;
    justify-content: center;
    margin: 0 auto;
	line-height: 22px;
	transition: .5s ease;
	text-shadow: 4px 3px 8px #000000;
}

/**/

.return-button {
	font-family: "Lexend Deca";
	font-size: 16px;
	font-weight: 600;
	display: block;
	position: absolute;
	height: 30px;
	margin: 6px;
	top: -75px;
	text-align: center;
	padding-bottom: 4px;
	padding-left: 12px;
	padding-right: 12px;
    text-decoration: none;
	border: 0;
    border-radius: 56px;
	color: #fff;
    cursor: pointer;
	transition: all .7s;
	vertical-align: top;
	background: rgba(255, 255, 255, .05);
	backdrop-filter: blur(15px);
	box-shadow: 0 .75rem 2rem 0 rgba(0, 0, 0, .1);
	border: 1px solid rgba(255, 255, 255, .125);
	z-index: 10;
}

.return-button:hover {
	box-shadow: rgb(0 0 0 / 10%) 0 3px 5px, rgb(0 0 0 / 10%) 0 1px 13px;
	transform: scale(1.05);
}

.return-button-arrow {
	margin-right: 5px;
	transition: .25s ease;
}

.return-button-arrow:after {
	content: '⬅';
}

.return-button:hover .return-button-arrow {
	margin-right: 12px;
}

@media (max-width: 622px) {
	.return-button {
		top: 15vh;
		width: 85px;
		left: 40%;
		right: 40%;
		position: fixed;
	}
}

/*  ---  */

list {
	position: relative;
	font-size: .85rem;
	margin-left: 25px;
	left: 0;
	padding: 4px;
	list-style: none;
	display: flex;
	transition: .1s ease;
}

list:after {
	content: "";
	background-color: transparent;
	position: absolute;
	left: -12px;
	top: 6.4px;
	width: 5px;
	height: 11px;
	border-bottom: 2px solid #66FF00;
	border-right: 2px solid #66FF00;
	filter: drop-shadow(0 0 5px #00ff44);
	opacity: .5;
	transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
}

list:hover {
	opacity: .5;
	left: 2px;
}


/* --- */

seriallist {
	position: relative;
	font-size: .85rem;
	margin-left: 25px;
	left: 0;
	padding: 4px;
	list-style: none;
	display: flex;
	transition: .1s ease;
}

seriallist:after {
	content: "\d7";
	color: red;
	filter: drop-shadow(0 0 5px #ff4a4a);
	font-size: 30px;
	font-weight: 100;
	position: absolute;
	transform: translateY(-35%) translateX(-4px);
}

seriallist:hover {
	opacity: .5;
	left: 2px;
}


/*  ---  */


.private-discord-button {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 5.5rem;
    right: 1.5rem;
    border-radius: 50%;
    background: rgba(255,255,255,.05);
    backdrop-filter: blur(50px);
    box-shadow: 0 0.75rem 2rem 0 rgba(0,0,0,.1);
    border: 1px solid rgba(255,255,255,.125);
    z-index: 1000;
    transition: .25s ease;
}

.private-discord-button:hover {
	opacity: .5;
	transform: scale(1.08);
}

.discord-button {
	position: fixed;
	width: 50px;
	height: 50px;
	bottom: 1.5rem;
	right: 1.5rem;
	border-radius: 50%;
	background: rgba(255, 255, 255, .05);
	backdrop-filter: blur(50px);
	box-shadow: 0 .75rem 2rem 0 rgba(0, 0, 0, .1);
	border: 1px solid rgba(255, 255, 255, .125);
	z-index: 1000;
	transition: .25s ease;
}

.discord-button:hover {
	opacity: .5;
	transform: scale(1.08);
}

/*  ---  */

footer {
	position: relative;
	display: flex;
	background-color: rgba(255, 255, 255, .15);
	text-shadow: 0 0 15px rgb(255 255 255 / 65%);
	text-align: center;
	font-size: .75rem;
	font-weight: 300;
	justify-content: space-evenly;
}

footer-item {
	padding: 22px;
	transition: .5s ease;
}

footer-item:hover {
	transform: scale(1.01);
	opacity: .5;
}

.footer-image {
	filter: drop-shadow(0 0 15px rgb(255 255 255 / 65%));
	margin-top: 8px;
	padding: 6px;
	transition: .5s ease;
}

.footer-image:hover {
	transform: scale(1.05) translate(0, -1px);
	cursor: pointer;
	opacity: .5;
}

/*  ---  */

statuspage-widget {
	color: #2ecc71;
	text-shadow: 0 0 7px rgb(255 255 255 / 65%), 0 0 12px rgba(0, 0, 0, .5);
	font-size: 1.15rem;
	font-weight: 500;
	transition: .5s ease;
}

statuspage-widget:after {
	content: '';
    position: absolute;
    width: 12.4rem;
    transform: scaleX(0);
    height: 1px;
    left: 1.72rem;
	bottom: 0;
    background-color: #2ecc71;
	box-shadow: 0 .75rem 2rem 0 rgba(0, 0, 0, .1);
    transform-origin: center;
    transition: transform .25s ease;
}

.status-text {
	font-size: 1.5rem;
	text-shadow: 0 0 5px rgb(255 255 255 / 65%);
	transition: transform .5s ease, opacity .5s ease;
}

.status-text:after {
	content: '';
    position: absolute;
    width: 4.55rem;
    transform: scaleX(1);
    height: 1px;
    left: 5.55rem;
	top: 1.6rem;
    background-color: #fff;
	box-shadow: 0 .75rem 2rem 0 rgba(0, 0, 0, .1);
    transform-origin: center;
	transition: transform .25s ease;
}

.status-container:hover .status-text:after {
	transform: scaleX(0);
}

.status-container {
	margin-top: 14vh;
	margin-bottom: 1.5rem;
}

.status-container:hover statuspage-widget:after {
	transform: scaleX(1);
}

.status-container:hover statuspage-widget {
	transform: translate(0, -5px);
}

.status-container:hover .status-text {
	transform: scale(.75) perspective(100px) rotateX(25deg);
	opacity: .25;
}

/**/

.component-container {
	display: inline-grid;
	border: 1px solid rgba(255, 255, 255, .125);
	box-shadow: 0px 4px 16px rgba(0, 0, 0, .06);
	background: rgba(255, 255, 255, .05);
	grid-template-columns: auto;
	border-radius: 2.5rem;
	padding: 20px;
	overflow: hidden;
	transition: .75s ease;
}

@media (min-width: 400px) {
	.component-container {
		grid-template-columns: auto auto;
	}
}

@media (min-width: 600px) {
	.component-container {
		grid-template-columns: auto auto auto;
	}
	
	.component-container:hover {
		transform: scale(1.01) perspective(1000px) rotateX(5deg);
		margin-bottom: 6px;
	}
}

.component {
	padding: 20px;
	margin-left: 2.4rem;
	min-width: 100px;
	text-shadow: 3px 2px 12px #000000;
	transition: .3s ease;
}

.component:after {
	top: 19px;
	left: 4px;
	opacity: 1;
}

.component:hover {
	transition: .15s ease;
	opacity: .5;
	left: unset;
	transform: scale(1.1);
}

/**/

description {
	opacity: .65;
	font-size: .8rem;
	text-shadow: 3px 2px 12px #000000;
}

/*  ---  */

@media (min-width: 685px) {
	.controller {
		position: fixed;
		display: inline-block;
		top: 45%;
		padding-top: 5px;
		padding-bottom: 5px;
		transform: translateY(-50%);
		right: 17px;
		border-radius: 25px;
		backdrop-filter: blur(9px);
		box-shadow: 0 .75rem 2rem 0 rgba(0, 0, 0, .1);
		background: rgba(255, 255, 255, .1);
		border: 1px solid rgba(255, 255, 255, .125);
		overflow: hidden;
		z-index: 1000;
	}

	controller-item {
		position: relative;
		display: block;
		padding: 9px;
		padding-top: 11px;
		padding-bottom: 11px;
	}

	dot {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 8px;
		height: 8px;
		border-radius: 50%;
		background-color: rgba(255, 255, 255, .25);
		box-shadow: 0 .75rem 2rem 0 rgba(0, 0, 0, .1);
		backdrop-filter: blur(99px);
		transition: .25s ease;
	}

	dot:hover {
		background-color: rgba(255, 255, 255, .75);
	}

	controller-item:hover dot {
		background-color: rgba(255, 255, 255, .75);
	}
}

/*  ---  */

.faq-container {
	max-width: 750px;
	margin-top: 5vh;
	padding: 1.5rem;
	text-align: left;
	text-shadow: 3px 2px 18px #000000;
}

.faq-div {
	position: relative;
	margin: 28px;
	padding: .75rem;
	border-radius: 12px;
	box-shadow: 0px 4px 25px rgba(0, 0, 0, .06);
	border: 1px solid rgba(255, 255, 255, .125);
	background: rgba(255, 255, 255, .05);
	overflow: hidden;
	cursor: pointer;
	transition: .25s ease;
}

.faq-div:hover {
	border: 1px solid rgba(255, 255, 255, .25) !important;
}

faq-header {
	position: relative;
	display: flex;
	margin: 10px;
}

faq-question {
	font-size: 1.02rem;
	margin-right: 28px;
}

.faq-content {
	margin-right: 22px;
	max-height: 0;
	opacity: 0;
	transform: translate(0, -25px);
	transition: .5s ease;
}

faq-answer {
	display: block;
	padding: 10px;
	padding-top: 8px;
	font-size: .85rem;
	line-height: 130%;
	opacity: .55;
}

.faq-icon {
	position: absolute;
	display: grid;
	top: 50%;
	transform: translate(0, -50%);
	right: -3px;
	place-items: center;
	font-size: 1.25rem;
	height: 25px;
	width: 25px;
	border-radius: 4px;
	background: rgba(255, 255, 255, .05);
	box-shadow: 0px 4px 16px rgba(0, 0, 0, .09);
}

i {
	transition: .5s ease;
}

.faq-extender-div {
	display: flex;
}

.faq-extender-text {
	position: relative;
	font-size: .8rem;
	margin: 0 auto;
	margin-bottom: 120px;
	padding: 25px;
	cursor: pointer;
	transition: .15s ease;
}

.faq-extender-text:hover {
	opacity: .5;
	transform: translate(0, 3px);
}

/*  ---  */

ul {
	max-width: 400px;
	margin: 0 auto;
	list-style-type: none;
	counter-reset: steps;
	margin: 0;
}

ul li {
	padding: 2px 0 25px 35px;
	position: relative;
	margin: 0;
}

ul li:after {
	position: absolute;
	top: 0;
	left: 0;
	content: counter(steps);
	counter-increment: steps;
	border-radius: 50%;
	display: inline-block;
	height: 24px;
	width: 24px;
	text-align: center;
	line-height: 24px;
	color: rgba(255, 255, 255, .5);
	background: #296db5;
	border: 1px solid rgba(255, 255, 255, .125);
}

ul li:before {
	position: absolute;
	left: 12px;
	top: 0;
	content: "";
	height: 100%;
	width: 0;
	border-left: 2px dashed rgba(255, 255, 255, .25);
}

ul li:last-of-type:before {
	border: none;
}

.tick {
	position: absolute;
	top: 7px;
	right: 7px;
	width: 5px;
	height: 11px;
	content: "";
	background-color: transparent;
	border-bottom: 2px solid #66FF00;
	border-right: 2px solid #66FF00;
	filter: drop-shadow(0 0 5px #00ff44);
	transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
}

.cross {
	background-color: transparent;
	position: absolute;
	border-radius: 5px;
	top: 1px;
	right: 7px;
	width: 11px;
	height: 11px;
	
}

.cross:after {
	content: "\d7";
	color: red;
	filter: drop-shadow(0 0 5px #ff4a4a);
	font-size: 30px;
	font-weight: 100;
    top: -53px;
    left: -2px;
}

.reseller-input {
	display: inline-flex;
	line-height: 10px;
	width: 95%;
	padding: 9px 0;
	padding-left: 5%;
	margin-top: 3px;
	margin-bottom: 14px;
	border: none;
	outline: none;
	border-radius: 25px;
	color: rgba(255, 255, 255, .6);
	background-color: rgba(0, 0, 0, .125);
	box-shadow: 0px 0px 10px rgb(0 0 0 / 10%);
}

.reseller-input::placeholder {
	color: white;
	opacity: .15;
}

.reseller-label {
	font-size: .8rem;
}

o {
	opacity: .55;
}

insta-select {
	-webkit-user-select: all;
	-khtml-user-select: all;
	-moz-user-select: -moz-all;
	-o-user-select: all;
	user-select: all;
	cursor: pointer;
}

insta-select::selection {
	background: rgba(255, 255, 255, .25);
}

insta-select::-moz-selection {
	background: rgba(255, 255, 255, .25);
}

/*  ---  */

.button-div {
	position: relative;
	display: inline-flex;
	top: 6px;
	left: 50%;
	transform: translate(-50%, 0);
	min-height: 40px;
	max-width: 550px;
	border-radius: 50px;
	box-shadow: 0px 4px 25px rgb(0 0 0 / 6%);
    border: 1px solid rgba(255, 255, 255, .125);
	backdrop-filter: blur(99px);
    background: rgba(255, 255, 255, .05);
	overflow: hidden;
	transition: all .55s ease 0s;
}

.button-li {
	position: relative;
	background: transparent;
	padding: 13px 15px;
	margin-bottom: 1px;
	border: none;
	outline: none;
	text-shadow: 3px 2px 12px #000000;
	transition: .25s ease;
}

.button-li:hover {
	color: #0084FF;
}

.step-pointers {
	padding: 27px;
	filter: drop-shadow(0 -50px 25px rgb(255 255 255 / 65%));
	transform: scale(1.5);
}

.step-pointers:hover {
	color: #0084FF;
}

/*  ---  */

.img {
	webkit-filter: drop-shadow(0 0 5px #000000);
	filter: drop-shadow(0 0 5px #000000);
	padding-top: 4px;
}

/*  ---  */

.ins-header {
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	max-height: 9.702%;
	min-height: 89px;
	background: rgba(255, 255, 255, .035);
    backdrop-filter: blur(9px);
    box-shadow: 0 .75rem 2rem 0 rgba(0, 0, 0, .1);
	border-bottom: 1px solid rgba(255, 255, 255, .125);
	z-index: 250;
	overflow: hidden;
}

.ins-header-container {
	position: relative;
	display: flex;
	padding: 1rem 2rem 1rem 2rem;
	margin-left: auto;
	margin-right: auto;
	max-width: 1140px;
	align-items: center;
	justify-content: space-between;
}

.ins-logo {
	position: relative;
	width: 60px;
	webkit-filter: drop-shadow(0 0 0 rgb(255 255 255 / 65%)) contrast(135%);
	filter: drop-shadow(0 0 0 rgb(255 255 255 / 65%)) contrast(135%);
	animation: logo-rotate 4.5s ease infinite;
	transition: .05s ease;
}

.ins-logo:hover {
	width: 55px;
	padding: 2.5px;
	opacity: .75;
}

@keyframes logo-rotate {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

.ins-navigator {
	position: relative;
	left: 0;
	width: 34vw;
	min-width: 260px;
	height: calc(100% - 90px);
	background-image: linear-gradient(to right, rgba(255, 255, 255, .15), transparent);
    backdrop-filter: blur(9px);
    box-shadow: 0 .75rem 2rem 0 rgba(0, 0, 0, .1);
	border-right: 1px solid rgba(255, 255, 255, .1);
	z-index: 3;
	overflow: hidden;
	overflow-y: visible;
	transition: .25s ease;
	text-shadow: 0 0 12px #000000;
}

.ins-navigator-content {
	position: relative;
	width: 100%;
	height: calc(100% - 90px);
	overflow: scroll;
	z-index: 1;
}

.ins-navigator-btn-container {
	display: none;
}

@media (max-width: 622px) {
	.ins-navigator {
		position: absolute;
		background: linear-gradient(15deg, #000000 0%, #000000 100%);
		width: 0px;
		min-width: unset;
	}
	
	.ins-navigator-btn-container {
		position: fixed;
		display: block;
		top: 35%;
		left: -25px;
		transform: translate(0, -50%);
		padding: 25px;
		transition: .25s ease;
		z-index: 2;
	}
	
	.ins-navigator-btn {
		position: relative;
		width: 50px;
		left: -25px;
		height: 113px;
		background: rgba(255, 255, 255, .05);
		backdrop-filter: blur(9px);
		box-shadow: 0 .75rem 2rem 0 rgba(0, 0, 0, .1);
		border: 1px solid rgba(255, 255, 255, .125);
		border-radius: 25px;
		transition: .25s ease;
	}
}

.ins-navigator-container {
	position: relative;
	display: flex;
	flex-direction: column;
	line-height: 22px;
	margin: 15px;
}

@media (min-width: 1400px) {
	.ins-navigator-container {
		float: right;
		width: 50%;
	}
}

.ins-navigator-component {
	position: relative;
	width: 100%;
	padding: 4px 6px 6px 7px;
	margin: 2px 0 2px 4px;
	border-radius: 6px;
	font-size: .9rem;
	color: rgba(255, 255, 255, .85);
	cursor: pointer;
	transition: all .15s ease, transform .35s ease;
}

.ins-navigator-component:hover {
	background-image: linear-gradient(to right, rgba(255, 255, 255, .1), transparent);
	transform: translate(-2px, 0);
}

.ins-navigator-component:active {
	background-image: linear-gradient(to right, rgba(9, 129, 244, .4), rgba(255, 255, 255, .03));
	opacity: .5;
	transform: translate(-2px, -2px);
}

.ins-nc-selected {
	background-image: linear-gradient(to right, rgba(9, 129, 244, .4), rgba(255, 255, 255, .03)) !important;
	color: white;
}

.ins-navigator-heading {
	position: relative;
	font-size: .75rem;
	font-weight: 500;
	padding: 4px 7px 1px 6px;
	margin: 4px;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .45);
}

.ins-navigator-group {
	position: relative;
	display: flex;
	flex-direction: column;
	margin: 5px 15px 5px 0;
	white-space: nowrap;
}

n {
	color: rgba(255, 255, 255, .35);
	margin-right: 8px;
}

.ins-content-panel {
	position: relative;
	display: block;
	opacity: 1;
	margin: 75px 100px 75px 100px;
	transition: 1s ease;
}

@media (max-width: 622px) {
	.ins-content-panel {
		margin: 45px;
	}
	
	.ins-navigator-content {
		overflow: scroll;
		padding-bottom: 250px;
	}
}

.ins-def-container {
	display: flex;
	margin: 25px 2px 25px 2px;
}

.ins-def-header {
	display: flex;
    margin-top: auto;
	margin-bottom: auto;
	vertical-align: middle;
	font-size: 1.15rem;
	border-right: 1px solid rgba(255, 255, 255, .25);
	letter-spacing: 3px;
	padding: 15px;
	margin-right: 15px;
}

.ins-def-description {
	display: flex;
    margin-top: auto;
	margin-bottom: auto;
    vertical-align: middle;
}

.ins-banner {
	padding: 25px;
	margin: 5px;
	background-color: rgb(254, 240, 231);
	border-left: 6px solid rgba(244, 110, 47, .7);
	color: rgb(96, 54, 31);
	box-shadow: 0 .15rem 2rem 0 rgba(255, 255, 255, .65);
	font-weight: 800;
	border-radius: 8px;
	transition: .5s ease;
}

.ins-banner:hover {
	transform: translate(0, -5px);
	opacity: .8;
}

.ins-embed-container {
	display: inline-grid;
	margin-top: 35px;
	box-shadow: 0px 4px 16px rgba(0, 0, 0, .06);
	grid-template-columns: auto;
	transition: .75s ease;
}

@media (min-width: 1100px) {
	.ins-embed-container {
		grid-template-columns: auto auto;
	}
}

@media (min-width: 1700px) {
	.ins-embed-container {
		grid-template-columns: auto auto auto;
	}
}

.ins-embed {
	position: relative;
	width: 375px;
	height: 210px;
	background-color: rgba(0, 0, 0, .075);
	transition: .25s ease;
}

.ins-embed:hover {
	background-color: rgba(0, 0, 0, .125);
	transform: scale(.97) perspective(1000px) rotateX(15deg);
	z-index: 10;
}

.ins-embed-placeholder {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 2rem;
	opacity: .5;
	z-index: -1;
}

hl {
    background: rgba(255, 255, 255, .4);
    opacity: 1 !important;
    border-radius: 2px;
    padding: 0 5px;
}

.image {
    border: .1px solid #28bfff;
    border-radius: 5px;
	width: 50vh;
	overflow: hidden;
    filter: drop-shadow(0 4px 25px #28bfff);
	-webkit-filter: drop-shadow(0 4px 25px #28bfff);
	transition: .25s ease;
}

.image:hover {
	transform: scale(.99);
}

.link {
    text-decoration: none;
    font-size: 13px;
    opacity: .65;
    padding: 10px 20px;
	margin: 6px;
	margin-right: auto;
    margin-left: auto;
    border: 2px solid #fff;
    border-radius: 100px;
    text-align: center;
	transition: .25s ease;
}

.link:hover {
	opacity: 1;
	transform: scale(1.02);
}

.textlink {
	color: #28bfff;
	text-decoration: underline;
}

.image-steps-container {
	position: relative;
	max-width: 50vh;
}

.image-steps-description {
	position: absolute;
	font-size: .8rem;
	top: 0;
	width: 99%;
	padding: 5px 0 5px 5px;
	margin-right: 15px;
	background-color: rgba(0, 0, 0, .5);
}

.image-steps-btn {
	position: absolute;
	bottom: 0;
	width: 50%;
	height: 35px;
	background-color: rgba(0, 0, 0, .35);
	border-top: .1px solid white;
}

.image-steps-btn:hover {
	opacity: .5;
}

.tos-header {
	font-size: 1.1rem;
	font-family: system-ui;
	border: unset;
	margin-bottom: unset;
	opacity: .75;
}

.tool-tip-content {
	visibility: hidden;
	position: absolute;
	font-size: .8rem;
	opacity: 0;
	padding: 10px;
	background-color: rgba(0, 0, 0, .25);
	top: -5px;
	border-radius: 15px;
	transition: .25s ease;
	z-index: 10;
}

.tool-tip:hover .tool-tip-content {
	visibility: visible;
	opacity: 1;
}

.ins-nav-btn-container {
	position: fixed;
	top: 125px;
	right: 35px;
	font-size: 1.5rem;
	background: rgba(255, 255, 255, .05);
	border-radius: 25px;
    backdrop-filter: blur(50px);
    box-shadow: 0 0.75rem 2rem 0 rgba(0, 0, 0, .1);
    border: 1px solid rgba(255, 255, 255, .125);
    z-index: 1000;
    transition: .25s ease;
}

.ins-nav-btns {
	cursor: pointer;
	padding: 5px;
	transition: .25s ease;
}

.ins-nav-btns:hover {
	opacity: .65;
}

@media (max-width: 622px) {
	.ins-nav-btn-container {
		display: none;
	}
}

.panel-side-menu {
	position: relative;
	background: linear-gradient(to bottom, rgba(255, 255, 255, .05), transparent 300%);
	backdrop-filter: blur(9px);
	border-right: 1px solid rgba(255, 255, 255, .125);
	overflow: hidden;
	overflow-y: visible;
	min-width: 275px;
	padding-left: 35px;
	height: 100%;
	z-index: 1000;
	transition: .25s ease;
}

@media (max-width: 900px) {
	.panel-side-menu {
		position: absolute;
		background: linear-gradient(15deg, #0e202e 0%, #121212 100%);
		width: 0px;
		max-width: 275px;
		min-width: unset;
		padding-left: 0;
	}
}

@media (min-width: 900px) {
	.panel-side-menu:hover {
		padding-left: 40px;
		padding-right: 5px;
	}
}

.panel-icon {
	position: relative;
	width: 85px;
	display: block;
	margin-top: 65px;
	margin-left: auto;
	margin-right: auto;
	filter: drop-shadow(0 0 0 rgb(255 255 255 / 65%)) contrast(135%);
	animation: logo-rotate 4.5s ease infinite;
	transition: .05s ease;
}

.panel-icon:hover {
	opacity: .75;
}

.profile-button {
	position: fixed;
	width: 35px;
	height: 35px;
	top: 5%;
	right: 3%;
	border-radius: 50%;
	background: rgba(255, 255, 255, .75);
	backdrop-filter: blur(50px);
	filter: invert(90%);
	box-shadow: 0 .75rem 2rem 0 rgba(0, 0, 0, .1);
	border: 1px solid rgba(255, 255, 255, .125);
	z-index: 1000;
	transition: .25s ease;
}

.profile-button:hover {
	opacity: .5;
	transform: scale(1.08);
}

.profile-box {
	position: fixed;
	display: none;
	top: 5%;
	right: 3%;
	width: 135px;
	height: 39px;
	background: rgba(0, 0, 0, .5);
	border-radius: 15px;
	z-index: 999;
}

.profile-button:hover + .profile-box {
	display: block;
}

.profile-box:hover{
	display: block;
}

.profile-option {
	position: relative;
	font-size: .75rem;
	font-weight: 500;
	padding: 4px 7px 1px 6px;
	margin: 4px;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .45);
	cursor: pointer;
	transition: .15s ease;
}

.profile-option:hover, .profile-overview-item:hover .profile-option {
	color: rgba(255, 255, 255, .75);
}

.panel-container {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background: rgba(0, 0, 0, .2);
	padding-left: 150px;
	padding-right: 150px;
	overflow-x: hidden;
	overflow-y: visible;
	transition: .25s ease;
}

@media (min-width: 1700px) {
	.panel-side-menu:hover + .panel-container {
		padding-right: 140px;
	}
}

.panel-content {
	position: relative;
	opacity: 0;
	display: none;
	transition: 1s ease;
}

.panel-content-container {
	position: relative;
	padding: 30px;
	width: 100%;
	height: 45vh;
	min-width: 210px;
	backdrop-filter: blur(9px);
	border: 1px solid rgba(255, 255, 255, .125);
	background: linear-gradient(to bottom, rgba(255, 255, 255, .05), transparent 250%);
	box-shadow: 0px 4px 16px rgba(0, 0, 0, .06);
	border-radius: 2.5rem;
	overflow: hidden;
}

.panel-content-container:hover {
	border: 1px solid rgba(255, 255, 255, .2);
}

.profile-overview-item {
	display: block;
	margin: 7px;
	padding: 12px 7px 20px 7px;
	min-width: 120px;
	width: 120px;
	text-align: center;
	cursor: pointer;
}

.profile-overview-icon {
	width: 35px;
	height: 35px;
	opacity: .5;

}

.panel-header {
	font-size: 1.5rem;
	text-shadow: 0 0 5px rgb(255 255 255 / 65%);
}

@media (max-width: 1700px) {
	.panel-content-container {
		padding-left: 2%;
		padding-right: 2%;
	}
	
	.panel-container {
		padding-left: 8%;
		padding-right: 8%;
	}
	
	.panel-header {
		margin-left: 5%;
	}
}

@media (max-width: 1350px) {
	.panel-container {
		padding-left: 5%;
		padding-right: 5%;
	}
	
	.panel-header {
		margin-left: 5%;
	}
}

panel-i {
	position: relative;
	font-size: .85rem;
	margin-left: 25px;
	color: rgba(255, 255, 255, .55);
	padding: 4px;
	list-style: none;
	display: flex;
	transition: .2s ease;
}

panel-i:after {
	content: "";
	background-color: transparent;
	position: absolute;
	left: -22px;
	top: 5.5px;
	width: 7px;
	height: 7px;
	border-left: 3px solid#0981e0;
	border-bottom: 3px solid #0981e0;
	filter: drop-shadow(0 0 5px #0981e0);
	transform: rotate(225deg);
	-o-transform: rotate(225deg);
	-ms-transform: rotate(225deg);
	-webkit-transform: rotate(225deg);
}

panel-i:hover {
	opacity: .75;
	left: 1px;
}

gradient-overlay {
	position: fixed;
	bottom: -100px;
	left: -10vw;
	width: 120vw;
	height: 100vh;
	border-radius: 250px;
	background: linear-gradient(to bottom, transparent 50%, #000000 250%);
	filter: blur(50px);
	z-index: -99;
}

.settings-background {
	position: fixed;
	opacity: 0;
	display: none;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	backdrop-filter: blur(5px);
	background: rgba(0, 0, 0, .5);
	z-index: 9999;
	transition: .25s ease;
}

.settings-panel {
	position: relative;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 20vw;
	height: 19vh;
	min-width: 250px;
	min-height: 160px;
	z-index: 10000;
}

.exit {
	position: absolute;
	top: 20px;
	right: 25px;
	padding: 5px;
	cursor: pointer;
	transform: scaleX(1.2);
}

.settings-input {
	width: 75%;
	background: rgba(0, 0, 0, .5);
	border: 1px solid rgba(255, 255, 255, .25);
	border-radius: 15px;
	padding: 5px;
	padding-left: 10px;
}

.settings-button {
	width: 20%;
	background: rgba(255, 255, 255, .1);
	border: 1px solid rgba(255, 255, 255, .25);
	border-radius: 15px;
	padding: 5px;
	margin-left: 2.5%;
	cursor: pointer;
	transition: .05s ease;
}

.settings-button:hover {
	filter: brightness(.75);
	transform: translate(0, -1px);
}

.profile-overview-container {
	display: grid;
	justify-content: center;
	grid-template-columns: auto auto auto;
}

.users-panel-container {
	display: grid;
	justify-content: center;
	grid-template-columns: auto auto auto;
	margin-bottom: 50px;
}

@media (max-width: 426px) {
	.users-panel-container {
		grid-template-columns: auto;
		margin-top: 170px;
	}
}

.settings-panel-container {
	display: grid;
	justify-content: center;
	grid-template-columns: auto auto auto;
}

@media (max-width: 466px) {
	.settings-panel-container {
		grid-template-columns: auto;
		margin-top: 200px;
	}
}

.panel-overview-content {
	display: grid;
	justify-content: center;
	margin-top: 25px;
	grid-template-columns: auto auto;
}

.panel-overview-a {
	margin-top: 10px;
	margin-left: 10px;
	margin-right: 10px;
	width: unset;
	max-width: 650px;
}

@media (max-width: 650px) {
	.panel-overview-content {
		grid-template-columns: auto;
		margin-bottom: 50px;
	}
	
	.profile-overview-container {
		margin-top: 400px;
	}
}

@media (max-width: 425px) {
	.profile-overview-container {
		grid-template-columns: auto;
		margin-top: 600px;
	}
	
	.profile-overview-item {
		min-width: 200px;
	}
}

.panel-side-menu-toggle {
	display: none;
}

@media (max-width: 900px) {
	.panel-side-menu-toggle {
		position: fixed;
		display: block;
		top: 32%;
		left: -25px;
		width: 50px;
		height: 75px;
		border-radius: 25px;
		background: rgba(255, 255, 255, .1);
		border: 1px solid rgba(255, 255, 255, .25);
		transition: .25s ease;
		z-index: 900;
	}
}

.panel-side-menu-arrow {
	position: absolute;
	top: 37%;
	left: 66%;
	ransform: translate(-50%, -50%);
}

.button-container {
	height: unset;
	width: unset;
	padding: 20px 20px 20px 20px;
	cursor: default;
}

.button-red {
	width: 150px;
	margin: 5px;
	background: linear-gradient(0deg, rgba(235, 64, 52, .2), rgba(255, 255, 255, .05));
}

.button-blue {
	width: 96px;
	margin: 5px;
	background: linear-gradient(0deg, rgba(9, 129, 244, .2), transparent);
}

th {
	background: linear-gradient(0deg, rgba(0, 0, 0, .65), rgba(0, 0, 0, .4));
	border-bottom: 1px solid rgba(9, 129, 244, .4);
	padding: 30px;
	padding-top: 12px;
	padding-bottom: 12px;
	text-align: left;
	font-size: 13.3px;
	color: #888d94;
}

td {
	background: linear-gradient(0deg, rgba(0, 0, 0, .3), rgba(0, 0, 0, .05));
	border-bottom: 1px solid rgba(255, 255, 255, .15);
	padding: 30px;
	padding-top: 16px;
	padding-bottom: 16px;
	text-align: left;
	max-width: 320px;
	overflow: hidden;
	font-size: 13.3px;
}

.true {
	color: rgba(102, 255, 0, .7);
	text-shadow: 0 0 8px #00ff44;
}

.false {
	color: rgba(235, 64, 52, .7);
	text-shadow: 0 0 8px #ff7575;
}

.users-panel {
	max-width: unset;
	overflow: auto;
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.users-panel::-webkit-scollbar {
	display: none;
}

.action-set-btn {
	width: 60px;
	background: linear-gradient(0deg, rgba(0, 0, 0, .3), rgba(255, 255, 255, .05));
	margin-left: -8px;
}

.checkbox {
	width: 15px;
	height: 15px;
	cursor: pointer;
}

ct {
	position: absolute;
	margin-top: 2px;
	margin-left: 5px;
}

.logs-panel {
	width: 80vw;
	height: 80vh;
	max-width: 650px;
	padding: 0;
	margin: 0;
}

.dropdown {
	position: relative;
	display: inline-block;
	margin-left: 7px;
	padding-right: 15px;
}

.dropdown-content {
	position: absolute;
	display: none;
	top: -6px;
	left: 40px;
	min-width: 70px;
	border-radius: 5px;
	overflow: hidden;
	z-index: 90;
}

.dropdown:hover .dropdown-content {
  display: block;
}

dl {
	background: rgba(0, 0, 0, .85);
	padding: 6px 2px 2px 4px;
	text-align: center;
	cursor: pointer;
}

dl:hover {
	color: #0981e0;
}

.notification {
	position: fixed;
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 450px;
	width: 90vw;
	height: 10px;
	top: -125px;
	left: calc(50% + 150px);
	transform: translate(-50%, 0);
	background: linear-gradient(to top, rgba(0, 0, 0, 0.35), rgba(255, 255, 255, .03));
	filter: drop-shadow(0 0 15px rgb(0, 0, 0));
	transition: .75s ease;
	z-index: 9999;
}

@media (max-width: 900px) {
	.notification {
		left: 50%;
	}
}

.notification:hover {
	top: 37px;
}