/* Copyright © 2026 Poplar */

html,
body,
#root {
    overflow: initial;
    height: 100dvh;
    width: 100vw;
    overflow-x: hidden;
}

html, body{
    overscroll-behavior: none; /* Disable rubber-band effect */

}

#root:not(.noOverScroll) {
    overscroll-behavior-x: none;
    overscroll-behavior-y: auto;

}

body {
    min-height: 100dvh;
    margin: 0;
    font-family: 'Geist Medium';
}

body::before {
    content: "";
    position: fixed;
    top: -50px;
    bottom: 0px;
    width: 100vw;
    height: 50px;
    background-color: #100f0a;
    z-index: 1000;
}

:root {
    color-scheme: only dark;
}

/* Portrait mobile devices */
@media screen and (max-width: 760px) {
    .landscape-overlay-block {
        display: none !important;
    }
}

@media screen and (min-width: 761px) {
    .fullscreen-overlay:not(.landscape-overlay-block) {
        display: none !important;
    }
    .elem-main-section {
        display: none !important;
    }
}


/* All other devices and orientations */
/* @media (min-width: 768px), (orientation: landscape) {
    #root { display: none !important; }
} */


video::-internal-media-controls-overlay-cast-button {
    display: none;
}


.landscape-overlay-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Geist Bold';
    font-size: 2em;
    color: white;
    text-align: center;
    width: 50%;
    z-index: 1200 !important;
}

/* #landscape-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1500;
    cursor: pointer;
    background-image: linear-gradient(to right, #171717, #1a1a1a);
    -webkit-backdrop-filter: blur(.65em);
    backdrop-filter: blur(.65em);
} */

@font-face {
    font-family: 'Geist Regular';
    src: url('./Geist-Regular.woff2') format('woff2');
}

@font-face {
    font-family: 'Geist Medium';
    src: url('./Geist-Medium.woff2') format('woff2');
}

@font-face {
    font-family: 'Geist SemiBold';
    src: url('./Geist-SemiBold.woff2') format('woff2');
}

@font-face {
    font-family: 'Geist Bold';
    src: url('./Geist-Bold.woff2') format('woff2');
}

@font-face {
    font-family: 'Geist Black';
    src: url('./Geist-Black.woff2') format('woff2');
}

@-ms-viewport {
    width: device-width;
}


#bg-pane {
    aspect-ratio: 9/16;
    background: #111010;
    height: 100dvh;
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}

/*
#bg-pane {
    aspect-ratio: 9/16;
    border-radius: 12px;
    transition: 500ms ease-in;
    transition-property: #280068, #2e003c, #280068;
    background: linear-gradient(173deg, #280068, #2e003c);
    height: 100dvh;
    width: 100vw;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}
  
#bg-pane::before {
    content: "";
    position: absolute;
    background: linear-gradient(45deg, #280068, #3b004d);
    filter: blur(90px) brightness(2.125);
    left: 20%;
    top: 10%;
    width: 70%;
    height: 50%;
    border-radius: 65px;
    animation: blob 11s infinite cubic-bezier(0.6, -0.28, 0.735, 0.045);
    transform-origin: 60%;
}
  
#bg-pane::after {
    content: "";
    position: absolute;
    background: linear-gradient(173deg, #280068, #3b004d);
    filter: blur(110px) brightness(1.75);
    left: 40%;
    top: 30%;
    width: 70%;
    height: 80%;
    border-radius: 65px;
    animation: blob 13s infinite cubic-bezier(0.215, 0.61, 0.355, 1) reverse;
    transform-origin: 60%;
} 
*/

.react-grid-layout .comment-list {
    background-color: transparent;
    -webkit-overflow-scrolling: touch;
    position: relative;
    transition: height 200ms ease;
}

.grid-container:not(.user-grid):not(.profile-main) {
    contain: layout paint size;
}

.react-grid-layout {
    margin-top: -0.5vh;

}

.profile-main.popout .react-grid-layout .profile-main.popout .comment-list {
    margin-top: -0.75vh !important;
    margin-bottom: -1.75vh !important;
}


