@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,300;0,400;0,700;1,400;1,700&display=swap');

body{
    background-image: url("../img/noise.png");
    font-family: 'Roboto Condensed', sans-serif;
    background-color: #e2e2e2;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Scrollbar */
::-webkit-scrollbar
{
    width: 5px;
    background-color: transparent;
    background-image: url("../img/noise.png");
}

::-webkit-scrollbar-thumb
{
    border-radius: 2px;
    background-color: rgba(0, 240, 120, 0.8);
    background-image: url("../img/noise.png");
}

/* Background Video/Image */
.video-wrapper{
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    height: 100%;
    z-index: -1000;
}

.video-wrapper > .wrapper{
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
}

.video-wrapper > .wrapper video, .image-wrapper > .wrapper img{
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    min-width: 100%;
    min-height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

:root {
    --video-width: 100vw;
    --video-height: 100vh;
}
@media (min-aspect-ratio: 16/9) {
    :root {
        --video-height: 56.25vw;
    }
}
@media (max-aspect-ratio: 16/9) {
    :root {
        --video-width: 177.78vh;
    }
}

.video-wrapper > .wrapper iframe{
    position: absolute;
    top: 50%;
    left: 50%;
    width: var(--video-width);
    height: var(--video-height);
    transform: translate(-50%, -50%);
}


.video-wrapper-overlay{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url("../img/noise.png"), linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, .5) 60%, rgba(255, 255, 255, .7) 75%, rgb(255 255 255)),rgba(0, 0, 0, 0);

}

.image-wrapper, .image-wrapper img{
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1000;
}

.wrapper-overlay{
    position: absolute;
    background: url("../img/noise.png"), #b9b9b9;
    height: calc(100% - 75vh);
    top: 100vh;
    z-index: 0;
    width: 100%;
}

/* Content Styling */
.content{
    margin-top: 60px;
}

/* Accent Link */
.accent-link{
    color: #00f078;
    text-decoration: none;
}
.accent-link:hover{
    color: #00f078;
    text-decoration: underline;
}

/* Navbar Styling */
.navbar-fade{
    padding: 0;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1.2rem;
    margin-top: 2.5rem;
    background: url("../img/noise.png"), rgba(15,15,15,.6);
}

.navbar-fade:before{
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    width: 6rem;
    left: -6rem;
    background: url("../img/noise.png"), linear-gradient(
            270deg,rgba(15,15,15,.6),transparent);
}

.navbar-fade:after{
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    width: 6rem;
    left: 100%;
    background: url("../img/noise.png"), linear-gradient(
            90deg,rgba(15,15,15,.6),transparent);
}

.navbar-brand > .navbar-logo img{
    height: 50px;
}

.nav-link{
    position: relative;
}

