/* This is the ReviewGuys global CSS file.
This was and still is extremely messy.
Sorry about that.


Essential */


body, html {
    background-image: url(/assets/media/Backgrounds/background.png);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    color: white;
    font-family: 'Asap', sans-serif;
    font-weight: bold;
    text-shadow: 2px 2px #00000044;
    width: 100%;
}

button {
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
    height: 45px;
    background-color: #ee4599;
    border-radius: 10px;
    border: 3px white solid;
    color: white;
    font-family: 'Titan One', sans-serif;
    font-weight: normal;
    font-size: 1.25em;
    text-indent: 2px;
    transition: all 0.2s;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    text-shadow: 2px 2px #00000044;
    text-align: center;
}

button:hover {
    transform: scale(1.2);
}

button:active {
    opacity: 0.5;
}


button img {
    width: 20px;
    margin-right: 5px;
}

h1 {
    font-family: 'Titan One', sans-serif;
    font-weight: normal;
}

h5 {
    font-weight: bold;
}

input {
    width: 425px;
    height: 45px;
    border: none;
    border-radius: 10px;
    text-indent: 2px;
    font-family: 'Asap', sans-serif;
    font-weight: bold;
    font-size: 1.25em;
    transition: all 0.2s;
}

p a {
    margin: 0 !important;
}

hr {
    margin-left: 0 !important;
    opacity: 1;
}

a {
    color: white;
}

.fineprint {
    font-weight: normal;
    font-size: 13px;
    margin-bottom: 0;
}

select {
    font-weight: bold;
    width: auto;
    height: 35px;
    padding-top: 1px;
    border-radius: 10px;
    border: none;
}

option {
    font-weight: bold;
    border: none;
}

input[type="checkbox"] {
    width: 20px;
    height: 20px;
    display: grid;
    place-content: center;
    margin-right: 5px;
    background-color: white;
    border-radius: 2px !important;
    appearance: none;
    transition: all 0.2s;
    cursor: pointer;
}

input[type="checkbox"]:hover {
    transform: scale(1.2);
}

input[type="checkbox"]:checked {
    appearance: auto;
    accent-color: black;
}

input[type="radio"] {
    width: 20px;
    height: 20px;
    display: grid;
    place-content: center;
    margin-right: 5px;
    background-color: white;
    border-radius: 50% !important;
    appearance: none;
    transition: all 0.2s;
    cursor: pointer;
}

input[type="radio"]:hover {
    transform: scale(1.2);
}

input[type="radio"]:checked {
    appearance: auto;
    accent-color: black;
}

label {
    display: flex; 
    align-items: center;
}

textarea {
    width: 500px;
    height: 70px;
    min-width: 500px;
    min-height: 70px;
    max-width: 500px;
    max-height: 250px;
    border: none;
    border-radius: 10px;
    padding-left: 5px;
    font-weight: bold;
    font-size: 1.25em;
}

p * {
    margin-left: 0 !important;
}

.input-group {
    flex-wrap: nowrap;
}

.input-group input {
    width: 95%;
    height: 100%;
}

.input-group button {
    height: 100%;
    margin: 0;
    width: 5%;
    background-color: white;
    color: black;
    border-left: 2px solid black;
}

.input-group button:hover {
    transform: none;
    font-size: 22px;
}

/* Keyframes */

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes moveEvergreen {
    0% {
        background-position: 0% top;
    }

    100% {
        background-position: 100% center;
    }
}

@keyframes rotateSpinner {
    0% {
        transform: rotate(0deg) translate(-50%, -50%);
    }

    100% {
        transform: rotate(360deg) translate(-50%, -50%);
    }
}

.loading {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: end;
}

.loading h1 {
    font-size: 30px;
    margin-right: 20px;
}

.loading img {
    width: 75px;
}

.loading-screen {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
}

.loading-screen img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    user-select: none;
}

.loading-screen .spinner {
    animation: rotateSpinner 1.5s linear infinite;
    transform-origin: 0% 0%;
}

/* Essential for the "box" screen */

.box {
    width: 900px;
    height: auto;
    min-height: 700px;
    padding-bottom: 20px;
    margin: 0 !important;
    top: 50%;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.75);
    border-radius: 50px;
    animation: fadeIn 2s;
}

.box hr {
    margin-top: 10px;
}

