body {
    background: var(--theme-body-background);
    color: var(--theme-body-color);
    font-family: var(--theme-font-family);
}
img {
    max-width: 100%;
    height: auto;
  }
::-webkit-scrollbar {
    background: var(--theme-navbar-background);
    height: 10px;
    width: 10px;
}
::-webkit-scrollbar-thumb {
    background: var(--theme-button-background);
}
*::selection {
    background: rgba(255, 255, 255, 0.26);
}
img::selection {
    background: transparent;
}
a {
    text-decoration: none;
}
#navbarContainer {
    z-index: 10;
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    transition: all ease 0.3s;
}
#navbarContainer.style-1 {
    padding-top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#navbarContainer.style-1.sticky {
    padding-top: 0;
}
#navbarContainer.style-1 .navbar-left {
    display: flex;
    align-items: center;
}
#navbarContainer .navbar-right {
    display: flex;
    align-items: center;
}
#navbarContainer.style-1 .navbar-logo {
    max-height: 64px;
    margin-right: 20px;
    min-width: 40px;
}
#navbarContainer.style-1 .navbar-item {
    position: relative;
    display: inline-block;
    padding: 20px 0;
    font-size: 20px;
    margin: 0 10px;
    color: var(--theme-body-color);
}
#navbarContainer.style-1 .navbar-item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    border-radius: 3px;
    width: 0;
    background: var(--theme-button-background);
    transition: all ease 0.3s;
}
#navbarContainer.style-1 .navbar-item:hover::after,
#navbarContainer.style-1 .navbar-item.active::after {
    width: 100%;
    transition: all ease 0.3s;
}
#navbarContainer.style-1 .navbar-btn {
    margin-left: 10px;
}