.nav-link::before{
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 3px;
    background-color: #00f078;
    transition: width 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

@media (hover: hover) and (pointer: fine) {
    .nav-link:hover::before {
        left: 0;
        right: auto;
        width: 100%;
    }
}

/* Footer Styling */
.footer{
    border-top: 2px solid rgb(0, 240, 120);
    background-color: #0f0f0f;
    background-image: url("../img/noise.png");
}

.append-bottom{
    position: absolute;
    width: 100%;
    bottom: 0;
}

.append-bottom-fix{
    height: 142px!important;
    position: relative;
    display: block;
    margin: -142px;

}

.append-bottom-wrapper{
    min-height: 100vh;
    overflow: hidden;
    display: block;
    position: relative;
    padding-bottom: 150px;
}

.footer-content{
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.2rem;
    color: rgba(255,255,255,.55);
}

.footer-sm > .footer-content{
    display: inherit!important;
    padding-top: 10px;
}

.footer-content .vr{
    border-right: 2px solid rgba(255,255,255,.55);
}

.hr{
    border-bottom: 2px solid rgba(255,255,255,.55);
}

.footer-link{
    text-decoration: none;
    color: rgba(255,255,255,.55);
}

.footer-link:hover{
    text-decoration: none;
    color: rgba(255,255,255,.75);
}

/* Settings Sidebar */
.bg-lethal{
    background: url("../img/noise.png"), rgba(15,15,15,.6);
}

.sidebar{
    position: fixed!important;
    top: 50%;
    transform: translate(0, -50%);
    width: 4.5rem;
    margin-bottom: 15rem;
}

.sidebar > ul > li a, .sidebar > ul > .dropend a{
    text-decoration: none;
    color: rgba(255,255,255,.55);
}

.sidebar > ul > li a:hover{
    text-decoration: none;
    color: #00f078;
}

/* Sidebar Dropout */
.sidebar > ul > .dropend > .dropdown-menu{
    background: url("../img/noise.png"), rgba(15,15,15,.6);
    text-decoration: none;
    color: rgba(255,255,255,.55);
    min-width: 0;
    border-radius: 0;
    margin-bottom: 15rem;
    padding: 0;
    border: none;
    transition: opacity 1s ease-out;
}

.sidebar-submenu.show{
    border-radius: 0;
    box-shadow: 2px 0px 0px 0px #00f078;
}

/* Sidebar Dropout -> Dropup */
.sidebar-sub-submenu-open{
    background: url("../img/noise.png"), rgba(15,15,15,.6);
    text-decoration: none;
    color: rgba(255,255,255,.55);
    min-width: 0;
    border-radius: 0;
    margin-bottom: 0;
    padding: 0;
    border: none;
    transition: opacity 1s ease-out;
    transform: translate3d(0px, -67px, 0px) !important;
}

.nav-link-h{
    display: table-cell;
}

.active-link{
    color: #00f078;
}

a:hover {
    filter: brightness(85%);  !important;
}

/* User Dropdown */
.droplink-menu {
    position: absolute;
    z-index: 1000;
    display: none;
    min-width: 10rem;
    padding: .5rem 0;
    margin: 0;
    font-size: 1rem;
    color: rgba(255,255,255,.55);
    text-align: left;
    list-style: none;
    background: url("../img/noise.png"), rgba(15,15,15,.6);
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: 0;
}

.droplink-menu[data-bs-popper] {
    margin-top: 0.425rem;
}

.droplink-item {
    color: rgba(255,255,255,.55);
}

/* Settings Styling */
.panel{
    width: 100%;
    height: 100%;
    color: rgba(255,255,255,.55);
    background: url("../img/noise.png"), rgba(15,15,15,.6);
}

.panel-header{
    padding: 10px 5px 10px 10px;
    font-weight: bold;
    text-transform: uppercase;
    border-bottom: 1px solid #00f078;
}

.panel-header small{
    font-weight: normal;
    text-transform: none;
}

.panel-body{
    padding: 15px 15px 15px 15px;
}

/* Seasonal Effects */
#particles{
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: -998;
}

/* Form/Input Styling */
.form-control, .form-select, .form-check-input{
    background: rgba(255, 255, 255, .75);
}

.bootstrap-select > .dropdown-toggle:focus{
    outline: 0!important;
}

.bootstrap-select > .dropdown-toggle{
    background-color: rgba(255, 255, 255, .75)!important;
    background-image: none!important;
    border: 1px solid #ced4da!important;
}

.bootstrap-select > .dropdown-menu{
    background-color: rgba(255, 255, 255, .95)!important;
    background-image: none!important;
    border: 1px solid #acb0b6 !important;
}

.bootstrap-select .dropdown-menu li, .bootstrap-select .dropdown-menu.inner{
    background-color: transparent;
}


.bootstrap-select .dropdown-toggle .filter-option {
    text-align: center!important;
}



.form-label{
    color: rgba(0, 0, 0, 0.75);
    font-weight: bold;
    text-transform: uppercase;
}