.box * {
    margin-left: 30px;
    margin-top: 30px;
}


.logo img {
    height: 40px;
}

.logo {
    margin: 0;
}

.logo::after {
    content: "Logo by Metric (LewanceBoi)";
    display: block;
    margin-left: 30px;
    font-size: 15px;
    margin-top: 5px;
}

.left-content {
    margin: 0;
    width: 50%;
    float: left;
    height: 100%;
}

.left-content h1 {
    font-size: 40px;
}

.before-input {
    margin-bottom: 20px;
}

.login-input {
    margin-top: 0;
}

.right-content {
    margin: 0;
    margin-left: 50%;
    height: 100%;
}

.right-content img {
    width: 500px;
    transition: all 0.2s;
}

.right-content img:hover {
    rotate: -10deg;
}

.box textarea {
    font-weight: bold;
    width: 400px;
    height: 75px;
    min-height: 75px;
    resize: none;
    display: block;
    border-radius: 10px;
}

.box .progress-flag {
    height: 7.5vh;
    object-fit: cover;
    position: absolute;
    right: 30px;
    top: 30px;
    margin: 0;
    border-radius: 10px;
}

/* Box on mobile */

@media screen and (max-width: 1000px) {
    .box {
        width: 95vw;
    }

    .right-content {
        display: none;
    }

    .left-content {
        width: 100%;
        margin: 0;
    }

    .left-content button,.left-content a {
        display: block;
    }

    .left-content a {
        margin-top: 10px;
    }
}

@media screen and (max-width: 420px) {
    input {
        width: 300px;
    }

    .box .logo img:not(.progress-flag) {
        height: 25px;
        margin-left: 0 !important;
    }

    .box .logo::after {
        margin-left: 0 !important;
    }

    .box .logo {
        margin-left: 15px !important;
    }

    .box *:not(a) {
        margin-left: 15px !important;
    }

    .box {
        width: 90vw;
        border-radius: 30px;
    }

    .box .left-content {
        margin-left: 0 !important;
    }

    .box hr {
        margin-left: 0 !important;
    }

    .box .progress-flag {
        height: 5.5vh;
        border-radius: 5px;
    }
}

.view-show-dark-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.58);
    z-index: 4;
    user-select: none;
    cursor: pointer;
}

/* Most commonly found in the "view" page, but used site-wide: */

.level-box-buttons {
    position: absolute;
    top: 20px;
    right: 20px;
    text-align: end;
    display: inline-block !important;
}

.level-box-buttons .fineprint {
    text-align: end;
    margin-top: 10px;
}

.level-box-button {
    margin-left: 5px;
    background-color: rgba(255, 255, 255, 0.274);
    height: 35px;
    border: 2px white solid;
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
    font-family: 'Titan One', sans-serif;
    font-weight: normal;
    text-shadow: 2px 2px #00000044;
    text-transform: uppercase;
    font-size: 18px;
}

.level-box-button i {
    margin-right: 10px;
}

.level-box-button:hover {
    transform: scale(1.05);
}

#level-box-desc {
    width: 100%;
    background-color: rgb(0, 0, 0, 0.3);
    flex-grow: 1;
    border-radius: 10px;
    padding-left: 5px;
    padding-top: 5px;
}

.interaction-selected {
    outline: #FFBB3F 2px solid !important;
}

/* Level button stuff */

.level-button {
    width: 300px;
    min-width: 300px;
    height: 168.75px;
    min-height: 168.75px;
    position: relative;
    margin-top: 20px;
    margin-left: 20px;
    border: white 2px solid;
    border-radius: 10px;
    overflow: hidden;
    box-sizing: content-box;
    user-select: none;
    transition: all 0.2s;
    display: none;
    background: rgb(0,0,0);
    background: linear-gradient(54deg, rgba(0,0,0,0.8211659663865546) 0%, rgba(0, 0, 0, 0.2) 100%);
    cursor: pointer;
    z-index: 3;
}

.level-button:hover {
    transform: scale(1.05);
}

.level-button:active {
    opacity: 0.5;
}

.level-button * {
    position: absolute;
}

.level-button img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.level-button-overlay {
    height: 18%;
    width: 100%;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.75);
    white-space: nowrap;
    text-overflow: ellipsis;
    align-items: center;
    display: flex;
}

