#container {
    max-height: 100vh;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#content {
    width: -webkit-fill-available;
    max-width: 1200px;
    background: linear-gradient(180deg, #f6f8fc, #f6f8fc, #f6f8fc);
    box-shadow: 0 1rem 1rem rgb(0 0 0 / 10%);
}
section[name="Banner"] #slider {
    width: 100%;
    height: auto;
    aspect-ratio: 2/1;
    border-radius: 2rem;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transition: background-image 0.5s ease-in-out;
}
h1 {
    font-size: 1.2em;
    text-align: center;
}
.SearchNotFound {
    width: -webkit-fill-available;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}
.SearchNotFound > img {
    width: 6rem;
    height: auto;
    aspect-ratio: 1 / 1;
}
.SearchNotFound > span {
    font-size: 1.5em;
}
.category-section > h2 {
    height: 50px;
    position: relative;
}
.category-section > h2::after {
    display: block;
    content: "";
    width: 40px;
    height: 40px;
    border-radius: 1rem;
    background-color: white;
    background-image: url("../assets/icon_minimize.svg");
    background-size: 25px;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    right: 0;
}
.category-section.toggle_collapse > h2::after {
    background-image: url("../assets/icon_maximize.svg");
}
.category-section.toggle_collapse > .plates {
    display: none;
}