@keyframes blob {
    0% {
        translate: 0 0;
        rotate: 0deg;
    }

    30% {
        rotate: 40deg;
    }

    50% {
        transform: translate(300px, 390px) scale(1.1);
    }

    80% {
        rotate: 90%;
    }
}

@keyframes gradient {
    0% {
        background-position: 36% 0%;
    }

    50% {
        background-position: 65% 100%;
    }

    100% {
        background-position: 36% 0%;
    }
}

@keyframes gradient_profile {
    0% {
        background-position: 6% 0%;
    }

    50% {
        background-position: 11% 100%;
    }

    100% {
        background-position: 6% 0%;
    }
}

#content {
    width: 100%;
}

button {
    font-family: 'Geist Medium';
}

textarea {
    font-family: 'Geist Medium';
}

.profile-main:not(.popout) .react-grid-layout {
    margin-bottom: 7vh;
    margin-top: -0.75vh;
}


.profile-main:not(.popout) .comment-list {
    margin-bottom: 7vh;

}

.fullscreen-overlay {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 1500 !important;
    cursor: pointer;
}

.fullscreen-overlay:not(.darken) {
    background-color: rgba(0, 0, 0, 0.300);
    -webkit-backdrop-filter: blur(.65em);
    backdrop-filter: blur(.65em) !important;
}

.fullscreen-overlay.darken {
    background-color: rgba(0, 0, 0, 0.65);
}

.popup-fullscreen-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1500;
    background-color: rgba(0, 0, 0, 0.300);
}

.container-fluid {

    padding-left: 20px;
    padding-right: 20px;
}



.container-fluid:not(.slide-out-bottom-buttons):not(.form) {
    width: 100%;
    /* box-sizing: border-box; */
}


.field {
    display: block;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 600;
    line-height: 1.25;
    width: 100%;
    border-radius: 0.25rem;
    border-width: 1px;
    border-color: transparent;
    outline: 0;
    user-select: none;
    box-sizing: border-box;
}

.field:focus {
    outline: 0;
    text-decoration: none;
}

.field-light {
    transition-property: background-color, border-color, color, fill, stroke;
    color: #ffffff;
    background-color: rgba(172, 172, 177, 0.4);
    border-width: 1px;
    border-color: transparent;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    transition-duration: 300ms;
}

.field-light::placeholder {
    color: rgba(172, 172, 177, 0.15);
}

.btn {
    display: inline-block;
    padding-left: 0.875rem;
    padding-right: 0.875rem;
    padding-top: 7px;
    padding-bottom: 7px;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
    text-decoration: none;
    text-transform: capitalize;
    user-select: none;
    border-radius: 0.25rem;
    border-width: 0;
    font-size: 1.0625rem;
    line-height: 1.25;
}

.btn.red:not(:disabled) {
    background-color: #f00 !important;
}

.txt.red {
    color: #f00;
}

.btn-xs {
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 0.625rem;
    padding-right: 0.625rem;
    font-size: 0.75rem;
    line-height: 1.25;
    border-radius: 0.125rem;
}

.btn-primary {
    overflow: hidden;
    position: relative;
    z-index: -1;
    color: rgb(213, 213, 213);
    background-color: transparent;
    transition-property: all;
    transition-duration: 300ms;
}

.btn-primary:hover {
    color: white;
}

.btn-primary:disabled {
    pointer-events: none;
    color: rgb(239, 239, 241);
}

.btn-primary::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
    background-color: rgb(95, 123, 239);
    transition-property: all;
}

.btn:hover {
    text-decoration: none;
}

.btn:focus {
    text-decoration: none;
}

.btn::before,
.btn::after {
    border-radius: 0.25rem;
}

.btn-xs::before,
.btn-xs::after {
    border-radius: 0.125rem;
}

/* input::placeholder {
    color: rgba(255, 255, 255, 0.45);
} */

input[type="text"],
input[type="password"],
input[type="email"],
input[type="phone"] {
    font-family: 'Geist Medium';
    color: white;
}

.drag-handle {
    height: 40px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    pointer-events:all !important;
}

.elem-image-section:not(.expanded):not(.text-section):not(.chat-comments) .drag-handle {
    mix-blend-mode: luminosity;
}

.small-drag-handle {
    width: 40%;
}

