/*!
 * Wine competition results view page styles
 * @author Kartik Visweswaran, Krajee Solutions, Jan 2022
 */
.gold-detail {
    background: url(../images/gold-detail.jpg) no-repeat;
    background-size: cover;
    color: rgb(150, 105, 47);
    text-shadow: 0.105px 0.995px 0 rgba(218, 190, 98, 0.75);
}

.silver-detail {
    background: url(../images/silver-detail.jpg) no-repeat;
    background-size: cover;
    color: rgb(94, 102, 114);
    text-shadow: 0.105px 0.995px 0 rgba(177, 179, 183, 0.75);
}

.bronze-detail {
    background: url(../images/bronze-detail.jpg) no-repeat;
    background-size: cover;
    color: rgb(124, 64, 22);
    text-shadow: 0.105px 0.995px 0 rgba(211, 140, 92, 0.75);
}

.details-image {
    overflow: hidden;
    margin-top: 2px;
}

.details-image img {
    margin-top: -55px;
    display: inline-block;
    width: auto;
    height: 100%;
}

.results-view .item-comp {
    font-size: 1.2rem;
}

.results-view .price {
    font-size: 1.5rem;
}

.results-view u {
    text-underline-position: under;
}

.details-image .no-image {
    display: none;
    padding: 30px 0;
    font-size: 70px;
}

.details-image.is-error .no-image {
    display: flex;
}

.details-image.is-error img {
    display: none;
}