/** Navbar left dropdown **/
#navbarContainer .navbar-dropdown {
    position: relative;
    display: inline-block;
}
#navbarContainer .navbar-dropdown-btn:focus::after {
    width: 100%;

    transition: all ease 0.3s;
}
#navbarContainer .navbar-dropdown-btn .arrow::before {
    margin-left: 10px;
    font-size: 10px;
    transform:scale(1.5) rotate(0);
    transform-origin: center;
    transition: all ease 0.3s;
}
#navbarContainer .navbar-dropdown-btn:focus .arrow::before {
    transform: scale(1.5) rotate(180deg);
    transform-origin: center;
    transition: all ease 0.3s;
}
#navbarContainer .navbar-dropdown-btn:focus + .navbar-dropdown-body {
    top: 100%;
    visibility: visible;
    opacity: 1;
    transition: all ease 0.3s;
}
#navbarContainer .navbar-dropdown-body {
    background: var(--theme-dropdown-background);
    position: absolute;
    top: calc(100% + 10px);
    border-radius:20px;
    left: 0;
    right: 0;
    width: 200px;
    opacity: 0;
    overflow: hidden;
    padding: 5px 0;
    visibility: hidden;
    white-space: nowrap;
    min-width: 100%;
    transition: all ease 0.3s;
}
#navbarContainer .navbar-dropdown-item {
    display: block;
    padding: 5px 25px;
    border-left: 3px solid transparent;
    color: var(--theme-color);
    transition: all ease 0.2s;
}
#navbarContainer .navbar-dropdown-item:hover {
    border-color: var(--theme-button-background);
    transition: all ease 0.2s;
}
/** Navbar Right dropdown **/
#navbarContainer .navbar-right .navbar-dropdown-btn {
    position: relative;
    display: flex;
    align-items: center;
    padding: 5px 15px;
    color: var(--theme-color);
    background: var(--theme-dropdown-background);
    border-radius: 100px;
    transition: all ease 0.3s;
}
#navbarContainer .navbar-right .navbar-dropdown-btn:focus {
    background: transparent;
}
#navbarContainer .navbar-right .navbar-dropdown-img {
    height: 20px;
    margin: 0 10px 0 0;
}
#navbarContainer .navbar-right .navbar-dropdown-body {
    right: 0;
    left: auto;
    transition: all ease 0.3s;
}
#navbarMobileContainer {
    position: fixed;
    max-height: 100vh;
    overflow-y: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.514);
    padding: 50px;
    opacity: 0;
    visibility: hidden;
    z-index: 10;
    transition: all ease 0.3s;
}
#navbarMobileContainer .navbar-title {
    text-align: center;
    font-weight: bold;
    margin-bottom: 40px;
}
#navbarMobileContainer.active {
    opacity: 1;
    visibility: visible;
    transition: all ease 0.3s;
}
/* HOME HEADER */
#homeHeader {
    position: relative;
}
#homeHeader .header-badge {
    font-weight: bold;
}
#homeHeader .badge-circle {
    color: var(--theme-button-background);
    font-size: 11px;
}
#homeHeader .badge-value {
    color: var(--theme-button-background);
    font-size: 17px;
}
#homeHeader .header-divider {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 1;
}
#homeHeader.style-1 {
    height: calc(100vh);
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-attachment: fixed;
    position: relative;
}
#homeHeader.style-1 .header-content {
    text-align: center;
    position: relative;
    z-index: 2;
}
#homeHeader.style-1 .header-title {
    font-weight: bold;
}
#homeHeader.style-1 .header-logo {
    width:500px;
    max-width: 200px;
}
#homeHeader.style-1 .header-socials {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}
#homeHeader.style-1 .header-btns {
    display: flex;
    align-items: center;
    margin-top: 10px;
    justify-content: center;
}
#homeHeader.style-2 .header-content {
    max-width: 1000px;
    margin: auto;
    height: calc(100vh);
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-attachment: fixed;
    position: relative;
}
#homeHeader.style-2 .content-informations {
}
#homeHeader.style-2 .header-title {
    font-weight: bold;
}
#homeHeader.style-2 .header-logo {
    width:500px;
    max-width: 300px;
    animation: float 6s ease-in-out infinite;
}
#homeHeader.style-2 .header-btns {
    display: flex;
    align-items: center;
}
#homeHeader.style-2 .header-socials {
    display: flex;
    position: relative;
    z-index: 2;
}
#homeHeader.style-3 .header-socials {
    display: flex;
    position: relative;
    z-index: 2;
}
#homeHeader.style-3 .header-content {
    max-width: 1000px;
    margin: auto;
    height: calc(100vh);
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-attachment: fixed;
    position: relative;
}
#homeHeader.style-3 .content-informations {
    margin-left:25px;
}
#homeHeader.style-3 .header-title {
    font-weight: bold;
}
#homeHeader.style-3 .header-logo {
    max-width: 300px;
    width: 500px;
    animation: float 6s ease-in-out infinite;
}
#homeHeader.style-3 .header-btns {
    display: flex;
    align-items: center;
}
/* Header general */
#homeHeader .header-btn {
    background: var(--theme-button-background);
    color: var(--theme-button-color);
    padding: 15px 20px;
    border: 0;
    font-weight: bold;
    border-radius: 15px;
    position: relative;
    transition: all ease 0.3s;
    animation: pulse 2s infinite;
}
#homeHeader .header-btn:hover {
    background: var(--theme-button-background-2);
    color: var(--theme-button-color);
    transition: all ease 0.3s;
}
#homeHeader .header-btn .ip {
    display: block;
    min-width: 150px;
    letter-spacing: 1.2px;
    transition: all ease 0.3s;
}
#homeHeader .header-btn:hover .ip {
    transform: translateY(-7px);
    transition: all ease 0.3s;
}
#homeHeader .header-btn .after {
    position: absolute;
    bottom: 5px;
    left: 0;
    opacity: 0;
    font-size: 12px;
    right: 0;
    transition: all ease 0.3s;
}
#homeHeader .header-btn:hover .after {
    opacity: 1;
    transition: all ease 0.3s;
}
#homeHeader .header-btn.btn-theme-second {
    color: var(--theme-button-second-color);
}
#homeHeader .socials-item {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border: 1px solid white;
    border-radius: 100%;
    margin-right: 10px;
    transition: all ease 0.3s;
}
#homeHeader .socials-item:hover {
    color: black;
    background: white;
    transition: all ease 0.3s;
}
/** banner header **/
#bannerHeader {
    position: relative;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
}
#bannerHeader .header-text {
    font-weight: bold;
    text-align: center;
    letter-spacing: 3px;
}
#bannerHeader .header-divider {
    bottom: 0;
    width: 100%;
    right: 0;
    left: 0;
    z-index: 1;
}
/** Home News **/
#homeNews {
    display: flex;
    height: 85vh;
    min-height: 400px;
}
#homeNews.header {
    height: 70vh;
}
#homeNews .news-active {
    position: relative;
    margin: 20px;
    flex: 0 0 70%;
    background: black;
    max-height: 100%;
    overflow: hidden;
}
#homeNews .news-active .img {
    background-size: cover;
    background-position: center center;
    height: 100%;
    transition: all ease 0.2s;
}
#homeNews .news-active:hover .img {
    transform: scale(1.05);
    opacity: 0.9;
    transition: all ease 0.2s;
}
#homeNews .news-active .informations {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: rgba(0, 0, 0, 0.418);
    transition: all ease 0.2s;
}
#homeNews .news-active:hover .informations {
    background: rgba(0, 0, 0, 0.651);
    transition: all ease 0.2s;
}
#homeNews .news-active .informations .title {
    margin: 0;
    max-width: 70%;
    color: white;
    font-weight: bold;
}
#homeNews .news-active .informations .text {
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-line-clamp: 2;
    max-height: 4rem;
    margin: 0;
    max-width: 70%;
    color: rgb(194, 194, 194);
    transition: all ease 0.2s;
}
#homeNews .news-active .informations .infobadge {
    background: var(--theme-button-background);
    color: var(--theme-button-color);
    font-weight: bold;
    padding: 5px 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    display: inline-block;
}
#homeNews .news-items {
    flex: 1;
}
#homeNews .news-item {
    display: block;
    position: relative;
    height: calc((100% / 3) - 27px);
    margin-top: 20px;
    background: black;
    margin-right: 20px;
    overflow: hidden;
}
#homeNews .news-item .img {
    background-size: cover;
    background-position: center center;
    height: 100%;
    transition: all ease 0.2s;
}
#homeNews .news-item:hover .img {
    transform: scale(1.05);
    opacity: 0.9;
    transition: all ease 0.2s;
}

