:root {
    --main-color: #a31aff; /* red - change from here if you want any other color. */
    --header-url: url(https://quak.ovh/AEQF6xx.jpg);
    --header-height: 400px;
    --header-filter: blur(100px);
    --header-background: linear-gradient(rgba(0,0,0, 0.7), #0c0c0f);
}
.no-scroll {
    overflow: hidden;
 }
.ui.vertical.pointing.menu .active.item:after {var(--main-color);}
.ui.vertical.pointing.menu .item:after {
    border-top: 1px solid var(--main-color);
    border-right: 1px solid var(--main-color);
}
.ui.input>input {
    background: rgba(4,4,4, 0.5);
}
.ui.icon.input>i.icon {
    color: #fff;
}
.colorChanger {
    position: fixed;
    right: -170px;
    top: 50%;
    height: 50px;
    background: black;
    z-index: 99;
    display: flex;
    width: 170px;
    justify-content: space-around;
    align-items: center;
    transition: all .3s;
}
.colorChanger:hover {
  	right:0;
}
.colorChanger::after {
    content: 'palette';
    width: 50px;
  	font-size: 24px;
  	display: flex;
  	justify-content: center;
  	align-items: center;
    height: 50px;
  	font-family: Material Icons;
    background: var(--main-color);
    position: absolute;
    left: -50px;
    border-top-left-radius: 50%;
    border-bottom-left-radius: 50%;
  	color: #fff;
}
/* CULORI CUSTOM */
/* ROSU */
html[data-theme='theme-red'] {
  --main-color: #ff223d;
}
.theme-red {
    margin-left: 3px;
    margin-right: 3px;
    border-radius: var(--pdd05);
    background: #ff223d;
    height: 30px;
    width: 50px;
    text-align: center;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
}
li.theme-red {
    list-style: none;
    display: flex;
    width: 20px;
    height: 20px;
    padding: 0;
  	border-radius: 50%;
}
/* PURPLE */
html[data-theme='theme-purple'] {
  --main-color: #a31aff;
}
.theme-purple {
    margin-left: 3px;
    margin-right: 3px;
    border-radius: var(--pdd05);
    background: #a31aff;
    height: 30px;
    width: 50px;
    text-align: center;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
}
li.theme-purple {
    list-style: none;
    display: flex;
    width: 20px;
    height: 20px;
    padding: 0;
  	border-radius: 50%;
}
/* BLUE */
html[data-theme='theme-blue'] {
  --main-color: #2141eb;
}
.theme-blue {
    margin-left: 3px;
    margin-right: 3px;
    border-radius: var(--pdd05);
    background: #2141eb;
    height: 30px;
    width: 50px;
    text-align: center;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
}
li.theme-blue {
    list-style: none;
    display: flex;
    width: 20px;
    height: 20px;
    padding: 0;
  	border-radius: 50%;
}
/* GREEN */
html[data-theme='theme-green'] {
  --main-color: #03C988;
}
.theme-green {
    margin-left: 3px;
    margin-right: 3px;
    border-radius: var(--pdd05);
    background: #03C988;
    height: 30px;
    width: 50px;
    text-align: center;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
}
li.theme-green {
    list-style: none;
    display: flex;
    width: 20px;
    height: 20px;
    padding: 0;
  	border-radius: 50%;
} 
body {
    font-family: 'Poppins', sans-serif !important;
    background-color: #0c0c0f !important;
    margin-left: 170px !important;
    margin-right: 30px !important;
}
body, html {
    height: 100%;
    background: #0c0c0f !important;
}
a {
    color: #fff;
    text-decoration: none;
}
p,
span,
h1,
h2,
h3,
h4,
h5 {
    color: #fff;
}
a:hover {
    color: var(--main-color) !important;
}
* {
    transition: all .3s ease-in-out;
}
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-thumb {
    background: var(--main-color);
}
::-webkit-scrollbar-track {
    background: #0F0F13;
}
::selection {
    background-color: var(--main-color);
    color: #fff;
}

/* Mobile Navbar */
.navbar-toggle {
    display: none;
    padding: 20px;
    position: relative;
    z-index: 88;
}
.navbar-toggle img {
    width: 50px;
    border-radius: 12px;
    cursor: pointer;
}
.mobile-nav {
    transform: translate(-100%);
    left: 0;
    top: 0;
    bottom: 0;
    min-width: 250px;
    max-width: 100%;
    width: auto;
    position: fixed;
    z-index: 200000;
    transition: all .10s ease-in-out;
    background-color: #181818;
    border-radius: 0 12px 12px 0;
}
.mobile-nav.active {
    transform: translate(0%);
}
.mobile-nav-header {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    background: var(--main-color);
    padding: 1.3rem;
    border-radius: 0 12px 0 0;
}
.mobile-nav-header h1 {
    color: #fff;
    text-decoration: none;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin: 0;
    padding: 0;
    font-size: 1.3rem;
}
.navbar-toggle-remove button {
    background: #181818;
    border: none;
    color: #fff;
    border-radius: 5px;
}
.mobile-nav ul {
    list-style-type: none;
    margin: .75rem 0 0;
    padding: 0;
}
.mobile-nav-link a {
    margin: 1.5em 1.2rem !important;
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 1.3rem !important;
    padding: .4rem 0 !important;
    font-weight: 600 !important;
    color: #fff !important;
}
.mobile-nav-link-dropdown {
    margin: -10rem 1.2rem 0.75rem !important;
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 1.3rem !important;
    padding: .4rem 0 !important;
    font-weight: 600 !important;
    color: #fff !important;
}
.mobile-nav-link i {
    margin: 0 15px 0 0;
}
.mobile-user {
    display: flex;
    align-items: center;
    flex-flow: row-reverse;
    padding: 10px 20px;
    justify-content: space-between;
    color: #fff !important;
}
.mobile-user img {
    width: 50px;
    border-radius: 10px;
}
.mobile-nav-link.active a, .nav-link.active a {
    color: #fff;
    font-weight: 600;
}
.mobile-sep {
    display: block;
    height: 2px;
    background-color: rgba(255,255,255,.1);
    margin: 1rem 0 1rem 0;
}
.mobile-overlay {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.5);
    z-index: -1;
    position: fixed;
    transition: .10s;
    display: none;
    opacity: 0;
}
.mobile-social-nav {
    display: flex;
    font-size: 1.5rem;
    color: rgb(255,255,255,0.1);
    flex-direction: row;
    align-items: center;
    margin: 30px 0;
    justify-content: center;
}
.mobile-social-nav li {
    margin: 0 1rem;
}
/* Warnings */
.ui.attached.negative.message, .ui.negative.message, .ui.attached.warning.message, .ui.warning.message, .ui.attached.success.message, .ui.success.message, .ui.attached.info.message, .ui.info.message, .ui.attached.error.message, .ui.error.message {
    color: #fff;
    background: #131313;
    border-width: 1px;
    border-style: solid;
    border-top-color: var(--main-color);
    border-right-color: var(--main-color);
    border-bottom-color: var(--main-color);
    border-left: 3px solid var(--main-color);
    border-radius: 8px;
    margin: 25px 0;
    font-size: 13px;
    text-align: left;
    box-shadow: none;
}
/* Header */
.eternity-header {
    position: relative;
    background: var(--header-url) no-repeat center center;
    height: var(--header-height);
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    margin: -22px -40px;
    margin-bottom: 10px;
}
.eternity-header.faded::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--header-background);
    z-index: 1;
}
.eligius-header {
    position: relative;
    z-index: 888;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 70px;
    margin: 0 -60px;
}
.eligius-header .eternity-element {
    flex-grow: 1;
    width: 33%;
}
.eligius-header .eternity-element:nth-of-type(2) {
    display: flex;
    align-items: center;
    justify-content: center;
}
.eligius-header .eternity-element:nth-of-type(3) {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.eternity-element.logo img {
    padding: 30px;
    height: 230px;
}
.eternity-element.discord, .eternity-element.minecraft {
    display: flex;
    align-items: center;
    margin-top: auto;
    //padding: 10px 30px;
    cursor: pointer;
    text-decoration: none;
    color: #fff;
    transition: all .17s linear;
}
.minecraft-status-icon, .discord-status-icon {
    font-size: 4rem;
    color: var(--main-color);
    filter: drop-shadow(0px 0px 50px var(--main-color));
}
.eternity-element.discord:hover, .eternity-element.minecraft:hover {
    transform: scale(1.1);
}
.minecraft-status-content  {
    margin-left: 20px;
}
.discord-status-content {
    margin-right: 20px;
}
.minecraft-status-title span, .discord-status-title span {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 17px;
    color: var(--main-color) !important;
}
.minecraft-status-online {
    text-transform: uppercase;
    font-weight: 500;
    color: rgb(255,255,255,0.5);
}
.discord-status-online {
    text-align: end;
    text-transform: uppercase;
    font-weight: 500;
    color: rgb(255,255,255,0.5);
}
#particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.navbar-mc-dsc {
    color: #fff;
    font-weight: 600;
}
/* HEADER */
.silkyHeader {
    position: relative;
    background: var(--header-url) no-repeat center center;
    height: var(--header-height);
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    margin: -22px -40px;
}
.dropdownlinkz {
      box-sizing: border-box;
    width: 70px;
    height: 40px;
    background: rgb(15, 15, 19,0.5);
    border-radius: 10px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-weight: 600;
    border: 3px solid rgb(15, 15, 19);
    color: #fff;
    font-size: 0.75rem !important;
}
.partHeader {
    background: var(--header-background);
    height: 100%;
}
.aorakiContainer {
    display: flex;
    left: 0;
    top: 0;
    right: 0;
    position: absolute;
    max-width: 100%;
    width: 100%;
    z-index: 10;
    justify-content: center;
    margin-top: -30px;
}
.aorakiMinecraft {
    flex: 1;
    z-index: 1;
    width: fit-content;
    height: fit-content;
    transition: transform 0.5s ease, opacity 0.5s ease, -webkit-transform 0.5s ease;
}
.item {
    color: #fff !important;
}
.aorakiMinecraft:hover {
    opacity: 0.8;
    cursor: pointer;
    transform: translateX(10px);
}
.aoraki-status-txt, .aoraki-ds-txt {
    margin-top: 203.5px;
}
.aoraki-status-txt {
    color: #ababab;
    text-align: right;
    z-index: 1000;
    transition: .5s;
    display: flex;
    float: right;
    background: var(--sec-color);
    padding: 10px 30px;
    border-radius: 10px;
    box-shadow: var(--border-box);
}
.top-text {
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 3.5px;
    font-size: 1rem;
}
.bottom-text {
    font-weight: 600;
    text-transform: uppercase;
    color: rgba(255,255,255,.75);
    font-size: 17.6px;
    font-size: .8rem;
    margin-top: 0;
    overflow: hidden;
    height: 20px;
}
.aoraki-status-txt .icon {
    fill: var(--main-color);
    height: 54px;
    width: 54px;
    margin-left: 10px;
    margin-top: -5px;
}
.aorakiDiscord {
    flex: 1;
    z-index: 1;
    transition: transform 0.5s ease, opacity 0.5s ease, -webkit-transform 0.5s ease;
}
.aorakiDiscord:hover {
    opacity: 0.7;
    transform: translateX(-10px);
}
.aorakiDiscord a {
    width: fit-content;
    display: block;
    margin-left: 50px;
    height: fit-content;
}
.aoraki-ds-txt {
    color: #ababab;
    text-align: left;
    margin-left: -50px;
    z-index: 100000;
    transition: .5s;
    display: flex;
    padding: 10px 30px;
    border-radius: 10px;
}
.aoraki-ds-txt .icon {
    fill: var(--main-color);
    height: 54px;
    width: 54px;
    margin-right: 10px;
    margin-left: -15px;
    margin-top: -5px;
}
.aorakiLogo {   
    height: 100px;   
    text-align: center;   
    -webkit-animation: mover 2s infinite  alternate;
    animation: mover 2s infinite  alternate;
  	z-index: -1;
}  
.aorakiLogo img { 
    vertical-align: middle;
    margin: 100px 0;
  	z-index: -1;
}
@-webkit-keyframes mover {
    0% { transform: translateY(20px); }
    100% { transform: translateY(30px); }
}
@keyframes mover {
    0% { transform: translateY(20px); }
    100% { transform: translateY(30px); }
}
/***************/
/* NAVBAR */
.silkyNav {
    background: #09090C/*#0D0D10*/;
    width: 132px;
    display: flex;
    height: 100vh;
    position: fixed;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
    padding: 50px 0;
    left: 0;
    top: 0;
    border-right: 3px solid rgb(15, 15, 19);
}
.silkyItem {
    box-sizing: border-box;
    width: 70px;
    height: 40px;
    background: rgb(15, 15, 19,0.5);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-weight: 600;
    border: 3px solid rgb(15, 15, 19);
}
.silkyItem:hover {
    background: var(--main-color);
}
.silkyNav a {
    color: #fff !important;
}
.silkyIActive {
    background: var(--main-color);
}
.silkyUser {
    display: flex;
    flex-direction: column;
    flex: 1 1;
    justify-content: end;
}
.silkyUser img {
    width: 60px !important;
    height: 60px !important;
    border-radius: 10px !important;
}
.silkyUAvatar {
    margin-bottom: -5px;
    justify-content: center;
    display: flex;
}
.silkyMobileNav {
    background-color: var(--main-color);
    padding: 20px;
    margin: 0 -30px;
    display: none;
    overflow: auto;
    white-space: nowrap;
}
.silkyMobileLinks {
    list-style: none;
    font-weight: 600;
    text-align: center;
}
.silkyMobileLinks a {
    display: inline-block;
    padding: 0 15px;
}
.silkyMobileUser {
    background-color: var(--main-color);
    text-align: center;
    margin: 0 -30px 20px;
    padding: 20px;
    display: none;
}
.ui.image.label {
    width: auto;
    margin-top: 0;
    margin-bottom: 0;
    max-width: 9999px;
    vertical-align: baseline;
    text-transform: none;
    background: var(--main-color);
    padding: 0.5833em 0.833em 0.5833em 0.5em;
    border-radius: 0.28571429rem;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.ui.labels a.label:hover, a.ui.label:hover {
    background-color: var(--main-color);
    border-color: #e0e0e0;
    background-image: none;
    color: #fff !important;
}
@media screen and (max-width: 979px) {
    .silkyMobileNav, .silkyMobileUser {
        display: block;
      	z-index: 99999;
    }
}
/**********************************/

/* FORUM NODE */
.forumIndex {
    margin: 15px 0 !important;
}
.block-container {
    padding-bottom: 50px;
    background: transparent;
}
.description {
    color: #ababab;
}
.forumNode {
    padding: 1.5rem !important;
    border: none;
    background: rgba(4,4,4, 0.5);
    margin: 0 15px;
}
.mainTitle {
    margin: -10px 0 30px !important;
    padding: 15px 14px 16px !important;
    border-radius: 10px;
    margin-bottom: 10px;
    font-weight: 700;
    background: rgba(4,4,4, 0.5);
    border-right: 4px solid var(--main-color) !important;
    border-left: 4px solid var(--main-color) !important;
}
.mainTitle-widget {
    padding: 15px 14px 16px !important;
    border-radius: 10px;
    margin-bottom: 10px;
    font-weight: 700;
    background: rgba(4,4,4, 0.5);
    border-right: 4px solid var(--main-color) !important;
    border-left: 4px solid var(--main-color) !important;
}
.ui.tabular.menu .active.item {
    background: none var(--main-color);
    color: #fff;
    border-top-width: none;
    border-color: #d4d4d5;
    font-weight: 700;
    margin-bottom: auto;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0.28571429rem 0.28571429rem 0 0!important;
}
.ui.tabular.menu .item {
  color: #ababab !important;
  border: none !important;
}
.ui.attached.menu:not(.tabular) {
    border: none !important;
}
.ui.small.modal>.header:not(.ui) {
    font-size: 1.3em;
    background: #0c0c0f !important;
    color: #fff !important;
}
.ui.modal {
    background: #090909c !important;
}
.ui.modal>.content {
    background: #090909 !important;
}
.ui.modal>.actions {
    background: #0c0c0f !important;
    padding: 1rem 1rem;
    border-top: 1px solid rgba(34,36,38,.15);
    text-align: right;
}
.rowz {
    padding: 0;
    list-style: none;
    margin: 5px 0;
}
.gridz {
    display: grid;
    grid-template-columns: repeat(3, 33%);
    font-size: 12px;
}
.gridz a {
    color: #ababab !important;
}
.forumTitle {
    font-size: 18.0px !important;
    font-weight: 600 !important;
}
.forumDesc {
    color: #ababab;
    line-height: 1.5rem;
}
.forumIcon {
    color: var(--main-color);
}
.ui.header {
    color: #fff;
}
.ui.card {
    background: rgba(4,4,4, 0.5);
    color: #fff !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 10px;
}
.ui.card > .content > .description, .ui.card > .content, .ui.card > .content > .header {
    color: #fff !important;
    font-weight: 600;
}
/**********************************/

/* WIDGET */
.ui.list .list>.item .description, .ui.list>.item .description {
    display: block;
    color: #ababab;
}
.widgetTitle {
    padding: 10px 10px;
    background-color: var(--main-color);
    border-radius: 10px;
}
.ui.list .list>.item [class*="right floated"], .ui.list>.item [class*="right floated"] {
    float: right;
    margin: 0;
}
/**********************************/

/* INPUTS */
.ui.form input:not([type]), .ui.form input[type=date], .ui.form input[type=datetime-local], .ui.form input[type=email], .ui.form input[type=file], .ui.form input[type=number], .ui.form input[type=password], .ui.form input[type=search], .ui.form input[type=tel], .ui.form input[type=text], .ui.form input[type=time], .ui.form input[type=url] {
    font-family: Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;
    margin: 0;
    outline: 0;
    -webkit-appearance: none;
    -webkit-tap-highlight-color: rgba(255,255,255,0);
    line-height: 1.21428571em;
    padding: 0.67857143em 1em;
    font-size: 1em;
    background: rgba(4,4,4, 0.5);
    border: none !important;
    color: #fff;
    border-radius: 0.28571429rem;
    -webkit-box-shadow: 0 0 0 0 transparent inset;
    box-shadow: 0 0 0 0 transparent inset;
    -webkit-transition: color .1s ease,border-color .1s ease;
    transition: color .1s ease,border-color .1s ease;
}
.ui.primary.button, .ui.primary.buttons .button {
    background-color: var(--main-color);
    color: #fff;
    text-shadow: none;
    background-image: none;
}
.ui.selection.dropdown {
    background: rgba(4,4,4, 0.5);
    color: #fff;
}
.ui.selection.visible.dropdown>.text:not(.default) {
    font-weight: 400;
    color: #fff;
}
.ui.dropdown .menu .selected.item, .ui.dropdown.selected {
    background: rgba(0,0,0,.03);
    color: #fff;
}
.ui.form .field>.selection.dropdown {
    min-width: auto;
    width: 100%;
    border: none !important;
}
.ui.selection.active.dropdown .menu {
    border-color: transparent;
    -webkit-box-shadow: 0 2px 3px 0 rgb(34 36 38 / 15%);
    box-shadow: 0 2px 3px 0 rgb(34 36 38 / 15%);
}
.ui.selection.dropdown .menu>.item {
    border-top: 1px solid transparent;
    padding: 0.78571429rem 1.14285714rem!important;
    white-space: normal;
    word-wrap: normal;
}
/**********************************/

/* PROFILE */
#profile-header {
    margin: 0 -14px;
    padding: 5rem;
    box-shadow: none !important;
}
.profile-feed {
    background: rgba(4,4,4, 0.5);
    box-shadow: var(--border-box);
}
.ui.list .list>.item .header, .ui.list>.item .header {
    color: #fff !important;
}
.header {
    color: #ffff;
    font-weight: 600;
}
.profileIcon{
    color: var(--main-color);
    font-size: 20px;
}
.profileFields {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    text-align: center;
}
.profile-feed-active {
    background-color: rgba(4,4,4, 0.5) !important;
    box-shadow: none !important;
    margin: 10px 0 !important;
}
.profile-btns {
    border-radius: 0.28571429rem 0 0 0;
    color: #fff !important;
    background: rgb(15, 15, 19,0.5) !important;
    position: relative;
    font-size: 1.15rem;
    color: rgba(255,255,255,.8);
    margin: 0.75rem 1rem;
    font-weight: 600 !important;
    font-family: 'Poppins';
    text-transform: uppercase !important;
    border: 3px solid rgb(15, 15, 19) !important;
    border-radius: 10px;
}
.no-border {
    border: none !important;
}
.ui.attached.segment {
    border: none !important;
}
.ui.tabular.menu .active.item {
    background: none #fff;
    color: rgba(0,0,0,.95);
    border-top-width: 1px;
    border-color: #d4d4d5;
    font-weight: 700;
    margin-bottom: auto;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0.28571429rem 0.28571429rem 0 0!important;
}
.ui.segment {
    background: rgba(4,4,4, 0.5) !important;
    border-radius: 0.28571429rem;
    border: none;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}
