@charset "UTF-8";

.artist {
    font-size: 1.1rem;
    color: var(--colour_text_body);
    font-weight: 100;
    margin-top: 20px;
}

.artist__soled, .artist__reserved {
    z-index: 20;
    font-size: 0.8rem;
    padding: 0 10px;
    top: -5px;
}

.artist__soled{
    background: #be5754;
}

.artist__reserved {
    background: #0f1d56cc;
}

.artist__image {
    padding-top: 100%;
    margin-bottom: 5px;
    background: var(--items-bg);
}

.artist__image figure, .static-video {
    top: 0;
    left: 0;
}

.artist__image figure.hover-image,
.artist__image figure.static-image {
    transition: all 1.3s;
}
.artist__image figure img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.artist__title {
    font-size: 1.1rem;
    margin: 0 0 5px;
    color: var(--colour_text_body);
}

.artist__price {
    font-size: 1rem;
    margin-bottom: 20px;
}

.artist:hover {
    color: inherit;
}

.artist__btn-container {
    top: 0;
    left: 0;
    z-index: 10;
    opacity: 0;
}

.artist:hover .artist__btn-container {
    opacity: 1;
}

.second-image-template .artist:hover  figure.static-image {
    opacity: 0;
}
.second-image-template .artist:hover  figure.hover-image {
    opacity: 1;
}


figure.static-image {
    opacity: 1;
}

figure.hover-image {
    left: 0;
    top: 0;
    opacity: 0;
}

@media screen and (max-width: 380px){
    .latest-arrivals{
        min-width: 100%;
    }
}

.latest-arrivals .sold,.latest-arrivals .reserved,.latest-arrivals .out-of-stock {
    z-index: 200;
    top: 0;
    left: 0;
    right: auto;
    letter-spacing: 1px;
    font-size: 12px;
    color: #ffffff;
    padding: 0 10px;
}

.latest-arrivals .sold {
    background-color: #b50000;
}

.latest-arrivals .reserved {
    background-color: #0f1d56cc;
}

.latest-arrivals .out-of-stock{
    background-color: #7e7e7e;
}
