
#offer {
    /*background: #F5FDFE;*/
    /*padding-top: 10px;*/
}

#all-thumbnail-wrapper {
    display: grid;
    grid-template-columns: 32% 32% 32%;
    justify-content: space-between;
}

.thumbnail-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: rgba(50, 50, 93, .25) 0 6px 12px -2px, rgba(0, 0, 0, .3) 0 3px 7px -3px;
    min-width: 300px;
    overflow: hidden;
    flex-basis: 30%;
    margin-bottom: 20px;
    transition: all .3s ease-in-out;
    background: #fff;
}

.thumbnail-wrapper:hover {
    transform: scale(1.03);
    border: solid 1px #00A2B5;
}

.thumbnail-wrapper img {
    width: 100%;
}

.thumbnail-title {
    font-size: calc(110% * var(--font-size-multiplier));
    font-weight: bold;
    margin: -10px 20px 10px 20px;
    text-align: left;
    color: #000;
}

.thumbnail-price {
    font-size: calc(110% * var(--font-size-multiplier));
    color: #00A2B5;
    font-weight: bold;
    margin-bottom: 5px;
    margin-left: 20px;
    /*text-align: center;*/
}

.thumbnail-location {
    color: #777;
    margin-bottom: 5px;
    margin-left: 20px;
    font-size: calc(100% * var(--font-size-multiplier))
}

.thumbnail-wrapper a {
    text-decoration: none;
}

.thumbnail-wrapper a:hover {
    text-decoration: underline;
    text-decoration-color: #00A2B5;
}

.thumbnail-label {
    padding: 2px 3px;
    background: #0009;
    color: #fff;
    /*font-size: calc(90% * var(--font-size-multiplier));*/
    font-size: 90%;
    position: relative;
    bottom: calc(34px * var(--font-size-multiplier));
    margin-left: 10px;
}

.thumbnail-info-list {
    display: inline-block;
    width: 100%;
    text-align: left;
    list-style-type: disc;
    padding-inline-start: 20px;
    background: #F5FEFF;
    border-top: solid 1px #B8F8FF;
    padding-top: 5px;
    padding-bottom: 5px;
    margin-bottom: 0;
}

.thumbnail-info {
    margin: 0 15px;
    font-weight: bold;
    font-size: calc(90% * var(--font-size-multiplier));
}

.thumbnail-info::marker {
    color: #00A2B5;
}

.thumbnail-info-dummy {
    list-style: none;
}

/*.thumbnail-info:before {*/
/*    content: "•";*/
/*    color: #00A2B5;*/
/*    margin-right: 3px;*/
/*}*/

/*.thumbnail-info-dummy {*/
/*    content: "" !important;*/
/*}*/

@media only screen and /*(min-width: 801px) and*/ (max-width: 1080px) {
    #all-thumbnail-wrapper {
        grid-template-columns: 100%;
    }
}