.drag-handle-inner {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.45);
    width: 70px;
    height: 3.5px;
    border-radius: 3px;
    -webkit-backdrop-filter: blur(4em);
    backdrop-filter: blur(4em);
}

.layoutJSON {
    background: #ddd;
    border: 1px solid black;
    margin-top: 10px;
    padding: 10px;
}

.columns {
    -moz-columns: 120px;
    -webkit-columns: 120px;
    columns: 120px;
}

@keyframes fadeOutAnimation {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.fadeout-overlay {
    animation: fadeOutAnimation ease 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

.react-grid-layout {
    animation: fadeInAnimation ease 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

.grid-container {
    overscroll-behavior-x: none;
    overflow-x: hidden;
    width: 100%;
    margin-top: -0.5vh;
    transform: translateZ(0);
    will-change: transform;
    scroll-behavior: smooth;
}
.grid-container.popout {
    overflow-y: scroll;
}
.grid-container:not(.popout) {
    overflow-y: hidden;
}


#user-grid {
    background:rgba(16,16,16,1)
}

/* .react-grid-layout > .react-grid-item {
    content-visibility: auto;
} */


#main-grid:not(.profile-main) {
    margin-top: 3.5vh;
    scroll-behavior: smooth;
    top: 0;
    padding-bottom: 7vh;
    height: calc(100dvh - 5vh - 7vh);
    position: absolute;
    width: 100vw;
}
.grid-container:not(.full-screen):not(.profile-main) {
    overflow-y: auto;
    overflow-x: hidden;
    width: 100vw;
    overscroll-behavior-block: auto;
}
.grid-container.full-screen{
    overflow: hidden !important;
}

.temp-auth-modal {
    background-color: rgba(255, 255, 255, 0.5);
    width: 80%;
    position: fixed;
    top: 45%;
    left: 10%;
    z-index: 15;
    text-align: center;
    padding: 10px;
    border-radius: 5px;
    word-break: break-all;
    box-sizing: border-box;
}

.shell-background {
    width: 100%;
    background-color: rgb(65, 65, 66);
}

.shell-content-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    min-height: 100dvh;
    flex-direction: column;
}

.shell-content-container h1 {
    font-weight: 700;
    font-size: 1.375rem;
    color: #e5e7eb;
}

.shell-content-container img {
    width: 56px;
    height: 48px;
}
a.login-page-section-forgot {
    color: #4f6cce
}

.feedback-view input.field-light::placeholder,
.contact-view input.field-light::placeholder,
.feedback-view textarea.field-light::placeholder,
.contact-view textarea.field-light::placeholder,
.login-page-section-list input.field-light::placeholder {
    color: #fff;
    opacity: 0.45;
}

.feedback-view input.field-light:-ms-input-placeholder,
.contact-view input.field-light:-ms-input-placeholder,
.feedback-view textarea.field-light:-ms-input-placeholder,
.contact-view textarea.field-light:-ms-input-placeholder,
.login-page-section-list input.field-light:-ms-input-placeholder {
    color: #fff;
    opacity: 0.45;
}

.feedback-view input.field-light::-ms-input-placeholder,
.contact-view input.field-light::-ms-input-placeholder,
.feedback-view textarea.field-light::-ms-input-placeholder,
.contact-view textarea.field-light::-ms-input-placeholder,
.login-page-section-list input.field-light::-ms-input-placeholder {
    color: #fff;
    opacity: 0.45;
}

.feedback-view input.field-light::-webkit-input-placeholder,
.contact-view input.field-light::-webkit-input-placeholder,
.feedback-view textarea.field-light::-webkit-input-placeholder,
.contact-view textarea.field-light::-webkit-input-placeholder,
.login-page-section-list input.field-light::-webkit-input-placeholder {
    color: #fff;
    opacity: 0.45;
}

.login-page-section-form-error {
    color: #FF0000;
}

.page-content-title,
.page-content-text {
    color: #fff;
}

button,
.slide-out-header-buttons>div {
    cursor: pointer
}

.container-fluid.slide-out-list-container .slideout-text-content .page-content-text {
    /* text-align:center; */
    line-height: 1.4;
}