.ui.comments .comment .text {
    margin: 0.25em 0 0.5em;
    font-size: 1em;
    word-wrap: break-word;
    color: #ababab;
    line-height: 1.3;
}
.ui.comments .comment .actions a {
    cursor: pointer;
    display: inline-block;
    margin: 0 0.75em 0 0;
    color: #ababab;
}
.ui.pagination.menu .active.item {
    border-top: none;
    padding-top: 0.92857143em;
    background-color: var(--main-color);
    color: #fff;
    -webkit-box-shadow: none;
    box-shadow: none;
    font-weight: 600;
}
.ui.ui.menu .item.disabled {
    cursor: default;
    background-color: transparent;
    color: #707481;
    pointer-events: none;
}
.ui.menu .item {
    color: #707481;
}
.ui.menu {
    background: rgb(15, 15, 19,0.5);
}
.ui.form textarea, .ui.input textarea {
    background: #09090C;
}
.ui.form textarea:focus {
    color: #ababab;
    border-color: transparent;
    border-radius: 0.28571429rem;
    background: #09090C;
    -webkit-box-shadow: 0 0 0 0 rgb(34 36 38 / 35%) inset;
    box-shadow: 0 0 0 0 rgb(34 36 38 / 35%) inset;
    -webkit-appearance: none;
}
/**********************************/

