* {
    padding: 0;
    margin: 0
}

*,
:after,
:before {
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    background: #000;
}

* {
    margin: 0;
    padding: 0;
}

canvas {
    width: 100%;
    height: 100%;
    position: absolute;
}

.version {
    font-size: 0.8rem;
    position: fixed;
    bottom: 55px;
    left: 25px;
}

.version a {
    text-decoration: none;
    color: #f5deb3;
}

.version a:hover {
    color: #f5e8d0;
}


#container {
    position: relative;
}

@media only screen and (max-width: 400px) {

    #game {
        height: 100% !important;
    }

    #ads {
        width: auto !important;
    }
}

/* try to handle mobile dialog */

canvas + * {
    z-index: 2;
}

.logo {
    display: block;
    max-width: 100vw;
    max-height: 70vh;
}

.progress {
    margin: 1.5em;
    border: 1px solid white;
    width: 50vw;
    display: none;
}

.progress .full {
    margin: 2px;
    background: white;
    height: 1em;
    transform-origin: top left;
}

#loader {
    position: absolute;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: black;
}

.spinner,
.spinner:after {
    border-radius: 50%;
    width: 5em;
    height: 5em;
}

.spinner {
    margin: 10px;
    font-size: 10px;
    position: relative;
    text-indent: -9999em;
    border-top: 1.1em solid rgba(255, 255, 255, 0.2);
    border-right: 1.1em solid rgba(255, 255, 255, 0.2);
    border-bottom: 1.1em solid rgba(255, 255, 255, 0.2);
    border-left: 1.1em solid #ffffff;
    transform: translateZ(0);
    animation: spinner-spin 1.1s infinite linear;
}

@keyframes spinner-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.submenu a {
    font-size: 0.8rem !important;
}


.oL {
    position: fixed;
    overflow-y: scroll;
    width: 100%;
}

.overlay.c {
    pointer-events: none;
    opacity: 0;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 997;
    right: 0;
    background-color: rgba(0, 0, 0, .5);
    transition: opacity .25s;
}

nav > ul {
    list-style: none;
    scrollbar-width: none;
}

nav > ul::-webkit-scrollbar {
    width: 0;
}

nav a {
    text-decoration: none;
}

.nav {
    padding: 50px;
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    left: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    max-width: 350px;
    width: 100%;
    background-color: #2f2e34;
    transform: translateX(-100%);
    transition: transform 0.2s ease;
    z-index: 1000;
}

.nav-container {
    overflow-y: scroll;
    height: 100%;
}

.nav.open {
    transform: translateX(0);
    box-shadow: 5px 0 10px rgba(0, 0, 0, 0.25);
}

.nav_icon {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 125px;
    right: -36px;
    width: 40px;
    height: 40px;
    border-radius: 0 10px 10px 0;
    border-right: 1px solid #2f2e34;
    background-color: #2f2e34;
    cursor: pointer;
    transform: translateY(-50%);
    transition: all 0.5s;
}

.nav_icon.about {
    top: 180px;
}

.nav_icon > i {
    pointer-events: none;
    color: #fff;
    font-size: 1.2rem;
    transition: transform 0.2s ease;
}

.nav_icon > i.rotate {
    transform: rotate(180deg);
}

.nav_icon > span {
    pointer-events: none;
    font-size: 0;
    color: #fff;
    transform: rotate(90deg);
    transition: all 0.2s;
}

.nav_icon > .shape_container {
    position: absolute;
    left: 0;
    height: 20px;
    width: 20px;
    z-index: 1;
}

.nav_icon > .shape_container.bottom {
    bottom: -20px;
}

.nav_icon > .shape_container.top {
    top: -20px;
    transform: rotateX(180deg);
}

.nav_icon > .shape_container > .icon_shape {
    fill: #2f2e34;
}

.nav_icon.mouseDistance {
    transition: all 0.2s, top 0s;
}

.nav_icon.mouseDistanceCloser {
    height: 60px;
    width: 60px;
    right: -60px;
    border-radius: 0 30px 30px 0;
}

.nav_icon.mouseDistanceCloser > .shape_container {
    height: 40px;
    width: 40px;
}

.nav_icon.mouseDistanceCloser > .shape_container.top {
    top: -40px;
}

.nav_icon.mouseDistanceCloser > .shape_container.bottom {
    bottom: -40px;
}