.container-fluid.slide-out-list-container .slideout-text-content .page-content-text::-webkit-scrollbar {
    width: 10px;
}

.container-fluid.slide-out-list-container .slideout-text-content .page-content-text::-webkit-scrollbar-track {
    background: #666;
}

.container-fluid.slide-out-list-container .slideout-text-content .page-content-text::-webkit-scrollbar-thumb {
    background: #ccc !important;
    border-radius: 5px;
}

.container-fluid.slide-out-list-container .slideout-text-content .page-content-text::-webkit-scrollbar-thumb:hover {
    background: #666;
}

.container-fluid.slide-out-list-container .slideout-text-content .page-content-text {
    scrollbar-color: #666 #333;
}

.slide-out-list-container hr {
    border: 1px solid #55544F;
    margin: 1.5em 0;
}

.container-fluid.slide-out-copyright {
    margin: 1.5em 0 0;
    padding-top: 1.5em;
    text-align: center;
    margin-top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0;
    padding-top: 1.5em;
    text-align: center;
    z-index: 1000;
}

.container-fluid.slide-out-copyright>div {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 1em;
    justify-content: center;
    /* padding-top:1.5em; */
}

.slide-out-list-container .page-header-text {
    position: sticky;
    top: 0.5em;
    ;
    z-index: 100;
}

.slide-out-list-container .page-header-text hr {
    display: none;
}

.container-fluid.slide-out-list-container .slideout-text-content .page-content-text {
    overflow-y: auto;
    max-height: calc(100dvh - 200px);
    box-sizing: border-box;
    padding-top: 0;
    /* padding-right:20px; */
    padding-right: 40px;
    height: 70vh;
}

.slide-out-list-container .page-content-text {
    transition: opacity 0.3s;
    font-size: smaller;

}

.chat-messages {
    padding: 1.5em 0.5em;
    box-sizing: border-box;
    padding-left: 5px;
    display: inline-block;
    color: #dddddd;
}

.chat-message-line {
    display: block;
    padding-bottom: 0.5em;
    text-shadow: 1px 1px 0px #000000;
    transition: none !important;
}
.chat-messages,
.chat-messages span {
    transition: none !important;
}

.chat-username {
    display: inline;
    color: #ddd;
    font-weight: bolder;
    padding-right: 5px;
}

.chat-username.mine {
    color: #7c52c0;
    font-family: 'Geist bold';
}

.chat-username:not(.mine) {
    color: #9D9C98;
    font-family: 'Geist bold';
}

.chat-username.deleted {
    opacity: 0.5
}

.chat-message {
    display: inline;
    color: #efeff1e6;
    word-wrap: break-word;

}

.chat-comments .chat-messages {
    position: absolute;
    bottom: 0;
    padding-bottom: 15px;
}

.item-upload-textbox textarea {
    width: 100%;
    height: 100%;
    resize: none;
    border: 0;
    outline: 0;
    background: transparent;
    color: white;
    font-size: 1.3em;
    font-family: 'Geist SemiBold';
    padding: 0.5em;
    box-sizing: border-box;
}

.text-section .chat-messages {
    font-family: 'Geist Bold';
    color: rgba(255, 255, 255, 0.85);
    padding: 0 .7em;
    text-shadow: 1px 1px 0px #000000;
}

.react-grid-item.elem-expanded .chat-comments.elem-image-section .chat-messages {
    font-size: 1em;
    overflow: auto;
    height: 100%;
    width: 100%;
    /* margin-top: 24px; */
    margin-bottom: 36px;
    position: relative;
}

.react-grid-item.elem-expanded:not(.elem-fullscreen) .text-section.elem-image-section .chat-messages {
    font-size: 1.6em;
}

.react-grid-item.elem-expanded.elem-fullscreen .chat-comments.elem-image-section .chat-messages {
    font-size: 1em;
}

.react-grid-item.elem-expanded.elem-fullscreen .text-section.elem-image-section .chat-messages {
    font-size: 1.6em;
}

.react-grid-item:not(.elem-expanded) .chat-comments.elem-image-section .chat-messages {
    font-size: 0.6em;
    min-height: 96%;

}

.react-grid-item:not(.elem-expanded) .text-section.elem-image-section .chat-messages {
    font-size: 1em;
}