/* NEWS */
.header-news {
    background: var(--main-color);
    color: #fff!important;
    padding: 20px;
    text-align: left;
    font-weight: bold;
    font-size: 18px;
    display: flex;
    flex: 1 1;
    flex-direction: column;
}
.newsTimeAgo {
    font-size: 10px;
}
/**********************************/

/* FOOTER */
.ui.footer.segment {
  margin: 5rem -30px -.5rem -40px;
  padding: 3em 0;
}
.inner {
    margin: 0 auto;
    max-width: 1200px;
    width: 100%;
}
#footer .footer-col {
    display: flex;
}
#footer .footer-col .left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#footer .footer-col .left img {
    width: 120px;
    margin: 20px -20px 0;
    opacity: 0.3;
}
#footer .footer-col .right {
    margin-left: auto;
    display: flex;
    align-items: center;
    margin-top: 15px;
}
#footer .footer-col h1 {
    font-size: 17px;
    color: #b9bcca;
    margin-bottom: 10px;
}
#footer .footer-col p {
    line-height: 16px;
    font-weight: 700;
    font-size: 13px;
    color: #7d899ac9;
}
#footer .footer-col .right ul {
    display: flex;
    list-style: none;
    padding: 0px;
    gap: 20px;
}
#footer .footer-col .right ul > li {
    padding: 0px;
    line-height: 1;
    margin: 0px;
}
#footer .footer-col .right ul > li > a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--main-color);
    border-radius: 7px;
    font-size: 20px;
}
/*********************************/