.nav_icon.mouseDistanceCloser > span {
    font-size: 10px;
}

.nav_icon.mouseDistanceCloser > i {
    font-size: 1.5rem;
}

.nav_icon:hover {
    box-shadow: none;
}

.nav > ul {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 1rem 0;
}


.nav > ul > li > a:hover {
    color: #fff;
}


.popup-overlay_main {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
    z-index: 111111111;
    color: #fff;
}

.popup-content_main {
    position: relative;
    display: none;
    max-width: 100%;
    width: 100%;
    max-height: 100vh;
    height: 100%;
}

.content-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 0 12px 0
}

.popup-content_main > div {
    max-width: 832px;
    width: 100%;
    background: #2f2e34;
    padding: 40px;
    border-radius: 24px;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1001;
    transform: translate(-50%, -50%);
}

.close_popup {
    font-size: 32px;
    color: #fff;

}

.popup-content_main > div p, .popup-content_main > div li {
    margin-bottom: 16px;
    line-height: 1.8;
    margin-right: 4px;
}

.popup-content_main > div {
    font-size: 14px;
}

.popup-content_main > div ul {
    list-style: disc;
}

.popup-content_main > div ul li {
    line-height: 1.8;
}

.popup-content_main > div div.description {
    max-height: 600px;
    overflow-y: scroll;
}

.left-title {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    gap: 12px;
}

.popup-content_main > div div.description::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.popup-content_main > div div.description::-webkit-scrollbar {
    width: 8px;
}

.popup-content_main > div div.description::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: #c4bb52;
}

.description a {
    color: #c4bb52;
}

.menu-home {
    list-style: none;
    padding: 0;
    display: grid;
    grid-gap: 10px;
    grid-template-columns: repeat(auto-fit, 120px);
    grid-template-rows: repeat(auto-fit, 120px);
    grid-auto-flow: dense;
    justify-content: center;
}

.game-related-home {
    position: relative;
    min-height: 235px;
    width: 100%
}

.game-related-home:before {
    /* content: ''; */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(to bottom, #00000000 0%, #1f2937 100%);
    background: -webkit-linear-gradient(bottom, #00000000 0%, #1f2937 100%);
    z-index: 10;
}

.game-related-home:after {
    /* content: ''; */
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(to top, #00000000 0%, #1f2937 100%);
    background: -webkit-linear-gradient(top, #00000000 0%, #1f2937 100%);
}

.nav-container::-webkit-scrollbar {
    display: none;
}

ul.menu-home li {
    box-sizing: border-box;
}

ul.menu-home li:hover {
    border-color: #fffd68;
}

ul.menu-home li a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 5px;
    box-shadow: 0 -1px 5px 0 rgb(196 192 99 / 50%);
    box-sizing: border-box;
}

ul.menu-home li a div.wrap-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

ul.menu-home li a img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 5px;
    display: block;
}

.game-title {
    overflow: hidden;
    margin: 0;
    color: #fff;
    text-align: center;
    margin-bottom: 0;
    opacity: 0;
    font-weight: 700;
    position: absolute;
    width: 100%;
    bottom: 0;
    background: linear-gradient(0deg, rgb(0 0 0 / 70%) 0, rgba(255, 255, 255, 0) 85%);
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    padding: 25px 10px 2px;
    box-sizing: border-box;
    text-transform: capitalize;
    font-size: 14px;
}

.game-title .text-overflow {
    -webkit-line-clamp: 2;
}

.game-link:hover .game-title {
    opacity: 1;
}

.text-overflow {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    line-height: 1.5;
}

.site-page-over {
    padding: 0 12px;
    border-radius: 12px;
    margin: 12px auto;
    width: 100%;
    color: #fff;
    text-align: left;
}

.site-page {
    font-size: 24px;
    text-align: center;
}

.boxads300x280 {
    width: 300px;
    height: 280px;
    background: #797f87;
}

.footer-menu-home {
}

.footer-menu-home ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    list-style: none;
    margin-left: -12px;
    padding: 10px 18px;
    flex-flow: row wrap;
}

.footer-menu-home ul li a {
    color: #fff;
}

ul.page-numbers {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: -10px;
}

ul.page-numbers li a {
    padding: 8px 12px;
    border-radius: 6px;
    background: #000000;
    margin-left: 10px;
}

li.current {
    background: #fffd68 !important;
    color: #000;
    padding: 8px 12px;
    border-radius: 6px;
    margin-left: 10px;
}

ul.page-numbers li a {
    color: #01FD04;
}

.row {
    width: 100%;
}

.more-games {
    padding: 12px 24px;
    background: #989898;
    color: #fff;
    text-align: center;
    display: block;
    width: 100%;
    margin: 0 auto;
    border-radius: 12px;
    grid-column: span 2;
    grid-row: span 1;
}

.ml-350 {
    margin-left: 350px !important;
}

.hidden {
    display: none !important;
}

.open-sidebar {
    width: calc(100% - 350px) !important;
    position: unset !important;
}

.description .box-image {
    float: left;
    margin: 10px 12px 0 0;

}

div.categories a {
    text-decoration: none;
    color: #000;
    padding: 10px;
    background: #989898;
    border-radius: 6px;
    margin-right: 10px;
    margin-bottom: 10px;
    float: left;
    transition: all .3s
}

div.categories a:hover {
    transform: scale(1.05);
}


/* custom css */
nav.svelte-1016j7j button.svelte-1016j7j, .modal.svelte-1016j7j button.svelte-1016j7j {
    padding: 4px;
}

#settings p {
    margin: 1rem 0;
}