#homeNews .news-item .informations {
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0;
    right: 0;
    padding: 10px;
    background: rgba(0, 0, 0, 0.651);
    transition: all ease 0.2s;
}
#homeNews .news-item:hover .informations {
    opacity: 1;
    transition: all ease 0.2s;
}
#homeNews .news-item .informations .title {
    margin: 0;
    color: white;
    font-weight: bold;
}
#homeNews .news-item .informations .text {
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-line-clamp: 2;
    font-size: 13px;
    margin: 0;
    max-height: 4rem;
    color: rgb(194, 194, 194);
    transition: all ease 0.2s;
}
.global-title {
    text-align: center;
    position: relative;
    font-weight: bold;
}
.global-title.left {
    text-align: left;
}
#homeNewsSlider .slide {
    min-height: 500px;
    margin: 0 100px;
    border-top: 10px solid var(--theme-button-background);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
    position: relative;
}
#homeNewsSlider .content {
    word-break: break-all;
    position: absolute;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: rgba(0, 0, 0, 0.377);
    max-width: 30%;
    backdrop-filter: blur(15px);
    transition: all ease 0.4s;
}
#homeNewsSlider .slide:hover .content {
    background: rgba(0, 0, 0, 0.753);
    transition: all ease 0.4s;
}
#homeNewsSlider .title {
    color: white;
    font-weight: bold;
}
#homeNewsSlider .text {
    margin-top: 30px;
}
#homeNewsSlider .content-btn {
    display: block;
}
/* home content header */
#footerStats {
    position: relative;
    background-attachment: fixed;
}
#footerStats .content-top-divider {
    top: 0;
    transform: rotate(180deg);
    left: 0;
    right: 0;
}
#footerStats .content-bottom-divider {
    bottom: 0;
    left: 0;
    right: 0;
}
#footerStats .content {
    display: flex;
    justify-content: center;
}
#footerStats .content-item {
    flex: 1;
    text-align: center;
}
#footerStats .item-title {
    color: var(--theme-button-background);
    font-size: 60px;
    font-weight: bold;
}
#footerStats .item-text {
    font-size: 20px;
}
/** home infos **/
#homeInfos .info-item {
    text-align: center;
    border-radius:100px;
    padding: 30px;
}
#homeInfos .info-item i {
    border-bottom: 5px solid var(--theme-button-background);
    padding: 20px;
    border-radius: 100%;
}
#homeInfos .item-icon {
    font-size: 60px;
    margin-bottom: 20px;
}
#homeInfos .item-title {
    font-weight: bold;
}
#homeInfos .item-text {
    opacity: 0.6;
}
#homeDescription {
    text-align: center;
}
#homeDescription p {
    text-align: center;
}
#homeDescription .title {
    font-weight: bold;
}
#homeDescription .text {
    opacity: 0.6;
}
#footer {
    padding: 20px 0;
    text-align: center;
}
#bigFooter .footer-text {
    opacity: 0.6;
}
#bigFooter .socials {
    display: flex;
    flex-direction: column;
}
#bigFooter .socials-item {
    display: inline-block;
    padding: 2px 0;
    color: var(--theme-button-background);
    font-weight: bold;
    text-transform: capitalize;
    transition: all ease 0.2s;
}
#bigFooter .socials-item:hover {
    color: var(--theme-button-background-2);
    transform: translateX(10px);
    transition: all ease 0.2s;
}
#bigFooter .socials-item i {
    margin: 0 10px;
    color: white;
    opacity: 0.6;
}
#bigFooter .socials-item .bi-circle-fill {
    color: var(--theme-button-background);
}
#bigFooter .section-title {
    position: relative;
    padding: 10px 0;
}
#bigFooter .section-title::after {
    position: absolute;
    content: "";
    top: 100%;
    left: 0;
    height: 3px;
    background: var(--theme-button-background);
    width: 50px;
    border-radius: 3px;
}
#profile .informations {
    border-radius: 5px;
    overflow: hidden;
    border: 2px solid var(--theme-button-background);
}
#profile .informations-title {
    text-align: center;
    background: var(--theme-button-background);
}
#profile .informations-content {
    padding: 10px;
}
#profile h6 {
    font-size: 13px;
}
#post .post-btn {
    display: flex;
    min-height: 44px;
    min-width: 44px;
    align-items: center;
    justify-content: center;
}
#post .comment-info {
    overflow: hidden;
    border-radius: 5px;
}
#post .comment-info-title {
    background: var(--theme-button-background);
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
#post .comment-info-content {
    border: 2px solid var(--theme-button-background);
    padding: 10px;
}
#post .comment-info h6 {
    font-size: 12px;
}
#cps .click-box {
    position: relative;
    background: black;
    height: 200px;
    border-radius: 30px;
    overflow: hidden;
}
#cps .click-second-box {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--theme-button-background);
    transition: all ease 0.3s;
}
#cps .click-stat {
    display: block;
    padding: 10px;
    border-radius: 10px;
    background: var(--theme-dropdown-background);
}
#cps .click-text {
    position: absolute;
    top: 50%;
    left: 50%;
    font-weight: bold;
    color: var(--theme-button-color);
    transform: translate(-50%, -50%);
}
#cps .click-text::selection {
    background: transparent;
}
#cps .click-text-2 {
    position: absolute;
    top: 50%;
    left: 50%;
    font-weight: bold;
    color: var(--theme-button-color);
    transform: translate(-50%, -50%);
    animation: flickerAnimation 1s infinite;
}
#cps .click-text-2::selection {
    background: transparent;
}
#cps .click-box:hover {
    cursor: pointer;
}
#forum i:not(.btn i) {
    color: var(--theme-button-background);
}