.form-check-input:focus {
    border-color: transparent !important;
}
.form-switch .form-check-input:checked, .form-check-input:checked {
    border-color: #528d70 !important;
    background-color: #00f078 !important;
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'><circle r='3' fill='%2334443d'/></svg>");
}

.form-check-input:focus {
    box-shadow: none;
}

/* CKEditor */
.cke_chrome {
    background: url("../img/noise.png"), rgba(255, 255, 255, .75)!important;
}

.cke_bottom, .cke_top {
    background: transparent!important;
}

.cke_wysiwyg_div, .cke_wysiwyg_frame {
    background: rgba(0, 0, 0, 0.19) !important;
}

.cke_editable, .cke_source{
    font-family: 'Roboto Condensed', sans-serif!important;
    font-size: inherit!important;
}

/* Modal Styling */
.modal-content {
    background: url("../img/noise.png"), rgba(255, 255, 255, .65)!important;
}

/* Buttons */
.btn{
    background-image: url("../img/noise.png");
}

.btn-primary{
    background-color: #6fa5ff;
    color: #212121;
}
.btn-primary:hover{
    background-color: #3c68b3;
    color: #212121;
}

.btn-info {
    background-color: #0dcaf0;
    border-color: #12768a;
    color: #212121;
}

.btn-info:hover {
    background-color: #0c90aa;
    border-color: #0f5968;
    color: #212121;
}

.btn-success, .btn-toggle{
    background-color: #7df9bb;
    border-color: #38936c;
    color: #212121;
}

.btn-success:hover{
    background-color: #428d63;
    border-color: #49845c;
    color: #212121;
}

.btn-danger{
    background-color: #db7367;
    border: 1px solid #a33220;
    color: #212121;
}

.btn-danger:hover{
    background-color: #9e524c;
    border: 1px solid #7b2e23;
    color: #212121;
}

.btn-warning{
    background-color: #fcb243;
    border: 1px solid #9c683d;
    color: #212121;
}

.btn-warning:hover{
    background-color: #c28f38;
    border: 1px solid #714e2c;
    color: #212121;
}

.btn-secondary {
    border-color: transparent;
}

.btn-outline-custom:hover{
    color: rgba(0, 0, 0, 1)!important;
}

.btn-outline-danger {
    color: rgb(198, 93, 93);
    border-color: rgb(198 93 93)!important;
}

.btn-outline-danger:hover {
    color: rgba(0, 0, 0, 1)!important;
    background-color: rgb(198 93 93);
}

.btn-outline-danger:focus, .btn-outline-custom:focus {
    box-shadow: none;
}

/* Accordion */
.accordion-item {
    background-color: transparent;
}

.accordion-button{
    background: rgba(255, 255, 255, .35)!important;
}

.accordion-button:focus {
    border-color: transparent;
    box-shadow: none;
}

.accordion-body{
    background: rgba(255, 255, 255, .35)!important;
}

.accordion-body, .accordion-button{
    border-bottom-left-radius: calc(.25rem - 1px)!important;
    border-bottom-right-radius: calc(.25rem - 1px)!important;
}

.accordion-button:not(.collapsed) {
    color: #00f078;
    background: rgba(255, 255, 255, .3)!important;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.accordion-button:after {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2300f078'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>") !important;
}

a:hover{
    filter:brightness(0.8);
}

/* Input Styling */
textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.form-control:focus,
.uneditable-input:focus,
.form-select:focus,
.form-select.focus{
    border-color: rgba(0, 240, 120, 0.2);
    box-shadow: 0 0 0 0.25rem rgba(0, 240, 120, 0.2);
}


.form-control:disabled, .form-control[readonly] {
    background-color: #00000033;
    opacity: 1;
    color: rgba(255, 255, 255, .75);
    border: 1px solid #00f078;
}

.input-group-text, .btn-secondary{
    color: #212529!important;
    background-color: rgba(255, 255, 255, .75)!important;
}

/* Steam Avatar Styling */
.ava-mini{
    width: 2.5rem;
    border: 1px solid #fff;
}

/* Module Styles */
.module-row:first-child{
    margin-top: 2rem;
}

/* Module Servers */
.server-panel-col{
    min-width: 300px;
}
.server-panel{
    border-radius: 5px;
    box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(0, 0, 0, 0.75);
}

.server-img{
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    border-bottom: 1px solid #00F078;
}

.progress {
    background-color: rgba(255, 255, 255, .75)!important;
    box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.1);
}