#settings fieldset {
    margin: 0 2px;
    padding: 0.35em 0.65em 0.4em 0.75em;
}

.menu-bottom {
    position: fixed;
    bottom: 0;
    right: 0;
    display: block;
    z-index: 5;
    width: 100%;
    z-index: 9999;
    height: fit-content;
}

.menu-bottom-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    list-style: none;
    padding: 11px;
}

ul.list-menu-bottom {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    list-style: none;
}

.menu-bottom-item {
    margin-right: 12px;
}

ul.list-menu-bottom a {
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    padding: 6px;
    border-radius: 6px;
    border: 1px solid #ffcc00;
    background: #000;
    transition: all .3s;
}

ul.list-menu-bottom a:hover {
    -webkit-transform: scale(1.01) translate(0px, -4px);
    -ms-transform: scale(1.01) translate(0px, -4px);
    transform: scale(1.01) translate(0px, -4px);
    -webkit-user-select: none;
}

#main.svelte-1016j7j.svelte-1016j7j {
    padding-bottom: 45px !important;
}


@media (max-width: 992px) {
    .nav.open {
        padding: 40px 0 200px 0;
    }
}


@media (max-device-width: 960px) {
    .menu-bottom {
        display: none !important;
        height: 0 !important;
    }

    #main.svelte-1016j7j.svelte-1016j7j {
        padding-bottom: 0 !important;
    }

    #guesses.svelte-1016j7j.svelte-1016j7j {

    }
}

.logo_site {
    color: #c8c7c7 !important;
}

@media only screen and (max-width: 600px) {
    #article.svelte-1016j7j.svelte-1016j7j {
        padding-left: 32px !important;
    }

    h1.svelte-1016j7j {
        font-size: 16px;
    }

    .nav.open {
        max-width: 260px;
    }

    .nav_icon {
        width: 32px;
        height: 32px;
        right: -32px;
        top: 80px
    }

    .nav_icon.about {
        top: 132px
    }

    .popup-content_main > div {
        max-height: 550px;
        height: 100%;
        padding: 24px;

    }

    .nav_icon > i {
        font-size: 1rem;
    }

    .popup-content_main > div div.description {
        max-height: 400px;
    }
}

body {
    font-family: 'Nunito', sans-serif;
    background-color: #000;
    color: #999;
}

@media (min-width: 992px) {
    body {
        margin-right: 30vw;
    }

    #wikiHolder div:first-child {
        margin-bottom: auto;
        margin-right: 0;
        max-width: 100vw;
    }
}

.baffled {
    background-color: #989898;
}

.closeComment {
    right: 6px;
    top: 6px;
    position: absolute;
    z-index: 1;
}

.hiddenRow {
    display: none;
}

td {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#wikiHolder td {

}

#wikiHolder table, #wikiHolder th, #wikiHolder td {
    border: 1px solid #989898;
}

.navbar.fixed-right {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1030
}