/* TOPICS */
.ui.breadcrumb {
    display: block;
    line-height: 1.4285em;
    vertical-align: middle;
    padding: 20px !important;
    background: #09090C;
    border-radius: 8px;
    border: 3px solid rgb(15, 15, 19) !important;
    margin-bottom: 15px;
    margin-top: 50px !important;
    color: #ff;
}
.ui.attached.warning.message, .ui.warning.message, .ui.attached.success.message, .ui.success.message,
.ui.attached.info.message, .ui.info.message, .ui.attached.error.message, .ui.error.message {
    color: #fff;
    background: #09090C;
    border-width: 1px;
    border-style: solid;
    border-top-color: var(--main-color);
    border-right-color: var(--main-color);
    border-bottom-color: var(--main-color);
    border-left: 3px solid var(--main-color);
    border-radius: 8px;
    margin: 25px 0;
    font-size: 13px;
    text-align: left;
    box-shadow: none;
}
.ui.breadcrumb a {
    color: #707481;
}
.ui.header .sub.header {
    color: #707481;
}
.ui.list .list>a.item>i.icon, .ui.list .list>a.item>i.icons, .ui.list>a.item>i.icon, .ui.list>a.item>i.icons {
    color: var(--main-color);
}
.ui.list .list>.item>i.icon, .ui.list>.item>i.icon {
    color: var(--main-color);
}
.silkyField {
    background-color: var(--main-color);
    height: 50px;
    position: relative;
    margin: 0 auto;
    margin-top: 5px;
    line-height: 50px !important;
    border-radius: 4px;
    padding: 0 20px;
}
.ui.buttons .or:before {
    background-color: #090909;
    color: #fff;
    font-weight: 500;
}
.ui.secondary.menu {
    background: transparent !important;
    padding: 10px;
    margin: 0;
}
.ui.grid>.row>[class*="middle aligned"].column, .ui.grid>[class*="middle aligned"].column:not(.row), .ui.grid>[class*="middle aligned"].row>.column, .ui[class*="middle aligned"].grid>.column:not(.row), .ui[class*="middle aligned"].grid>.row>.column {
    color: #fff !important;
}
.ui.table {
    width: 100%;
    background: transparent;
    margin: 1em 0;
    border: 1px solid rgba(34,36,38,.15);
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0.28571429rem;
    text-align: left;
    vertical-align: middle;
    color: #ababab;
    border-collapse: separate;
    border-spacing: 0;
}
.badges {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    margin: -0.25rem;
    margin-top: 0.25rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
}
.badge {
    display: inline-block;
    line-height: 1;
    vertical-align: baseline;
    margin: 5px 2px;
    background-color: #e8e8e8;
    background-image: none;
    padding: 0.5833em 0.833em;
    color: rgba(0,0,0,.6);
    text-transform: none;
    font-size: .85714286rem;
    font-weight: 700;
    border: 0 solid transparent;
    border-radius: 0.28571429rem;
    -webkit-transition: background .1s ease;
    transition: background .1s ease;
}
#topic-post #post-sidebar .ui.small.image, #topic-reply #reply-sidebar .ui.small.image {
    width: 150px;
    border-radius: 0px;
}
#topic-post #post-sidebar:after, #topic-reply #reply-sidebar:after {
    content: "";
    height: 0;
    border: 8px solid transparent;
    border-right: 8px solid #09090C !important;
    position: absolute;
    top: 75px;
    right: -1px;
}