.progress-bar{
    border-bottom-left-radius: 4px;
    border-top-left-radius: 4px;
    background-image: url("../img/noise.png")!important;
}

/* Discord Module */
.discord-title {
    color: #ffffff;
    font-weight: 700;
}

/* Helpers */
.transform-reset{
    text-transform: initial!important;
}

.f-h-28{
    min-height: 28px;
}

.bg-noise{
    background-image: url("../img/noise.png");
}

.border-right{
    border-right: 1px solid rgba(0, 0, 0, 0.75);
}

.border-darken{
    border: 1px solid rgba(0, 0, 0, 0.75);
}

.ts-l{
    font-size: large;
}

/* Team Module */
.team-panel, .feature-panel{
    word-wrap: break-word;
    background-clip: border-box;
    border-radius: 5px;
    box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    min-width: 0;
    position: relative;
    border: 2px solid rgba(0, 0, 0, 0.75);
    width: 100%;
    height: 100%;
}

.team-panel-top{
    height: 150px;
    overflow-y: hidden;
    border-bottom: 2px solid rgb(198, 93, 93);
    z-index: 0;
    margin-bottom: 1.5rem;
}

.top-bg{
    overflow-y: hidden;
    filter: blur(5px);
}

.top-bg img{
    opacity: .8;
}

.top-image{
    margin: 10% 25%;
    position: absolute;
    z-index: 1;
    width: 100%;
    text-align: center;
}

.top-image img{
    z-index: 1;
}

.team-panel-body, .feature-panel-body{
    flex: 1 1 auto;
    padding: 1rem;
    color: rgba(255, 255, 255, .75);
}

.status-image{
    border-radius: 50%;
    height: 150px;
    width: 150px;
    border: 2px solid rgb(198, 93, 93);
}
.top-image.status-online{
    border: 2px solid #00f078;
}
.top-image.status-away{
    border: 2px solid #ffbf00;
}
.top-image.status-offline{
    border: 2px solid rgb(198, 93, 93);
}

.team-panel-top.status-online{
    border-bottom: 2px solid #00f078;
}
.team-panel-top.status-away{
    border-bottom: 2px solid #ffbf00;
}
.team-panel-top.status-offline{
    border-bottom: 2px solid rgb(198, 93, 93);
}

.status-badge{
    position: absolute;
    width: 80px;
    height: 26px;
    background-color: rgb(198, 93, 93);
    padding: 0px 5px 2px 5px;
    z-index: 1;
    left: calc( 100% - 80px);
    border-top-right-radius: 2px;
    border-bottom-left-radius: 5px;
    border-left: 2px solid rgba(0, 0, 0, 0.75);
    border-bottom: 2px solid rgba(0, 0, 0, 0.75);
    text-align: center;
    text-transform: uppercase;
}

.bg-online{
    background-color: #00f078;
}
.bg-away{
    background-color: #ffbf00;
}
.bg-offline{
    background-color: rgb(198, 93, 93);
}

/* Grow Animation */
.grow{
    transition-duration: 0.3s;
    transition-property: transform;
}

.grow:hover{
    transform: scale(1.05);
}

/* Tagline Buttons */
.tagline-btn:first-child{
    margin-left: 0px!important;
}

.tagline-btn{
    width: 7rem;
    height: 7rem;
    padding: 0;
}

.tagline-btn-card {
    background-color: transparent;
    width: 7rem;
    height: 7rem;
    perspective: 1000px;
    display: inline-block;
}