#wikiHolder div:first-child {
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    margin-top: 15px;
    margin-bottom: 10vh;
    overflow-x: auto;
    overflow-wrap: break-word;
}

.highlighted {
    background-color: #1c787f !important;
    color: #0f0f0f;
}

.superHighlighted {
    background-color: #00becc !important;
    color: #0f0f0f;
}

#inputHolder {
    position: fixed;
    bottom: 0;
    z-index: 1031;
    left: unset;
}

#inGrp {
    /*padding-left: 20vw;*/
    width: unset;
    flex-wrap: nowrap;
    justify-content: center;
}

#userGuess {
    max-width: 18vw;
    width: 100%;
}

.statsTable {
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

@media (min-width: 992px) {
    .navbar.fixed-right {
        top: 0;
        width: 30vw;
        flex-flow: column nowrap;
        align-items: flex-start;
        /*padding-bottom: 58px*/
    }

    #inputHolder {
        width: 30vw;
    }

    .navbar.fixed-right .navbar-collapse {
        flex-grow: 0;
        flex-direction: column;
        width: 100%
    }

    .navbar.fixed-right .navbar-collapse .navbar-nav {
        flex-direction: column;
        width: 100%
    }

    .navbar.fixed-right .navbar-collapse .navbar-nav .nav-item {
        width: 100%
    }

    .navbar.fixed-right .navbar-collapse .navbar-nav .nav-item .dropdown-menu {
        top: 0
    }
}

#guessLogBody {
    display: block;
    max-height: 800px;
    overflow: auto;
    height: 100%;

}

@media (min-width: 992px) {
    .navbar.fixed-right {
        left: auto
    }

    .navbar.fixed-right .navbar-nav .nav-item .dropdown-toggle:after {
        border-top: .3em solid transparent;
        border-left: none;
        border-bottom: .3em solid transparent;
        border-right: .3em solid;
        vertical-align: baseline
    }

    .navbar.fixed-right .navbar-nav .nav-item .dropdown-menu {
        left: auto;
        right: 100%
    }

    #guessLogBody {
        padding-bottom: 70px;
    }
}

@media (max-width: 992px) {
    #wikiHolder {
        overflow-x: hidden;
    }

    #wikiHolder div:first-child {
        margin-bottom: 50vh;
        max-width: 100vw;
        padding-right: 15px;
    }

    .navbar.fixed-right {
        bottom: 60px;
        max-height: 30vh;
        max-width: 100vw;
    }

    .modal {
        max-width: 100vw;
    }

    #inputHolder {
        max-width: 100vw;
        width: 100%;
    }

    #tableHolder {
        margin: 0px !important;
    }

    #guessLogBody {
        max-height: 30vw;
        padding-bottom: 70px;
    }

    #inGrp {
        padding-left: 10vw;
    }

    #userGuess {
        min-width: 50vw;
    }

    #submitGuess {
        min-width: 15vw;
    }

    #inGrp {
        padding-left: 0;
    }
}

@media (min-width: 576px) {
    .modal-dialog {
        max-width: 600px;
        margin: 1.75rem auto;
    }
}

.simplemenu {
    position: relative;
}

.dropbtn {
    background-color: #12355b;
    color: white;
    padding: 1rem;
    font-size: 1.5rem;
    border: none;
    cursor: pointer;
    font-family: Baloo, sans-serif;
}

.dropbtn:hover,
.dropbtn:focus {
    background-color: #046e8f;
}

.dropdown-content {
    display: none;
    position: absolute;
    overflow: hidden;
    width: 300px;
    list-style-type: none;
    margin-top: 0;
    padding-left: 0;
    background: #989898;
    top: 50px;
}

