/* Default minimum width to zero to prevent issues later. */
* {
    min-width: 0;
}

body {
    background-color: #111111 !important;
    font-size: 14px;
    text-transform: inherit;
    letter-spacing: 0;
    line-height: 1.71429;
    margin: 0;
}

select,
button,
label,
input,
h1,
h2,
h3,
h4 {
    color: white;
    font-family: Dosis-Bold;
    font-weight: unset;
}

a {
    color: #8200d4;
    font-family: Dosis-ExtraBold;
    font-weight: unset;
    text-decoration: none;
}

p {
    color: white;
    font-family: Dosis-Regular;
    font-weight: unset;
}

pre {
    display: block;
    background-color: #222222;
    padding: 2px;
    padding-left: 10px;
    word-wrap: break-word;
    white-space: pre-wrap;
    overflow: auto;
    border-radius: 5px;
}

code {
    font-family: Dosis-Regular;
    color: white;
    background-color: #222222;
    padding: 2px;
}

ol {
    font-family: Dosis-Regular;
    color: white;
}

li {
    font-family: Dosis-Regular;
    color: white;
}

/* Page contents defaults. */
page-contents {
    display: block;
}

/* Site loader. */
#site-loader {
    position: fixed;
    z-index: 99999;
    display: block;
    width: 100%;
    height: 100%;

    transition: all 0.5s ease-in-out;
    transition-property: opacity;
}

#site-loader img {
    width: 16vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Navigation bar. */
#navbar {
    position: fixed;
    display: block;
    right: 0;
    left: 0;
    top: 0;
    margin-bottom: 24px;
    min-height: 64px;
    z-index: 999;
    padding: 10px;

    transition: all 0.2s ease-in-out;
    transition-property: background-color;
    background-color: transparent;
}

#navbar-media {
    float: left;
    padding: 5px 15px;
    margin-left: -15px;
}

#navbar-media img {
    height: 48px;
}

#nav-options {
    padding: 0px 15px;
    font-size: 17px;
    float: right !important;
}

@media (max-width: 992px) {
    #navbar {
        min-height: 32px;
    }

    #navbar-media {
        padding: 0;
        margin-left: -15px;
        display: none;
    }

    #nav-options {
        padding: 0px 15px;
        font-size: 17px;
        float: none !important;
        width: 100%;
        margin: -15px
    }

    #nav-options ul {
        text-align: center;
        list-style-type: none;
        padding: 0;
    }
}

/* Define section sizes. */
.section {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000px;
    perspective: 1000px;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    position: relative;
    overflow: visible;
}

.section.section-md {
    padding-top: 115px;
    padding-bottom: 72px
}

@media (min-width: 992px) {
    .section.section-md {
        padding-top: 96px;
        padding-bottom: 96px
    }
}

.section.section-lg {
    padding-top: 72px;
    padding-bottom: 72px
}

@media (min-width: 992px) {
    .section.section-lg {
        padding-top: 120px;
        padding-bottom: 120px
    }
}

.section.section-sm {
    padding-top: 72px;
    padding-bottom: 72px
}

@media (min-width: 992px) {
    .section.section-sm {
        padding-top: 72px;
        padding-bottom: 72px
    }
}

.section.section-xs {
    padding-top: 48px;
    padding-bottom: 48px
}

@media (min-width: 992px) {
    .section.section-xs {
        padding-top: 48px;
        padding-bottom: 48px
    }
}

.section.popup {
    display: flex;
    z-index: 9998;
    max-width: 100%;
    max-height: 100%;
    overflow: scroll;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.section.popup::-webkit-scrollbar {
    display: none;
}

#blur-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5); /* semi-transparent dark overlay */
    backdrop-filter: blur(8px);      /* adjust the blur strength */
    -webkit-backdrop-filter: blur(8px); /* for Safari support */
    z-index: 9997; /* should be below your fixed box */
    display: block; /* hidden by default */
}