#forum .forum-info {
    overflow: hidden;
    border-radius: 5px;
}
#forum .forum-info-title {
    background: var(--theme-button-background);
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    padding: 0 10px;
}
#forum .forum-info-content {
    border: 2px solid var(--theme-button-background);
    padding: 10px;
}
#forum .forum-info h6 {
    font-size: 12px;
}
@media only screen and (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

@media only screen and (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
}

#homeTrailer {
    text-align: center;
}

#homeTrailer iframe {
    width: 800px;
    height: 443px;
    max-width: 100%;
    max-height: 25vw;
    overflow: hidden;
}
#homeTrailer.notext iframe {
    max-height: 40vw;
}
#navbarMobileOpen {
    display:none;
}
@media only screen and (max-width: 1000px) {
    .header-content {
        padding:0 50px;
    }
    /** news **/
    #homeNews .news-items {
        display: none !important;
    }
    #homeNews .news-active {
        flex: auto !important;
        width: 100%;
    }
    #homeNews {
        max-height: 40vh !important;
    }
    #homeNewsSlider .slide {
        margin: 0 !important;
        min-height: 400px;
    }
    #homeNewsSlider .content {
        max-width: 100%;
    }
}
@media only screen and (max-width: 900px) {
    .header-content {
        padding:0 0;
    }
    #navbarMobileOpen {
        display:inline-block;
    }
    /** topnav **/
    #navbarContainer .navbar-item {
        display: none !important;
    }
    /* home header */
    #homeHeader .header-btns {
        flex-direction: column;
    }
    #homeHeader .header-btn {
        margin: 0 !important;
        margin-bottom: 20px !important;
    }
    #homeHeader .header-socials {
        justify-content: center !important;
    }
    #homeHeader .header-description {
        padding: 0 20px !important;
    }
    #homeHeader .header-content {
        text-align: center !important;
        height: auto !important;
        min-height: auto;
        padding: 30px 0 !important;
    }
    #homeHeader.style-2 .header-content {
        flex-direction: column-reverse;
        justify-content: center;
    }
    #homeHeader.style-3 .header-content {
        flex-direction: column;
        justify-content: center;
    }
    #homeHeader .header-logo {
        max-width: 200px !important;
        margin-top: 50px !important;
    }

    /** footer **/
    #bigFooter {
        text-align: center;
    }
    #footerStats .content {
        display: block !important;
    }
    #bigFooter .section-title::after {
        display: none;
    }
    .classements {
        transform: scale(0.8);
    }
    #homeTrailer {
        position: relative;
        padding-bottom: 56.25%;
    }

    #homeTrailer iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        max-width: 800px;
        max-height: 443px !important;
    }

    #homeHeader.style-3 .content-informations {
        margin-left:0;
    }
}
.classement .name {
    text-shadow: 0 0 5px rgba(255, 255, 255, 0), 0 0 10px rgba(255, 255, 255, 0),
        0 0 15px rgba(255, 255, 255, 0), 0 0 20px #0000006e, 0 0 30px #00000060,
        0 0 40px #0000006c, 0 0 55px #00000079, 0 0 75px #00000065;
}
.classement img {
    display: block;
    margin: auto;
}
.classement .ranking {
    max-width: 100px;
    margin: auto;
}
.classement .ranking .fill {
    background-size: cover;
    display: flex;

    align-items: center;
    justify-content: center;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0), 0 0 10px rgba(255, 255, 255, 0),
        0 0 15px rgba(255, 255, 255, 0), 0 0 20px #0000006e, 0 0 30px #00000060,
        0 0 40px #0000006c, 0 0 55px #00000079, 0 0 75px #00000065;
    font-weight: bold;
}
.classement .ranking .fill i,
.classement .ranking .fill span {
    margin-top: 5px;
}
.classement h5 span {
    color: var(--theme-button-background);
}
.classement .ranking.one {
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
}
.classement .ranking.one .fill {
    padding: 25px 10px;
}
.classement .ranking.one {
    color: var(--body);
}
.classement .ranking.two {
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
}
.classement .ranking.two .fill {
    padding: 17px 10px;
}
.classement .ranking.two {
    color: rgb(196, 143, 0);
}
.classement .ranking.three {
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
}
.classement .ranking.three {
    color: #494949;
}
.classement .name:nth-child(1) {
    background: var(--theme-button-background);
    text-transform: uppercase;
}
#particles-js,
#particles-js-2,
#particles-js-3 {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
#loader {
    position: fixed;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--theme-body-background);
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    animation: load 1s forwards ease-in-out;
    transition: all ease 0.3s;
}
#loader img {
    width: 500px;
}