.dropdown-content a {
    color: black;
    padding: 0.8rem 1rem;
    text-decoration: none;
    display: block;
    font-family: "Open Sans", sans-serif;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.show {
    display: block;
}


.winPanel {
    /*    position: absolute;
        top: 30%;
        left: 50%;
        transform: translate(-50%,-30%);
        padding: 16px 24px;
        background: #fff;
        border-radius: 10px;
        box-shadow: 0px -6px 74px 0px rgba(0, 0, 0, 0.15);
        display: none;*/
}

.popup-overlay {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    z-index: 1000;
    display: none;
    z-index: 1030;
    color: #fff;
}

.popup-content {
    position: relative;
    display: none;
    width: 100%;
    max-height: 100vh;
    height: 100%;
}

.winPanel .winPanelOuter {


}

.winPanel.show, .show .popup-content {
    display: block !important;
}

.winPanelContent {
    max-width: 832px;
    border-radius: 24px;
    position: absolute;
    width: 100%;
    left: 50%;
    top: 50%;
    z-index: 1001;
    transform: translate(-50%, -50%);
}

.winPanelText {
    padding: 40px;
    position: relative;
}

.close_popup {
    position: absolute;
    right: 18px;
    top: 0;
    font-size: 32px;
    background: unset;
    outline: none;
    border: 0;
}

.notification-success {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -30%);
    padding: 16px 24px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px -6px 74px 0px rgba(0, 0, 0, 0.15);
    z-index: 1035;
}

.success-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.success-text span {
    background: linear-gradient(93.33deg, #2BBF78 14.46%, #158B52 117.28%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 32px;
    font-weight: 700;
    line-height: 48px;
    margin-bottom: 6px;
}

.success-text p {
    color: #767E87;
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
}

.button_copy {
    padding: 6px 8px;
    border-radius: 6px;
    text-decoration: none;
}

.button_new_game {
    padding: 6px 8px;
    border-radius: 6px;
    text-decoration: none;
}

.right-section {
    width: 100%;
    height: 100%;
}

.scrollbar-custom::-webkit-scrollbar {
    display: none;
}

.scrollbar-custom::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #5db4f2;
}

.scrollbar-custom::-webkit-scrollbar-track {
    border-radius: 10px;
}

thead, tbody tr {
    display: table;
    width: 100%;
    table-layout: fixed;
}

thead {
    /*width: calc( 100% - 1em )*/
}

#guessLogBody::-webkit-scrollbar {
    display: none;
}

.setting_game {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-flow: row wrap;
}

.label-setting {
    width: 80%;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: #2196F3;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

li.has_dropdown, li.has_dropdown ul li {
    position: relative;
    list-style: none;
}

li.has_dropdown a {
    /*    font-size: 16px;
        color: #353535;
        padding: 20px 25px;
        display: block;
        font-weight: 400;*/
}

@media (min-width: 992px) {


}

li.has_dropdown > ul {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    margin-top: 50px;
    top: unset;
    left: unset;
}

li.has_dropdown > ul {
    max-height: 300px;
    overflow: scroll;
}

li.has_dropdown > ul::-webkit-scrollbar {
    display: none;
}

li.has_dropdown:hover > ul {
    visibility: visible;
    opacity: 1;
    margin-top: 0px;
    position: absolute;
    z-index: 1032;
    top: unset;
    left: unset;
}

li.has_dropdown ul {
    width: 400px;
    padding-left: 0;
    transition: 0.5s;
    box-shadow: 0px 5px 15px 0px rgb(212 201 201 / 75%);
}

@media (max-width: 500px) {
    li.has_dropdown ul {
        width: 220px;
    }

    li.has_dropdown:hover > ul {
        left: 100px;
        top: 21px;
    }
}

@media (max-width: 400px) {
    li.has_dropdown ul {
        width: 220px;
    }

    li.has_dropdown:hover > ul {
        left: unset;
        top: unset;
    }
}

li.has_dropdown ul li a {
    padding: 10px 25px;
    font-size: 15px;
}


/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.spin-animate {
    -animation: spin .7s infinite linear;
    -webkit-animation: spin2 .7s infinite linear;
}

@-webkit-keyframes spin2 {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin2 {
    from {
        transform: scale(1) rotate(0deg);
    }
    to {
        transform: scale(1) rotate(360deg);
    }
}

.text-light-body {
    color: #7c6e6e;
}

.bg-light-gray {
    background: #d0cbcb;
}

.bg-light-grey {
    background: #dcdcdc;
}

.animated-logo {
    text-transform: uppercase;
    background-image: linear-gradient(
            -225deg,
            #c7a002 0%,
            #44107a 29%,
            #ff1361 67%,
            #fff800 100%
    );
    background-size: auto auto;
    background-clip: border-box;
    background-size: 200% auto;
    color: #fff;
    background-clip: text;
    text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textclip 2s linear infinite;
    display: inline-block;
}

@keyframes textclip {
    to {
        background-position: 200% center;
    }
}

/*html.dark body*/







