.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, #162b53 0%, #0e3c67 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.webp");
    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;
    pointer-events: none;
    will-change: transform;
    backface-visibility: hidden;
}

@media (max-width: 768px) {
    sync-overlay {
        width: 100%;
        object-fit: contain;
		pointer-events: none;
    }
}

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: 2500px;
    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: -2px;
    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;
}

.main-div {
    /* 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: 5rem;
    */
    padding: 75px;
}

@media (max-width: 768px) {
    .main-div {
        border-radius: 3rem;
        padding: 60px;
        width: 80%;
        max-height: 85vh;
        overflow-y: auto;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .main-div {
        border-radius: 2.5rem;
        padding: 50px;
        width: 85%;
    }
}

@media (max-width: 380px) {
    .main-div {
        border-radius: 2rem;
        padding: 40px;
        width: 90%;
    }
}
/*  ---  */

.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;
}

@media (max-width: 768px) {
    .arrow-container {
        display: none;
    }
}

/*  ---  */

@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);
}

/*  ---  */

.container.main-div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    box-sizing: border-box;
}

.headline {
    position: relative;
    color: white;
    font-weight: 700;
    font-size: clamp(3rem, 15vw, 6.5rem);
    text-align: center;
    justify-content: center;
    perspective: 1000px;
    text-decoration: none;
    text-shadow: 4px 3px #245bb3;
    cursor: pointer;
    transition: .5s ease;
    line-height: 1.1;
    width: 100%;
}

.headline:hover {
    transform: scale(1.05);
}

.headline-description {
    opacity: .5;
    font-size: clamp(1.5rem, 5vw, 1.8rem);
    margin-top: 12px;
    text-align: center;
    line-height: 1.3;
    width: 100%;
}

.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 #245bb3, 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 #245bb3, 0 0 15px rgb(255, 255, 255, .65);
}

@keyframes float {
    from { transform: translate(2%, -8%) rotate(-1deg); }
    to { transform: translate(-2%, 3%) rotate(3deg); }
}

@media (max-width: 768px) {
    .container.main-div {
        padding-top: 15vh;
    }

    .headline {
        font-size: clamp(3.5rem, 18vw, 5.5rem);
        text-shadow: 3px 2px #245bb3;
    }

    .headline-description {
        font-size: clamp(1.3rem, 6vw, 1.6rem);
    }

    .rotate > .wrap,
    .float .char {
        text-shadow: 3px 2px #245bb3, 0 0 10px rgba(255, 255, 255, 0.65);
    }
}

@media (max-width: 480px) {
    .container.main-div {
        padding-top: 10vh;
    }

    .headline {
        font-size: clamp(3rem, 16vw, 4.5rem);
    }

    .headline-description {
        font-size: clamp(1.2rem, 5.5vw, 1.5rem);
    }
}

/*  ---  */

.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(50px);
    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: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    max-width: 1200px;
    padding: 20px;
	transition: .5s ease;
    width: 100%;
}

.pricing-boxes-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 100%;
    max-width: 820px;
    margin-bottom: 30px;
	transition: .5s ease;
}

.pricing-box {
    flex: 1;
    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);
    min-width: 250px;
    max-width: 400px;
    overflow: hidden;
    transition: .5s ease;
    user-select: none;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
	height: 100%;
}

.pricing-upper {
    padding: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, .125);
    transition: .45s ease;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-header {
    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);
    text-align: center;
    width: 100%;
}

.pricing-description {
	flex-grow: 1; 
    opacity: .5;
    text-align: center;
    margin: 0 auto;
	min-height: 40px;
}

.pricing-amount {
    padding: 20px 0;
    font-size: 1.8rem;
    font-weight: 600;
    transition: .25s ease;
    text-align: center;
}


.pricing-length {
    opacity: .5;
    font-size: .95rem;
    font-weight: 300;   
    text-align: center;
}

.pricing-smalltext {
    font-weight: 200;
    font-size: .6rem;
    opacity: .3;
    text-shadow: 3px 2px 12px #245bb3;
    text-align: center;
}