/* Define container sizes. */
.container {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px
}

@media (min-width: 768px) {
    .container {
        width: 750px
    }
}

@media (min-width: 992px) {
    .container {
        width: 970px
    }
}

@media (min-width: 1200px) {
    .container {
        width: 1170px
    }
}

.container-xs {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px
}

@media (min-width: 768px) {
    .container-xs {
        width: 350px
    }
}

@media (min-width: 992px) {
    .container-xs {
        width: 570px
    }
}

@media (min-width: 1200px) {
    .container-xs {
        width: 770px
    }
}

.container-sm {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px
}

@media (min-width: 768px) {
    .container-sm {
        width: 550px
    }
}

@media (min-width: 992px) {
    .container-sm {
        width: 770px
    }
}

@media (min-width: 1200px) {
    .container-sm {
        width: 970px
    }
}

.container-lg {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px
}

@media (min-width: 768px) {
    .container-lg {
        width: 950px
    }
}

@media (min-width: 992px) {
    .container-lg {
        width: 1170px
    }
}

@media (min-width: 1200px) {
    .container-lg {
        width: 1470px
    }
}

.container-sole {
    padding-left: 10% !important;
    padding-right: 10% !important;
    padding: 20px;
    border-radius: 7px;
}

/* Background colors. */
.bg-default {
    background-color: #111111 !important
}

.bg-default-light {
    background-color: #1a1a1a !important;
}

.bg-stars {
    background-image: url('https://cdn.lunareclipse.studio/img/ui/background.webp') !important;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover
}

.bg-from-the-fog {
    background-image: url('https://cdn.lunareclipse.studio/img/projects/from-the-fog/background.webp?v=2') !important;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position-y: center;
}

.bg-from-the-fog-skin-creator {
    background-image: url('https://cdn.lunareclipse.studio/img/tools/from-the-fog-skin-pack-creator/background.webp') !important;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position-y: center;
}

.bg-feathery-messengers {
    background-image: url('https://cdn.lunareclipse.studio/img/projects/feathery-messengers/background.webp?v=2') !important;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position-y: center;
}

.bg-eternal-pets {
    background-image: url('https://cdn.lunareclipse.studio/img/projects/eternal-pets/background.webp') !important;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position-y: center;
}

.bg-two-moons {
    background-image: url('https://cdn.lunareclipse.studio/img/projects/two-moons/background.webp') !important;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position-y: center;
}

.bg-astras-amazing-foxes {
    background-image: url('https://cdn.lunareclipse.studio/img/projects/astras-amazing-foxes/background.webp') !important;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position-y: center;
}

.bg-fancy-foliage {
    background-image: url('https://cdn.lunareclipse.studio/img/projects/fancy-foliage/background.webp?v=2') !important;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position-y: center;
}

.bg-eyes-in-the-sky {
    background-image: url('https://cdn.lunareclipse.studio/img/projects/eyes-in-the-sky/background.webp') !important;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position-y: center;
}

.bg-cleaner-creepers {
    background-image: url('https://cdn.lunareclipse.studio/img/projects/cleaner-creepers/background.webp') !important;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position-y: center;
}

.bg-mystery-manor {
    background-image: url('https://cdn.lunareclipse.studio/img/projects/mystery-manor/background.webp') !important;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position-y: center;
}

.bg-starlight-skinapi {
    background-image: url('https://cdn.lunareclipse.studio/img/projects/starlight-skinapi/background.webp') !important;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position-y: center;
}

.bg-lunaris {
    background-image: url('https://cdn.lunareclipse.studio/img/projects/lunaris/background.webp?v=2') !important;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position-y: center;
}

.bg-lights-out {
    background-image: url('https://cdn.lunareclipse.studio/img/projects/lights-out/background.webp?v=3') !important;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position-y: center;
}

.bg-transparent {
    background: #00000000;
}


/* Text style tags. */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-large {
    font-size: large;
}