.tox :not(svg):not(rect) {
    box-sizing: inherit;
    color: #fff !important;
    cursor: inherit;
    direction: inherit;
    font-family: inherit;
    font-size: inherit;
    font-style: inherit;
    font-weight: inherit;
    line-height: inherit;
    -webkit-tap-highlight-color: inherit;
    text-align: inherit;
    text-decoration: inherit;
    text-shadow: inherit;
    text-transform: inherit;
    vertical-align: inherit;
    white-space: inherit;
}

.tox-tinymce {
    border: none !important;
    border-radius: 0;
    box-shadow: none;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
    overflow: hidden;
    position: relative;
    visibility: inherit!important;
}
.tox .tox-toolbar {
    background-color: #09090C !important;
}
.tox .tox-tbtn {
    color: #fff !important;
}
.tox .tox-tbtn:hover,
.tox .tox-tbtn--enabled,
.tox .tox-split-button:focus,
.tox .tox-edit-area__iframe {
    background: #fff !important;
    color: #fff !important;
}
.tox .tox-tbtn svg {
    fill: #fff !important;
}
.tox .tox-menu,
.tox .tox-statusbar,
.tox .tox-menubar,
.tox .tox-toolbar,
.tox .tox-toolbar__overflow,
.tox .tox-toolbar__primary,
.tox .tox-dialog,
.tox .tox-dialog__header,
.tox .tox-dialog__footer,
.tox .tox-listboxfield .tox-listbox--select,
.tox .tox-textarea,
.tox .tox-textfield,
.tox .tox-toolbar-textfield,
.tox .tox-selectfield select {
    background-color: #09090C !important;
    border: none !important;
}
.tox .tox-dialog-wrap__backdrop {
    background-color: rgba(34, 34, 34, 0.7)!important;
}
.tox .tox-collection--list .tox-collection__item--enabled {
    background-color: #444!important;
}
.tox .tox-collection--list .tox-collection__item--active {
    background-color: #666!important;
}
.mce-content-body {
    overflow-wrap: break-word;
    word-wrap: break-word;
    color: #fff !important;
}
.ui.button {
    background: var(--main-color) none;
    color: #Fff;
}
.silkyTView {
    box-shadow: ;
}