.comment-section .comment-section-timestamp {
    font-family: 'Geist medium';
    font-size: 10px;
    color: rgba(255, 255, 255, 0.550);
    margin-left: -3px;
}

.comment-section .comment-section-header {
    margin-bottom: 30px
}

.comment-section .comment-username {
    font-size: 12px;
}

.button-upload {
    background-color: transparent;
    border: none;
    padding: 0;
}

.gif-overlay {
    font-family: 'Geist Bold';
    background: -webkit-linear-gradient(#ffffffe4, #cfcfcfe2, #b2b2b2e6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-backdrop-filter: blur(2.5em);
    backdrop-filter: blur(2.5em);
    font-size: 1.7em;
    cursor: pointer;
    mix-blend-mode: luminosity;
}

.external-video-overlay {
    position: absolute;
    top: 0;
    z-index: 4;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}


.loading-splash {
    width: 100vw;
    height: 100dvh;
    top: 0;
    left: 0;
    background: #100f0a;
    position: fixed;
    z-index: 1250;
    margin: 0;
    align-items: center;
    vertical-align: middle;
}

.MuiDrawer-root .loading-splash {
    height: 100%;
    position: absolute;
    background: #100f0a;
}

.loading-splash img {
    margin: auto;
    display: flex;
    position: absolute;
    bottom: calc(100%/2);
    left: calc(100%/2);
    scale: 4;
}

.loading-splash.loading,
.popout-drawer {
    z-index: 1250 !important;
    background: #100f0a !important;
}

.confirmationMessage {
    font-family: 'Geist Black';
    color: rgb(240, 85, 85);
}

.popout-drawer.hasAnimation {
    transition: height 0.4s linear !important;
}

.MuiDrawer-root:not(.uploader) .MuiPaper-root {
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    border-top: solid thin rgb(40, 40, 40);
    box-shadow: 0 21px 45px 0px rgb(0, 0, 0, 0.90), 0 0px 4px .3px rgba(3, 3, 3, 0.5);
    -webkit-backdrop-filter: blur(2.5em);
    backdrop-filter: blur(2.5em);
}

#root[aria-hidden="true"] .profile-main.upload-view,
#root[aria-hidden="true"] .top-nav-bar.upload-view,
#root[aria-hidden="true"] .grid-container.home-grid.upload-view {
    transform: scale(0.98);
    transform-origin: 50px 50px;
    transition-duration: 500ms;
}

#root:not([aria-hidden="true"]) .profile-main.upload-view,
#root:not([aria-hidden="true"]) .top-nav-bar.upload-view,
#root:not([aria-hidden="true"]) .grid-container.home-grid.upload-view {
    transform: unset;
    transform-origin: unset;
    transition-duration: 500ms;
}

.end-of-results {
    margin-top: -20px;
    padding-top: 5px;
    padding-bottom: 30px;
    position: relative;
    color: rgba(255, 255, 255, 0.440);
    text-align: center;
    font-size: .75em;
    font-family: 'Geist medium';
}

.MuiDrawer-paper.MuiDrawer-paperAnchorBottom.uploader {
    /* background: linear-gradient(rgba(15, 15, 7, 0.975), rgba(15, 15, 7, 0.975), rgba(15, 15, 7, 0.975)); */
    background:#191919;
    text-align: center;
    padding: 0 1em;
    border-radius: 20px 20px 0 0;
}