.level-button-overlay p {
    position: relative;
    top: 50%;
    transform: translateY(calc(-50% - 2px));
    margin-left: 10px;
    font-weight: normal;
    font-family: 'Titan One', sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    width: 270px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-bottom: 0;
}

.level-button-overlay i:not(.dropdown-menu li a i) {
    font-size: 18px;
    position: absolute;
    right: 10px;
    width: 30px;
    text-align: end;
}

.level-pill {
    background-color: rgba(31, 31, 31, 0.9);
    width: auto;
    border-radius: 20px;
    padding: 0 10px 0 10px;
    text-transform: uppercase;
    position: relative;
    display: inline-flex;
    margin-bottom: 5px;
    margin-right: 5px;
    align-items: center;
}

.level-pill i, .level-pill img {
    position: relative !important;
    margin-right: 5px;
    width: 16px;
    display: inline-flex;
}

#level-pills-container {
    top: 10px;
    left: 10px;
    opacity: 0;
    transition: all 0.2s;
    width: fit-content;
}

.level-button:hover #level-pills-container {
    opacity: 1;
}

.level-button .dropdown-menu {
    height: auto;
    z-index: 5;
    overflow: hidden;
}

.level-button .dropdown-menu * {
    position: relative;
}

/* Discover notifications */

.discover-user-container {
    width: fit-content;
    height: calc(auto + 15px);
    position: absolute;
    right: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

#login-link {
    text-decoration: none;
    font-size: 30px;
    margin-right: 20px;
}

@media screen and (max-width: 800px) {
    .discover-user-container:not(.view-bar-top .discover-user-container) {
        flex-direction: column-reverse;
    }

    .view-bar-top .discover-notifications .dropdown-content {
        position: absolute;
        transform: translateX(20%);
    }

    .view-bar-top .discover-notifications .dropdown-icon {
        margin-top: 0;
    }

    .discover-dropdown:not(.view-bar-top .discover-dropdown),#login-link {
        margin-bottom: 10px;
    }
}

.discover-notifications {
    align-items: center;
    margin-right: 20px;
    height: 100%;
    position: relative;
}

.discover-notifications .dropdown-icon {
    font-size: 30px;
    align-items: center;
    position: relative;
    margin-top: 10px;
    cursor: pointer;
    transition: all 0.2s;
}

.discover-notifications:hover .dropdown-icon,.discover-notifications:hover .dropdown-unread-icon {
    transform: scale(1.2);
    filter: blur(2px);
}

.discover-notifications .dropdown-unread-icon {
    width: 20px;
    position: absolute;
    top: -2.5px;
    right: -12.5px;
    cursor: pointer;
    transition: all 0.2s;
}

.discover-notifications .dropdown-content {
    display: block;
    position: absolute;
    right: 0;
    background-color: rgba(0, 0, 0, 0.65);
    width: 300px;
    height: 300px;
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
    margin-top: 20px;
    z-index: 5;
    overflow: auto;
}

.discover-notifications .dropdown-content::before {
    content: '';
    position: absolute;
    top: -20px;
    right: 15px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 20px solid rgba(0, 0, 0, 0.65);
}

.discover-notifications:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
}

.discover-notifications .dropdown-top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.discover-notifications .dropdown-unread-text {
    text-align: left;
    margin-left: 10px;
    font-size: 20px;
    margin-top: 10px;
    margin-bottom: 0;
    word-wrap: break-word;
}

.discover-notifications .dropdown-total-text {
    text-align: left;
    word-wrap: break-word;
    margin-left: 10px;
    font-size: 15px;
    margin-bottom: 0;
}

.discover-notifications .dropdown-read-all {
    margin-left: 10px;
    margin-top: 10px;
    font-size: 15px;
    height: 30px;
    border-radius: 7.5px;
    border: white 2px solid;
    margin-bottom: 10px;
}

.discover-notifications .dropdown-element {
    display: flex;
    min-height: 50px;
    height: fit-content;
    word-wrap: break-word;
    align-items: center;
    text-align: left;
    cursor: pointer;
    user-select: none;
    border-top: 2px white solid;
    padding: 5px 10px 5px 10px;
    transition: all 0.2s;
    position: relative;
}

.discover-notifications .dropdown-element:hover {
    background-color: #F62F87;
}

