body {
    --small-image-height: calc(500px/6);
}

.shop-header {
    margin-top: var(--header-height);
    font-size: xxx-large;
    text-transform: uppercase;
    padding-top: 30px;
    padding-left: 50px;
}

.split-img-txt {
    padding: 50px;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
}

.shop-imgs {
    flex-basis: 45vw;
    flex-grow: 1;
    flex-shrink: 1;
    min-width: 350px;
    max-width: 750px;
    display: flex;
    flex-wrap: wrap;
}

.shop-imgs-image {
    min-height: 500px;
    flex-grow: 1;
    flex-basis: 70%;
    position: relative;
}

.shop-imgs-image>img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
}

.shop-small-images {
    height: var(--small-image-height);
}

.shop-txt {
    flex-basis: 30vw;
    flex-grow: 1;
    flex-shrink: 1;
    min-width: 350px;
    max-width: 600px;
}

.shop-item-title {
    font-size: xx-large;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    padding: 15px;
}

.shop-item-description {
    padding: 30px;
    padding-right: 0px;
}

.shop-reviews {
    font-weight: 600;
    padding-top: 15px;
}

.review {
    font-weight: normal;
    font-style: italic;
}

.size-picker {
    font-weight: 600;
    padding-top: 25px;
}

.size-picker>table {
    user-select: none;
    width: min(350px, 100%);
    table-layout: fixed;
    text-align: center;
    font-size: x-large;
    font-weight: normal;
}

td {
    cursor: pointer;
    border: 1px solid white;
    border-radius: 5px;
}

.td-highlighted {
    border: 2px solid white;
    font-weight: 600;
}

.button-container {
    align-self: center;
    align-content: center;
    width: 100%;
}

.buy-now-txt {
    padding-left: 30px;
    font-size: x-large;
    font-weight: 500;
}

.buy-not-button {
    margin-left: 30px;
    margin-top: 15px;
    color: rgb(30, 70, 50);
    padding: 15px;
    font-size: large;
    height: 50px;
    border-radius: 10px;
    background-color: rgb(91, 229, 146);
    border: none;
    transition: 0.5s;
}

.buy-not-button:hover {
    background-color: gray;
    cursor: pointer;
}

.image-table {
    flex-basis: 20%;
    flex-grow: 1;
}

.image-table>tbody {
    width: 100%;
}

.image-table>tbody>tr {
    width: 100%;
    cursor: pointer;
    /*background-image: url(/assets/images/shop/00.webp);*/
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.row-image-table {
    /*display: none;*/
    flex-basis: 100%;
    min-height: 100px;
}

.row-image-table>tbody>tr>td {
    border: none;
    border-radius: 0px;
    cursor: pointer;
    /*background-image: url(/assets/images/shop/00.webp);*/
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

@media only screen and (max-width: 836px) {
    .image-table {
        display: none;
    }
}

@media only screen and (min-width: 837px) {
    .row-image-table {
        display: none;
    }
}