body {
    position: fixed;
    height: 100%;
    width: 100%;
}

.sort-title {
    border-bottom: 2px solid rgba(96, 90, 207, 0.8);
    text-align: center;
    margin-bottom: 0.5rem;
    margin-top: 3rem;
    padding-bottom: 0.3rem;
    color: white;
    font-weight: 500;
}

.filter-wrapper {
    color: rgb(238, 238, 238);
    font-size: 2rem;
    min-width: max-content;
    margin-left: 4rem;
    margin-top: 4rem;
    column-gap: 3rem;
}

.radio {
    height: 12.8px;
    aspect-ratio: 1;
    border-radius: 50%;
    background-color: white;
    margin-right: 0.75rem;
    border: 2px solid white;
}

.check {
    height: 12.8px;
    aspect-ratio: 1;
    background-color: white;
    margin-right: 0.75rem;
    border: 2px solid white;
}

.sort-word, .retail-word {
    min-width: max-content;
}

.sort-selected-radio {
    background-color: dodgerblue;
}

.sort-selected-check {
    background-color: dodgerblue;
}

.theme-text {
    white-space: pre;
}

.showing {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.sets {
    column-gap: 2rem;
    row-gap: 3rem;
    /* margin-right: 5rem; */
    flex-wrap: wrap;
    justify-content: center;
}

.set {
    width: 19rem;
    background-color: white;
    padding: 2rem;
    border-radius: 1rem;
    flex-grow: 1;
    box-shadow: 5px 5px 0 rgba(27, 6, 70, 0.7);
    transition: box-shadow 100ms ease;
}

.set:hover {
    box-shadow: 3px 3px 15px rgba(0, 213, 255, 1);
}

.set-header {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    margin-bottom: 1rem;
}

.set-theme {
    background-size: contain;
    background-repeat: no-repeat;
    height: 2.5rem;
}

.set-store {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
    height: 3.5rem;
}

.set-img {
    background-position: center;
    background-size: contain;
    aspect-ratio: 1;
    background-repeat: no-repeat;
    margin-bottom: 0.5rem;
}

.set-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.price-wrapper-desktop {
    justify-content: space-between;
    font-size: 1.9rem;
}

.price {
    color: rgb(0, 162, 255);
    font-weight: 600;
}

.retail {
    color: gray;
}

.sale {
    color: orange;
    font-weight: 500;
}

.set-added {
    font-size: 1.5rem;
    color: rgb(103, 103, 103);
    margin-top: 0.5rem;
}

.maintenance-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(47,62,109,1) 0%, rgb(50, 50, 154) 50%, rgba(47,62,109,1) 100%);     background-size: 600% 600%;
    animation: gradientAnimation 25s ease infinite;
    height: 100vh;    
    display: flex;
    justify-content: center;
    align-items: center;
}

.maintenance-message {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    line-height: 1.5;
    color: #ebebeb;
}