.discover-notifications .dropdown-element #icon {
    width: 40px;
    min-width: 40px;
    max-width: 40px;
    margin-right: 10px;
    user-select: none;
}

.discover-notifications .dropdown-element #unread-icon {
    width: 20px;
    position: absolute;
    top: -5px;
    right: 0;
}

/* Discover dropdown */

.discover-dropdown .dropdown-icon {
    z-index: 10;
    width: 50px;
    rotate: -15deg;
    align-items: center;
    display: flex;
    cursor: pointer;
    transition: all 0.2s;
}

.discover-dropdown .dropdown-icon:hover {
    transform: scale(1.2);
    filter: blur(2px);
}

.discover-dropdown {
    height: 100%;
    z-index: 5;
}

.discover-dropdown .dropdown-content {
    display: block;
    position: absolute;
    right: 0;
    background-color: rgba(0, 0, 0, 0.65);
    width: 175px;
    height: auto;
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
    margin-top: 20px;
    overflow: hidden;
    z-index: 5;
}

.discover-dropdown .dropdown-content::before {
    content: '';
    position: absolute;
    top: -20px;
    right: 15px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 20px solid rgba(0, 0, 0, 0.65);
}

.discover-dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
}

.discover-dropdown .dropdown-element {
    width: 100%;
    height: 40px;
    display: flex;
    border-bottom: 2px white solid;
    transition: all 0.2s;
    align-items: center;
    cursor: pointer;
}

.discover-dropdown .dropdown-element:hover {
    background-color: #F62F87;
}

.discover-dropdown .dropdown-element img {
    height: 30px;
}

.discover-dropdown .dropdown-element * {
    display: flex;
    align-items: center;
    margin-left: 10px;
    margin-right: 10px;
}

.discover-dropdown .dropdown-element i {
    font-size: 22.5px;
}

.dropdown-bottom {
    border-bottom: none !important;
}

.discover-dropdown .dropdown-top {
    border-bottom: white 2px solid;
    text-align: left;
}

.discover-dropdown .dropdown-greeting {
    text-align: left;
    margin-left: 10px;
    font-size: 20px;
    margin-top: 10px;
    margin-bottom: 0;
    word-wrap: break-word;
}

.discover-dropdown .dropdown-email {
    font-size: 12px;
    margin-top: 0;
    margin-left: 10px;
    margin-bottom: 10px;
}

/* Discover tabs */

.discover-filter-buttons {
    width: 100%;
    text-align: center;
    position: relative;
    top: 15px;
    z-index: 5;
    margin-bottom: 20px;
}

.discover-top-hr {
    margin-top: 15px;
    border-width: 5px;
    width: 95% !important;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 5px;
    margin-bottom: 20px;
}

.discover-filter-buttons .discover-highlighted {
    background-color: #F7349E;
}

.discover-filter-buttons button:hover {
    transform: scale(1.1);
}

.discover-filter-button {
    margin-right: 10px;
    background-color: rgba(255, 255, 255, 0.363);
    font-weight: normal;
    font-family: 'Titan One', sans-serif;
    text-shadow: 2px 2px #00000044;
    border: white 2px solid;
    min-width: 160px;
    text-transform: uppercase;
}

@media screen and (max-width: 800px) {
    .discover-filter-buttons .discover-filter-button {
        margin-top: 10px;
    }

    .discover-tab-container {
        margin-top: 160px;
        padding: 0;
    }
}

/* Discover search */

.checkbox-item {
    display: inline-flex;
    align-items: center;
}

.checkbox-list label {
    margin-top: 0;
    margin-left: 5px;
}

.checkbox-item {
    display: flex;
    margin-top: 5px;
}