@keyframes load {
    0% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        visibility: hidden;
        transition: all ease 0.3s;
    }
}
.lds-dual-ring {
    display: inline-block;
    width: 80px;
    height: 80px;
}
.lds-dual-ring:after {
    content: " ";
    display: block;
    width: 64px;
    height: 64px;
    margin: 8px;
    border-radius: 50%;
    border: 6px solid #fff;
    border-color: #fff transparent #fff transparent;
    animation: lds-dual-ring 1.2s linear infinite;
}
@keyframes lds-dual-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.user-html-content img {
    max-width: 100%;
}
.calendar {
    background: linear-gradient(
            260deg,
            rgba(36, 36, 36, 0.123) 0%,
            rgba(0, 0, 0, 0.322) 100%
        ),
        url("https://i.ibb.co/6gHvCT1/h0k-LXJ5yliy-FQDxmgi-K05-ZX5-YOn7n-Cw-Fl4pj-MJJI.png");
    padding: 30px;
    background-size: cover;
    background-position: center center;
    border-radius: 15px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-top: 0;
    margin-top: 0 !important;
}
.calendar .door {
    background: rgba(255, 255, 255, 0.151);
    backdrop-filter: blur(13px);
    border-radius: 0;
    cursor: default;
}
.calendar .door.enabled {
    cursor: pointer;
}
.calendar .door.enabled:hover {
    animation: shake 1s;

    animation-iteration-count: infinite;
}
.calendar .door.enabled {
    background: var(--theme-button-background);
}
.calendar .door.enabled {
    background: url("/assets/themes/revolution/img/iron.png") !important;
    background-position: center center !important;
    background-size: 100% !important;
}
.calendar .door,
.calendar .door button {
    color: rgb(255, 255, 255) !important;
    text-shadow: var(--theme-button-background) 0px 0px 5px,
        var(--theme-button-background) 0px 0px 10px,
        var(--theme-button-background) 0px 0px 15px,
        var(--theme-button-background) 0px 0px 20px,
        var(--theme-button-background) 0px 0px 30px,
        var(--theme-button-background) 0px 0px 40px,
        var(--theme-button-background) 0px 0px 50px,
        var(--theme-button-background) 0px 0px 75px,
        0px 0px 20px rgba(255, 255, 255, 0);
}
.calendar .day-8 .door.enabled,
.calendar .day-20 .door.enabled {
    background: url("https://i.ibb.co/T46kjX6/Seamless-Christmas-Stripe-Pattern-Vector-Image.jpg") !important;
    background-position: left center !important;
    background-size: 100% !important;
}
.calendar .day-24 .door.enabled,
.calendar .day-23 .door.enabled,
.calendar .day-11 .door.enabled {
    background: url("/assets/themes/revolution/img/diamond.png") !important;
    background-position: center center !important;
    background-size: cover !important;
}
.calendar .day-10 .door.enabled,
.calendar .day-4 .door.enabled,
.calendar .day-2 .door.enabled {
    background: url("https://i.ibb.co/ky5C0gz/unnamed.png") !important;
    background-position: center center !important;
    background-size: cover !important;
}
.calendar .day-13 .door.enabled,
.calendar .day-14 .door.enabled,
.calendar .day-1 .door.enabled {
    background: url("/assets/themes/revolution/img/gold.jpg") !important;
    background-position: center center !important;
    background-size: cover !important;
}
.calendar .day-3 .door.enabled {
    background: url("https://i.ibb.co/jJ4Shhk/f344745bd37b52b4eaf0071e1160d070.jpg") !important;
    background-position: center center !important;
    background-size: cover !important;
}
.calendar .day-5 .door.enabled,
.calendar .day-19 .door.enabled {
    background: url("https://i.ibb.co/BGk64z0/unnamed.png") !important;
    background-position: center center !important;
    background-size: cover !important;
}
.calendar label {
    height: 115px;
}
.calendar-header {
    background: var(--theme-button-background);
    width: 96%;
    max-width: 900px;
    margin: 2% auto;
    margin-bottom: 0 !important;
    padding: 10px;
}
@keyframes shake {
    0% {
        transform: translate(1px, 1px) rotate(0deg);
    }
    10% {
        transform: translate(-1px, -2px) rotate(-1deg);
    }
    20% {
        transform: translate(-3px, 0px) rotate(1deg);
    }
    30% {
        transform: translate(3px, 2px) rotate(0deg);
    }
    40% {
        transform: translate(1px, -1px) rotate(1deg);
    }
    50% {
        transform: translate(-1px, 2px) rotate(-1deg);
    }
    60% {
        transform: translate(-3px, 1px) rotate(0deg);
    }
    70% {
        transform: translate(3px, 1px) rotate(-1deg);
    }
    80% {
        transform: translate(-1px, -1px) rotate(1deg);
    }
    90% {
        transform: translate(1px, 2px) rotate(0deg);
    }
    100% {
        transform: translate(1px, -2px) rotate(-1deg);
    }
}
.form-group {
    margin-bottom: 10px;
}
.nobg {
    background-color:transparent !important;
}
.text-primary {
    color:var(--theme-button-background) !important;
}
.notif-content {
    max-width:250px;
    word-break: break-all;
    white-space: normal;
}
hr {
    background-color:white;
}
.table-striped>tbody>tr:nth-of-type(odd)>* {
    color: white !important;
}
.table-hover>tbody>tr:hover>* {
    color: white !important;
}
#wiki .col-md-3 .card {
    margin-bottom:25px;
    transition: all ease 0.3s;
}
#wiki .col-md-3 .card i {
    font-size:100px !important;
}
#wiki .col-md-3 .card h2 {
    color:white;
    font-weight:bold;
}
#wiki .col-md-3 .card:hover {
    transform:scale(1.05);
    transition: all ease 0.3s;
}
#forum .card {
    text-align:start !important;
}
 .card-body, .card, .list-group-item,.card-header {
    background: var(--theme-navbar-background) !important;
}
#forum .card a,#forum .card i {
    color:var(--theme-button-background);
}
.card .list-group-item {
    text-align:start !important;
}
.dropdown-item:active {
    background:rgba(255, 255, 255, 0.062) !important;
}
.text-success {
    color:rgb(121, 230, 121) !important;
}
.alert .btn-close {
    filter: invert(0) grayscale(100%) brightness(200%);
}
@media only screen and (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
}
.header-description {
    max-width: 500px;
}
.editor-toolbar .table {
    width:auto !important;
}