@media (max-width: 992px) {
    .text-large {
        font-size: medium !important;
    }
}

.text-light {
    color: white;
}

.text-secondary-light {
    color: rgba(255, 255, 255, 0.7) !important
}

.text-wrap-sm {
    max-width: 25%;
}

.text-wrap-md {
    max-width: 50%;
}

.text-wrap-lg {
    max-width: 75%;
}

@media (max-width: 992px) {
    .text-wrap-md {
        max-width: 75%;
    }

    .text-wrap-md {
        max-width: 100%;
    }

    .text-wrap-lg {
        max-width: 100%;
    }
}

/* Generic display options. */
.no-margin-bottom {
    margin-bottom: 0 !important;
}

.no-margin-top {
    margin-top: 0 !important;
}

.no-margin {
    margin: 0 !important;
}

.no-padding-bottom {
    padding-bottom: 0 !important;
}

.no-padding-top {
    padding-top: 0 !important;
}

.no-padding {
    padding: 0 !important;
}

.center-block {
    margin-left: auto !important;
    margin-right: auto !important;
}

.centered-block {
    position: fixed;
    top: 50%;
    left: 50%;
    /* bring your own prefixes */
    transform: translate(-50%, -50%);
}

.list-inline {
    padding-left: 0;
    list-style: none;
    margin-left: -5px
}

.list-inline>li {
    display: inline-block;
    padding-left: 5px;
    padding-right: 5px
}

.list-column {
    padding-left: 0;
    list-style: none;
    margin-left: -5px
}

.list-column>li {
    display: table-column;
    padding-left: 5px;
    padding-right: 5px
}

.mobile-hidden {
    display: block;
}

@media (max-width: 992px) {
    .mobile-hidden {
        display: none !important;
    }
}

.margin-top-sm {
    margin-top: 25px;
}

.margin-top-md {
    margin-top: 50px;
}

.margin-top-lg {
    margin-top: 75px;
}

.bullet-list {
    list-style-type: circle;
    color: white;
}

/* Img options. */
.img-responsive {
    display: block;
    max-width: 100%;
    height: auto;
}

.img-responsive2 {
    display: block;
    max-width: 87.5%;
    height: auto;
}

.img-responsive3 {
    display: block;
    max-width: 75%;
    height: auto;
}

.img-responsive4 {
    display: block;
    max-width: 62.5%;
    height: auto;
}

.img-responsive5 {
    display: block;
    max-width: 50%;
    height: auto;
}

.img-responsive6 {
    display: block;
    max-width: 37.5%;
    height: auto;
}

.img-responsive7 {
    display: block;
    max-width: 25%;
    height: auto;
}

.img-responsive7_2 {
    display: block;
    max-width: 18.75%;
    height: auto;
}

.img-responsive8 {
    display: block;
    max-width: 12.5%;
    height: auto;
}

@media (max-width: 992px) {
    .img-responsive {
        display: block;
        max-width: 112.5%;
        height: auto;
    }

    .img-responsive2 {
        display: block;
        max-width: 100%;
        height: auto;
    }

    .img-responsive3 {
        display: block;
        max-width: 87.5%;
        height: auto;
    }

    .img-responsive4 {
        display: block;
        max-width: 75%;
        height: auto;
    }

    .img-responsive5 {
        display: block;
        max-width: 62.5%;
        height: auto;
    }

    .img-responsive6 {
        display: block;
        max-width: 50%;
        height: auto;
    }

    .img-responsive7 {
        display: block;
        max-width: 37.5%;
        height: auto;
    }

    .img-responsive8 {
        display: block;
        max-width: 25%;
        height: auto;
    }
}