.load-more-button {
    display: none;
    margin-left: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.search-box {
    height: auto;
    border-radius: 10px;
    width: 50vw;
    height: 5vh;
    margin-top: 5px;
}

.search-box .input-group {
    height: 100%;
}

.search-section {
    width: 75vw;
    height: 5vh;
    display: inline-flex;
    justify-content: center;
    align-items: flex-end;
    margin: 0 auto;
    width: 100%;
    margin-top: 20px;
}

.search-button {
    width: 5vh;
    height: 5vh;
    margin-left: 20px;
}

.search-button:hover {
    transform: none;
    font-size: 25px;
}

@media screen and (max-width: 800px) {
    .search-box {
        width: 80vw;
    }

    .search-box .input-group {
        width: 80vw;
    }

    .search-box button {
        width: 10% !important;
    }
}

/* BS tooltips & modals */

.tooltip-inner {
    font-family: 'Asap', sans-serif;
    font-weight: bold;
}

.modal-header {
    border-bottom: 2px solid white;
    background-color: #26C7EC;
    padding: 10px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.modal-button {
    position: absolute !important;
    left: 50%;
    transform: translateX(-50%);
    background-color: #26C7EC;
    color: white;
    bottom: -22.5px;
    transform-origin: center;
    text-shadow: 2px 2px #00000044;  
    width: auto;
    text-wrap: nowrap;
    padding-left: 20px;
    padding-right: 20px;
    height: 45px;
    border: 3px white solid;
    font-weight: normal;
    font-family: 'Titan One', sans-serif;
    overflow: hidden;
    text-transform: uppercase;
}

.modal-button:hover {
    transform: translateX(-50%) scale(1.15);
}

.modal-content {
    background-color: #2AB0D0;
    border-radius: 20px;
    border: 3px white solid;
}

.modal-title {
    text-align: center;
    font-weight: normal;
    font-family: 'Titan One', sans-serif;
    text-transform: uppercase;
    margin: 0;
    font-size: 30px;
}

.modal-body {
    text-align: center;
    font-size: 15px;
    padding-bottom: 30px;
}

.modal-body textarea {
    width: 90%;
    max-width: 90%;
    min-width: 90%;
}


.modal-body .checkbox-item {
    justify-content: center;
}

.modal-buttons-container {
    display: flex;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -22.5px;
}

.multi-button-modal .modal-button  {
    position: static !important;
    bottom: 0;
    margin-right: 20px;
    transform: translate(0%);
}

.multi-button-modal .modal-button:last-child {
    margin-right: 0;
}

.multi-button-modal .modal-button:hover {
    transform: scale(1.2);
}

.dropdown-menu {
    background-color: rgba(0, 0, 0, 0.65);
    border: white 2px solid;
    height: auto;
    padding-top: 0;
    padding-bottom: 0;
}

.dropdown-menu li a {
    color: white;
    font-family: 'Asap', sans-serif;
    font-weight: bold;
    transition: all 0.2s;
    border-bottom: white 2px solid;
    display: flex;
    align-items: center;
}

.dropdown-menu li a:hover {
    background-color: #F62F87;
    color: white;
}

.dropdown-menu li a i {
    margin-right: 10px;
}

.dropdown-menu li a img {
    margin-right: 10px;
    width: 16px;
}

/* Reviews */

.filled-star {
    color: #FFD83C;
    transition: all 0.2s;
}

.review {
    background-color: rgb(0, 0, 0, 0.6);
    max-width: 50vw;
    min-height: 10vh;
    border-radius: 10px;
    box-sizing: border-box;
    position: relative;
    padding-bottom: 20px;
    padding-top: 5px;
    margin-bottom: 20px;
    margin-left: 20px;
    display: none;
}

.review-top {
    margin-top: 10px;
    height: 42.5%;
    position: relative;
}

.review-contents {
    padding-top: 10px;
    padding-left: 10px;
}

.review .avatar {
    width: 50px;
    min-width: 50px;
    height: 50px;
    border-radius: 7px;
}

.review-top * {
    margin: 0;
}

.review-user {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.review-user a {
    margin-left: 10px;
}

.review-user * {
    display: inline-flex;
}

.review-user {
    margin-left: 10px;
}

.review-stars {
    margin-left: 10px;
    margin-bottom: 10px;
}

.review .acknowledge {
    width: 30px;
    position: absolute;
    top: -10px;
    left: -10px;
}

.review .acknowledge-user {
    cursor: pointer;
    transition: all 0.2s;
}

.review .acknowledge-user:hover {
    transform: scale(1.2) rotate(-5deg);
}

.review .acknowledge-user:active {
    transform: scale(0.8) rotate(5deg);
}

.emoticon {
    width: 40px;
    position: absolute;
    top: -20px;
    right: -20px;
}

#review-action-buttons {
    display: inline;
}

#review-creator-buttons,#creator-buttons  {
    display: none;
}

#level-action-buttons {
    display: inline;
}

