body {

}html {
    overflow: hidden;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    width: 100vw;
    height: 100vh;
    background-color: #333;
    -ms-overflow-style: none;
    scrollbar-width: none;
    font-family: Arial, Helvetica, sans-serif;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

.navbar {
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100vw;
    height: 48px;
    background-color: #171717;
    z-index: 100;
    -webkit-box-shadow: 0px 0px 32px -16px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 32px -16px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 32px -16px rgba(0,0,0,0.75);
}

.navbar-branding {
    width: 260px;
    margin-top: 4px;
}

.nav-link {
    margin: 0;
    height: 40px;
    color: #ffd817;
}

.navbar-logo {
    height: 40px;
}

.navbar-site-nav-buttons {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: #ffd817;
}

.navbar-filter {
    width: 140px;
}

.navbar-filter-name {
    width: 140px;
    text-align: left;
    font-size: 14px;
}

.navbar-user-menu {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 6px;
    width: 340px;
    margin-right: 16px;
    color: #ffd817;
}

.navbar-login {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.main {
    width: 100vw;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.post-background {
    position: fixed;
    top: 48px;
    width: 100vw;
    height: calc(100vh - 48px);
    border-radius: 24px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -10;
    /* filter: brightness(.5); */
    -webkit-box-shadow: 0px 0px 48px -16px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 48px -16px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 48px -16px rgba(0,0,0,0.75);
}

.post-body {
    position: fixed;
    /* transition: left .3s; */
    width: calc(100vw - 32px);
    padding-left: 32px;
    background-color: #333;
    height: calc(100vh - 48px);
    color: white;
    overflow-y: scroll;
    margin-top: 48px;
    /* -ms-overflow-style: none;
    scrollbar-width: none; */
    z-index: 10;
    /* position: fixed;
    background-size: cover;
    background-position: center;
    margin-top: calc(100vh - 176px); */
}

/* Firefox */
* {
    scrollbar-width: 32px;
    scrollbar-color: #ffd817 #272727;
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
    width:32px;
}

*::-webkit-scrollbar-button {
    height: 0;
}

*::-webkit-scrollbar-track {
    background: #272727;
}

*::-webkit-scrollbar-thumb {
    background-color: #ffd817;
    border: 8px solid #272727;
    border-radius: 20px;
}

.post-qr {
    position: fixed;
    top: 73px;
    left: 25px;
    width: 168px;
    height: 168px;
    border-radius: 16px;
    background-color: #ffd817;
    display: flex;
    justify-content: center;
    padding: 16px;
    margin-left: 25px;
    -webkit-box-shadow: 0px 0px 32px -16px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 32px -16px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 32px -16px rgba(0,0,0,0.75);
}

.post-controls {
    position: fixed;
    top: 300px;
    left: 0;
    width: 168px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    justify-content: center;
    padding: 16px;
    margin-left: 25px;
}

.post-controls-next {
    width: 20px;
    font-size: 32px;
    cursor: pointer;
}

.post-controls-back {
    width: 20px;
    font-size: 32px;
    cursor: pointer;
}

.post-controls-home {
    width: 20px;
    font-size: 32px;
    cursor: pointer;
}

.material-symbols-active {
    scale: 3;
    color: #999;
    transition: scale .3s, color .3s;
    margin-top: 48px;
    user-select: none;
}

.material-symbols-disabled {
    scale: 3;
    color: #444;
    transition: scale .3s, color .3s;
    margin-top: 48px;
    user-select: none;
}

.material-symbols-active:hover {
    scale: 3.2;
    color: #fff;
    
}

.material-symbols-disabled:hover {
    scale: 2.8;
    color: #3b3b3b;
}

.qr-code {
    mix-blend-mode: multiply;
    filter: saturate(0);
}

.post-content {
    width: calc(min(100vw - 540px, 960px));
    margin: 25px auto;
    z-index: 20;
    padding: 10px 20px 0;
    border-radius: 24px;
    background-color: #171717;
    -webkit-box-shadow: 0px 0px 32px -16px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 32px -16px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 32px -16px rgba(0,0,0,0.75);
}

.post-content-header {
    display: flex;
    justify-content: space-between;
}

.post-content-text {
    /* margin-top: 32px; */
}

.post-content-youtube-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
}

.post-content-youtube {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

.post-title {
    margin-top: 4px;
    font-size: 24px;
    font-weight: 900;
    color: #ffd817;
}

.post-images {
    display: flex;
    flex-direction: column;
    margin-bottom: 2px;
}

.post-image {
    width: 100%;
    margin-top: 20px;
    margin-bottom: -4px;
    border-radius: 12px;
    cursor: pointer;
}

.post-image-delete {
    position: absolute;
    top: -24px;
    right: 8px;
    height: 0;
    float: right;
}

.post-modal-image {
    max-width: 90vw;
    max-height: 96vh;
    border-radius: 16px;
    box-shadow: 24;
}

.post-modal-close {
    position: absolute;
    top: 0;
    right: 0;
}

.post-reel {
    /* display: grid;
    grid-gap: 10px;
    grid-template-columns: repeat(auto-fill, minmax(200px,1fr));
    grid-auto-rows: 120px; */
    margin: auto;
    width: 100vw;
    padding: 25px;
    height: calc(100vh - 99px);
    overflow-y: scroll;
    overflow-x: hidden;
    margin-top: 48px;
    scroll-behavior: smooth;
}

.post-reel {
    scrollbar-width: 0;
}

/* Chrome, Edge, and Safari */
.post-reel::-webkit-scrollbar {
    width:0;
}

.post-reel-item {
    position: relative;
    width: 330px;
    color: #171717;
    transition: scale .3s, filter .3s, height 3s;
    overflow: hidden;
}

.post-reel-item:hover {
    scale: 1.03;
}

.post-reel-item-title {
    position: absolute;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 80%;
    bottom: 32px;
    padding: 10px 12px;
    margin-left: -300px;
    background-color: #ffd817;
    font-size: 20px;
    font-weight: 700;
    border-top-right-radius: 22px;
    border-bottom-right-radius: 22px;
    transition: all .2s;
    overflow: hidden;
}

.post-reel-item:hover > .post-reel-item-title {
    margin-left: 0;
}

.post-reel-link {
    max-width: 330px;
    text-decoration: none;
}

.post-reel-title {
    font-size: 20px;
    font-weight: 700;
    padding: 4px 2px;
}

.post-reel-item img {
    border-radius: 16px;
    width: 330px;
    margin: 0;
    -webkit-box-shadow: 0px 0px 32px -16px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 32px -16px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 24px -12px rgba(0,0,0,0.75);
    transition: filter .3s;
}

.post-reel-item:hover img {
    filter: brightness(1.1);
}

.postreel-top-button {
    position: absolute;
    bottom: 20px;
    right: 32px;
    opacity: 1;
    background-color: #171717;
    border-radius: 64px;
    padding: 0px;
    padding-bottom: 0;
    scale: 1.3;
    transition: all .3s;
}

.postreel-top-button:hover {
    scale: 1.4;
}

.postreel-top-button-icon {
    display: none;
}

.not-authorized {
    width: 100%;
    height: calc(100vh - 48px);
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffd817;
    font-size: 100px;
    font-weight: 700;
    color: #171717;
}

.edit-post-header {
    display: flex;
    justify-content: flex-end;
    align-items: baseline;
    gap: 10px;
    padding-top: 4px;
    margin-bottom: -4px;
}

.edit-post-title {
    background: none;
    width: 100%;
    font-size: 24px;
    font-weight: 900;
    color: #ffd817;
    border: none;
    padding: 0;
}

.edit-post-images {
    display: flex;
    flex-direction: column;
    margin-top: 0;
    margin-bottom: 2px;
}

.post-image-with-caption {
    width: 100%;
    margin-top: 20px;
    border-radius: 12px;
    border-bottom: 20px solid #333;
    margin-bottom: -23px;
}

.edit-post-caption {
    position: relative;
    min-width: calc(100% - 32px);
    max-width: calc(100% - 32px);
    height: 100%;
    overflow: hidden;
    border: 8px solid #272727;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    background-color: #272727;
    color: #fff;
    padding: 8px;
}

.edit-post-footer {
    display: flex;
    justify-content: space-between;
    padding-bottom: 20px;
    margin-top: 20px;
}

.pointer {
    cursor: pointer;
}

input {
    background-color: #000;
    padding: 10px;
    border-radius: 4px;
    color: #ffd817;
    border: none;
}

input::-webkit-calendar-picker-indicator {
    filter: invert(94%) sepia(16%) saturate(5259%) hue-rotate(341deg) brightness(106%) contrast(104%);
}

select {
    background-color: #000;
    padding: 10px;
    border-radius: 4px;
    color: #ffd817;
    border: none;
}

a {
    color: #ffd817;
}

code {
    background-color: #333;
    padding: 12px;
    display: block;
    font-size: 14px;
    margin-bottom: -34px;
    
}

code:first-child {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

code:last-child {
    margin-bottom: 0;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.app__headerImage {
    object-fit: contain;
    height: 50px;
    margin-bottom: 40px;
}

.app__loginContainer {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.app__signup {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.modal-input {
    color: #ffd817;
}

td {
    border-bottom: 1px solid #555;
    border-left: 10px solid #00000000;
    border-right: 10px solid #00000000;
}

th {
    border-top: 2px solid #888;
    background-color: #272727;
    border-bottom: 2px solid #888;
    border-left: 10px solid #00000000;
    border-right: 10px solid #00000000;
}

.contact-wrapper {
    padding: 20px 0;
    display: grid;
    grid-template-columns: 2fr 1fr;
}

.contact-form {
    grid-column-start: 1;
    grid-column-end: 3;
}

.contact-form-title {
    color: #ffd817;
}

.contact-form input {
    width: calc(100% - 20px);
    margin: 4px 20px 10px 0;
    font-size: 16px;
}

.contact-form textarea {
    width: calc(100% - 20px);
    height: 120px;
    margin: 4px 0 10px;
    padding: 10px;
    background-color: #000;
    font-family: unset;
    color: #ffd817;
    border: none;
    border-radius: 4px;
    font-size: 16px;
}

.contact-form-footer {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    color: #cc0000;
    margin-top: 20px;
}

.contact-body {
    position: fixed;
    width: calc(100vw - 32px);
    padding-left: 32px;
    background-color: #333;
    height: calc(100vh - 48px);
    color: white;
    overflow-y: scroll;
    margin-top: 48px;
    z-index: 10;
}

.worldmap-body {
    position: fixed;
    width: calc(100vw - 32px);
    padding-left: calc(25vw / 2);
    background-color: #333;
    height: calc(100vh - 48px);
    color: white;
    overflow: hidden;
    margin-top: 48px;
    z-index: 10;
}

@media only screen and (max-width: 1080px) {
    .navbar {
        position: fixed;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .navbar-branding {
        width: 24%;
    }

    .navbar-logo {
        width: 100%;
        height: 100%;
    }

    .navbar-site-nav {
        width: 320px;
    }

    .navbar-filter {
        width: 40px;
    }

    .navbar-site-nav-buttons {
        gap: 4px;
    }

    .navbar-site-nav-buttons button {
        font-size: 10px;
        line-height: 10px;
        padding: 4px 8px;
    }

    .navbar-user-menu {
        width: 200px;
        gap: 0;
    }
}

@media only screen and (max-width: 760px) {
    .navbar {
        position: fixed;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        height: 96px;
    }

    .navbar-branding {
        display: flex;
        width: 150px;
    }

    .navbar-logo {
        width: 150px;
        height: 24px;
        margin-top: 8px;
    }

    .navbar-site-nav {
        display: flex;
        justify-content: center;
        background-color: #555;
        padding: 5px;
        order: 2;
        width: 100%;
    }

    .navbar-user-menu {
        order: 1;
        width: 200px;
        margin-right: 4px;
    }

    .post-body {
        margin-top: 96px;
        width: 95vw;
        height: calc(100vh - 176px);
        padding: 10px;
        overflow-x: hidden;
    }

    .post-qr {
        display: none;
    }

    .post-content {
        width: calc(100vw - 58px);
        font-size: small;
        padding: 10px;
        margin: 25px 0;
    }

    .post-controls {
        position: fixed;
        width: 100%;
        height: 20px;
        scale: 1;
        top: unset;
        bottom: 0;
        left: 0;
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
        gap: 80px;
        justify-content: center;
        margin: 0;
        padding: 20px 0;
        background-color: #000;
        user-select: none;
    }
    
    .post-controls-next {
        margin-top: -34px;
        width: 12px;
        font-size: 10px;
        cursor: pointer;
        scale: .75;
    }
    
    .post-controls-back {
        margin-top: -34px;
        width: 12px;
        font-size: 10px;
        cursor: pointer;
        user-select: none;
        scale: .75;
    }
    
    .post-controls-home {
        margin-top: -34px;
        width: 12px;
        font-size: 10px;
        cursor: pointer;
        user-select: none;
        scale: .75;
    }

    .post-reel {
        margin-top: 96px;
        height: calc(100vh - 98px - 48px);
        margin-left: 4px;
    }

    .post-reel-load-more-button {
        width: 100%;
        display: flex;
        justify-content: center;
        margin: 20px 0 60px;
    }

    .post-reel-item:hover {
        scale: 1;
    }

    .post-reel-item-title {
        margin: 0;
    }

    /* Firefox */
    * {
        scrollbar-width: 24px;
        scrollbar-color: #ffd817 #272727;
    }

    /* Chrome, Edge, and Safari */
    *::-webkit-scrollbar {
        width:24px;
    }

    *::-webkit-scrollbar-button {
        height: 0;
    }

    *::-webkit-scrollbar-track {
        background: #272727;
    }

    *::-webkit-scrollbar-thumb {
        background-color: #ffd817;
        border: 8px solid #272727;
        border-radius: 20px;
    }

    .contact-body {
        margin-top: 96px;
        width: 95vw;
        height: calc(100vh - 116px);
        padding: 10px;
        overflow-x: hidden;
    }
}

@media only screen and (max-width: 719px) {
    .post-content {
        margin-bottom: 80px;
        width: 320px;
    }

    .post-reel {
        margin-left: 10px;
    }

    .post-reel-load-more-button {
        width: 100%;
        display: flex;
        justify-content: center;
        margin: 20px 0 60px;
    }

    .post-reel-item {
        width: 320px;
    }

    .post-reel-item img {
        width: 320px;
    }

    .postreel-top-button {
        right: 24px;
        bottom: 24px;
    }
}

@media only screen and (max-width: 320px) {
    .navbar {
        position: fixed;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        height: 96px;
    }

    .navbar-branding {
        display: flex;
        width: 150px;
    }

    .navbar-logo {
        width: 170px;
        height: 27px;
        margin-top: 5px;
    }

    .navbar-site-nav {
        display: flex;
        justify-content: center;
        background-color: #555;
        padding: 5px;
        order: 2;
        width: 100%;
    }

    #basic-button {
        font-size: 11px;
    }

    .navbar-user-menu {
        order: 1;
        width: 120px;
        margin-right: 4px;
    }

    .post-body {
        margin-top: 96px;
        width: 95vw;
        height: calc(100vh - 176px);
        padding: 10px;
        overflow-x: hidden;
    }

    .post-qr {
        display: none;
    }

    .post-content {
        width: calc(100vw - 58px);
        font-size: small;
        padding: 10px;
        margin: 25px 0;
    }

    .post-controls {
        position: fixed;
        width: 100%;
        height: 20px;
        scale: 1;
        top: unset;
        bottom: 0;
        left: 0;
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
        gap: 80px;
        justify-content: center;
        margin: 0;
        padding: 20px 0;
        background-color: #000;
        user-select: none;
    }
    
    .post-controls-next {
        margin-top: -34px;
        width: 12px;
        font-size: 10px;
        cursor: pointer;
        scale: .75;
    }
    
    .post-controls-back {
        margin-top: -34px;
        width: 12px;
        font-size: 10px;
        cursor: pointer;
        user-select: none;
        scale: .75;
    }
    
    .post-controls-home {
        margin-top: -34px;
        width: 12px;
        font-size: 10px;
        cursor: pointer;
        user-select: none;
        scale: .75;
    }

    .post-reel {
        margin-top: 96px;
        width: 300px !important;
        height: calc(100vh - 98px - 48px);
        margin-left: 4px;
        padding-left: 10px !important;
    }

    .post-reel-load-more-button {
        width: 100%;
        display: flex;
        justify-content: center;
        margin: 20px 0 60px;
    }

    .post-reel-item {
        width: 290px;
    }

    .post-reel-item img {
        width: 290px;
    }

    .post-reel-item:hover {
        scale: 1;
    }

    .post-reel-item-title {
        align-items: center;
        font-size: 12px;
        margin: 0;
    }

    /* Firefox */
    * {
        scrollbar-width: 24px;
        scrollbar-color: #ffd817 #272727;
    }

    /* Chrome, Edge, and Safari */
    *::-webkit-scrollbar {
        width:24px;
    }

    *::-webkit-scrollbar-button {
        height: 0;
    }

    *::-webkit-scrollbar-track {
        background: #272727;
    }

    *::-webkit-scrollbar-thumb {
        background-color: #ffd817;
        border: 8px solid #272727;
        border-radius: 20px;
    }

    .contact-body {
        margin-top: 96px;
        width: 95vw;
        height: calc(100vh - 116px);
        padding: 10px;
        overflow-x: hidden;
    }
}

.MuiMasonry-root {
    overflow-x: hidden;
}