.MuiDrawer-paper.MuiDrawer-paperAnchorBottom.uploader .select-type-modal-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    justify-content: start; 
    gap: 22px 10px;
    width:300px;
    max-width: 100%;
    margin: 0 auto;
}
.MuiDrawer-paper.MuiDrawer-paperAnchorBottom.uploader .select-type-modal-buttons button {
    flex: 0 0 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hidden {
    display: none;
    opacity: 1;
    transition: opacity 250ms ease-in, display 0ms ease-in 0ms;
}

.MuiBackdrop-root.MuiModal-backdrop,
.MuiDrawer-root.MuiDrawer-modal,
#user-grid,
.MuiPaper-root.MuiPaper-elevation.hasAnimation {
    transition: all 0.4s ease !important;
}

/* Marquee */
.react-grid-item .element-id-large,
.react-grid-item .element-id-small {
    /* overflow: hidden; */
    white-space: nowrap;
    bottom: 0px;
}

.react-grid-item .element-id-large {
    margin-top: -3px;
}
.react-grid-item .element-id-small {
    margin-top: -1.5px;
}

.__floater__open {
    backdrop-filter: blur(.65em);
    -webkit-backdrop-filter: blur(.65em);
    width: 100%;
}

.no-content-message,
.must-login-message {
    text-align: center;
    padding: 25vw;
}

.must-login-message .must-login-link {
    margin-bottom: 12px;
}

.must-login-message .must-login-link a {
    color: #858df4;
    font-size: 24px;
    font-weight: 500;
    font-family: 'Geist Bold';
}

.no-content-message .no-results,
.must-login-message .must-login-message-text {
    color: #c9c9c98e;
    font-size: 14px;
    font-style: 400;
}

.loading-spinner {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}

.steps-copyright {
    position: absolute;
    bottom: 12px;
    width: 100%;
    left: 0px;
    right: 0px;
}

.block-type-video .comment-count,
.block-type-video .pin-icon {
    bottom: 80px;
}

.comment-count.embedded {
    left:54px !important;
}

.pin-icon {
    padding: 5px !important;
    margin-left: 7px !important;
}

.comment-count,
.pin-icon {
    position: absolute;
    left: 16px;
    bottom: 40px;
    background: rgba(40, 40, 40, 0.525);
    -webkit-backdrop-filter: blur(.85em);
    backdrop-filter: blur(.85em);
    display: flex;
    align-items: center;
    padding: 5px 10px 5px 8px;
    border: solid;
    border-radius: 4px;
    border-width: .175px;
    border-color: #61616140;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.525);
    width: fit-content;
    gap: 10px;
}

.pin-icon.active {
    background: white;
}

.comment-count svg,
.pin-icon svg {
    height: 12px;
    width: auto;
    opacity: 0.75;
}

.comment-count span,
.pin-icon span {
    font-weight: 600;
    color: #B060F5;
    font-size: 10px;
    letter-spacing: 1px;
}

.elem-fullscreen .comment-count svg,
.elem-fullscreen .pin-icon svg {
    height: 14px;
}

.elem-fullscreen .comment-count span {
    font-size: 12px
}

.hiddenBlur .chat-messages,
.hiddenBlur .send-comment-container {
    filter: blur(5px);
}

.hiddenBlur:not(.isContextMenu) .elem-side-button:not(.kebab) {
    display: none;
}

.hiddenBlur .element-header,
.hiddenBlur .drag-handle,
.hiddenBlur.isContextMenu .elem-side-button {
    display: none;
}


/* ANIMATED LOADER */

.loading-page {
    --cell-size: 8px;
    --cell-spacing: .75px;
    --cells: 3;
    --total-size: calc(var(--cells) * (var(--cell-size) + 2 * var(--cell-spacing)));
    display: flex;
    flex-wrap: wrap;
    width: var(--total-size);
    height: var(--total-size);
    margin-left: calc(50vw - var(--total-size) / 2);
    margin-right: calc(50vw - var(--total-size) / 2);
    padding-bottom: var(--total-size);
}

.profile-main:not(.popout) .loading-page:not(.comments-loading) {
    margin-top: -7vh;
    padding-bottom: 12vh;
}
.profile-main:not(.popout) .loading-page-short {
    height: 80px;
}

.centered {
    display: flex;
    justify-content: center;
    align-items: center;
}

.loading-page .cell {
    flex: 0 0 var(--cell-size);
    margin: var(--cell-spacing);
    background-color: transparent;
    box-sizing: border-box;
    border-radius: 1px;
    animation: 1.5s ripple ease infinite;
}

.loading-page .cell.d-1 {
    animation-delay: 100ms;
}

.loading-page .cell.d-2 {
    animation-delay: 200ms;
}

.loading-page .cell.d-3 {
    animation-delay: 300ms;
}

.loading-page .cell.d-4 {
    animation-delay: 400ms;
}

.loading-page .cell:nth-child(1) {
    --cell-color: #2F0076;
}

.loading-page .cell:nth-child(2) {
    --cell-color: #3C0B85;
}

.loading-page .cell:nth-child(3) {
    --cell-color: #491695;
}

.loading-page .cell:nth-child(4) {
    --cell-color: #5521A4;
}

.loading-page .cell:nth-child(5) {
    --cell-color: #622CB4;
}

.loading-page .cell:nth-child(6) {
    --cell-color: #6F37C3;
}

.loading-page .cell:nth-child(7) {
    --cell-color: #7C42D2;
}

.loading-page .cell:nth-child(8) {
    --cell-color: #884DE2;
}

.loading-page .cell:nth-child(9) {
    --cell-color: #9558F1;
}

/*Animation*/
@keyframes ripple {
    0% {
        background-color: transparent;
    }

    30% {
        background-color: var(--cell-color);
    }

    60% {
        background-color: transparent;
    }

    100% {
        background-color: transparent;
    }
}


/* Tour CSS */
.popup-card {
    max-height: 60vh;
    width: 70vw;
    background: linear-gradient(#8E50FF, #945FFF, #996DFF);
    padding: 1rem;
    position: absolute;
    border-radius: .6rem;
    border: 0.4vmin solid #05060f;
    box-shadow: 0.3rem 0.3rem #05060f;
    overflow: hidden;
    color: black;
    z-index: 1600;
    margin-left: 18%;
    margin-top: 10%;
}

/*Card content*/
.pricing-block-content {
    display: flex;
    height: 100%;
    flex-direction: column;
    gap: 0.5rem;
}

.pricing-plan {
    color: #05060f;
    font-size: 1.3rem;
    line-height: 1.25;
    font-weight: 700;
}

.price-value {
    display: flex;
    color: #05060f;
    font-size: 1.8rem;
    line-height: 1.25;
    font-weight: 700;
}

.pricing-note {
    opacity: 0.8;
}

/*Checklist*/
.check-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 0.25rem 0 25px;
    padding:0;
}

.check-list-item {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    position: relative;
    padding-left: 1em;
    font-size:15px;
}

.check-list-item::before {
    content: "-"; 
    position: absolute;
    left: 0; 
    color: inherit; 
}
.tour-logo {
    display: flex;
    align-items: flex-start;
    gap: 5px;
    text-transform: uppercase;
    margin: 0.5rem 0 0;
    padding: 0;
    font-weight:600;
}
.tour-copyright {
    font-size: 6px;
}
#close-tour {
    position: absolute;
    top: 10px;
    right: 10px;
}