/* Animations */
@keyframes waving {
    0% {
        transform: rotate(0deg) scale(50%);
    }

    50% {
        transform: rotate(3deg);
    }

    75% {
        transform: rotate(-2deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.animations-waving {
    display: block;
    animation: waving 5s;
}

@keyframes waving-continuous {
    0% {
        transform: rotate(0deg) scale(100%);
    }

    50% {
        transform: rotate(1deg) scale(105%);
    }

    75% {
        transform: rotate(-0.5deg) scale(107%);
    }

    100% {
        transform: rotate(0deg) scale(100%);
    }
}

.animations-wavingcon {
    display: block;
    animation: waving-continuous 8s infinite;
}

@keyframes border-hover {
    0% {
        outline: #1a1a1a solid 5px;
        box-shadow: 0 0 10px 5px #1a1a1a;
        transform: translate(0px, 0px);
    }

    50% {
        transform: translate(0px, -15px);
    }

    100% {
        outline: #741aac solid 5px;
        box-shadow: 0 0 10px 5px #741aac;
        transform: translate(0px, 0px);
    }
}

.animations-borderhover:hover {
    animation: border-hover 0.5s forwards;
}

/* Button styles. */
.btn {
    padding: 8px 35px;
    background-color: #8A2BE2;
    border: 5px solid #000;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    box-shadow:
        inset 4px 4px 0 #b816ff,
        inset -4px -4px 0 #4e00a6,
        0 0px 0px rgba(0, 0, 0, 0.3);
}

.btn:hover {
    border: 5px solid #FFF;
}

/* Input styles. */
.input {
    margin: 5px !important;
    padding: 8px 12px;
    background-color: #4e00a6;
    border: 5px solid #000;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    box-shadow:
        inset 4px 4px 0 #b816ff,
        inset -4px -4px 0 #8A2BE2,
        0 0px 0px rgba(0, 0, 0, 0.3);
    text-align: center;
    overflow: ellipsis;
}

.input:hover {
    border: 5px solid #FFF;
}

.input:focus {
    outline: none;
    border: 5px solid #FFF;
}

.input.smaller {
    width: 12.5%;
    max-width: 12.5%;
}

.input.small {
    width: 25%;
    max-width: 25%;
}

.input.middle {
    width: 37.5%;
    max-width: 37.5%;
}

.input.medium {
    width: 50%;
    max-width: 50%;
}

.input.large {
    width: 75%;
    max-width: 75%;
}

select.input {
    appearance: none;
    /* Remove default styles */
    -webkit-appearance: none;
    /* Safari/Chrome */
    -moz-appearance: none;
    /* Firefox */
}

/* Flex box styles. */
.flex-row {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.flex-row>* {
    margin: 15px;
}

.flex-row.small-flex-spacing>* {
    margin: 5px;
}

.flex-column {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.flex-column.flex-size-limit-lg {
    max-width: 66%;
}

.flex-column.flex-size-limit-md {
    max-width: 50%;
}

.flex-column.flex-size-limit-sm {
    max-width: 40%;
}

/* Card styles. */
.card {
    position: relative;
    text-align: center;
    color: white;
    background-color: #1a1a1a;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 2px 1px -1px rgba(0, 0, 0, 0.12);
    padding-left: 50px;
    padding-right: 50px;
}

.card.nopadding {
    padding-left: 0;
    padding-right: 0;
}

.card-media {
    padding-top: 24px;
    position: relative;
}

.card-media.cover {
    padding-top: 0;
    position: relative;
}

.card-media img {
    display: block;
    max-height: 50%;
    width: auto;
    margin-right: auto;
    margin-left: auto;
}

.card-media.cover img {
    max-width: 100%;
}

.card-title {
    padding: 12px 16px 16px;
}

.card-title:last-child {
    padding-bottom: 12px;
}

.card-default {
    color: white;
    background-color: #1a1a1a;
}

.card-default-transparent {
    color: white;
    background-color: #1a1a1aa6;
}

.card-badge {
    position: absolute;
    right: 5px;
    top: 10px;
    background: #c12222;
    text-align: center;
    border-radius: 5px;
    color: white;
    padding: 5px 10px;
    font-size: 20px;
}

/* Badge styles. */
.badge {
    display: inline-block;
    min-width: 10px;
    padding: 3px 7px;
    font-size: 12px;
    color: #fff;
    line-height: 1;
    vertical-align: middle;
    white-space: nowrap;
    text-align: center;
    background-color: #303030;
    border-radius: 3px;
}

.badge-img {
    width: 32px !important;
    height: 32px !important;
}

.badge.badge-translucent {
    border-radius: 5px;
    background-color: #30303060;
}

.badge.badge-transparent {
    background-color: transparent;
}

/* Gallery Styles */
.gallery img {
    border-radius: 4px;
    cursor: pointer;
}

.gallery img:hover {
    animation: border-hover 0.5s forwards;
}

#image-view {
    z-index: 999999;
    display: none;
    transition: all 0.5s ease-in-out;
    transition-property: opacity;
}

#image-view-bg {
    background-color: #000;
    opacity: 50%;
    z-index: 999998;
    position: fixed;
    width: 100%;
    height: 100%;
    transition: all 0.5s ease-in-out;
    transition-property: opacity;
}

#image-view-src {
    z-index: 999999;
    width: 75vw;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.5s ease-in-out;
    transition-property: opacity;
    cursor: pointer;
}

/* Dropdown Styles. */
.dropdown {
    margin-top: 0px !important;
    width: 35vw;
    font-size: 1.17em;
}

@media (max-width: 992px) {
    .dropdown {
        width: 85vw;
    }
}

.dropdown div.content {
    background-color: #1a1a1a;
    margin-top: 0;
    height: 0;
    overflow: hidden;
    border-radius: 5px;
    transition: height 0.2s ease-out;
    padding-left: 10px;
    padding-right: 10px;
}

.dropdown h2.title {
    margin-top: 0px !important;
    margin-bottom: 0;
    padding: 8px 35px;
    background-color: #8A2BE2;
    border: 5px solid #000;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    box-shadow:
        inset 4px 4px 0 #b816ff,
        inset -4px -4px 0 #4e00a6,
        0 0px 0px rgba(0, 0, 0, 0.3);
}

.dropdown h2.title:hover {
    border: 5px solid #FFF;
}


/* UI Styles. */
.ui-lunar {
    color: white !important;
    background-color: #8A2BE2 !important;
    box-shadow:
        inset 4px 4px 0 #b816ff,
        inset -4px -4px 0 #4e00a6,
        0 0px 0px rgba(0, 0, 0, 0.3) !important;
}

.ui-gold {
    color: white !important;
    background-color: #f3b10b !important;
    box-shadow:
        inset 4px 4px 0 #fcd867,
        inset -4px -4px 0 #c87604,
        0 0px 0px rgba(0, 0, 0, 0.3) !important;
}

.input.ui-gold {
    color: white !important;
    background-color: #f3b10b !important;
    box-shadow:
        inset 4px 4px 0 #fcd867,
        inset -4px -4px 0 #c87604,
        0 0px 0px rgba(0, 0, 0, 0.3) !important;
}

.ui-github {
    color: white !important;
    background-color: #161b22 !important;
    box-shadow:
        inset 4px 4px 0 #3a3e43,
        inset -4px -4px 0 #0d1117,
        0 0px 0px rgba(0, 0, 0, 0.3) !important;
}

.input.ui-github {
    color: white !important;
    background-color: #0d1117 !important;
    box-shadow:
        inset 4px 4px 0 #3a3e43,
        inset -4px -4px 0 #161b22,
        0 0px 0px rgba(0, 0, 0, 0.3) !important;
}

.input.ui-github.default {
    color: white !important;
    background-color: #161b22 !important;
    box-shadow:
        inset 4px 4px 0 #3a3e43,
        inset -4px -4px 0 #0d1117,
        0 0px 0px rgba(0, 0, 0, 0.3) !important;
}


.card.ui-github {
    color: white;
    background-color: #161b22 !important;
    box-shadow:
        inset 4px 4px 0 #0d1117,
        inset -4px -4px 0 #0d1117,
        0 10px 10px rgba(0, 0, 0, 0.6) !important;
    border: 5px solid #000 !important;
    border-radius: 0px !important;
}

.ui-from-the-fog {
    color: black !important;
    background-color: #00afc0 !important;
    box-shadow:
        inset 4px 4px 0 #91ebf6,
        inset -4px -4px 0 #00466c,
        0 0px 0px rgba(0, 0, 0, 0.3) !important;
}

.input.ui-from-the-fog {
    color: white !important;
    background-color: #00466c !important;
    box-shadow:
        inset 4px 4px 0 #91ebf6,
        inset -4px -4px 0 #00afc0,
        0 0px 0px rgba(0, 0, 0, 0.3) !important;
}

.ui-lights-out {
    color: white !important;
    background-color: #740909 !important;
    box-shadow:
        inset 4px 4px 0 #bd0f0f,
        inset -4px -4px 0 #430b1a,
        0 0px 0px rgba(0, 0, 0, 0.3) !important;
}

.ui-feathery-messengers {
    color: white !important;
    background-color: #644631 !important;
    box-shadow:
        inset 4px 4px 0 #855d3c,
        inset -4px -4px 0 #483224,
        0 0px 0px rgba(0, 0, 0, 0.3) !important;
}

.ui-eternal-pets {
    color: black !important;
    background-color: #60f5fa !important;
    box-shadow:
        inset 4px 4px 0 #dffdfe,
        inset -4px -4px 0 #018bac,
        0 0px 0px rgba(0, 0, 0, 0.3) !important;
}

.ui-two-moons {
    color: white !important;
    background-color: #8A2BE2 !important;
    box-shadow:
        inset 4px 4px 0 #b816ff,
        inset -4px -4px 0 #4e00a6,
        0 0px 0px rgba(0, 0, 0, 0.3) !important;
}

.ui-astras-amazing-foxes {
    color: white !important;
    background-color: #f58f74 !important;
    box-shadow:
        inset 4px 4px 0 #ffb984,
        inset -4px -4px 0 #e85c63,
        0 0px 0px rgba(0, 0, 0, 0.3) !important;
}

.ui-fancy-foliage {
    color: white !important;
    background-color: #2b702a !important;
    box-shadow:
        inset 4px 4px 0 #4d961d,
        inset -4px -4px 0 #01490b,
        0 0px 0px rgba(0, 0, 0, 0.3) !important;
}

.ui-eyes-in-the-sky {
    color: white !important;
    background-color: #c12222 !important;
    box-shadow:
        inset 4px 4px 0 #e53630,
        inset -4px -4px 0 #90162e,
        0 0px 0px rgba(0, 0, 0, 0.3) !important;
}

.ui-cleaner-creepers {
    color: white !important;
    background-color: #499337 !important;
    box-shadow:
        inset 4px 4px 0 #36b129,
        inset -4px -4px 0 #0d682d,
        0 0px 0px rgba(0, 0, 0, 0.3) !important;
}

.ui-mystery-manor {
    color: white !important;
    background-color: #c12222 !important;
    box-shadow:
        inset 4px 4px 0 #e53630,
        inset -4px -4px 0 #90162e,
        0 0px 0px rgba(0, 0, 0, 0.3) !important;
}

.ui-lunaris {
    color: #0b111e !important;
    background-color: #afcdff !important;
    box-shadow:
        inset 4px 4px 0 #e5eeff,
        inset -4px -4px 0 #5a7ec0,
        0 0px 0px rgba(0, 0, 0, 0.3) !important;
}

/* Profile click animation */
.squishable {
    /* Add default styles for the element */
    transition: transform 0.3s ease;
}

.squish {
    animation: squish-animation 0.3s ease;
}

@keyframes squish-animation {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.8, 1.2);
        /* Squish vertically */
    }

    100% {
        transform: scale(1);
    }
}