.payment-container {
    position: relative;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    line-height: 22px;
    transition: .5s ease;
    text-shadow: 4px 3px 8px #245bb3;
    max-width: 1200px;
    padding: 20px;
}

.features-container {
    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);
    padding: 25px;
    width: 100%;
    max-width: 820px;
    text-align: center;
	margin-bottom: 40px;
}

.features-header {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: white;
    text-shadow: 4px 3px 8px #245bb3;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.feature-item {
    background: rgba(255, 255, 255, .08);
    border-radius: 1.5rem;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #56a3ff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.feature-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}
@media (hover: hover) {
    .pricing-box:hover {
        transform: scale(1.02);
    }

    .pricing-box:hover .pricing-header {
        font-size: 1.27rem;
        text-shadow: 4px 3px 8px #245bb3, 0 0 15px rgb(255, 255, 255, .65);
    }
}

@media (max-width: 768px) {
    .pricing-container {
        justify-content: center;
        overflow-x: visible;
        flex-wrap: wrap;
        padding-bottom: 20px;
		flex-direction: row;
		padding: 0px;
    }
    
    .pricing-boxes-container {
        flex-direction: column;
        align-items: center;
    }

	.pricing-box {
        width: 80%;
        max-width: 400px;
        margin-bottom: 20px;
    }
	
	.features-container {
        width: 90%;
    }
    .pricing-box:active {
        transform: scale(1);
    }

    .pricing-box:active .pricing-header {
        font-size: 1.25rem;
        text-shadow: 4px 3px 8px #245bb3;
    }

    .features-list list {
        flex: 1 1 calc(50% - 15px);
    }
}

@media (max-width: 480px) {
    .features-list list {
        flex: 1 1 100%;
    }
	
    .features-container {
        width: 80%;
    }
}


/*-*/

::-webkit-scrollbar {
    background: linear-gradient(315deg, #162b53  0%, #0e3c67  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;
}



/**/

.return-button {
    font-family: "Lexend Deca", sans-serif;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    height: 40px;
    margin: 6px;
    top: -75px;
    padding: 4px 16px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, .125);
    border-radius: 56px;
    color: #fff;
    cursor: pointer;
    transition: all .3s;
    background: rgba(255, 255, 255, .05);
    backdrop-filter: blur(15px);
    box-shadow: 0 .75rem 2rem 0 rgba(0, 0, 0, .1);
    z-index: 10;
}

.return-button:hover {
    box-shadow: 0 3px 5px rgba(0, 0, 0, .1), 0 1px 13px rgba(0, 0, 0, .1);
    transform: scale(1.05);
}

.return-button-arrow {
    margin-right: 8px;
    transition: .25s ease;
}

.return-button-arrow:after {
    content: '⬅';
}

.return-button:hover .return-button-arrow {
    margin-right: 12px;
}

@media (max-width: 768px) {
    .return-button {
        top: 15vh;
        left: 50%;
        transform: translateX(-50%);
        height: 36px;
        font-size: 14px;
        padding: 4px 12px;
        position: fixed;
    }
    .return-button:hover {
        transform: translateX(-50%) scale(1.05);
    }
}

@media (max-width: 480px) {
    .return-button {
        height: 32px;
        font-size: 13px;
        padding: 4px 10px;
    }
}

@media (max-width: 360px) {
    .return-button {
        height: 30px;
        font-size: 12px;
        padding: 2px 8px;
    }
}

/*  ---  */

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 #56a3ff;
	border-right: 2px solid #56a3ff;
	filter: drop-shadow(0 0 5px #00a8ff);
	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: #e55d5d;
	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;
}


/*  ---  */

.discord-button {
	position: fixed;
	width: 50px;
	height: 50px;
	bottom: 1.5rem;
	right: 1rem;
	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;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    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;
    padding: 20px;
}

footer-item {
    display: flex;
    align-items: center;
    padding: 10px;
    transition: .5s ease;
}

footer-item:hover {
    transform: scale(1.01);
    opacity: .5;
}

.contact-us-button {
    height: 30px;
    padding: 0 15px;
    margin-left: 10px;
    font-size: .75rem;
    white-space: nowrap;
}

.footer-image {
    filter: drop-shadow(0 0 15px rgb(255 255 255 / 65%));
    margin: 0 5px;
    padding: 6px;
    transition: .5s ease;
    width: 28px;
    height: 28px;
}

.footer-image:hover {
    transform: scale(1.05) translate(0, -1px);
    cursor: pointer;
    opacity: .5;
}

.svg-containers {
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    width: 100%;
    overflow: hidden;
    pointer-events: none; 
}

.svg-containers svg {
    display: block;
    width: 100%;
    height: auto;
    pointer-events: none; 
}

@media (max-width: 768px) {
    footer {
        padding: 15px;
    }

    footer-item, footer > div {
        width: 100%;
        justify-content: center;
        margin-bottom: 15px;
    }

    footer-item {
        flex-direction: column;
    }

    .contact-us-button {
        margin-left: 0;
        margin-top: 10px;
    }

    .svg-containers {
        bottom: 92%;
    }
}

@media (max-width: 480px) {
	
    footer > div {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-image {
        margin: 5px;
    }
}

.contact-us-button {
    font-family: "Lexend Deca", sans-serif;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    padding: 0 15px;
    margin-left: 10px;
    text-decoration: none;
    background-color: transparent;
    border: none;
    border-radius: 15px;
    color: #fff;
    backdrop-filter: blur(5px);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: rgba(255, 255, 255, 0.1) 0 5px 10px inset, rgba(0, 0, 0, 0.1) 0 1px 3px;
}

/*.contact-us-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;
}

  ---  */


.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 {
    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);
	transform: scale(.75) perspective(100px) rotateX(25deg);
	opacity: .25;
}

.status-container {
	margin-top: 6vh;
	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 #245bb3;
    transition: .3s ease;
}

.component:after {
    top: 19px;
    left: 4px;
    opacity: 1;
}

@media (hover: hover) and (pointer: fine) {
    .component:hover {
        transition: .15s ease;
        opacity: .5;
        left: unset;
        transform: scale(1.1);
    }
}

@media (hover: none), (pointer: coarse) {
    .component {
        -webkit-tap-highlight-color: transparent;
    }
    
    .component:hover {
        opacity: 1;
        transform: none;
    }
}

/**/

description {
	opacity: .65;
	font-size: .8rem;
	text-shadow: 3px 2px 12px #245bb3;
}

/*  ---  */

@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: 2px 2px 10px rgba(36, 91, 179, 0.7);
}

