body {
    background-color: white;
    font-family: Arial, Helvetica, sans-serif;
    background-color: black;
}
.image {
    width: 75px;
    height: 75px;
}
.reset-button {
    display: block;
    background-color: #000000;
    color: antiquewhite;
    text-align: center;
    cursor: pointer;
    border: 2px solid rgb(129, 118, 102);
    border-radius: 8px;
    font-size: 14px;
    margin: 8px;
}
.reset-button:hover {
    background-color: rgb(27, 27, 27);
    border: 2px solid rgb(129, 118, 102);
    border-radius: 8px;
    cursor: pointer;
}
.reset-button-loading {
    display: block;
    background-color: rgb(27, 27, 27);
    color: rgb(95, 95, 95);
    text-align: center;
    cursor: default;
    border: 2px solid rgb(95, 95, 95);
    border-radius: 8px;
    font-size: 14px;
    margin: 8px;
}
.body-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.shopItem {
    display: flex;
    flex-direction: column;
    color: antiquewhite;
    border: 2px solid rgb(58, 53, 46);
    margin: 8px;
    width: 150px;
    height: 110px;
}
.shopItem:hover {
    cursor: pointer;
    border: 2px solid rgb(129, 118, 102);
}
.shopItemTitle {
    display: flex;
    flex-direction: row;
    overflow-wrap: break-word;
    color: antiquewhite;
    font-size: 12;
    font-weight: bold;
    margin: 0;
    padding: 4px;
    height: 16;
    background-color: rgb(24, 18, 9);
}
.shopItemBody {
    display: flex;
    flex: 4;
    flex-direction: row;
    overflow-wrap: break-word;
    align-items: center;
    justify-content: center;
}
.shopItemBodyImage {
    display: flex;
    flex: 1;
    padding: 4px;
}
.shopItemBodyContent {
    display: flex;
    flex-direction: column;
    flex: 3;
    overflow-wrap: break-word;
    margin: 2px;
}
.unselectable {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.price {
    margin: 0;
    padding: 2px;
}
.tags {
    margin: 0;
    padding: 2px;
}
.filter-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.tag {
    display: flex;
    color: antiquewhite;
    border: 2px solid rgb(129, 118, 102);
    border-radius: 8px;
    margin: 8px;
}
.tag:hover {
    display: flex;
    color: antiquewhite;
    background-color: rgb(27, 27, 27);
    border: 2px solid rgb(129, 118, 102);
    border-radius: 8px;
    cursor: pointer;
}
.tag-selected {
    display: flex;
    color: antiquewhite;
    border: 2px solid rgb(129, 118, 102);
    background-color: rgb(97, 89, 77);
    border-radius: 8px;
    margin: 8px;
}
.tag-selected:hover {
    display: flex;
    color: antiquewhite;
    border: 2px solid rgb(165, 151, 131);
    background-color: rgb(110, 101, 88);
    border-radius: 8px;
    margin: 8px;
    cursor: pointer;
}
.tag-deselected {
    display: flex;
    color: gray;
    border: 2px solid rgb(85, 85, 85, 0.15);
    background-color: rgba(58, 58, 58, 0.15);
    border-radius: 8px;
    margin: 8px;
}
.tag-deselected:hover {
    display: flex;
    color: gray;
    background-color: rgb(27, 27, 27);
    border: 2px solid rgb(129, 118, 102);
    border-radius: 8px;
    margin: 8px;
    cursor: pointer;
}
.tag-text {
    margin: 0;
    padding: 12px;
    max-height: 18px;
}
.search-input {
    display: block;
    width: 99%;
    color: antiquewhite;
    border: 2px solid rgb(129, 118, 102);
    border-radius: 8px;
    background-color: rgb(22, 21, 14);
    font-size: 16px;
    margin: 8px;
    padding: 8px;
}
.search-input:focus {
    outline: 0px solid rgb(129, 118, 102);
    box-shadow: 0 0 0px rgb(94, 86, 74);
}
h1 {
    color: antiquewhite;
    margin: 8px;
    font-size: 56px;
}
.last-update-time {
    display: flex;
    color: antiquewhite;
    margin: 8px;
}
.last-update-time-text {
    color: antiquewhite;
    text-align: end;
    font-style: italic;
}
.value-input-div {
    display: flex;
    margin: 8px;
}
.value-input {
    display: flex;
    width: 75px;
    color: antiquewhite;
    border: 2px solid rgb(129, 118, 102);
    border-radius: 8px;
    background-color: rgb(22, 21, 14);
    font-size: 16px;
    padding: 8px;
}
.value-input:focus {
    outline: 0px solid rgb(129, 118, 102);
    box-shadow: 0 0 0px rgb(94, 86, 74);
}
.summarized-price {
    margin: 8px;
}
.summarized-price-text {
    color: rgba(250, 235, 215, 0.5);
    font-style: italic;
}