.saleDate {
    color: var(--wood);
}
.saleTime {
    color: var(--dusty-navy-blue);
}
.location {
    color: var(--dusty-navy-blue);
}
.brandLogo {
    flex: 1 1 50%;max-width: 50%;
}
.cardLink{
    text-decoration: none;
    color:black;
}

.entry.card .live-badge {
    position: absolute;
    top: 5px;
    left: 5px;
}

.entry.card .live-badge.notLive {
    display: none;
}

.auctionTitle{
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    width: 100%;
    padding: 15px 4px 10px;
    color: #222;
    text-shadow: 0 0 5px rgba(0, 0, 0, .3);
    margin-bottom: 0px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.auctionImage {
    width: 100%;
    display: flex;
    justify-content: center;
}
.auctionDetails {
    font-family: 'Montserrat',sans-serif;
    font-size: 14.5px;
    width: 100%;
    border-top: 1px solid #b1b1b1;
    border-bottom: 1px solid #b1b1b1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    position:relative;
    padding: 2px 8px;
}

.auctionDetails > * {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
    white-space: nowrap;
}

.auctionDetails > .detailSeparator {
    padding-left: 8px;
    padding-right: 8px;
    font-weight: 400;
    opacity: .75;
}

.auctionDetails > *:last-child {
    flex: 0 1 auto;
    max-width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.auctionActions {
    border-radius: 0 0 .50rem .50rem;
    background-color: var(--dusty-navy-blue);
    color: white;
    font-family: "Brother-1816-Medium", sans-serif;
    width: 100%;
}

.btn-auction-card {
    color: white;
    border-radius: .25rem;
    padding: 1px 4px;
    border: 1px solid white;
    font-size: 14px;
}

.btn-auction-card.disabled {
    color: var(--gray);
    border: 0px;
    
}

.btn-auction-card:not(.disabled):hover {
    color: var(--dusty-navy-blue);
    background-color: white;
}

.btn-auction-card .material-icons {
    --iconsize: 28px;
    font-size: var(--iconsize);
    width: var(--iconsize);
    height: var(--iconsize);
}

.card-text{
    text-align: center;
}

.descText{
    font-size: 0.9rem;
    color: #444;
    padding: 15px 4px;
}

.auctionSubtitle {
    padding: 5px;
    font-family: 'Istok Web';
    font-style: italic;
    font-size: 14.5px;
    font-weight: bold;
    color: #fff;
    --d: .8em;
    position: relative;
    margin-top: -11px;
    inset-inline: calc(-1* var(--d));
    border-top: var(--d) solid #0008;
    line-height: 1.8;
    clip-path: polygon(0 100%, 100% 100%, 100% var(--d), calc(100% - var(--d)) 0%, calc(100% - var(--d)) var(--d), var(--d) var(--d), var(--d) 0%, 0 var(--d));
    background-color: var(--gray);
    width: calc(100% + 1.6em + 2px);
    left: 0px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.card {
    background-color: transparent;
}

.card > a[id^="auctionLink_"],
.card > a[id^="auctionLink_"] > .card,
.card > a[id^="auctionLink_"] > .card > .card-body {
    height: 100%;
}

.card-body {
    padding: 30px 0px 0px;
    background-color: transparent;
}


.card-img-top {
    width: auto !important;
    height: 350px !important;
    box-shadow: 0 0 1px 1px rgba(0, 0, 0);
    border-radius: 0px !important;
}

.entry {
    min-width: 320px;
    max-width: min(350px,100%);
    margin-left:auto;
    margin-right:auto;
    border-radius: .75rem;
    border: 2px solid var(--dusty-navy-blue);
    background-image: linear-gradient(180deg, #fff 12%, rgba(138, 138, 138, 0.3));
    width: 100%;
}

.entry:hover {
    box-shadow: 0 2px 10px 2px rgba(0, 0, 0, 0.3);
}

@media (min-width: 576px) { 
    .card-deck .card {
        margin-bottom: 15px;
    }
}

.rcontainer {
    --d:6px;  /* folded part */
    --c:green; /* color */
    --f:16px; /* ribbon font-size */
    position: relative;
}

.rcontainer::before {
    content: attr(data-ribbon);
    font-size:var(--f);
    /* I : position & coloration */
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(29.29%, -100%) rotate(45deg);
    transform-origin: bottom left;
    padding: 5px 35px calc(var(--d) + 5px);
    background: linear-gradient(rgba(0,0,0,0.5) 0 0) bottom/100% var(--d) no-repeat var(--c);
    /* II : clipping */
    clip-path: polygon(0 0,100% 0,100% 100%,calc(100% - var(--d)) calc(100% - var(--d)),var(--d) calc(100% - var(--d)) , 0 100%);
    /* III : masking */
    -webkit-mask: 
        linear-gradient( 135deg, transparent calc(50% - var(--d)*0.707),#fff 0) bottom left,
        linear-gradient(-135deg, transparent calc(50% - var(--d)*0.707),#fff 0) bottom right;
    -webkit-mask-size:300vmax 300vmax;
    -webkit-mask-composite: destination-in;
    mask-composite: intersect;
    z-index:2;
}

.rleft::before {
    left: 0;
    right: auto;
    transform: translate(-29.29%, -100%) rotate(-45deg);
    transform-origin: bottom right;
    color:white;
}

/* for large widths center the cards */
@media only screen and (min-width: 1980px){
    .listOfAuctionsHolderx{
        width:95%;
    }
}

.placeholderEntryCard {
    flex: 1;
    max-width: 60%;
    border: 0;
    background-image: linear-gradient(180deg, rgb(209 209 209 / 50%) 12%, rgba(138, 138, 138, 0.3));
    backdrop-filter: blur(5px);
    box-shadow: 0 0 6px -5px;
    min-height: 250px;
}

.placeholderEntryCard .card-body {
    padding-bottom: 30px;    
}

.placeholderEntryCard h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #333;
    font-family: 'Brother-1816-Medium';
    font-weight: 400;
}

.placeholderEntryCard .nothingFoundText {
    text-align: center;
    font-size: 20px;
    color: var(--dusty-navy-blue);
}