/* Skeletons */

/* loading filler */
.skeleton {
    background-color: #1c1c1c;
    background-image: linear-gradient(to right, #101010 25%, #1b1b1b, #0e0e0e 75.63%);
    background-size: 200% 100%;
    animation: shimmer 2s infinite linear;
}
@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}
.skeleton_image_anime_card {
    width: 100%;
    padding-bottom: 140%;
}
.skeleton_title_anime_card {
    height: 3.75rem;
    max-height: 2.5rem;
    border-radius: 5px;
    margin-top: .9rem;
    margin-bottom: .75rem;
}
.skeleton_image_anime_card_small {
    width: 100%;
    height: 78px;
    animation: shimmer 4s infinite linear;
}
.skeleton_image_anime_card_top_table {
    width: 120%;
    height: 85px;
    border-radius: 5px;
    animation: shimmer 4s infinite linear;
    margin: -10px;
}
section.top-table .body .items .item.skeleton {
    background: transparent;
}
.skeleton_signin_and_user {
    height: 35px;
    width: 100%;
    border-radius: 5px;
}

/* Spotlight Skeletons */
.skeleton_title_spotlight {
    width: 70%;
    height: 2.8rem;
    margin-bottom: 1rem;
    border-radius: 6px;
}

.skeleton_meta_description_spotlight {
    width: 90%;
    height: 5.5rem;
    margin-bottom: 1.2rem;
    border-radius: 6px;
}

.skeleton_button_spotlight {
    width: 160px;
    height: 2.5rem;
    border-radius: 8px;
}

.skeleton_image_spotlight {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}






/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}
body, * {
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    cursor: default;
}
body, html {
    scrollbar-color:#777 #1c1c1c
}
::-webkit-scrollbar {
    width:18px
}
::-webkit-scrollbar-track {
    background-color:#1c1c1c
}
::-webkit-scrollbar-thumb {
    background-color: #666;
    border-radius: 10px;
    border: 5px solid transparent;
    background-clip:content-box
}
::-webkit-scrollbar-thumb:hover {
    background-color:#777
}
body, html {
    height: 100%;
}
#wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}
#wrapper #body {
    flex-grow: 1;
    margin-top: 10px;
    margin-bottom: 10px;
    padding-top: 7rem;
    padding-bottom: 7rem;
}
@media screen and (max-width: 550px) {
    #wrapper #body {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
}
body {
    scrollbar-width: none;
}
body {
    margin: 0;
    font-family: Nunito,Archivo,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #aaa;
    text-align: left;
    background-color: #0e0e0e;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2;
}
p {
    margin-top: 0;
    margin-bottom: .8rem;
}
header {
    width: 100%;
    z-index: 50;
    transition: background .2s;
    margin-bottom: 10px;
}
header.fixed {
    background: #1c1c1c;
    margin-top: 0;
    position: fixed;
}
.container {
    max-width: 1800px;
    width: 100%;
    padding: 0px 25px;
    margin: 0 auto;
}
@media screen and (max-width: 550px) {
    .container {
        padding: 0px 15px;
    }
}
section {
    margin-bottom: 40px;
}
a {
    transition: color .3s,background .3s;
    cursor: pointer;
    text-decoration: none;
}
img {
    vertical-align: middle;
    border-style: none;
}

section#adds .pizza.pizza-x {
    /* max-width: 800px; */
    /* width: calc(100% - 32px); */
    min-height: 90px;
}
section#adds .pizza {
    margin: 0rem auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    color: #666;
    font-size: 16px;
    font-weight: 400;
    background-color: #1c1c1c;
}
.alert.notice {
    font-size: .8rem;
    color: #aaa;
}
.alert-secondary {
    color: #aaa;
    background-color: #1c1c1c;
    border-color: #1c1c1c;
}
.alert {
    position: relative;
    padding: .7rem 1.55rem;
    margin-bottom: 1.5rem;
    border: 1px solid transparent;
    border-radius: 5px;
}