#level-creator-buttons,#dropdown-creator-buttons {
    display: none;
}

.emoticon-area {
    display: flex;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.modal-body .emoticon-area {
    justify-content: center;
}

.emoticon-area button {
    background-color: #565DA6;
    border: white 2px solid;
    margin-bottom: 10px;
}

#add-emoticon-container button {
    width: 50px;
    height: 50px;
    margin-right: 20px;
}

#edit-emoticon-container button {
    width: 40px;
    height: 40px;
    margin-right: 20px;
}

#edit-review-text {
    height: min-content;
}

.emoticon-area button img {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    outline: none;
}

#add-emoticon-container button img {
    width: 30px;
}

#edit-emoticon-container button img {
    width: 25px;
}

.selected-emote {
    outline: #FFBB3F 2px solid !important;
}

.emoticon-area button:hover {
    background-color: #F936A3;
}

/* Shows */

.show-button {
    position: relative;
    min-width: 220px;
    max-width: 220px;
    width: 220px;
    min-height: 300px;
    max-height: 300px;
    height: 300px;
    margin-left: 50px;
    margin-top: 50px; 
    border-radius: 15px;
    overflow: hidden;
    border: white 4px solid;
    outline: rgba(255, 255, 255, 0) 4px solid;
    box-shadow: 0px 4px #0000001f;
    cursor: pointer;
    transition: all 0.2s;
}

.show-button .show-button-top {
    z-index: 5;
    position: relative;
    overflow: hidden;
    top: 0;
    height: 25%;
    background-color: #33C9EA;
    width: 100%;
    font-family: 'Titan One', sans-serif;
    font-weight: normal;
    font-size: 22.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-transform: uppercase;
    transition: all 0.2s;
    text-overflow: ellipsis;
}


.show-button .show-button-img {
    height: 85%;
    object-fit: contain;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 25%);
}

.show-button:hover {
    outline: white 4px solid;
    border: #F8C800 4px solid;
    transform: scale(1.05);
}

.show-button:hover .show-button-top {
    background-color: #F935A3;
}

.show-button:active {
    transform: scale(0.95);
}

.show-rules {
    width: 40vw;
    height: 70vh;
    background-color: #17CEF2;
    border-radius: 10px;
    border: white 5px solid;
    position: absolute;
    top: calc(50% - 50px);
    left: 50%;
    transform: translate(-50%, -50%);
}

.show-rules-top {
    width: 90%;
    height: 5%;
    background-color: #272527;
    margin-left: 20px;
    margin-top: 20px;
    border-radius: 10px;
    text-transform: uppercase;
    display: flex;
    padding-left: 20px;
    align-items: center;
    letter-spacing: 1px;
    font-size: 20px;
}

.show-rules-option {
    position: relative;
    width: 90%;
    height: 6%;
    margin-left: 20px;
    border-radius: 10px;
    transition: all 0.2s;
    padding-left: 20px;
    display: flex;
    align-items: center;
    font-size: 18px;
    letter-spacing: 1px;
    text-shadow: none;
    cursor: pointer;
    margin-top: 20px;
}

.show-rules-option:hover {
    background-color: #8BDDF3;
}

.show-rules-option-value {
    position: absolute;
    right: 50px;
    width: auto;
    text-align: end;
}

.show-rules button {
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.show-rules-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.shows-container {
    margin-left: 20px;
    display: flex;
    flex-wrap: wrap;
}

.shows-container .show-button {
    margin: 0;
    margin-right: 20px;
    margin-top: 20px;
}

.my-shows-add-show {
    position: absolute;
    top: 20px;
    right: 20px;
}

.view-show-edit-cover-image button {
    z-index: 3;
    position: relative;
    width: 75px;
    height: 75px;
    overflow: hidden;
    margin-top: 10px;
    margin-right: 10px;
}

.view-show-edit-cover-image button:hover {
    transform: scale(1.1);
}

.view-show-edit-cover-image button img {
    z-index: 2;
    position: absolute;
    width: 200%;
    top: 0;
    left: 0;
}

.view-show-edit-cover-image {
    margin-bottom: 0;
}

/* Bookmarks */

.bookmarks-bar {
    height: 15vh;
    background-image: url(/assets/media/Backgrounds/CrownBG.png);
    background-position: center;
    background-size: cover;
    width: 100%;
    margin-left: 0 !important;
    border-top: white solid 2px;
    border-bottom: white solid 2px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 4;
    top: 0;
}

.bookmarks-bar p {
    display: inline;
    text-align: center;
    margin-right: 20px;
    margin-left: 20px;
    font-size: 20px;
}

.bookmarks-bar * {
    margin-top: 0;
    margin-bottom: 0;
}

.bookmarks-bar i {
    margin-left: 0;
    margin-top: 0;
}

.bookmarks-bar .level-box-button {
    margin-right: 20px;
}

#checkbox {
    font-size: 25px;
}

