:root {
    --voxel-fox-orange: #f17824;
    --voxel-fox-orange-rgb: 241, 120, 36;
}

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    font-family: "Century Gothic", "Helvetica", sans-serif;
    margin: 0.5em;
    font-size: 16px;
    background: #040404;
    color: white;
}

h1 {
    margin: 0 0 0.5em 0;
}

p {
    margin: 0.5em 0;
}

#main {
    max-width: 800px;
    width: 100%;
}

#main > div {
    margin-bottom: 2em;
}

#back-button,
#back-button:visited {
    display: block;
    margin-bottom: 1em;
    color: white;
}

#preamble {
    display: flex;
    align-items: center;
}

#preamble div {
    margin-left: 1.5em;
}

#current-items .display-button {
    margin-left: 1em;
    height: 2em;
    margin-top: 0.4em;
    font-size: 1rem;
    width: 2em;
}

#current-items[data-empty] .display-button {
    display: none;
}

#current-items .hidden {
    display: none;
}

#current-items[data-empty] .items,
#current-items[data-empty] form button {
    display: inherit;
}

.button.unsubscribe {
    border-color: red;
}

.items {
    border: solid var(--voxel-fox-orange);
    border-width: 0 0 0.2em 0.2em;
    border-radius: 0 0 0 1.2em;
    padding: 0 1em 1em 1em;
    display: flex;
    width: 100%;
    flex-direction: column;
    box-sizing: border-box;
}

.item {
    border: solid var(--voxel-fox-orange);
    border-width: 0 0 0.2em 0.2em;
    border-radius: 0 1em 0 1em;
    padding: 1em 1em 1em 1em;
    margin: 0 0 1em 0;
    box-sizing: border-box;
}

.item.disabled *:not(.name) {
    text-decoration: line-through;
}

.item.disabled .button {
    display: none;
}

/*.item:last-of-type {
    margin: 0;
}*/

.item .name {
    font-size: 2em;
    font-weight: bold;
    margin-top: 0;
}

.item .price {
    font-style: italic;
}

.item .guild-select {
    font-size: inherit;
    padding: 0.5em;
    width: 100%;
}

.item .guild-select,
.item .guild-select option,
.item .guild-select optgroup {
    font-family: inherit;
}

.item .images {
    display: flex;
    overflow-x: scroll;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
    margin-bottom: 1em
}
.item .images::-webkit-scrollbar {
    display: none;
}

.item .images:empty {
    display: none;
}

.item .images img {
    height: 300px;
    border-radius: 5px;
    margin-right: 10px;
    border: 0.2em solid var(--voxel-fox-orange);
}

form > .button {
    width: 100%;
}

.button,
.button:visited {
    text-decoration: none;
    padding: 1em;
    border: 0.15em solid white;
    background: white;
    display: block;
    color: black;
    font-weight: bold;
    text-align: center;
    border-radius: 0.8em;
    transition: 0.1s all;
    font-size: inherit;
    cursor: pointer;
}

.button:hover {
    background: var(--voxel-fox-orange);
    color: white;
}

#stripe-button button {
    background: #635bff;
    color: white;
    border-radius: 4px;
    border: 0;
    width: 100%;
}

#stripe-button button:hover {
    background: #4b42ff;
}

#stripe-button:not(:last-of-type) {
    margin-bottom: 0.5em;
}