.faq-div {
    position: relative;
    margin: 1.75rem 0;
    padding: 0.75rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.125);
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: border-color 0.25s ease;
}

.faq-div:hover,
.faq-div.active {
    border-color: rgba(255, 255, 255, 0.25);
}

faq-header {
    display: flex;
    margin: 10px;
}

faq-question {
    font-size: 1rem;
    margin-right: 28px;
}

.faq-content {
    margin-right: 22px;
    max-height: 0;
    opacity: 0;
    transform: translateY(-25px);
    transition: max-height 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
    overflow: hidden;
}

.faq-div.active .faq-content {
    max-height: 1000px; 
    opacity: 1;
    transform: translateY(0);
}

faq-answer {
    display: block;
    padding: 10px 10px 8px;
    font-size: 0.85rem;
    line-height: 1.3;
    opacity: 0.55;
}

.faq-icon {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    font-size: 1.25rem;
    height: 25px;
    width: 25px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.faq-div.active .faq-icon {
    transform: translateY(-50%) rotate(180deg);
}

@media (max-width: 800px) {
    .faq-container {
        padding: 1rem;
    }

    .faq-div {
        margin: 1rem 0;
        padding: 0.5rem;
    }

    .faq-content,
    .faq-icon {
        transition: all 0.2s ease;
    }
}

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 #245bb3;
	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 #245bb3);
	filter: drop-shadow(0 0 5px #245bb3);
	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 #245bb3;
}

.ins-navigator-content {
	position: relative;
	width: 100%;
	height: calc(100% - 90px);
	overflow: scroll;
	z-index: 1;
}

@media (max-width: 600px) {  
    .ins-navigator {
        height: 100%;
        overflow-y: auto;
    }
    .ins-navigator-content {
        height: auto; 
        overflow-y: auto; 
    }
}



.ins-navigator-btn-container {
	display: none;
}

@media (max-width: 622px) {
	.ins-navigator {
		position: absolute;
		background: linear-gradient(15deg, #001845 0%, #0062be 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%, #0981e0 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(9, 129, 244, .35), rgba(255, 255, 255, .03));
	filter: drop-shadow(0 0 15px rgba(9, 129, 244));
	transition: .75s ease;
	z-index: 9999;
}

@media (max-width: 900px) {
	.notification {
		left: 50%;
	}
}

.notification:hover {
	top: 37px;
}

/* --- */
.header {
    padding: 10px 20px;
    background: rgba(3,0,20,0.1);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border-radius: 9999px;
    width: fit-content;
    max-width: 90%;
    margin: 20px auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 20px;
    z-index: 1000;
}

.header-logo img {
    height: 40px;
    vertical-align: middle;
}

.header-nav {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-nav-link {
    color: rgba(255, 255, 255, 0.7);
    padding: 8px 16px;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
    line-height: 20px;
}

.header-nav-link:hover {
    color: rgba(255, 255, 255, 1);
}

.customer-login {
    font-family: "Lexend Deca", sans-serif;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    position: relative;
    width: auto; 
    height: 36px;
    padding: 0 16px; 
    margin-left: auto; 
    text-align: center;
    text-decoration: none;
    background-color: transparent;
    border: 0;
    border-radius: 18px; 
    color: #fff;
    backdrop-filter: blur(50px);
    cursor: pointer;
    transition: all .3s; 
    vertical-align: middle;
    box-shadow: rgb(255 255 255 / 20%) 0 13px 15px 20px inset, rgb(0 0 0 / 10%) 0 3px 5px, rgb(0 0 0 / 10%) 0 1px 13px;
    z-index: 10;
    line-height: 36px; 
}

.customer-login:hover {
    transform: scale(1.05);
    box-shadow: rgb(255 255 255 / 25%) 0 -11px 15px inset, rgb(0 0 0 / 15%) 0 3px 5px, rgb(0 0 0 / 15%) 0 1px 13px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1001;
    margin-left: 10px; 
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: white;
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.mobile-menu-toggle span:nth-child(1) { top: 0; }
.mobile-menu-toggle span:nth-child(2) { top: 9px; }
.mobile-menu-toggle span:nth-child(3) { top: 18px; }

.header.open .mobile-menu-toggle span:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
}

.header.open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
}

.header.open .mobile-menu-toggle span:nth-child(3) {
    transform: rotate(-45deg);
    top: 9px;
}


@media (max-width: 1248px) {
    .header {
        padding: 10px 20px;
        border-radius: 0;
        width: 100%;
        max-width: 100%;
        margin: 0;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
    }

    .header.open {
        background-color: transparent;
        backdrop-filter: none;
    }

	.header-logo {
        position: relative;
        z-index: 1002; 
    }

    .customer-login {
        font-size: 12px; 
        height: 32px; 
        padding: 0 12px; 
        line-height: 32px; 
        border-radius: 16px;
        margin-left: auto; 
    }

    .mobile-menu-toggle {
        display: block;
        margin-left: 20px;
        margin-right: 40px;
    }

.header-nav {
    width: 100vw;
    height: 100vh;
    border: 0;
    border-radius: 0;
    display: block;
    left: 0;
    margin: unset;
    padding: 77px 0 0;
    transition: transform .45s ease;
    transform: translateX(100%);
    position: fixed;
    top: 0;
    z-index: 1;
    background: rgba(3, 0, 20, 0.5);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

    .header.open .header-nav {
        transform: translateX(0);
    }

    .header-nav-link {
        display: block;
        padding: 20px 40px;
        font-weight: 500;
        font-size: 24px;
        line-height: 32px;
        color: rgba(255, 255, 255, 0.9);
        border-top: 1px solid rgba(255,255,255,.1);
    }

    .header-nav-link:last-child {
        border-bottom: 1px solid rgba(255,255,255,.1);
    }

}

@supports not ((-webkit-backdrop-filter: blur(12px)) or (backdrop-filter: blur(12px))) {
    .header-nav {
        background: rgba(3, 0, 20, 0.9);  
    }
}

.header-logo .ins-logo {
    width: 40px;
}


.testimonials {
	padding-top: 12px;
	padding-bottom: 200px;
	position: relative;
	overflow: hidden;
  }  
  
.testimonials-row:nth-child(2) {
	animation-direction: reverse;
	transform: translateZ(0) translate(calc(-50% - 12px))
}

.testimonials-items:before {
	content: "";
	height: 100%;
	left: 0;
	pointer-events: none;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 1
}

  .section-header {
	text-align: center;
	margin-bottom: 48px;
  }
  
  .section-header-badge {
	display: inline-block;
	background-color: rgba(255, 255, 255, 0.1);
	padding: 4px 12px;
	border-radius: 16px;
	margin-bottom: 16px;
  }
  
  .section-header-badge-text {
	font-size: 1.5rem;
	font-weight: 600;
  }
  
  .section-header-title {
	font-size: 36px;
	font-weight: 700;
	margin-bottom: 16px;
  }
  
  .section-header-description {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.7);
  }
  
  .testimonials-items {
	max-width: 1376px;
	margin: 0 auto;
	overflow: hidden;
	position: relative;
  }
  
  .testimonials-row {
	display: flex;
	animation: animateRow 200s linear infinite;
	width: max-content;
	display: flex;
	margin-bottom: 24px;
  }
  
  .testimonials-card {
	background-color: rgba(255, 255, 255, 0.05);
	border-radius: 16px;
	padding: 24px;
	margin-right: 24px;
	width: 436px;
  }
  
  .testimonials-card-top {
	display: flex;
	align-items: center;
	margin-bottom: 16px;
  }
  
  .testimonials-card-avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	margin-right: 16px;
  }
  
  .testimonials-card-name {
	font-weight: 600;
	margin-bottom: 4px;
  }
  
  .testimonials-card-tag {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.5);
  }
  
  .testimonials-card-content {
	font-size: 16px;
	line-height: 1.5;
  }
  
  @keyframes animateRow {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
  }
  
  @media (max-width: 1248px) {
	.testimonials {
		padding-top: 12px;
		padding-bottom: 69px;
	  } 
	.testimonials-items:before {
	  content: unset;
	}
  }


@keyframes animateRow1 {
	0% {
		transform: translateZ(0) translate(0)
	}

	to {
		transform: translateZ(0) translate(calc(-50% - 12px))
	}
}




#pricing .return-button {
    position: sticky;
    top: 100px;
    z-index: 1001;
    margin-bottom: 20px;
    align-self: center;
}


.testimonials,
#pricing,
#default,
#status,
#faq,
footer,
.controller,
.discord-button,
.arrow-container {
    transition: all 0.5s ease;
}

#default,
#status,
#faq {
    padding-top: 100px;
    min-height: 100vh;
}


#back_btn
#one-time-button,
#one-time-upper-1,
#one-time-upper-2,
#lifetime-upper-1,
#lifetime-upper-2 {
    transition: opacity 0.5s ease;
}

#default {
	top: -1vh;
  }
  
  @media screen and (max-width: 768px) {
	#default {
	  top: 0;
	}
  }