.tagline-btn-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    border-radius: 5px;

}

.tagline-btn-card:hover .tagline-btn-card-inner {
    transform: rotatex(
            180deg) rotateZ(
            -45deg);
}

.tagline-btn-card-front, .tagline-btn-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 5px;
    box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(0, 0, 0, 0.75);
    background-image: url("../img/noise.png");
}

.tagline-btn-card-front {
    color: rgba(0, 0, 0, 0.75);
    font-size: 4rem;
    line-height: 7rem;
    width: 7rem;
    height: 7rem;
    text-align: center;
    opacity: .8;
}

.tagline-btn-card-back {
    transform: rotatex(180deg);
    box-shadow: 0 0 20px 20px rgba(0, 0, 0, 0.25);
}

.tagline-btn-text{
    width: 150%;
    height: 100%;
    display: inline-block;
    font-size: 1.5rem;
    position: relative;
    left: 0;
    top: 25%;
    transform: rotate(-45deg);
    text-transform: uppercase;
    text-align: center;
    color: rgba(0, 0, 0, .75);
    font-weight: 600;
}



.tagline_btn{
    display:inline-block;
    font-size: 4rem;
    line-height: 7rem;
    width: 7rem;
    height: 7rem;
    text-align: center;
    vertical-align: bottom;
    transition: all .2s ease-in-out;
    border-radius: 5px;
    box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(0, 0, 0, 0.75);
    background-image: url("../img/noise.png");
    opacity: 0.8;
}

.tagline_btn:hover{
    transform: scale(1.1);
    box-shadow: inset 0px 0px 20px 20px #0000002b;
    background-color: #868686;
}

.tagline_btn i{
    color: rgba(0, 0, 0, 0.75);
}

.tagline_btn-text{
    width: 150%;
    height: 100%;
    display: inline-block;
    font-size: 1.5rem;
    position: relative;
    left: -26%;
    top: -114%;
    transform: rotate(-45deg);
    text-transform: uppercase;
    text-align: center;
    color: rgba(0, 0, 0, .75);
    font-weight: 600;
}

/* Cookie Consent */
.cookie-banner {
    position: fixed;
    width: 100%;
    text-align: center;
    z-index: 100;
    color: rgba(255, 255, 255, .75);
}

.panel-border{
    border: 2px solid rgba(0, 0, 0, 0.75);
}

.border-rounded{
    border-radius: 5px;
}

/* Pagination */
.page-link {
    background-color: rgba(15,15,15,.6);
    background-image: url("../img/noise.png");
    border: 1px solid rgba(15,15,15,.8);
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.page-link:hover{
    background-color: rgba(15,15,15,.5);
    border: 1px solid rgba(15,15,15,.8);
}

.page-item.active .page-link {
    border-top: 1px solid rgba(15,15,15,.8);
    border-bottom: 1px solid rgba(15,15,15,.8);
    border-right: none;
    border-left: none;
    font-weight: bolder;
    color: rgba(15,15,15,.8);
}

/* Tabs */
.tab-btn.active{
    background-color: rgba(255,255,255,.55) !important;
}

/* Mobile First =/ */
@media only screen and (max-width: 1090px) {
    #vertical-sidebar, .navbar-fade:before, .navbar-fade:after, .footer-init{
        display: none!important;
    }

    #horizontal-sidebar, .footer-sm{
        display: inherit!important;
    }
}

@media only screen and (min-width: 1089px) {
    #vertical-sidebar, .navbar-fade:before, .navbar-fade:after, .footer-init{
        display: initial!important;
    }

    #horizontal-sidebar, .footer-sm{
        display: none!important;
    }
}

.blink {
    animation: blink-animation .3s steps(5, start) infinite;
    -webkit-animation: blink-animation .3s steps(5, start) infinite;
}
@keyframes blink-animation {
    to {
        visibility: hidden;
    }
}
@-webkit-keyframes blink-animation {
    to {
        visibility: hidden;
    }
}