/*********************************/

.ui.form .field>label {
    display: block;
    margin: 0 0 0.28571429rem 0;
    color: #fff;
    font-size: .92857143em;
    font-weight: 700;
    text-transform: none;
}
.ui.divider {
    margin: 1rem 0;
    line-height: 1;
    height: 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #fff;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}
.ui.checkbox label, .ui.checkbox+label {
    color: #707481 ;
    -webkit-transition: color .1s ease;
    transition: color .1s ease;
}
.ui.checkbox label, .ui.checkbox+label {
    color: #707481!important;
    -webkit-transition: color .1s ease;
    transition: color .1s ease;
}
.ui.primary.button:hover, .ui.primary.buttons .button:hover {
    background-color: var(--main-color);
    color: #fff;
    text-shadow: none;
}
.tox:not([dir=rtl]) .tox-toolbar__group:not(:last-of-type) {
    border-right: none !important;
}
body#tinymce {
    color: #fff !important;
}
tox .tox-tbtn--enabled, .tox .tox-tbtn--enabled:hover {
    background: #09090C;
    border: 0;
    box-shadow: none;
    color: #222f3e;
}
.ui.popup {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    min-width: -webkit-min-content;
    min-width: -moz-min-content;
    min-width: min-content;
    z-index: 1900;
    border: 1px solid #090909;
    line-height: 1.4285em;
    max-width: 250px;
    background: #090909;
    padding: 0.833em 1em;
    font-weight: 400;
    font-style: normal;
    color: #ababab;
    border-radius: 0.28571429rem;
    -webkit-box-shadow: 0 2px 4px 0 rgb(34 36 38 / 12%), 0 2px 10px 0 rgb(34 36 38 / 15%);
    box-shadow: 0 2px 4px 0 rgb(34 36 38 / 12%), 0 2px 10px 0 rgb(34 36 38 / 15%);
}
.ui.bottom.popup:before {
    background: #090909;
}
.ui.bottom.left.popup:before {
    top: -0.30714286em;
    left: 1em;
    right: auto;
    bottom: auto;
    margin-left: 0;
    -webkit-box-shadow: -1px -1px 0 0 var(--main-color);
    box-shadow: -1px -1px 0 0 var(--main-color);
}
.ui.top.popup:before {
    background: #090909;
}
.ui.popup:before {
    position: absolute;
    content: '';
    width: 0.71428571em;
    height: 0.71428571em;
    background: #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    z-index: 1901;
    -webkit-box-shadow: 1px 1px 0 0 var(--main-color);
    box-shadow: 1px 1px 0 0 var(--main-color);
}
.ui.dropdown .menu {
    background: var(--main-color);
}
.ui.pointing.dropdown>.menu:not(.hidden):after {
    background: var(--main-color);
}
.ui.dropdown .menu>.item {
    font-weight: 600 !important;
    color: #fff;
}
.ui.dropdown .menu>.item:hover {
    color: #fff !important;
}
.ui.primary.active.button, .ui.primary.button .active.button:active, .ui.primary.buttons .active.button, .ui.primary.buttons .active.button:active {
    background-color: var(--main-color);
    color: #fff;
    text-shadow: none;
}
.ui.vertical.menu {
    background: rgba(4,4,4, 0.5);
}
.ui.menu .active.item {
    color: #fff;
    font-weight: 600;
}
.loader-wrapper {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #0F0F13;
  display:flex;
  justify-content: center;
  align-items: center;
  z-index: 20000000000;
}
.loader img {
  display: inline-block;
  width: 100px;
  position: relative;
  animation: loader 2s infinite ease;
}

canvas{ display: block; vertical-align: bottom; }
/* FIXES */
@media screen and (max-width: 979px) {
    body {
        margin-left: 30px !important;
    }
    .silkyNav {
        display: none;
    }
    .eligius-header {
        padding: 0;
    }
    .navbar-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin: 20px;
    }
    .mobile-nav.active {
        display: block;
    }
    .mobile-overlay.active {
        display: block;
        opacity: 1;
    }
    .eternity-header {
        height: 350px;
    }
    .eternity-element.discord, .eternity-element.minecraft {
        display: none !important;
    }
    .eternity-element.logo {
        margin: 20px;
    }
    .eternity-element.logo img {
        padding: 50px;
        height: 220px;
        margin-top: -20px;
    }
  	.aorakiMinecraft, .aorakiDiscord {
      display: none;
  }
    #footer .footer-col {
        display: flex;
        flex-direction: column;
    }
    #footer .footer-col .right {
      display: none;
    }
}