.level-button-with-checkbox {
    display: none;
}

.level-button-with-checkbox input {
    margin-left: 20px;
    margin-top: 20px;
}

/* Login - where next */

.where-next {
    display: flex;
    position: absolute;
    flex-direction: column;
    width: auto;
    min-width: 50vw;
    height: auto;
    background-color: rgba(0, 0, 0, 0.75);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 20px;
    border: white 2px solid;
    padding-left: 20px;
    padding-right: 20px;
}

.where-next h1 {
    text-align: center;
    margin-top: 20px;
}

.where-next .cards-container {
    margin-top: 50px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    margin-bottom: 50px;
}

.where-next .cards-container .card {
    width: 300px;
    height: auto;
    background: none;
    border-radius: 10px;
    border: none;
    display: flex;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    color: white;
    transition: all 0.2s;
    margin-right: 20px;
}

.where-next .cards-container .card:last-child {
    margin-right: 0;
}

.where-next .cards-container .card:hover {
    transform: scale(1.05);
}

.where-next .cards-container .card:active {
    transform: scale(0.975);
}

.where-next .cards-container .card .title {
    font-size: 20px;
    font-family: 'Titan One', sans-serif;
    font-weight: normal;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.where-next .cards-container .card .description {
    margin-top: 0;
    font-size: 15px;
}

.where-next .cards-container .card img {
    margin-bottom: 10px;
    border-radius: 10px;
    border: white 2px solid;
}

/* Avatars */

.avatar {
    width: 100px;
    min-width: 100px;
    height: 100px;
    border: 2px white solid;
    background-image: url(../media/Backgrounds/StripedBG.png);
    background-size: cover;
    border-radius: 10px;
    position: relative;
}

.avatar #bean {
    max-width: 90%;
    max-height: 90%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Unknown or Misc */

.section-separator {
    margin-bottom: 40px;
}

.whole-page *:not(.bookmarks-bar *) {
    margin-left: 20px;
    margin-top: 20px;
}

.a-like-h2 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 20px !important;
    display: block;
}

.powered-by-cloudseeker {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    flex-direction: row;
    width: 100%;
    align-items: center;
}

.powered-by-cloudseeker img {
    width: 100px;
    margin-right: 20px;
}

.powered-by-cloudseeker p {
    margin-bottom: 5px;
    font-size: 15px;
}

.powered-by-cloudseeker p:last-child {
    margin-bottom: 0;
}

/* Viewport-specific styles */

@media screen and (max-width: 800px) {
    #login-link {
        display: flex;
        position: relative;
        margin-right: 20px;
        justify-content: flex-end;
    }
}

@media screen and (max-width: 800px) {
    .review {
        width: 90vw;
        max-width: 90vw;
    }

    .review .level-box-button {
        font-size: 0;
        padding-left: 5px;
        padding-right: 5px;
    }

    .review .level-box-button:hover {
        transform: scale(1.2);
    }

    .review .level-box-button i {
        font-size: 18px !important;
        margin-right: 0;
    }

    .bookmarks-bar {
        flex-direction: column;
        align-items: first baseline;
        height: fit-content;
    }

    .bookmarks-bar * {
        margin-top: 20px;
    }

    .bookmarks-bar .level-box-button:last-child {
        margin-bottom: 20px;
    }

    .show-rules {
        width: 90vw;
        height: 90vh;
    }

    .show-rules-option-value {
        display: none;
    }

    .where-next {
        min-height: 90vh;
        position: static;
        transform: none;
        margin: 20px auto 20px auto;
    }

    .where-next .cards-container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
    }

    .where-next .cards-container .card {
        margin-right: 0;
    }
}

@media screen and (max-width: 1000px) {
    .where-next {
        width: 90vw;
    }
}