.notification-block .MuiAlert-root .MuiAlert-action {
    margin0right:0;
    padding-top:0;
}
.notification-block .MuiAlert-root .MuiAlert-message {
    font-size:14px;
    font-family: 'Geist Medium';
}
.MuiAlert-standardInfo,
.MuiAlert-standardSuccess,
.MuiAlert-standardError {    
    align-items: center;
}
.MuiAlert-standardInfo svg,
.MuiAlert-standardSuccess svg,
.MuiAlert-standardError svg {    
    height:24px;
    width: auto;
}

.MuiAlert-standardInfo .MuiAlert-message {
    color:#dadada
}
.MuiAlert-standardInfo .MuiAlert-icon svg {
    fill:#dadada
}
.MuiAlert-standardSuccess .MuiAlert-message {
    color:#8ee496
}
.MuiAlert-standardSuccess .MuiAlert-icon svg {
    fill:#8ee496
}

.MuiAlert-standardError .MuiAlert-message {
    color:#ff5959
}
.MuiAlert-standardError .MuiAlert-icon svg {
    fill:#ff5959
}

.MuiAlert-root {
    z-index: 1199 !important;
}
.noOverScroll {
    overscroll-behavior: none !important;
    touch-action: none !important;
    pointer-events: none !important;
}

.popout-backdrop {
    height: 100dvh !important;
    width: 100vw !important;
    position: fixed !important;
    top: 0 !important;
    pointer-events: none !important;
    background-color: #00000066 !important;
    backdrop-filter: blur(0.5rem) !important;
    z-index: 20;
}

.notification-block {
    position: fixed;
    z-index: 2000 !important;
}
