

.heroWrapper {
    position: absolute;
    top: 280px;
    left: 0;
    right: 0;
    z-index: 200;
}


/* cash bids */

.bidsWrapper {
    background-image: url(images/bids-bg.png);
    padding: 100px 0 100px;
    background-color: #f7f7f7;
}
.cbTitle {
    text-align: center;
    margin-bottom: 49px;
}
.cbColWrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 43px 90px;
}
.cbCol {
    width: 100%;
}
.cbCol:first-child, .cbCol:nth-child(4n) {
    border: none;
}
.cbCol h3 {
    text-align: center;
    font-size: 160%;
    font-weight: 500;
    color: #008852;
    margin: 0 0 9px;
}
.cbCol h4 {
    text-align: center;
    font-size: 130%;
    font-weight: 500;
    color: #231F20;
    margin: 0 0 17px;
}
.cbCol table th {
    color: #231F20;
    font-family: 'jubilat';
    font-weight: 400;
    letter-spacing: 0.7px;
    text-align: left;
    padding: 6px 15px;
    font-size: 104%;
}
.cbNote {
    text-align: center;
    margin: 38px 0 0;
    font-size: 90%;
}
.cbBtn {
    text-align: center;
    margin: 50px 0 0;
}
.cbBtn a {
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
    font-size: 100%;
    line-height: 110%;
    padding: 3px 0;
}
.cbBtn a i {
    font-size: 90%;
    position: relative;
	transition: all 0.3s ease;
    left: 0;
}
.cbBtn a:hover {
    color: #0B5F3B;
}
.cbBtn a:hover i {
    left: 5px;
}
.cashbid_fields {
    display: none;
}
.cashbid_table .odd {
    background-color: #fff;
    border: 1px solid #e4e4e4;
}
table.cashbid_table td {
    padding: 6px 15px;
    font-size: 92%;
}
table.cashbid_table td:nth-child(1), table.cashbid_table th:nth-child(1){width: 50% !important; text-align: left;}
table.cashbid_table td:nth-child(2), table.cashbid_table th:nth-child(2){width: 25% !important; text-align: left;}
table.cashbid_table td:nth-child(3), table.cashbid_table th:nth-child(3){width: 25% !important; text-align: left;}


/* END cash bids */


@media (max-width: 1300px) {
    .cbColWrap {gap: 43px 63px;}
}
@media (max-width: 1000px) {
    .cbColWrap {grid-template-columns: repeat(2, 1fr);}
}
@media all and (max-width: 600px) {
    .cbColWrap {grid-template-columns: 1fr;}
    .cbNote {margin: 58px 0 0;}
}