/*Common*/
@font-face {
    font-family: "Sintony";
    src: url(/css/fonts/Sintony-Regular.woff2) format("woff2"), url(/css/fonts/Sintony-Regular.ttf) format("truetype");
    font-weight: 300;
}

@font-face {
    font-family: "Source Sans Pro";
    src: url(/css/fonts/SourceSansPro-Black.woff2) format("woff2"),
        url(/css/fonts/SourceSansPro-Black.woff) format("woff"),
        url(/css/fonts/SourceSansPro-Black.ttf) format("truetype");
    font-weight: 900;
}

:root {
    /**
  Set these variables to the R,G,B of the pallette colors
  this way we can do
  rgb(var(--blahblah))
  OR
  rgba(var(--mb-blahblah), 0.5)
    for opacity of the same color
  */

    --mb-black: 35, 31, 32;
    --mb-gray-light: 204, 204, 201;
    --mb-gray-medium: 113, 113, 116;
    --mb-gray-dark: 46, 49, 55;
    --mb-white: 254, 254, 250;
    /*--mb-brand: 22, 178, 99;*/
    --mb-brand-highlight: 22, 178, 99;
    /*--mb-accent: 246, 170, 28;*/
    --mb-muted: 24, 255, 255;
    --mb-blue: 46, 64, 82;
    --mb-ma-blue: 36, 75, 158;
    --mb-headerfont: "Source Sans Pro", "Arial Black", sans-serif;
    --mb-bodyfont: "Sintony", Helvetica, Arial, sans-serif;
    --plain-white: 255, 255, 255;
    --plain-red: 255, 0, 0;
    --plain-black: 0, 0, 0;
    --dead: 24, 255, 255;

    --mb-base: #838680; /* #747F74; */ /* Header */
    --mb-d-base: #575c56; /* #465746; */ /* Sidebar */
    --mb-l-base: #988c8d;
    --mb-title: #1c201c;
    --mb-event: #cf1020; /* Lava */
    --mb-brand: #16b263; /* Branding Color */
    --mb-accent: #255622; /* Accent Color */
    --mb-gold: goldenrod; /* Golden Accent */

    --red: #ff0088; /** "RUFOUS" */
    --darkblue: #ff0088; /** "CHARCOAL" */
    --lightblue: #ff0088; /** "ICEBERG" */
    --yellow: #ff0088; /** "HONEY YELLOW" */
    --green: #ff0088; /** "EMERALD" */
    --black: #ff0088; /** "SMOKY BLACK" */
    --grey: #ff0088; /** "GHOST WHITE" */
    --darkgrey: #ff0088; /** ONYX */
    --white: #ff0088; /** "WHITE" */

    --headerfont: "Source Sans Pro", "Arial Black", sans-serif;
    --bodyfont: "Sintony", Helvetica, Arial, sans-serif;
}
.wrapper-main {
    z-index: 1;
    margin-top: 10px;
}

#sidebar .menu-options .d-inline {
    font-size: 11px;
}
.note-line {
    color: white;
    text-align: right;
    font-size: 10px;
}
ul.submenu {
    height: auto !important;
}

#note_methods {
    display: block !important;
    width: 100%;
    padding-right: 3em;
}

#note_methods {
    opacity: 0;
}
#note_methods.show {
    opacity: 1;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
/**
push notification bell thingy
*/
.toggle-newsletter-popup {
    display: inline-block;
    border-radius: 50%;
    position: fixed;
    bottom: 15px;
    right: 15px;
    width: 55px;
    height: 55px;
    text-align: center;
    filter: drop-shadow(0 2px 4px rgba(34, 36, 38, 0.35));
    z-index: 9999;
    padding: 8px;
    transform: scale(0.9);
    background-color: var(--mb-accent);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}
.circle {
    content: "";
    display: inline-block;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 55px;
    height: 55px;
    padding: 0.45rem;
    border-radius: 50%;
    border: #fff 2px solid;
    animation: circle 1s infinite;
}

.modal-open {
    overflow: initial !important;
    padding-right: 0 !important;
}

@keyframes circle {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

::-webkit-scrollbar {
    width: 1em;
}
::-webkit-scrollbar-track {
    border: 5px solid rgb(var(--mb-blue));
    background-color: rgb(var(--mb-gray-medium));
}
.tab-pane::-webkit-scrollbar-track {
    border: 5px solid rgb(var(--plain-white));
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    border-radius: 2px;
    width: 12px;
    background-color: hsl(0, 0%, 90%);
    box-shadow: hsla(0, 0%, 0%, 0.15) 0 -5px 6px 4px, /* outer SD */ hsla(0, 0%, 100%, 0.5) 0 5px 6px 4px; /* outer HL */
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}
body * {
    text-rendering: optimizeLegibility;
}
body {
    font-family: var(--mb-bodyfont);
    height: 100%;
    min-height: 100%;
    font-size: 14px;
    line-height: 1.65;
    margin: 0;
    padding: 0;
    clear: both;
    overflow: auto;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    /* background-color: var(--mb-base) !important; */
    background-color: #475b63 !important;
    padding-top: 200px;
    transition: all 0.2s;
}
body,
.footer-wrap {
    background-image: url("../images/bodytexture.png");
}
body.shrink {
    padding-top: 50px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--mb-headerfont);
    text-transform: uppercase;
    color: rgb(var(--mb-blue));
}

.toast-center-center {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    -ms-transform: translateX(-50%) translateY(-50%) !important;
    -webkit-transform: translate(-50%, -50%) !important;
    transform: translate(-50%, -50%) !important;
}
.toast-error {
    background-color: #a31000 !important;
}
.toast-success {
    background-color: var(--mb-brand) !important;
}
.toast-warning {
    background-color: var(--mb-gold, goldenrod) !important;
}
.toast-success {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADsSURBVEhLY2AYBfQMgf///3P8+/evAIgvA/FsIF+BavYDDWMBGroaSMMBiE8VC7AZDrIFaMFnii3AZTjUgsUUWUDA8OdAH6iQbQEhw4HyGsPEcKBXBIC4ARhex4G4BsjmweU1soIFaGg/WtoFZRIZdEvIMhxkCCjXIVsATV6gFGACs4Rsw0EGgIIH3QJYJgHSARQZDrWAB+jawzgs+Q2UO49D7jnRSRGoEFRILcdmEMWGI0cm0JJ2QpYA1RDvcmzJEWhABhD/pqrL0S0CWuABKgnRki9lLseS7g2AlqwHWQSKH4oKLrILpRGhEQCw2LiRUIa4lwAAAABJRU5ErkJggg==") !important;
}

/**
  MOVED FROM INLINE STYLE TAGS
  */
#closeIcon,
#cookieNotice {
    display: none;
}
.event-img {
    overflow: hidden;
}

.adWrapper {
    position: relative;
    float: left;
    height: 240px;
    width: 204px;
    overflow: hidden;
    text-align: center;
}

.adHeadline {
    width: 150px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}
.searchBar {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 0;
    padding: 0;
    padding-left: 8px;
    padding-right: 8px;
}
.img {
    position: relative;
    float: left;
    min-width: 100%;
    min-height: 160px;
}
/**
Machinery Associates JSON listings
**/
.machineryassociates-listing {
    /* background: #777; */
    background-color: rgb(var(--mb-gray-medium));
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23f1f1f1' fill-opacity='0.1'%3E%3Cpath opacity='.5' d='M96 95h4v1h-4v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9zm-1 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9z'/%3E%3Cpath d='M6 5V0H5v5H0v1h5v94h1V6h94V5H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    border: 5px solid rgba(var(--mb-black), 0.75);
    border-radius: 5px;
    -webkit-box-shadow: inset 0 0 5px rgba(var(--mb-black), 0.35);
    box-shadow: inset 0 0 5px rgba(var(--mb-black), 0.35);
    padding: 1rem !important;
    margin-top: 1rem;
    overflow: hidden;
    opacity: 0;
    color: rgb(var(--mb-white));
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.machineryassociates-listing:hover {
    background-color: rgb(var(--mb-ma-blue));
    border-color: rgba(var(--mb-black), 0.6);
}

.machineryassociates-listing img {
    -webkit-box-shadow: 0 0 15px rgba(var(--mb-black), 0.5);
    box-shadow: 0 0 15px rgba(var(--mb-black), 0.5);
    margin-right: 20px;
    float: left;
    margin-bottom: 1rem;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    max-width: 100%;
}
.machineryassociates-listing:hover img {
    -webkit-filter: saturate(1.75) brightness(110%);
    filter: saturate(1.75) brightness(110%);
    -webkit-box-shadow: 0 0 15px rgba(var(--mb-black));
    box-shadow: 0 0 15px rgba(var(--mb-black));
}

.machineryassociates-listing span {
    /* color: var(--red); */
    text-decoration: none;
    font-family: var(--mb-headerfont);
    font-size: 1.5em;
    /* display: block; */
    white-space: nowrap;
    clear: both;
    margin: auto;
    display: block;
    background-color: var(--mb-accent);
}
.machineryassociates-listing:hover span {
    background: var(--mb-brand);
}
.machineryassociates-listing h6 {
    margin-bottom: 1rem;
    color: var(--mb-white);
}
.machineryassociates-listing p {
    color: var(--mb-white);
}
.machineryassociates-listing a {
    color: var(--mb-black);
    text-decoration: none;
    position: absolute;
    inset: 0;
    background-color: transparent;
    display: none;
    z-index: 1;
}
.machineryassociates-listing.reveal a {
    display: block;
}
.machineryassociates-listing.reveal::before {
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    background-image: url(/images/gearbackground.png);
    background-size: fit;
    z-index: -1;
    -webkit-filter: invert(0) blur(4px);
    filter: invert(0) blur(4px);
    opacity: 0.63;
    /*         transform: scale(1.4) rotate(12deg); */
    -webkit-transition: all 500ms ease-in;
    -o-transition: all 500ms ease-in;
    transition: all 500ms ease-in;
}
.machineryassociates-listing.reveal:hover::before {
    opacity: 0.5;
    -webkit-filter: invert(1) blur(0);
    filter: invert(1) blur(0);
    inset: -2%;
}
a.ma-listings {
    display: block;
    text-align: center;
    margin-top: 2rem;
}
a.ma-listings img {
    min-width: 150px;
    max-width: 200px;
}
.machineryassociates-listing.reveal {
    -webkit-animation: revealMachineryAssociatesListing 1s ease 1s 1 normal forwards;
    animation: revealMachineryAssociatesListing 1s ease 1s 1 normal forwards;
}
@-webkit-keyframes revealMachineryAssociatesListing {
    0% {
        opacity: 0;
        -webkit-transform: rotateX(70deg);
        transform: rotateX(70deg);
        -webkit-transform-origin: top;
        transform-origin: top;
    }

    100% {
        opacity: 1;
        -webkit-transform: rotateX(0deg);
        transform: rotateX(0deg);
        -webkit-transform-origin: top;
        transform-origin: top;
    }
}
@keyframes revealMachineryAssociatesListing {
    0% {
        opacity: 0;
        -webkit-transform: rotateX(70deg);
        transform: rotateX(70deg);
        -webkit-transform-origin: top;
        transform-origin: top;
    }

    100% {
        opacity: 1;
        -webkit-transform: rotateX(0deg);
        transform: rotateX(0deg);
        -webkit-transform-origin: top;
        transform-origin: top;
    }
}
/*****
Bootstrap-specific overrides
 *****/
.container-fluid {
    max-width: 1600px;
}
.card {
    border-radius: 0;
    border: 1px solid var(--mb-brand);
    background-color: rgb(var(--plain-white));
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}
.card:hover {
    background-color: rgb(var(--plain-white));
}
.card-title {
    font-weight: bold;
}
.card .card-body {
    /* background: rgb(var(--mb-gray-light)); */
    padding: 1rem !important;
}
.card .lot-image a {
    background: rgb(var(--plain-white));
}
.card .lot-image img {
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}
.card.upcoming:hover .lot-image img,
.card.active:hover .lot-image img {
    -webkit-box-shadow: 0 0 10px rgb(var(--mb-gray-light));
    box-shadow: 0 0 10px rgb(var(--mb-gray-light));
}

.card .card-body {
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;

    position: relative !important;
    overflow: hidden !important;
    height: 100% !important;
}
.card:hover {
    -webkit-box-shadow: inset 0 0 5px rgb(var(--mb-gray-light));
    box-shadow: inset 0 0 5px rgb(var(--mb-gray-light));
}
.card:hover .card-body {
    background-position: 150% 110%;
}
.home-hero {
    background-image: url("/images/hero1.jpg");
    background-size: cover;
    background-position: center left;
    margin: 0 7px;
    border: 1px solid rgb(var(--mb-gray-dark));
    padding: 4em 0 2em 0 !important;
}

.home-hero h1 {
    /* text-shadow: 0 2px 0 rgb(var(--mb-white)); */
    font-size: 3em;
    border-top: 2px solid rgb(var(--mb-black));
    border-bottom: 2px solid rgb(var(--mb-black));
    padding: 0.5em;
    background-color: rgba(var(--plain-white), 0.95);
    color: rgb(var(--plain-black));
    mix-blend-mode: screen;
}
.home-hero .lead {
    font-weight: bold !important;
    font-family: "Arial Black";
    color: rgb(var(--mb-white));
    text-shadow: 0 1px 0 rgb(var(--mb-black)), 0 -1px 0 rgb(var(--mb-black)), 0 3px 0 rgb(var(--mb-black)),
        1px 0 0 rgb(var(--mb-black)), -1px 0 0 rgb(var(--mb-black));
}

.top-nav img {
    width: 22px;
}
.top-nav a:link,
.top-nav a:visited {
    color: rgb(var(--mb-white));
}
.top-nav a:hover,
.top-nav a:active {
    color: rgb(var(--mb-accent));
}

/**
  Main Nav Hover Effect
  **/

/**
  End Hover Effect
  **/
.event-item-image {
    padding-top: 10px;
    padding-bottom: 10px;
}
@-webkit-keyframes flash {
    0% {
        opacity: 0.4;
    }
    100% {
        opacity: 1;
    }
}
@keyframes flash {
    0% {
        opacity: 0.4;
    }
    100% {
        opacity: 1;
    }
}

.cookieconsent {
    position: fixed;
    padding: 60px;
    left: 0;
    bottom: 0;
    background-color: rgb(var(--mb-black));
    text-align: center;
    width: 100%;
    z-index: 999999;
    color: white;
    border-top: 1px solid rgb(var(--mb-white));
    background-image: url("../images/largetransparentgear.png");
    background-position: right;
    background-repeat: no-repeat;
}

.cookieconsent a {
    background-color: var(--mb-accent);
    color: rgb(var(--mb-black));
    display: block;
    max-width: 30vw;
    margin: 10px auto;
}

.about-us-image {
    border: 1px solid rgb(var(--mb-black));
    float: right;
    width: 35%;
    margin-left: 2em;
}
.bg-primary {
    background-color: var(--mb-brand) !important;
}
.btn-primary:hover {
    background: var(--mb-accent) !important;
}
.btn-primary {
    font-weight: bold;
    font-family: var(--mb-headerfont);
    font-size: 1.25em;
    border: none;
    background-color: var(--mb-brand) !important;
}
.btn-primary:focus,
.btn-primary:active,
.btn-primary:active:focus {
    outline: none !important;
    border: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}
.accordion-button:not(.collapsed) {
    background-color: var(--mb-accent, darkgreen) !important;
    color: rgb(var(--mb-white));
}
.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}
.accordion-button:focus {
    box-shadow: 0 0 0 0.1rem rgb(218 165 32 / 50%);
    -webkit-box-shadow: 0 0 0 0.1rem rgb(218 165 32 / 50%);
    border-color: goldenrod;
}
.nav-item.bg-primary {
    font-weight: bold;
}
.nav-item.bg-primary a.nav-link {
    font-weight: bold;
    color: rgb(var(--mb-white));
}
.nav-item.bg-primary a.nav-link:hover {
    font-weight: bold;
    background: var(--mb-brand);
    color: rgb(var(--mb-black)) !important;
}
.nav-item.bg-primary a.nav-link.sign-up-btn::before,
.nav-item.bg-primary a.nav-link.sign-in-btn::before,
.nav-item.bg-primary a.nav-link.user-account::before,
.nav-item.bg-primary a.nav-link.sign-out-btn::before {
    font-family: "FontAwesome";
    margin-right: 10px;
    font-weight: bold;
    color: rgb(var(--mb-white));
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}
.nav-item.bg-primary a.nav-link.sign-up-btn:hover::before,
.nav-item.bg-primary a.nav-link.sign-in-btn:hover::before,
.nav-item.bg-primary a.nav-link.user-account:hover::before,
.nav-item.bg-primary a.nav-link.sign-out-btn:hover::before {
    color: rgb(var(--mb-blue));
}
.nav-item.bg-primary a.nav-link.user-account::before {
    content: "\f2bd";
}
.nav-item.bg-primary a.nav-link.sign-out-btn::before {
    content: "\f08b";
}
.nav-item.bg-primary a.nav-link.sign-up-btn::before {
    content: "\f245";
}
.nav-item.bg-primary a.sign-in-btn::before {
    content: "\f090";
}
.nav-item.bg-primary:not(.bg-primary) {
    margin-left: 2rem;
}

/*****
End Bootstrap overrides
 *****/
.main-content .nav .nav-link {
    border-bottom: 1px solid var(--mb-accent);
}
.main-content .nav a.nav-link.active {
    border-left: 1px solid var(--mb-accent);
    border-top: 1px solid var(--mb-accent);
    border-right: 1px solid var(--mb-accent);
    border-bottom: none;
}
.btn {
    font-size: 14px;
}
.btn-white {
    background-color: rgb(var(--mb-white));
    color: rgb(var(--mb-gray-dark));
    border: 1px solid rgb(var(--mb-gray-dark));
    padding: 5px 15px;
    border-radius: 0;
    line-height: 26px;
}

/* .btn-website {
  background-color: var(--red);
  color: var(--white);
  border: 1px solid var(--red);
  padding: 5px 15px;
  border-radius: 0;
  line-height: 26px;
} */

.text-website-primary {
    /* color: rgb(var(--mb-black)); */
    text-shadow: 0 1px 1px rgb(var(--plain-white));
    color: var(--mb-gold, goldenrod);
}
.text-website-primary::before {
    content: "\f013";
    font-family: "FontAwesome";
    color: rgb(var(--mb-blue));
    margin-right: 0.25rem;
}
.admin-float {
    background-color: rgb(var(--mb-gray-medium));
}
.recently-closed {
    padding: 0 10px;
}
/* .ReNMet {
  font-size: 14px;
  color: var(--green) !important;
  font-weight: 800;
  font-style: italic;
}

.ReMet {
  font-size: 14px;
  color: var(--green);
  font-weight: 600;
  font-style: italic;
}

.RemA {
  position: relative;
  padding-left: 140px;
  text-align: right;
  line-height: 12px !important;
} */

/*wrapper*/

.search-wrap-inner {
    margin-top: 100px;
}

/* .wrapper-events {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 13px;
  margin-top: 25px;
  width: 1204px;
  border: 1px solid var(--green);
  height: 220px;
} */

.wrapper-reg {
    position: relative;
    width: 100%;
    height: 43px;
    background-color: rgb(var(--mb-white));
}

.wrapper-top {
    position: relative;
    width: 100%;
    height: 150px;
}

.wrapper-top-inner {
    position: relative;
    width: 100%;
}

.wrapper-menu {
    position: relative;
    width: 100%;
    background-color: rgb(var(--mb-gray-medium));
    margin-top: 1px;
    height: 38px;
    margin-left: auto;
    margin-right: auto;
}

.mobile-wrapper-dropdown {
    display: none;
}

.mobile-wrapper-menu {
    position: relative;
    width: 100%;
    background-color: rgb(var(--dead));
    margin-top: 1px;
    height: 38px;
    margin-left: auto;
    margin-right: auto;
}

.wrapper-menu-items {
    position: relative;
    width: 780px;
    margin-left: auto;
    margin-right: auto;
}

/*top-nav*/

.logo-search-wrap {
    position: relative;
    max-width: 1170px;
    height: 145px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.2;
}

.logo {
    position: relative;
    top: 5px;
    width: 240px;
    float: left;
    height: 145px;
}

.search {
    position: relative;
    width: 602px;
    float: right;
    height: 145px;
}

.nav-items:hover {
    color: rgb(var(--mb-gray-medium));
    cursor: pointer;
}

.register-btns {
    position: relative;
    width: 1170px;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
}

.top-btns-signin {
    position: relative;
    float: right;
    width: 300px;
    height: 100%;
    font-size: 14px;
}

.top-btns {
    /*display: none;*/
    position: relative;
    float: right;
    width: 300px;
    height: 100%;
}

.top-btns-logged-in {
    /*display: none;*/
    position: relative;
    float: right;
    text-align: right;
    height: 27px;
    margin-top: 12px;
    min-width: 412px;
}

.top-button {
    cursor: pointer;
    position: relative;
    float: right;
    height: 27px;
    margin-top: 8px;
    width: 102px;
    border-radius: 3px;
    margin-right: 5px;
}

.btn-reg {
    color: rgb(var(--dead)) !important;
    background-color: rgb(var(--mb-gray-medium));
}

.btn-login {
    background-color: rgb(var(--dead));
}
/*
.round-btn-text {
  font-family: Arial;
  position: relative;
  width: 102px;
  font-size: 15px;
  line-height: 25px;
  color: rgb(var(--dead));
  text-align: center;
} */

/* search box */
.search-box {
    position: relative;
    width: 361px;
    text-align: left;
    height: 42px;
    border-radius: 3px;
    margin-top: 20px;
    float: right;
    margin-right: 20px;
}
/*
.search-input {
  color: var(--grey);
  margin-left: 30px;
  width: 332px;
  font-size: 15px;
  height: 42px;
  border-radius: 8px;
} */

.category-main {
    height: 38px;
    text-decoration: none;
    border-top: 1px solid rgb(var(--mb-gray-dark));
    border-bottom: 1px solid rgb(var(--mb-gray-dark));
    border-right: 1px solid rgb(var(--mb-gray-dark));
    background-color: rgb(var(--mb-white));
}

.category-main-alt {
    height: 38px;
    text-decoration: none;
    border-top: 1px solid rgb(var(--mb-gray-dark));
    border-bottom: 1px rgb(var(--mb-gray-dark));
    border-right: 1px rgb(var(--mb-gray-dark));
    background-color: rgb(var(--mb-white));
}

.category-main-nobd {
    height: 40px;
    border-right: 1px solid rgb(var(--mb-gray-dark));
    border-bottom: 1px solid rgb(var(--mb-gray-dark));
    background-color: rgb(var(--mb-white));
}

.category-main-nobd-alt {
    height: 58px;
    line-height: 24px;
    padding-top: 5px;
    border-right: 1px solid rgb(var(--mb-gray-dark));
    background-color: rgb(var(--mb-white));
}

.cat-main-text {
    color: var(--mb-brand);
    padding-left: 10px;
    line-height: 36px;
    font-size: 13px;
}

.redplus {
    display: inline;
    font-size: 12px;
    color: var(--mb-accent);
    font-family: "Glyphicons Halflings";
    -webkit-font-smoothing: antialiased;
}

.cursor,
.Subcursor {
    cursor: hand;
}

/* listings page */
.event-wrapper {
    position: relative;
    min-height: 10px;
    width: 100%;
}

.event-logo-img {
    position: relative;
    float: left;
    min-height: 150px;
    padding-left: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
}

/* sort bar for listings page */

/* .sort-bar {
  position: relative;
  background-color: var(--darkblue);
  width: 100%;
  height: 32px;
}

.sort-option {
  position: relative;
  top: 7px;
  font-family: var(--headerfont);
  width: 135px;
  text-align: center;
  height: 33px;
  float: right;
  color: var(--white);
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
} */

.right-pad {
    position: relative;
    float: right;
    width: 2px;
    height: 33px;
    background-color: rgb(var(--dead));
}

.caret {
    display: inline-block;
    width: 0px;
    height: 0px;
    margin-top: -2px;
    margin-left: 2px;
    vertical-align: middle;
    border-top: 9px dashed;
    border-right: 7px solid transparent;
    border-left: 7px solid transparent;
    color: var(--white);
}

.Chevron {
    position: relative;
    float: right;
    margin-right: 20px;
    top: 16px;
    display: block;
    height: 12px; /*height should be double border*/
}

.Chevron:before,
.Chevron:after {
    position: absolute;
    display: block;
    content: "";
    border: 6px solid transparent; /*adjust size*/
}

/*Change four 'top' values below to rotate (top/right/bottom/left)*/
.Chevron:before {
    top: 0;
    border-top-color: rgb(var(--white)); /*Chevron Color*/
}

.Chevron:after {
    top: -2px; /*adjust thickness*/
    border-top-color: rgb(var(--white)); /*Match background colour*/
}

.Chevron.change:after {
    top: -2px; /*adjust thickness*/
    border-top-color: rgb(var(--white)); /*Match background colour*/
}

.ChevronOP {
    position: relative;
    float: right;
    margin-right: 20px;
    top: 8px;
    display: block;
    height: 12px; /*height should be double border*/
}

.ChevronOP:before,
.ChevronOP:after {
    position: absolute;
    display: block;
    content: "";
    border: 6px solid transparent; /*adjust size*/
}

/*Change four 'top' values below to rotate (top/right/bottom/left)*/
.ChevronOP:before {
    bottom: 0;
    border-bottom-color: rgb(var(--white)); /*Chevron Color*/
}

.ChevronOP:after {
    bottom: -2px; /*adjust thickness*/
    border-bottom-color: rgb(var(--white)); /*Match background colour*/
}

.ChevronOP.change:after {
    bottom: -2px; /*adjust thickness*/
    border-bottom-color: rgb(var(--white)); /*Match background colour*/
}

.subCatExpand {
    display: none;
    text-decoration: none;
    border-right: 1px solid rgb(var(--mb-gray-light));
    background-color: rgb(var(--white));
}

.subCatOptionWrap {
    height: 38px;
    border-bottom: 1px solid rgb(var(--mb-gray-light));
}

.subCatOption {
    height: 8px;
    color: var(--mb-accent);
    padding-top: 12px;
    padding-left: 33px;
    font-size: 13px;
}

/* listing formatting */

.listing-wrapper {
    position: relative;
    width: calc(100% - 250px);
    margin-left: 250px;
    min-height: 180px;
    border-bottom: 1px solid var(--mb-accent);
    font-size: 12px;
    overflow: hidden;
    padding-bottom: 5px;
}

.listing-left {
    position: relative;
    width: 650px;
    float: left;
}

.listing-right {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    width: 200px;
    float: right;
}

.listing-pad {
    padding-bottom: 16px;
}

.listing-model {
    position: relative;
    float: left;
    width: 350px;
}

.listing-TimeLeft {
    position: relative;
    float: right;
    width: 260px;
    text-align: right;
    padding-right: 40px;
}

.listing-Lot {
    position: relative;
    float: left;
    width: 140px;
    text-align: left;
}

.listing-MAID {
    position: relative;
    float: left;
    width: 140px;
    text-align: left;
}

.listing-Bids {
    position: relative;
    float: left;
    width: 370px;
    text-align: left;
}

.listing-shortDesc {
    position: relative;
    float: left;
    width: 700px;
    text-align: left;
}

.listing-Location {
    position: relative;
    float: left;
    width: 200px;
    text-align: left;
}

.listing-curBid {
    position: relative;
    float: left;
    width: 210px;
    text-align: right;
    padding-right: 40px;
}

.bino {
    position: relative;
    height: 25px;
    width: 25px;
    top: 8px;
}

.listing-img {
    position: relative;
    width: 185px;
    height: 130px;
    float: right;
}

.listing-top-pad {
    position: relative;
    width: 100%;
    height: 30px;
}

.event-img {
    position: relative;
    float: left;
    width: 200px;
    max-height: 160px;
    padding: 2px;
    margin: 2px;
}

.event-solid-img {
    position: relative;
    float: left;
    width: 850px;
    max-height: 160px;
    /*border: 1px solid black;*/
}

.event-midImgs {
    position: relative;
    display: inline-block;
    max-width: 908px;
    max-height: 208px;
}

.event-top {
    position: relative;
    display: inline-block;
    width: 850px;
    margin-bottom: 10px;
    /*border: 1px solid black;*/
}

.event-topLogo {
    position: relative;
    float: left;
    width: 190px;
}

.event-topInfo {
    position: absolute;
    display: inline;
    float: right;
    width: 660px;
    min-height: 10px;
    bottom: 0px;
}

.event-text-info {
    position: absolute;
    bottom: 3px;
    margin-left: 25px;
}

.font-event-size {
    font-size: 14px;
}

.event-bot {
    position: relative;
    width: 850px;
    padding-top: 10px;
    padding-bottom: 13px;
    /*border: 1px solid black;*/
}

.event-info {
    position: relative;
    display: inline-block;
    height: 50px;
    width: 908px;
    text-align: center;
    /*border: 1px solid black;*/
    margin-bottom: 25px;
}

.event-info-items {
    position: relative;
    display: block;
    float: left;
    width: 150px;
    height: 50px;
    font-size: 12px;
}

.draw-event-line {
    position: relative;
    height: 0px;
    width: 800px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid var(--darkblue);
    margin-bottom: 25px;
}

.event-logo {
    position: relative;
    float: left;
    max-height: 150px;
    padding: 2px;
}

.event-info-items {
    width: 170px;
}

.text-for-event-listing {
    color: var(--mb-brand);
    font-size: 20px;
    font-weight: 700;
    line-height: 56px;
}

.addEvent-row {
    width: 790px;
    margin-bottom: 14px;
}

.addEvent-leftBranch {
    position: relative;
    display: inline;
    width: 283px;
    float: left;
}

.addEvent-rightBranch {
    position: relative;
    display: inline;
    width: 283px;
    float: right;
}

.addEvent-midBranch {
    position: relative;
    display: inline;
    width: 284px;
    float: left;
}

.addEvent-Onsitecontact,
.addEvent-AuctionContact {
    position: relative;
    display: block;
    width: 850px;
}

.addEvent-AuctionRunTimes {
    position: relative;
    width: 390px;
}

.addEvent-leftBranchRunTimes {
    position: relative;
    display: inline;
    width: 50%;
    float: left;
}

.addEvent-rightBranchRunTimes {
    position: relative;
    display: inline;
    width: 50%;
    float: left;
}

.addEvent-Input-CreateEvent {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    width: 235px;
    line-height: 28px;
}

.addEvent-Input-small {
    width: 80px;
}

.addEvent-Input {
    width: 850px;
    font-size: 16px;
}

.addEvent-Input-med {
    width: 240px;
}

.addEvent-Bold {
    font-size: 14px;
    font-weight: 700;
    line-height: 22px;
}

.draw-Addevent-line {
    position: relative;
    height: 0;
    width: 810px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid var(--mb-brand);
    top: 20px;
    margin-bottom: 50px;
}

.addEvent-Submit {
    cursor: pointer;
    color: white;
    font-size: 16px;
    background-color: var(--mb-brand);
    border: 0px;
    border-radius: 3px;
}

.list-lots-display-logo {
    position: relative;
    width: 100%;
    text-align: left;
    /*width: intrinsic; !* Safari/WebKit uses a non-standard name *!*/
    width: -moz-max-content; /* Firefox/Gecko */
    width: calc(100% - 0.5rem);
    margin: 0 5px;
    box-shadow: inset 50vw 0 50vw rgb(var(--plain-white)) !important;
    background: rgb(var(--mb-gray-light));
    border: 1px solid var(--mb-brand);
    padding: 1em 2em;

    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-blend-mode: soft-light;
}

.list-lots-display-logo.lot-event-header {
    margin-bottom: 2em;
    padding-bottom: 2em;
}
.list-lots-display-logo.lot-event-header .box-info {
    margin-right: 0 !important;
}
.event-card-text-box {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-blend-mode: soft-light;
}

.page-wrapper {
    background-color: rgb(var(--mb-white));
    /* padding: 25px; */
    border: 1px solid rgb(var(--mb-gray-dark));

    border-radius: 5px;
    -webkit-box-shadow: inset 0 0 5px rgb(var(--mb-gray-dark));
    box-shadow: inset 0 0 5px rgb(var(--mb-gray-dark));
    padding: 1rem !important;
    margin: 5px 10px;
}
.box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 150px;
    background: rgb(var(--mb-white));
    -webkit-box-shadow: 0 0 15px rgba(var(--mb-black), 0.1);
    box-shadow: 0 0 15px rgba(var(--mb-black), 0.1);
    z-index: 10;
}

.box img {
    max-height: 150px;
    max-width: 100%;
}
.list-lots-display-logo .box {
    margin-top: 15px;
}
.list-lots-display-logo .box img {
    border: 1px solid var(--mb-brand);
}
.box-info {
    font-size: smaller;
    position: relative;
    display: inline-block;
    margin-right: 140px !important;
    margin-top: 1em;
}

.box-info ul {
    list-style-type: none;
    padding-left: 0;
    border-top: 1px solid #ddd;
    margin-top: 0.5em;
    padding-top: 0.5em;
}
.box-info ul li strong {
    display: inline-block;
    width: 70px;
}

.box-info .event-desc {
    padding-bottom: 10px;
}

.ribbon {
    width: 150px;
    height: 150px;
    overflow: hidden;
    position: absolute;
    float: left;
}

.ribbon::before,
.ribbon::after {
    position: absolute;
    z-index: 1;
    content: "";
    display: block;
    border: 5px solid var(--mb-event, red);
}

.ribbon span {
    position: absolute;
    display: block;
    width: 220px;
    padding: 15px 0;
    background-color: var(--mb-event, red);
    -webkit-box-shadow: 0 5px 10px rgba(var(--mb-black), 0.1);
    box-shadow: 0 5px 10px rgba(var(--mb-black), 0.1);
    color: rgb(var(--plain-white));
    font: 700 18px/1 "Lato", sans-serif;
    text-shadow: 0 1px 1px rgba(var(--mb-black), 0.2);
    text-transform: uppercase;
    text-align: center;
}

.ribbon-top-right {
    top: -10px;
    right: -10px;
}

.ribbon-top-right::before,
.ribbon-top-right::after {
    border-top-color: transparent;
    border-right-color: transparent;
}

.ribbon-top-right::before {
    top: 0;
    left: 0;
}

.ribbon-top-right::after {
    bottom: 0;
    right: 0;
}

.ribbon-top-right span {
    left: -18px;
    top: 40px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* Mobile NEW EVENT Ribbon CSS */
@media only screen and (max-width: 992px) {
    .left-content {
        border-radius: 0 !important;
    }
    .ribbon span {
        font: 700 14px/1 "Lato", sans-serif;
    }
    .ribbon-top-right span {
        left: 0px;
        top: 15px;
    }
    .ribbon-top-right::before {
        left: 42px;
    }
    .ribbon-top-right::after {
        bottom: 42px;
    }
}
/* Mobile NEW EVENT Ribbon CSS */

.mobile-wrapper-menu {
    display: none;
}

.slide-out-wrapper {
    position: fixed;
    width: 0px;
    height: 100%;
    z-index: 9998;
    overflow: hidden;
}
.slide-out-wrapper-inside {
    position: relative;
    float: right;
    margin-right: -300px;
    width: 300px;
    height: 100%;
    background-color: rgb(var(--plain-white));
    z-index: 9999;
    opacity: 1;
    filter: alpha(opacity=100); /* For IE8 and earlier */
    -webkit-box-shadow: -5px 0 10px rgb(var(--mb-black));
    box-shadow: -5px 0 10px rgb(var(--mb-black));
}

.slide-out-wrapper-left {
    position: relative;
    float: left;
    height: 100%;
    width: 100%;
    opacity: 0.7;
    filter: alpha(opacity=30); /* For IE8 and earlier */
    -webkit-transition: -webkit-backdrop-filter 500ms;
    transition: -webkit-backdrop-filter 500ms;
    -o-transition: backdrop-filter 500ms;
    transition: backdrop-filter 500ms;
    transition: backdrop-filter 500ms, -webkit-backdrop-filter 500ms;
    -webkit-backdrop-filter: blur(5px) opacity(0);
    backdrop-filter: blur(5px) opacity(0);
}
.slide-out-wrapper.open .slide-out-wrapper-left {
    -webkit-backdrop-filter: blur(5px) opacity(1) grayscale(1);
    backdrop-filter: blur(5px) opacity(1) grayscale(1);
}

.slide-show-register {
    display: none;
}

.mask {
    background-color: rgb(var(--mb-white)) !important;
}

.startmask {
    background-color: rgb(var(--mb-white)) !important;
}

.slide-tops {
    position: relative;
    float: left;
    display: inline;
    width: 150px;
    height: 60px;
    text-align: center;
    font-size: 22px;
    cursor: pointer;
}

.slide-top {
    width: 300px;
    height: 60px;
    position: relative;
}

.slide-show-register {
    width: 300px;
    height: 100px;
}

.slide-create-account {
    width: 300px;
    height: 400px;
}

.slide-input-field {
    height: 60px;
    width: 230px;
    padding-left: 35px;
}

.slide-text-box {
    width: 230px;
    font-size: 16px;
}

.slide-text-txt {
    font-size: 13px;
    color: rgb(var(--mb-gray-dark));
    line-height: 22px;
}

.slide-fb-or {
    text-align: center;
    margin-top: 40px;
}

.slide-input-box-create {
    width: 230px;
    background-color: var(--mb-brand);
    color: rgb(var(--mb-white));
    height: 30px;
    font-size: 14px;
    margin-top: 20px;
}

.slide-tops-txt {
    line-height: 60px;
}

input.slide-text-box {
    border: 1px solid rgb(var(--mb-gray-medium));
}

.slide-line {
    width: 230px;
    margin-left: 35px;
    height: 0px;
    border: 1px solid rgb(var(--mb-gray-medium));
}

.lot-timestamp::before {
    content: "\f251";
    font-family: "FontAwesome";
    margin-right: 5px;
    color: var(--mb-accent);
    display: inline-block;
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    -o-transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.card:hover .lot-timestamp::before {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
.list-lot-sortBar-wrapper {
    width: 850px;
    height: 32px;
}

.list-lot-option-2-txt {
    position: relative;
    float: left;
    background-color: rgb(var(--mb-gray-dark));
    width: 132px;
    height: 32px;
    line-height: 32px;
    color: rgb(var(--mb-white));
    font-size: 13px;
    text-align: center;
}

.list-lot-option-1-txt {
    position: relative;
    float: left;
    background-color: rgb(var(--mb-gray-dark));
    width: 448px;
    height: 32px;
    line-height: 32px;
    color: rgb(var(--mb-white));
    font-size: 13px;
    text-align: right;
}

.list-lot-break {
    position: relative;
    float: left;
    background-color: rgb(var(--mb-white));
    width: 2px;
    height: 32px;
}

.list-arrow-down {
    position: relative;
    display: inline;
    top: 13px;
    left: 4px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;

    border-top: 10px solid rgb(var(--mb-white));
}

.single-list-full-wrap {
    position: relative;
    display: inline;
    width: 900px;
}

.single-list-right-side {
    width: 400px;
    height: 500px;
    float: left;
    position: relative;
}

.single-list-FullDescription {
    width: 430px;
    min-height: 400px;
}

.quad-wrapper {
    width: 203px;
}

.quad-row {
    position: relative;
    display: inline;
}

.quad-left {
    position: relative;
    display: inline;
    width: 100px;
    height: 20px;
    float: left;
    border-left: 1px solid rgb(var(--mb-gray-medium));
    border-top: 1px solid rgb(var(--mb-gray-medium));
    border-bottom: 1px solid rgb(var(--mb-gray-medium));
    text-align: center;
    line-height: 20px;
}

.quad-right {
    position: relative;
    display: inline;
    width: 100px;
    height: 20px;
    float: left;
    border: 1px solid rgb(var(--mb-gray-medium));
    text-align: center;
    line-height: 20px;
}

.quad-left2 {
    position: relative;
    display: inline;
    width: 100px;
    height: 20px;
    float: left;
    border-left: 1px solid rgb(var(--mb-gray-medium));
    border-bottom: 1px solid rgb(var(--mb-gray-medium));
    text-align: center;
    line-height: 20px;
}

.quad-right2 {
    position: relative;
    display: inline;
    width: 100px;
    height: 20px;
    float: left;
    border-left: 1px solid rgb(var(--mb-gray-medium));
    border-bottom: 1px solid rgb(var(--mb-gray-medium));
    border-right: 1px solid rgb(var(--mb-gray-medium));
    text-align: center;
    line-height: 20px;
}

.wrapper-main:before,
.wrapper-main:after {
    content: "";
    display: table;
}

.wrapper-main:after {
    clear: both;
}

.single-list-bidding-Area-full {
    position: relative;
    float: left;
    width: 450px;
}

.single-list-biddingArea {
    position: relative;
    display: block;
    min-height: 150px;
}

.single-list-biddingArea-deets {
    position: relative;
    display: block;
    overflow: hidden;
}

.single-list-lead-txt {
    position: relative;
    padding-top: 20px;
    padding-bottom: 5px;
    font-size: 18px;
    width: 450px;
    color: rgb(var(--mb-black));
}

.single-list-largeLine {
    position: relative;
    width: 430px;
    border: 4px solid var(--mb-brand);
    margin-bottom: 10px;
}

.single-list-SingleLine {
    position: relative;
    display: inline;
    float: left;
    height: 30px;
    width: 450px;
}

.single-list-MultiLine {
    position: relative;
    display: inline;
    float: left;
    height: 55px;
    width: 450px;
}

.single-list-SingleLineLeft {
    position: relative;
    display: inline-block;
    height: 30px;
    width: 195px;
    font-size: 14px;
    text-align: left;
}

.single-list-SingleLineRight {
    position: relative;
    display: block;
    float: right;
    height: 30px;
    width: 245px;
    font-size: 13px;
}

.list-single-clickinfo {
    position: relative;
    width: 360px;
    padding-left: 8px;
    height: 40px;
}

.list-single-clickinfo-left {
    position: relative;
    display: inline;
    float: left;
    width: 180px;
}

.list-single-clickinfo-right {
    position: relative;
    display: inline;
    float: left;
    width: 180px;
}

.list-single-cil {
    position: relative;
    display: inline;
    float: left;
    width: 60px;
}

.list-single-images-main {
    text-align: center;
}

.list-single-cil-txt {
    position: relative;
    display: inline;
    float: left;
    width: 120px;
    text-align: left;
    margin-top: 8px;
}

.quad-pointer {
    cursor: pointer;
}

.quad-1 {
    position: relative;
    display: inline;
    width: 88px;
    height: 60px;
    float: left;
    margin: 1px;
}

.quad-2 {
    position: relative;
    display: inline;
    width: 88px;
    height: 60px;
    float: left;
    margin: 1px;
}

.quad-wrapper-2 {
    width: 360px;
}

.quad-row-2 {
    position: relative;
    display: inline;
}

.AddKeywords {
    float: right;
}

input {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 0;
    padding: 0;
    padding-left: 8px;
    padding-right: 8px;
}

.nodec {
    text-decoration: none;
}

.img {
    position: relative;
    float: left;
    min-width: 100%;
    min-height: 160px;
    height: 160px;
}
.Reg-Q {
    cursor: pointer;
}
.Req-Q-Box {
    display: none;
    position: absolute;
    margin-top: -36px;
    margin-left: 70px;
    line-height: 20px;
    height: 40px;
    width: 200px;
    background-color: var(--mb-brand);
    color: rgb(var(--mb-black));
    text-align: center;
    font-size: 12px;
}

/* .sample {
  width: 450px;
  height: 80px;
  background-color: var(--red);
  color: var(--white);
  border: 1px solid var(--black);
  font-size: 32px;
  position: absolute;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  line-height: 80px;
  z-index: 9999;
  -ms-transform: rotate(-14deg);
  -webkit-transform: rotate(-14deg);
  transform: rotate(-14deg);
}
*/

.newImgClass-small {
    position: relative;
    float: left;
    padding-right: 7px;
    padding-top: 7px;
    max-height: 80px;
    text-align: center;
    line-height: 80px;
}

.updateClassImgSmall {
    max-height: 80px;
    max-width: 80px;
}

.new-itemArea-Wrapper {
    position: relative;
    width: 850px;
    border: 1px solid rgb(var(--mb-gray-light));
    min-height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.new-itemArea-innerWrap {
    position: relative;
    width: 100%;
    min-height: 20px;
    margin: 10px;
}

.new-itemArea-left {
    position: relative;
    float: left;
    width: 70%;
    min-height: 20px;
    border: 1px solid rgb(var(--mb-black));
}

.new-itemArea-right {
    position: relative;
    float: right;
    /*width: calc(30% - 4px);*/
    width: calc(40% - 4px);
    min-height: 20px;
    border: 1px solid rgb(var(--mb-black));
}

.new-itemArea-mainInfo-left {
    position: relative;
    width: calc(50% - 20px);
    float: left;
}

.new-itemArea-mainInfo-right {
    position: relative;
    width: 50%;
    float: right;
    text-align: right;
    padding-right: 20px;
}

.new-itemArea-mainInfo-single {
    position: relative;
    width: 100%;
    text-align: left;
}

.listing-img2 {
    position: relative;
    max-width: 100%;
    max-height: 140px;
    margin-left: auto;
    margin-right: auto;
}

.event-newWrapper {
    position: relative;
    width: 700px;
}

.event-newImages {
    position: relative;
    width: 700px;
}

.event-newSingleBlock {
    position: relative;
    width: 160px;
    float: left;
    padding: 5px;
}

.event-newSingleImg {
    position: relative;
    width: 150px;
    height: 150px;
    border: 1px solid var(--darkblue);
}

.event-newSingleBlockContent {
    position: relative;
    text-align: center;
    margin-top: 10px;
    font-size: 12px;
}

.event-newSingleBlockContent-1 {
    position: relative;
    text-align: center;
    margin-top: 10px;
    width: 300px;
}

.newGraphicLogo {
    height: 40px;
    position: relative;
    max-width: 100px;
    margin-left: auto;
    margin-right: auto;
}

.event-item {
    border: 1px solid var(--mb-brand);
    background: rgb(var(--mb-white));
}
.event-item a {
    text-decoration: none;
}
.event-item a h5::after {
    content: "\f0e3";
    font-family: "FontAwesome";
    color: var(--mb-accent);
    margin-left: 5px;
    display: inline-block;

    -ms-transform: rotate(90deg); /* Internet Explorer 9 */
    -webkit-transform: rotate(90deg); /* Chrome, Safari, Opera */
    transform: rotate(90deg); /* Standard syntax */
    -webkit-transition: -webkit-transform 200ms cubic-bezier(0.84, 0.01, 0.99, 0.065) 300ms;
    transition: -webkit-transform 200ms cubic-bezier(0.84, 0.01, 0.99, 0.065) 300ms;
    -o-transition: transform 200ms cubic-bezier(0.84, 0.01, 0.99, 0.065) 300ms;
    transition: transform 200ms cubic-bezier(0.84, 0.01, 0.99, 0.065) 300ms;
    transition: transform 200ms cubic-bezier(0.84, 0.01, 0.99, 0.065) 300ms,
        -webkit-transform 200ms cubic-bezier(0.84, 0.01, 0.99, 0.065) 300ms;
    -webkit-transition-timing-function: cubic-bezier(0.84, 0.01, 0.99, 0.065);
    -o-transition-timing-function: cubic-bezier(0.84, 0.01, 0.99, 0.065);
    transition-timing-function: cubic-bezier(0.84, 0.01, 0.99, 0.065);
}
.event-item:hover a h5::after {
    -ms-transform: rotate(140deg); /* Internet Explorer 9 */
    -webkit-transform: rotate(140deg); /* Chrome, Safari, Opera */
    transform: rotate(140deg); /* Standard syntax */
}

.event-item .event-item-image {
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-right: 1px solid rgba(var(--mb-black), 0.1);
}
.event-item .col-md-9 {
    background: rgb(var(--mb-gray-light));
    border: 10px solid rgb(var(--mb-white));
    border-radius: 15px;
    -webkit-box-shadow: inset 0 0 5px rgb(var(--mb-gray-dark));
    box-shadow: inset 0 0 5px rgb(var(--mb-gray-dark));
    padding: 1rem !important;
}

.lot-item .lot-title {
    display: block;
    min-height: 48px;
    font-size: 16px;
}

.lot-item .lot-image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px;
    /* border-bottom: 1px solid rgba(0, 0, 0, 0.1); */
}

.lot-item .lot-image img {
    width: initial;
    max-width: 100%;
    border-radius: 0;
}

/*Footer*/
.social-links a {
    font-size: 3em !important;
}

.footer-wrap .copyright {
    display: block;
    margin-top: 2em;
}

.footer-wrap {
    background-color: rgba(var(--mb-black), 1);
    color: rgba(var(--mb-white), 1);
    padding: 20px;
    border-bottom: 15px solid var(--mb-brand);
    box-shadow: 0 -5px 10px -5px rgba(0, 0, 0, 0.5);
    margin-top: 2em;
}
.footer-wrap a {
    color: rgba(var(--mb-white), 1);
}
.footer-wrap a:hover {
    color: var(--mb-brand);
}

/*End Footer*/

/*Lot Detail*/
#fancybox-close {
    z-index: 9999 !important;
    right: 0px !important;
    top: 0px !important;
}

#fancybox-img {
    z-index: 9999 !important;
}

.watchListAdd {
    cursor: pointer;
}

.step1 {
    background-color: rgb(var(--mb-white));
}

.step2 {
    background-color: rgb(var(--mb-white));
}

.CurBidNewUpdate {
    font-size: 20px;
    font-weight: bold;
}

.updateFont {
    font-size: 20px;
    font-weight: bold;
}

.reserve-met {
    font-size: 16px;
    color: var(--mb-event, darkred);
    font-weight: 800;
    font-style: italic;
}

/* Shrink Boostrap Padding from Bid Boxes */
input.MyBid.BidBoxes.form-control,
input#MyProxyBid {
    padding: 0;
}
#your-bid-block .col-sm-4.fw-bold.mb-2 {
    padding-right: 0;
}

.clickToPrint {
    cursor: pointer;
    width: 300px;
    height: 40px;
    position: relative;
}

.printerImg {
    position: relative;
    width: 21px;
    height: 16px;
    top: 5px;
    cursor: pointer;
}

.side-panel-links {
    color: var(--mb-brand);
    font-size: 14px;
}

.tab {
    overflow: hidden;
    border: 1px solid rgb(var(--mb-gray-medium));
    background-color: var(--mb-brand);
    width: 440px;
    margin-left: -5px;
    margin-top: 5px;
    margin-bottom: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

/* Style the buttons inside the tab */
div.tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    color: rgb(var(--mb-white));
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

/* Change background color of buttons on hover */
div.tab button:hover {
    background-color: rgb(var(--mb-gray-medium));
    color: black;
}

/* Create an active/current tablink class */
div.tab button.active {
    background-color: var(--mb-brand);
}

/* Style the tab content */
.tabcontent {
    display: none;
    padding: 6px 12px;
    border: 0px solid var(--mb-brand);
    border-top: none;
    clear: both;
}

.tabcontent-1 {
    border: 0px solid var(--mb-brand);
    border-top: none;
    clear: both;
}

.tabcontent-2 {
    display: none;
}

.tabcontent-3 {
    display: none;
}

.tabcontent-4 {
    display: none;
}

.tabcontent-5 {
    display: none;
}

.tabcontent {
    -webkit-animation: fadeEffect 1s;
    animation: fadeEffect 1s; /* Fading effect takes 1 second */
}

@-webkit-keyframes fadeEffect {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.grey {
    background-color: rgb(var(--mb-gray-medium));
}

@keyframes fadeEffect {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.newBidAlert {
    position: absolute;
    display: none;
    width: 400px;
    height: 200px;
    margin-left: auto;
    margin-right: auto;
    background-color: rgb(var(--mb-white));
    border: 1px solid var(--mb-brand);
    -webkit-box-shadow: 2px 2px 20px rgb(var(--mb-black));
    box-shadow: 2px 2px 20px rgb(var(--mb-black));
    z-index: 9990;
    text-align: center;
}

.helpMe {
    position: relative;
    display: inline-block;
    font-size: 8px;
    border: 1px solid rgb(var(--mb-gray-medium));
    background-color: var(--mb-accent);
    padding: 1px;
    top: -10px;
}

.showHelp-1 {
    position: absolute;
    display: none;
    min-width: 200px;
    border: 1px solid rgb(var(--mb-gray-medium));
    background-color: var(--mb-accent);
    z-index: 9999;
    font-size: 10px;
    margin-left: 10px;
    padding-left: 5px;
    padding-right: 5px;
    line-height: 14px;
}

.hideMiniME {
    cursor: pointer;
    z-index: 9999;
    position: relative;
    padding-left: 20px;
    float: right;
    padding-right: 20px;
}

.spanmini {
    width: 100%;
    height: 40px;
    background-color: var(--mb-accent);
    line-height: 40px;
    color: rgb(var(--mb-black));
}

.imgX {
    width: 15px;
    height: 15px;
}

.responseTxt {
    padding: 20px;
    position: relative;
    margin-top: -20px;
}

.showMachine {
    cursor: pointer;
    margin-top: 10px;
}

#displayRegister {
    position: absolute;
    -webkit-box-shadow: 10px 10px 5px var(--mb-brand);
    box-shadow: 10px 10px 5px var(--mb-brand);
    display: block;
    width: 500px;
    height: 600px;
    background-color: rgb(var(--mb-white));
    margin-left: auto;
    margin-right: auto;
    margin-top: -200px;
    z-index: 9999;
    border: 1px solid rgb(var(--mb-black));
    overflow: auto;
}
/*End Lot Detail*/

/*Contact Us*/
/* .text-border{ //border: 1px solid black; } */

.CE_wrapper {
    position: relative;
    width: 790px;
    padding-bottom: 50px;
}
.CE_SingleLineElement {
    position: relative;
    display: inline-block;
    width: 790px;
    height: 60px;
    line-height: 25px;
    padding-bottom: 15px;
}

.CE_SingleLineElement_text {
    width: 790px;
    font-weight: 700;
    font-size: 14px;
    text-align: left;
}
.CE_Botch {
    position: relative;
    height: 2px;
}

.CE_SingleLineElement_input {
    width: 850px;
}
.inputUpdate {
    display: block;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: var(--mb-brand);
    background-color: rgb(var(--mb-white));
    background-image: none;
    border: 1px solid rgb(var(--mb-gray-medium));
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(var(--mb-black), 0.075);
    box-shadow: inset 0 1px 1px rgba(var(--mb-black), 0.075);
    -webkit-transition: var(--mb-accent) ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
    -o-transition: var(--mb-accent) ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    -webkit-transition: var(--mb-accent) ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
    transition: var(--mb-accent) ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
    -o-transition: var(--mb-accent) ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    transition: var(--mb-accent) ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    transition: var(--mb-accent) ease-in-out 0.15s, box-shadow ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
}
.CE_inputFont {
    font-size: 15px;
}
.CE_SingleLineElement_input-small {
    width: 240px;
    height: 20px !important;
}
.CE_2LineElements-wrapper {
    position: relative;
    display: inline-block;
    text-align: left;
    width: 790px;
}
.CE_3LineElement-Left {
    position: relative;
    width: 263px;
    float: left;
    height: 60px;
}
.CE_3LineElement-Mid {
    position: relative;
    width: 263px;
    float: left;
    height: 40px;
}
.CE_3LineElement-Right {
    position: relative;
    width: 234px;
    float: right;
    height: 40px;
}
.CE_SingleLineElement_input-LargeText {
    width: 790px;
    height: 400px;
    resize: none;
}
.CE_FormSubmit {
    cursor: pointer;
    width: 808px;
    text-align: right;
    margin-top: 30px;
}

.CE_Button-2 {
    position: relative;
    float: right;
    width: 220px;
    height: 36px;
    color: rgb(var(--mb-white));
    text-align: center;
    line-height: 20px;
    font-size: 15px;
    background-color: var(--mb-brand);
    border: 1px solid var(--mb-brand);
    border-radius: 4px;
}
/*End Contact Us*/

/*Header*/
a.fancybox img {
    border: none;
    -webkit-box-shadow: 0 1px 7px rgba(var(--mb-black), 0.6);
    box-shadow: 0 1px 7px rgba(var(--mb-black), 0.6);
    -ms-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -o-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

a.fancybox:hover img {
    position: relative;
    z-index: 999;
    -ms-transform: scale(1.03, 1.03);
    -webkit-transform: scale(1.03, 1.03);
    transform: scale(1.03, 1.03);
}

.top-nav {
    position: fixed;
    z-index: 9999;
    width: 100%;
    /* height: 32px; */
    background-color: var(--mb-brand);
    /* float: left; */
    color: rgba(var(--mb-gray-dark));
    -webkit-box-shadow: 0 5px 5px rgba(var(--mb-black));
    box-shadow: 0 5px 5px rgba(var(--mb-black));
}

.top-nav-item {
    position: relative;
    float: left;
    padding-left: 10px;
    line-height: 32px;
}

.DeleteItem {
    color: rgba(var(--mb-white));
    cursor: pointer;
}
.DeleteItem:hover {
    color: var(--mb-accent);
    cursor: pointer;
}

.deletePopUp {
    display: none;
    position: absolute;
    margin-top: 300px;
    margin-left: calc(50% - 150px);
    margin-right: auto;
    border: 1px solid rgba(var(--mb-black));
    background-color: rgba(var(--mb-white));
    width: 300px;
    height: 200px;
    z-index: 9999;
}

.deletePopUpClose {
    text-align: right;
    width: 100%;
}

.deletePopUpTXT {
    width: 100%;
    text-align: center;
}

/* .stop-scrolling {
  height: 100%;
  overflow: hidden;
} */

.css3gradient {
    background-color: var(--darkblue);
    filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=rgb(var(--mb-brand)), endColorstr=rgb(var(--mb-brand)));
    background-image: -webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(50%, var(--mb-brand)),
        color-stop(0%, var(--mb-brand)),
        to(rgb(var(--mb-black)))
    );
    background-image: -o-linear-gradient(top, var(--mb-brand) 50%, var(--mb-brand) 0%, rgb(var(--mb-black)) 100%);
    background-image: linear-gradient(top, var(--mb-brand) 50%, var(--mb-brand) 0%, rgb(var(--mb-black)) 100%);
    border-bottom: 2px solid rgb(var(--mb-white));
}

.left-content {
    padding: 20px 10px;
    /* background-color: var(--mb-d-base,darkslategrey) !important; */
    background-color: #03240b !important;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.main-content {
    padding: 20px 10px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
}

.wrapper-main {
    background-color: rgb(230, 232, 230);
    box-shadow: 0 0 20px #173116;
    border-radius: 15px;
    position: relative;
}
.wrapper-main::after,
.wrapper-main::before {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 10px;
    height: 10px;
    border-radius: 50px;
    background: #adadad; /* Old browsers */
    background: -moz-linear-gradient(-45deg, #adadad 0%, #e1e1e1 51%, #dddddd 68%, #f6f6f6 100%); /* FF3.6+ */
    background: -webkit-gradient(
        linear,
        left top,
        right bottom,
        color-stop(0%, #adadad),
        color-stop(51%, #e1e1e1),
        color-stop(68%, #dddddd),
        color-stop(100%, #f6f6f6)
    ); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(
        -45deg,
        #adadad 0%,
        #e1e1e1 51%,
        #dddddd 68%,
        #f6f6f6 100%
    ); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(-45deg, #adadad 0%, #e1e1e1 51%, #dddddd 68%, #f6f6f6 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(-45deg, #adadad 0%, #e1e1e1 51%, #dddddd 68%, #f6f6f6 100%); /* IE10+ */
    background: linear-gradient(135deg, #adadad 0%, #e1e1e1 51%, #dddddd 68%, #f6f6f6 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#adadad', endColorstr='#f6f6f6',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
    -moz-box-shadow: 0px 2px 4px #000;
    -webkit-box-shadow: 0px 2px 4px #000;
    box-shadow: 0px 2px 4px #000, -1px -1px 5px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.wrapper-main::after {
    top: unset;
    bottom: 10px;
}
.headerTopText {
    position: relative;
    font-size: 16px;
    top: 123px;
    display: inline;
    left: 180px;
    color: rgb(var(--mb-white));
    background-color: var(--mb-brand);
}

.newGraphicLogoSet {
    height: 50px;
}

.event-newSingleBlockContentSet {
    position: relative;
    text-align: center;
    font-size: 12px;
    width: 100px;
}

.event-newSingleBlockSet {
    position: relative;
    width: 100px;
    float: left;
    padding: 5px;
}

.nav-L {
    border-top-left-radius: 6px;
}

.nav-R {
    border-top-right-radius: 6px;
}

.nav-items {
    position: relative;
    font-weight: 700;
    font-size: 15px;
    margin-left: 1px;
    margin-top: 0px;
    min-width: 50px;
    padding-right: 1px;
    float: left;
    display: inline;
    line-height: 30px;
    border: 1px solid rgb(var(--mb-white));
    background-color: rgb(var(--mb-white));
    color: var(--mb-brand);
}

.wrapper-menu {
    position: relative;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.wrapper-menu-items {
    position: relative;
    height: 30px;
    width: 900px !important;
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
}

.fixMenuOps {
    position: relative;
    margin-left: 200px;
    width: 900px;
}

.topLogoMain {
    width: 100%;
    margin: 10px 0;
}

.topLogoMainMA {
    width: 200px;
}

.header-top {
    color: rgb(var(--mb-white));
}

.header-top-title {
    font-size: 16px;
    margin: 10px 0;
    text-transform: uppercase;
    text-align: center;
}

.header-top-desc {
    font-size: 12px;
}

/*Menu*/
#nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 5px -24px 0;
}

#nav,
.subnav {
    list-style: none;
    padding-left: 0;
}

#nav > li {
    display: inline-block;
}

#nav li {
    position: relative;
}

#nav li a {
    text-decoration: none;
    line-height: 46px;
    padding: 1px 24px;
    display: block;
    font-weight: 700;
    font-size: 16px;
}

#nav > li > a {
    color: var(--mb-brand);
    text-transform: capitalize;
}

#nav > li:hover > a,
#nav .subnav li:hover a {
    color: var(--red);
}

#nav .subnav {
    display: none;
    min-width: 180px;
    background-color: var(--white);
    color: var(--black);
    -webkit-box-shadow: 0 0 10px rgba(var(--mb-black), 0.3);
    box-shadow: 0 0 10px rgba(var(--mb-black), 0.3);
    position: absolute;
    top: 90%;
    left: 0;
    z-index: 1;
}

#nav li:hover .subnav {
    display: block;
}

#nav .subnav a {
    text-align: center;
    color: rgb(var(--mb-black));
    padding: 0 16px;
    line-height: 32px;
}

#nav .nav-arrow-down {
    font-size: 18px;
}

/*End Header*/

/*Sidebar*/
.left-content #calendar,
#current-events,
#current-lots,
#sidebar,
#signup-updates,
#sell-your-equipment,
#bidding-guide {
    background-color: rgb(var(--mb-white));
    background: #eee;
    border: 5px solid white;
    border-radius: 5px;
    -webkit-box-shadow: inset 0 0 5px rgb(var(--mb-gray-dark));
    box-shadow: inset 0 0 5px rgb(var(--mb-gray-dark));
    padding: 1rem !important;
    margin-bottom: 1rem;
}

ul.sidebar-menu,
ul.sidebar-submenu {
    padding-left: 0;
    list-style: none;
}

ul.sidebar-submenu {
    display: none;
}

.switch {
    position: relative;
    display: inline-block;
    width: 24px;
    height: 14px;
    top: 5px;
}

.switch input {
    display: none;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgb(var(--mb-gray-dark));
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    left: 2px;
    bottom: 3px;
    background-color: rgb(var(--mb-white));
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}
#sidebar.hide-mobile .menu-options {
    font-weight: bold;
}
.switch .slider.round {
    background: var(--mb-brand);
}
.switch:hover .slider.round {
    background: var(--mb-accent);
}

input:focus + .slider {
    -webkit-box-shadow: 0 0 1px var(--mb-brand);
    box-shadow: 0 0 1px var(--mb-brand);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--mb-accent);
}

input:checked + .slider:before {
    -webkit-transform: translateX(12px);
    -ms-transform: translateX(12px);
    transform: translateX(12px);
}

.sidebar-menu .sidebar-item {
    border-bottom: 1px solid rgb(var(--mb-gray-medium));
}
.sidebar-menu .sidebar-item.show-submenu {
    border-bottom: 1px solid rgb(var(--mb-gray-medium));
    background: rgb(var(--mb-blue));
    font-weight: bold;
}
.sidebar-menu .sidebar-item:hover > a {
    color: rgb(var(--mb-white));
    background-color: var(--mb-base, slategrey);
}

.sidebar-menu .sidebar-sub-item:hover > a {
    color: rgb(var(--mb-white));
    background-color: rgb(var(--mb-blue));
}

.sidebar-menu .sidebar-sub-item a,
.sidebar-menu .sidebar-item a {
    position: relative;
    display: block;
    padding: 6px 8px;
    font-size: 11px;
    color: rgb(var(--mb-black));
    text-decoration: none;
}
.sidebar-menu .sidebar-item.show-submenu a,
.sidebar-menu .sidebar-sub-item a {
    color: rgb(var(--mb-white));
}
.sidebar-menu .sidebar-sub-item {
    text-indent: 15px;
    border-bottom: 1px solid rgb(var(--mb-gray-medium));
    background-color: var(--mb-brand);
    color: rgb(var(--mb-gray-dark));
}

.sidebar-menu .sidebar-item .sidebar-item-expand {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 10px;
}

/*End Sidebar*/

/*New Style*/
span.required {
    color: var(--mb-brand);
}

.form-control {
    border-radius: 0;
}

.form-control:focus,
.btn:focus {
    background: lightgrey;
    -webkit-box-shadow: 0 0 0 0.05rem var(--mb-gold, grey);
    box-shadow: 0 0 0 0.05rem var(--mb-gold, grey);
    border-color: var(--mb-gold, goldenrod);
}

.owl-carousel .owl-stage {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 auto;
}

.owl-theme .owl-nav [class*="owl-"] {
    margin: 5px 10px !important;
}

.owl-prev,
.owl-next {
    width: 15px;
    height: 80px;
    position: absolute;
    top: 40%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    display: block !important;
    border: none;
}
.owl-prev {
    left: -25px;
}
.owl-next {
    right: -25px;
}
.owl-prev i,
.owl-next i {
    -webkit-transform: scale(2, 5);
    -ms-transform: scale(2, 5);
    transform: scale(2, 5);
    color: rgb(var(--mb-gray-medium));
}
.owl-prev:focus,
.owl-next:focus {
    outline: none;
}

.main-content {
    font-size: 14px;
}
.main-content .nav .nav-item {
    background-color: var(--mb-brand);
}
.main-content .nav .nav-item .nav-link {
    color: rgb(var(--mb-white));
    border-radius: 0;
}
.main-content .nav .nav-link.active,
.nav .show > .nav-link {
    color: var(--mb-brand);
    /*background-color: var(--mb-brand);*/
    background-color: #fff;
}

#termsModal .modal-body {
    max-height: calc(100vh - 300px);
    overflow-y: auto;
}

#termsModal .btn-close {
    padding: 5px 15px;
    border-radius: 0;
    line-height: 26px;
}
/*End New Style*/

/*Tablet*/
@media only screen and (min-width: 768px) and (max-width: 992px) {
    .logo-search-wrap {
        position: relative;
        width: 768px;
        max-width: 9000px;
        height: 145px;
        margin-left: auto;
        margin-right: auto;
    }

    .search-box {
        display: none;
    }

    .search {
        position: relative;
        max-width: 360px;
        float: right;
        height: 145px;
    }
    .hideitnow {
        display: none;
    }

    .SAE-wrapper {
        display: none;
    }

    .SAE-list-wrapper {
        width: 766px;
    }

    .SAE-list-top {
        width: 766px;
    }

    .newsizeLogoFoot {
        width: 275px;
        position: relative;
        margin: auto;
    }

    .main-content {
        overflow: auto;
        position: relative;
        float: none;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
        display: block;
        max-width: 1024px;
        margin-top: 20px;
    }

    .mobile-about {
        margin-left: 10px;
    }

    .opt-line {
        width: calc(100% - 20px) !important;
        max-width: 1024px !important;
        margin-left: auto;
        margin-right: auto;
    }

    .opt-block {
        width: calc(100% - 20px) !important;
        max-width: 1024px !important;
        margin-left: auto;
        margin-right: auto;
    }

    .left-nav-main {
        position: relative;
        margin-left: auto;
        float: none;
        margin-right: auto;
        display: block;
        max-width: 1024px;
        width: 768px;
    }

    .wrapper-main {
        max-width: 1024px;
        width: 100%;
    }

    .fixMenuOps {
        margin-left: 100px !important;
    }

    .headerTopText {
        position: relative;
        font-size: 12px !important;
        text-align: center !important;
        margin-left: auto !important;
        float: left;
        margin-right: auto;
        width: 500px !important;
        top: 125px !important;
        left: -110px !important;
    }

    .top-btns {
        top: 4px !important;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .topLogoMainMA {
        width: 170px;
    }

    .header-contact,
    .header-contact .btn {
        font-size: 12px;
    }
}

/* END OF TABLET --- START OF MOBILE!! */

/*Mobile*/
@media only screen and (max-width: 992px) {
    .about-us-image {
        margin-left: 0;
    }

    .home-hero {
        display: none;
    }
    button.fc-today-button.fc-button.fc-button-primary {
        display: none;
    }

    div.fc-button-group {
        width: 100%;
        font-size: 0.75rem;
    }

    div.fc-toolbar-chunk {
        text-align: center;
    }

    h2#fc-dom-1.fc-toolbar-title {
        top: 1rem;
        width: 100%;
        text-indent: 0;
        margin-bottom: 0.25em;
        position: absolute;
        left: 0;
        top: 35px;
    }

    div.fc-header-toolbar.fc-toolbar.fc-toolbar-ltr.row.col-lg-12 {
        padding-left: 0;
    }

    div.fc-toolbar-chunk:first-of-type {
        width: 100%;
        margin-bottom: 0.25em;
        /* flex: none; */
        display: inline;
        margin-top: 30px;
    }
    div.fc-toolbar-chunk:last-of-type {
        display: none;
    }

    div.fc-toolbar-chunk:first-of-type .fc-button-group button.fc-button {
        width: 50%;
        border: none;
        background: none;
        color: var(--mb-brand);
    }
    div.fc-toolbar-chunk:first-of-type .fc-button-group button.fc-button:active,
    div.fc-toolbar-chunk:first-of-type .fc-button-group button.fc-button:focus {
        outline: none;
        border: none;
    }

    button.fc-dayGridMonth-button.fc-button.fc-button-primary,
    button.fc-timeGridWeek-button.fc-button.fc-button-primary,
    button.fc-timeGridDay-button.fc-button.fc-button-primary,
    button.fc-listWeek-button.fc-button.fc-button-primary {
        text-transform: capitalize;
    }

    button.fc-prev-button.fc-button.fc-button-primary {
        padding: 0;
    }

    span.fc-icon.fc-icon-chevron-left {
        display: block;
    }

    span.fc-icon.fc-icon-chevron-right {
        display: block;
        float: right;
    }

    button.fc-next-button.fc-button.fc-button-primary {
        border: none !important;
    }
    .top-nav .top-nav-item {
        font-size: 0;
        padding-bottom: 0;
        line-height: 1;
    }
    .top-nav .top-nav-item i {
        padding: 5px 5px;
    }
    .top-nav .top-nav-item i::before {
        font-size: 25px;
        padding: 2px 5px;
    }

    .listing-info .row label:first-of-type {
        font-weight: bold;
    }
    .listing-info .row {
        border-bottom: 1px solid rgb(var(--mb-gray-dark));
        margin-top: 10px !important;
    }
    .text-website-primary {
        text-align: center !important;
    }
    #sidebar.hide-mobile {
        margin-top: 0 !important;
        border-top: 0;
        /* float: left; */
    }
    .left-content {
        padding: 5px 5px;
        width: 100%;
    }

    #current-lots,
    #current-events {
        border-bottom: 0 !important;
        float: right;
        /* margin-top: 30px; */
    }
    #sidebar,
    #current-lots,
    #current-events {
        /* border: none; */
        /* background: transparent; */
        -webkit-box-shadow: none;
        box-shadow: none;
        padding: 0 !important;
        width: 100%;
    }
    .hide-mobile,
    #signup-updates,
    #sidebar.hide-mobile .menu-options,
    #sidebar.hide-mobile .sidebar-menu,
    #current-lots.hide-mobile .sidebar-menu,
    #current-events.hide-mobile .sidebar-menu,
    #sell-your-equipment.hide-mobile {
        height: 0;
        display: none !important;
    }
    #sidebar.show-mobile .menu-options,
    #sidebar.show-mobile .sidebar-menu,
    #current-lots.show-mobile .sidebar-menu #current-events.show-mobile .sidebar-menu {
        height: auto;
    }
    #sidebar h6,
    #current-lots h6,
    #current-events h6 {
        line-height: 1;
        /* color: var(--white); */
        padding: 25px 0 !important;
        font-size: 20px !important;
    }
    #sidebar.show-mobile h6,
    #current-lots.show-mobile h6,
    #current-events.show-mobile h6 {
        color: var(--mb-brand);
        font-size: 20px !important;
    }
    #sidebar.hide-mobile h6,
    #current-events.hide-mobile h6,
    #current-lots.hide-mobile h6,
    #sidebar.show-mobile h6,
    #current-events.show-mobile h6,
    #current-lots.show-mobile h6 {
        font-size: 20px !important;
    }

    .home-hero i {
        display: block;
    }
    .home-hero i::before {
        content: "";
    }
    .home-hero {
        padding: 10px 0 !important;
    }
    .home-hero h1 {
        padding: 10px 0 !important;
        font-size: 2em;
    }
    .box {
        max-width: 400px !important;
    }
    .box-info {
        margin-right: 0 !important;
    }

    .sign-up-btn,
    .sign-in-btn,
    .user-account,
    .sign-out-btn .social-links li {
        padding: 10px;
    }
    .social-links li i::before {
        font-size: 12vw;
    }

    .boxinfostyle {
        left: -320px;
    }

    .listing-wrapper {
        width: 400px !important;
        border-bottom: 0px;
    }

    .new-itemArea-Wrapper {
        padding-bottom: 30px;
        padding-top: 20px;
        border-bottom: 1px solid rgb(var(--mb-gray-medium));
    }

    .topLogoMain {
        height: 80px;
    }

    .search-box {
        display: none;
    }

    .logo {
        width: 100%;
        text-align: center;
    }

    .list-lots-display-logo {
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
    }

    .search {
        position: relative;
        width: 100%;
        height: 0px !important;
        text-align: center;
    }

    .draw-event-lineSet {
        display: none;
    }

    .top-btns {
        /*display: none;*/
        display: block;
        position: relative;
        width: 100%;
        float: left;
        height: 100%;
        margin-top: -90px;
        z-index: 9990;
    }

    .clickMeMobile {
        float: right;
        margin-right: 30px;
        padding-bottom: 22px;
        margin-top: -10px;
        cursor: pointer;
        z-index: 9999;
    }

    .mobile-dropdown-box {
        position: relative;
        width: 32px;
        height: 32px;
        border: 1.5px solid rgb(var(--mb-black));
        background-color: var(--mb-brand);
        border-radius: 4px;
        top: 18px;
    }

    .db-line {
        position: relative;
        display: block;
        width: calc(100% - 5px);
        height: 1px;
        float: left;
        margin-top: 4px;
        margin-left: 2.5px;
        border-bottom: 1px solid rgb(var(--mb-white));
    }

    .db-line-height {
        position: relative;
        display: block;
        width: calc(100% - 5px);
        height: 3px;
        float: left;
        margin-left: 2.5px;
    }

    .db-line-thick {
        border-bottom: 2px solid rgb(var(--mb-white)) !important;
    }

    .SAE-wrapper {
        display: none;
    }

    .SAE-list-wrapper {
        width: calc(100% - 20px);
        margin-left: auto;
        margin-right: auto;
    }

    .SAE-list-top {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .top-button {
        cursor: pointer;
        position: relative;
        height: 27px;
        width: 102px;
        top: -60px;
        border-radius: 3px;
    }

    .search-wrap-inner {
        position: relative;
        margin-left: auto;
        margin-right: auto;
        max-width: 214px;
        top: -50px !important;
    }

    .mobile-wrapper-menu {
        display: block;
        background: transparent;
    }

    .mobile-wrapper-dropdown {
        position: relative;
        width: 100%;
        height: 0;
        background-color: var(--mb-brand);
        display: block;
        float: left;
        z-index: 999;
        border-top: 1px solid rgb(var(--mb-white));
    }

    .headerTopText {
        display: none !important;
    }

    .mobile-wrapper-menu-items {
        display: none;
        position: relative;
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
        margin-left: auto;
        margin-right: auto;
        height: 100px;
    }

    .nav-items-mobile {
        font-size: 16px;
        color: rgb(var(--mb-white));
        line-height: 32px;
    }

    .newsizeLogoFoot {
        width: 280px;
        position: relative;
    }

    .main-content {
        position: relative;
        width: 100%;
        margin-top: 20px;
    }

    .mobile-about {
        margin-left: 10px;
    }

    .opt-line {
        width: calc(100% - 20px) !important;
        max-width: 760px !important;
        margin-left: auto;
        margin-right: auto;
    }

    .opt-block {
        width: calc(100% - 20px) !important;
        max-width: 760px !important;
        margin-left: auto;
        margin-right: auto;
    }

    .wrapper-menu-items {
        display: none !important;
    }

    .wrapper-menu {
        display: none;
    }

    .left-nav-main {
        position: relative;
        float: left;
        display: block;
        max-width: 767px;
        width: 100%;
    }

    .wrapper-main {
        max-width: 767px;
        width: 100%;
    }

    .centerMe {
        text-align: center !important;
        position: relative !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .changeSize {
        width: 100%;
    }

    .event-newWrapper {
        width: 100% !important;
    }

    .event-newWrapperSet {
        padding-bottom: 20px;
    }

    .fixMenuOps {
        display: none !important;
    }

    .top-btns-signin {
        position: relative;
        float: right;
        width: 220px;
        height: 100%;
        font-size: 14px;
        top: -150px;
        left: 100px;
    }

    .top-btns-signin {
        padding-right: 0px !important;
        left: 20px;
        width: 120px;
        z-index: 0;
    }

    .wrapper-top {
        height: auto;
    }

    .wrapper-top-inner {
        height: auto;
    }
    .owl-prev {
        left: -20px;
    }
    .owl-next {
        right: -20px;
    }
    .owl-prev i,
    .owl-next i {
        -webkit-transform: scale(3);
        -ms-transform: scale(3);
        transform: scale(3);
        color: var(--mb-brand);
    }
    .owl-theme .owl-nav [class*="owl-"]:hover {
        background: transparent !important;
    }
    .owl-next i::before {
        content: "\f0a9";
    }
    .owl-prev i::before {
        content: "\f0a8";
    }
    li.nav-item {
        padding: 0;
    }
    .owl-theme .owl-nav [class*="owl-"] {
        margin: 5px 20px !important;
    }
}

.fc-daygrid-event-dot {
    border: none !important;
    position: relative;
    margin-right: 15px !important;
}
.fc-daygrid-event-dot::before {
    content: "\f0e3";
    font-family: "FontAwesome";
    position: absolute;
    top: -10px;
    transform: rotate(90deg);
    color: var(--mb-accent);
}
.watching .fc-daygrid-event-dot::before {
    content: "\f06e";
    font-family: "FontAwesome";
    position: absolute;
    top: -10px;
    color: var(--mb-accent);
    transform: rotate(0deg);
}

.tooltip-inner {
    /*color: var(--mb-accent);*/
    color: white;
}
.tooltip-inner h5 {
    /*color: var(--mb-accent);*/
    color: white;
}
.tooltip-inner i.fa {
    padding: 0 0.5em;
}

.lot-details.nav {
    margin-top: 2em;
    border: 1px solid var(--mb-d-base, black);
    border-bottom: none !important;
}
.lot-details.nav li.nav-item {
    background-color: var(--mb-base);
}

.lot-details.nav li.nav-item:hover a {
    background-color: var(--mb-d-base, darkgreen);
    color: white;
}
.lot-details.nav li.nav-item a {
    border: none !important;
    color: rgb(var(--mb-white)) !important;
    font-weight: bold;
}
.lot-details.nav li.nav-item a.active {
    background-color: var(--mb-brand, green);
    color: white;
}

.lot-details .tab-pane {
    border: 1px solid var(--mb-brand);
    background-color: var(--mb-white);
    border-top: none;
    height: 200px;
    overflow: auto;
    padding: 1em !important;
    margin-bottom: 2em;
}
.submitBid,
.watchListAdd {
    margin-top: 0.25em;
}
#btn-regsiter-event {
    background-color: var(--mb-event, red);
    border: 1px solid var(--mb-event, red);
    color: white;
}
a#btn-regsiter-event:hover {
    border: 1px solid black;
    text-decoration: underline;
}
#demo.text-danger {
    color: rgb(var(--plain-red)) !important;
}
#demo {
    display: inline;
}

a {
    color: var(--mb-title, black);
}
a:hover {
    color: var(--mb-brand, green);
}
.footer-wrap a.nav-link {
    text-transform: uppercase;
}

#beta-message {
    background: rgb(22, 178, 99);
    position: fixed;
    z-index: 999999999;
    height: 2em;
    line-height: 2em;
    top: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.accordion-collapse {
    transition: all 200ms ease-in-out;
}
.accordion-collapse.show {
    /*background-color: rgba(var(--mb-gray-light), 0.3);*/
    box-shadow: inset 0 0 5px rgba(var(--mb-gray-dark), 0.3);
}
.r-section .accordion-item {
    border: solid 1px var(--mb-accent, darkgreen);
}

/* Form Buttons CSS */
button.btn,
.form-group > .btn {
    background-color: var(--mb-accent, darkgreen);
    color: white !important;
    border: 1px solid black;
}
button.btn:hover,
.form-group > .btn:hover {
    background-color: var(--mb-brand, green);
    color: white !important;
    border: 1px solid var(--mb-accent, darkgreen);
}
.form-check-input:checked {
    background-color: var(--mb-brand, green);
    border-color: var(--mb-brand, green);
}
.form-check-input:focus {
    -webkit-box-shadow: 0 0 0 0.05rem var(--mb-gold, goldenrod);
    box-shadow: 0 0 0 0.05rem var(--mb-gold, goldenrod);
}
/* Form Buttons CSS */
.event-card {
    font-size: 12px;
    background-color: rgb(var(--mb-white));
    border: 5px solid rgb(var(--mb-white));
    border-radius: 5px;
    padding: 1rem !important;
    margin-bottom: 0.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 3px 0px, inset 0 0 5px #fff, inset 50vw 0 40vw rgba(var(--plain-white), 1) !important;
    transition: all 250ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
.event-card:hover {
    border-color: #16b263;
    box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px, inset 0 0 5px #333,
        inset 60vw 0 60vw rgba(var(--plain-white), 1) !important;
}

.event-card::before {
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    background-image: url("/images/gavel-bg.png");
    background-position: 18% 90%;
    background-repeat: no-repeat;
    background-size: 10%;
    pointer-events: none;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    -webkit-transition-timing-function: cubic-bezier(0.6, -0.28, 0.735, 0.045);
    -o-transition-timing-function: cubic-bezier(0.6, -0.28, 0.735, 0.045);
    transition-timing-function: cubic-bezier(0.6, -0.28, 0.735, 0.045);
    -webkit-transform-origin: 100px 300px;
    -ms-transform-origin: 100px 300px;
    transform-origin: 100px 300px;
}
.event-card:hover::before {
    -webkit-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    transform: rotate(-10deg);
    /* transition: all 0.2s ease-in; */
}
.event-card a {
    text-indent: -9999em;
    display: block;
    position: absolute;
    inset: 0;
    z-index: 10;
}
.event-card table {
    margin-bottom: 1em;
}
.event-card table tr {
    border-bottom: 1px solid #838680;
}
.event-card table th {
    padding-right: 1em;
    text-align: right;
}
.event-card table th::after {
    content: ":";
}

.event-lot-images {
    position: relative;
    min-height: 150px;
    padding: 0;
    display: flex;
    justify-content:space-between;
}

.event-main-image,
.event-lot-image {
    object-fit: cover;
    height: 150px;
    width: auto;
    transition: all 250ms cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 4px;
    box-shadow: rgba(0, 0, 0, 0.024) 0px 0px 0px 1px, rgba(0, 0, 0, 0.05) 0px 1px 0px 0px,
        rgba(0, 0, 0, 0.03) 0px 0px 8px 0px, rgba(0, 0, 0, 0.1) 0px 20px 30px 0px;
    background: #f0eef0;
    border: 1px solid #fff;
}

/** begin individual thumb manipulation */
.event-card:hover .event-main-image:nth-child(1),
.event-card:hover .event-lot-image:nth-child(2),
.event-card:hover .event-lot-image:nth-child(3),
.event-card:hover .event-lot-image:nth-child(4) {
    transform: rotate(1deg) scale(1.1) translateY(5%);
}
.event-main-image {
    z-index: 4;
}
.event-lot-image:nth-child(2) {
    transition-delay: 50ms;
    filter: brightness(80%) blur(0.25px) saturate(75%);
}
.event-card:hover .event-lot-image:nth-child(2) {
    filter: brightness(100%) blur(0);
    z-index: 3;
}
.event-lot-image:nth-child(3) {
    z-index: 2;
    transition-delay: 75ms;
    filter: brightness(70%) blur(0.5px) saturate(75%);
}
.event-card:hover .event-lot-image:nth-child(3) {
    filter: brightness(100%) blur(0);
}
.event-lot-image:nth-child(4) {
    z-index: 1;
    transition-delay: 100ms;
    filter: brightness(60%) blur(0.75px) saturate(75%);
}
.event-card:hover .event-lot-image:nth-child(4) {
    filter: brightness(100%) blur(0);
}

.event-location {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 6;
    border-radius: 5px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
    border-right: none;
    border-bottom: none;
    padding: 0.25em 2em 0 2em;
    background: rgba(var(--plain-black), 0.6);
    box-shadow: -2px 0 5px rgba(var(--plain-black), 0.3);
    color: rgb(var(--mb-white));
    font-weight: bold;
    font-size: 1.2em;
}

/* Remove margins from P tags on the Lot pages Additional Info section */
.add-info p {
    margin-bottom: 0 !important;
}

/* search results */

.top-results {
    border-top: 1px solid #ccc;
}

.result-content {
    flex: 1;
}
.search-result.filtered-out,
.search-results.filtered-out {
    max-height: 0;
    transition: all 0.15s ease-out;
    padding-bottom: 0;
}
.search-results {
    max-height: 9999vh;
    transition: all 0.15s ease-in;
    overflow: hidden;
    border-bottom: 1px solid #ccc;
    padding-bottom: 1em;
    margin-bottom: 1em;
}
.search-result {
    display: flex;
    align-items: flex-start;
    position: relative;
    margin-top: 0.25em;
    max-height: 500px;
    transition: all 0.15s ease-in;
    overflow: hidden;
}
.search-result:hover {
    background-color: #fff;
    box-shadow: inset 0 0 20px 5px rgba(0, 0, 0, 0.05);
}
.search-result img {
    height: 120px;
    max-width: 200px;
    border: 1px solid #333;
    background-color: #fff;
    margin-right: 1em;
    margin-left: 0.5em;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}
.result-content {
    padding: 0.5em;
}
.search-result a {
    position: absolute;
    inset: 0;
    display: block;
    text-indent: -9999em;
    overflow: hidden;
}
.result-closed * {
    opacity: 0.7;
    transition: all 250ms ease-in;
}
.result-closed:hover * {
    opacity: 1;
}
.result-closed h6::before {
    content: "Closed: ";
}
.result-closed img {
    filter: saturate(0.3);
}
.result-upcoming h6::before {
    content: "Upcoming: ";
}
.result-live h6::before {
    /* content: "Open Now: "; */
}
h5 span.filtered {
    font-style: italic;
    color: #ccc;
    font-weight: normal;
}

h5 span.total::before {
    content: "(";
}
h5 span.total::after {
    content: ")";
}

h5.filtered-out span {
    display: none;
}
h5.filtered-out::after {
    content: "Results Hidden";
    font-style: italic;
    color: #ccc;
    font-weight: normal;
}
@media (max-width: 600px) {
    .search-result {
        display: block;
        clear: both;
        overflow: auto;
    }
    .search-result img {
        float: right;
        margin-right: 0;
    }
}

/* Single Lot Business Card CSS */
.am-card {
    border: 1px solid var(--mb-accent, black);
    margin: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
    box-shadow: 1px 1px 1px 1px lightgrey;
    background: rgb(221, 221, 221);
    background: linear-gradient(
        210deg,
        rgba(221, 221, 221, 1) 0%,
        rgba(242, 242, 242, 1) 20%,
        rgba(255, 255, 255, 1) 100%
    );
}
.am-name {
    font-size: large;
    text-decoration: underline;
}
.am-title,
.am-email {
    line-height: normal;
    padding-right: 0;
}
.am-phone {
    text-align: end;
    padding-left: 0;
}
.am-phone > a {
    text-decoration: none;
}
.user-history-table {
    background: #fff;
    border: 1px solid #333;
}
.user-history-table td {
    overflow: hidden;
    text-overflow: ellipsis;
    width: 33%;
    max-width: 0;
}
.admin-only-box {
    background-color: var(--mb-brand);
    margin: 0 0.5em;
    padding: 1em 0.25em;
    border: 1px solid #333;
    height: 300px;
    overflow: auto;
    display: none;
}
.naa-logo {
    max-width: 120px;
    display: block;
    margin: 0 auto 2em auto;
}
#password-toggle {
    display: block;
    text-align: right;
    font-size: 0.75em;
    font-style: italic;
    cursor: pointer;
}

#search-form button {
    height: 100%;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
#search-form input {
    border-top-left-radius: 0.3rem;
    border-bottom-left-radius: 0.3rem;
    border-color: #000;
    font-size: 12px;
}
#search-form input:focus {
    background-color: #fff;
}
.owl-stage {
    padding: 10px 0;
}

.reserve {
    color: #a31000;
    text-align: right;
}

.reserve.met {
    color: var(--mb-accent, darkgreen);
}

.reserve::before {
    content: "\f00d";
    font-family: "FontAwesome";
}

.reserve.met::before {
    content: "\f00c";
}

#bidding_info {
    color: var(--mb-accent, darkgreen);
    cursor: pointer;
}

#bidding_info:hover {
    color: var(--mb-gold);
}

input {
    outline: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    border: 0;
    padding: 0;
    padding-left: 8px;
    padding-right: 8px;
}

#auction_clock {
    --color-upcoming: var(--mb-blue);
    --color-open: var(--mb-blue);
    --color-almost: #a52422;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    height: 82px;
    font-size: 70px;
    font-weight: bold;
    font-family: "Oxanium", Impact, Arial, Helvetica, sans-serif;
    user-select: none;
    border-radius: 3px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    position: relative;
    background-color: #ccc;
    margin-bottom: 10px;
    padding: 0 10px;
}

#auction_clock::before {
    font-size: 14px;
    display: block;
    width: 100%;
    height: 20px;
    line-height: 20px;
    position: absolute;
    top: 0;
    font-family: var(--mb-headerfont);
    text-transform: uppercase;
    text-align: center;
    background: #03240b;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    color: white;
}

#auction_clock.upcoming_auction::before {
    content: "Bidding Begins In";
}
#auction_clock.closed::before {
    content: "Bidding Closed";
}

#auction_clock.live_auction {
    background: #eee;
}

#auction_clock.live_auction::before {
    content: "Bidding Closes In";
    background: var(--mb-brand);
}

#auction_clock > div {
    background-color: #fff;
    width: 20%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--mb-blue);
    border-radius: 3px;
    box-shadow: 0 5px 10px -4px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
    transition: all 300ms cubic-bezier(0.19, 1, 0.22, 1);
    transform: scale(1);
    margin-top: 20px;
}

#auction_clock > div.tick {
    transform: scale(0.98);
    box-shadow: 0 5px 2px -4px rgba(0, 0, 0, 0.3);
}

#auction_clock > div > span {
    transition: all 250ms;
}

#auction_clock > div.tick > span {
    color: var(--mb-gold, goldenrod);
}

.colon {
    font-size: 20px;
    font-weight: bolder;
    color: #000;
    padding-top: 20px;
}

#auction_clock.upcoming_auction.upcoming > div,
#auction_clock.live_auction.upcoming > div {
    color: var(--color-upcoming);
}

#auction_clock.upcoming_auction.open > div,
#auction_clock.live_auction.open > div {
    color: var(--color-open);
}

#auction_clock.upcoming_auction.almost > div .seconds,
#auction_clock.live_auction.almost > div .seconds {
    color: var(--color-almost);
}
.auction_result {
    font-size: 40px;
    text-transform: uppercase;
    font-weight: bold;
    font-family: var(--mb-headerfont);
    text-align: center;
}
.auction_result.winner {
    color: var(--mb-brand);
}

#auction_clock.upcoming_auction.almost > div.tick .seconds,
#auction_clock.live_auction.almost > div.tick .seconds {
    color: #e1110d;
}

#auction_clock.closed .hide-on-close {
    display: none;
}
#auction_clock.closed > div {
    width: 30%;
}

#auction_clock .smalltext {
    font-size: 10px;
    text-align: center;
    color: #999;
    display: block;
    position: absolute;
    bottom: 0;
    transition: all 0.15s;
}

#auction_clock:hover .smalltext {
    color: var(--mb-brand);
}

#livebid_container {
    transition: filter 200ms;
    background-color: #eee;
    border-radius: 3px;
    margin-left: 1em;
    margin-top: 15px;
    background-image: url(/images/gavel-bg.png);
    background-repeat: no-repeat;
    background-position: 95% 75%;
}

#livebid_container {
    transition: all 0.2s;
}

#livebid_container:hover {
    box-shadow: 0 0 5px #666;
}

#livebid_container:focus-within {
    box-shadow: 0 0 5px #000;
}

#livebid_container:focus-within .input-group-text {
    outline: none;
}

#livebid_container:focus-within .form-control {
    outline: none !important;
    box-shadow: none !important;
    background-color: #fff;
    font-weight: bold;
}

#livebid_container:focus-within button {
    outline: none;
}

#livebid_container.loading {
    filter: none;
    position: relative;
}

#livebid_container::before {
    position: absolute;
    content: "PROCESSING BID";
    font-size: 1.5em;
    padding-top: 1em;
    font-weight: bold;
    text-align: center;
    border: 5px solid var(--mb-brand);
    height: 45%;
    width: 50%;
    top: 30%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    z-index: 1;
    background-color: white;
    border-radius: 3px;
    box-shadow: 0 8px 8px -5px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: all 0.3s;
}

#livebid_container.loading::before {
    opacity: 1;
}

#livebid_container::after {
    font-family: "FontAwesome";
    content: "\f013";
    position: absolute;
    top: 35%;
    left: 50%;
    height: 100px;
    width: 100px;
    color: #bdbdbd;
    z-index: 1;
    line-height: 100px;
    display: block;
    text-align: center;
    font-size: 100px;
    animation-name: submitBidSpin;
    animation-duration: 5000ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    opacity: 0;
    transition: all 0.5s;
}

#livebid_container.loading::after {
    opacity: 0.3;
}

#livebid_container.loading button {
    pointer-events: none;
}

#livebid_container table {
    margin-bottom: 0;
}



#wrapper {
    width: 400px;
    margin-top: 20px;
}

.auction_layout {
    position: relative;
}

.total-footnote {
    font-size: 10px;
}

#bid_amount_help {
    padding: 1em;
    padding-bottom: 0;
    color: #333;
}

#bid_amount_help strong,
#bid_amount_help a {
    color: var(--mb-brand, green);
}

#submit_bid .input-group-text {
    /* background-color:#FFF;
 */
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

#submit_bid .input-group-append button {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    height: 100%;
}

#submit_bid .input-group-append button i {
    transform: scaleX(-1);
    margin-left: 5px;
}

#submit_bid label.error {
    position: absolute;
    bottom: 120%;
    left: 10%;
    background-color: var(--mb-gold, goldenrod);
    border-radius: 5px;
    padding: 5px 15px;
    z-index: 2;
    font-weight: bold;
}

#submit_bid label.error::after {
    content: "";
    background-color: var(--mb-gold, goldenrod);
    width: 10px;
    height: 10px;
    transform: rotate(45deg);
    position: absolute;
    bottom: -5px;
    left: 5%;
}

#bid_detail {
    font-size: 12px;
}

#bid_detail strong {
    padding-left: 40px;
}

#bid_table {
    font-size: 18px;
    table-layout: fixed;
    width: 95%;
    margin: 0.5em auto;
}

#bid_table td {
    padding: 3px !important;
}

.single-list-name {
    margin-bottom: 1.5em;
}

h6.winning,
h6.losing {
    position: relative;
    margin-left: 2em;
}

h6.winning {
    color: var(--mb-brand);
}

h6.losing {
    color: #a31000;
}

h6.winning::before {
    content: "\f091";
}

h6.losing::before {
    content: "\f0e3";
    transform: rotate(90deg);
}

h6.losing::before,
h6.winning::before {
    font-family: "FontAwesome";
    width: 1em;
    height: 1em;
    font-size: 2em;
    position: absolute;
    top: -0.45em;
    left: -1em;
}

#btn-regsiter-event,
#btn-accept-terms {
    max-width: 80%;
    margin: 1em auto;
    z-index: 2;
}
.lot-disclaimer {
    font-size: 12px;
    font-style: italic;
    padding: 0.75em;
}
.lot-disclaimer i {
    color: var(--mb-brand);
    font-size: 14px;
}

.listing-info table th,
.listing-info table td {
    padding: 4px;
    font-size: 14px;
}

.listing-info table tfoot td {
    text-align: right;
    font-style: italic;
    font-size: 12px;
    color: #999;
    background-color: #f9f9f9;
}

.listing-info table {
    border: 1px solid #ddd;
    margin-top: 1em;
}

.listing-info table * {
    border-color: #ddd !important;
}
.event-lot-card.upcoming {
    background-color: #ddd;
}
.event-lot-card:hover {
    background-color: #eee;
}

.event-lot-card.active {
    background-color: var(--mb-brand);
}

.event-lot-card.active img {
    border: 1px solid white;
}

.event-lot-card.active .btn-primary {
    background: white !important;
    color: var(--mb-brand);
}

.event-lot-card table {
    margin: 0 !important;
    margin-bottom: 5px !important;
}
.event-lot-card table * {
    border-color: #000 !important;
}

.event-lot-card table {
    background-color: white;
    border: 1px solid black;
}
.event-lot-card table th a {
    color: white;
    text-decoration: none;
}

.event-lot-card table th,
.event-lot-card table td {
    padding: 4px;
    font-size: 11px;
}

.event-lot-card.active::before {
    content: "\f0a3";
    font-family: "FontAwesome";
    position: absolute;
    top: -35px;
    right: -10px;
    font-size: 50px;
    color: gold;
    text-shadow: 0 2px 3px #333;
    z-index: 2;
}

.event-lot-card.active::after {
    content: "OPEN!";
    position: absolute;
    top: -2px;
    right: -3px;
    font-size: 10px;
    font-weight: bold;
    color: #000;
    z-index: 2;
    transform: rotate(20deg);
}
.event-lot-card.upcoming::before {
    content: "\f0a3";
    font-family: "FontAwesome";
    position: absolute;
    top: -35px;
    right: -10px;
    font-size: 50px;
    color: #eee;
    text-shadow: 0 2px 3px #333;
    z-index: 2;
}
.event-lot-card.upcoming::after {
    content: "SOON!";
    position: absolute;
    top: -2px;
    right: -3px;
    font-size: 10px;
    font-weight: bold;
    color: #000;
    z-index: 2;
    transform: rotate(20deg);
}

.lot-image {
    display: block;
    height: 150px;
    overflow: hidden;
    background: #333 !important;
    margin: 5px;
    padding: 5px;
}

.lot-image img {
    /* width: 100%; */
    height: 100%;
    object-fit: cover;
    display: inline-block;
    margin: auto;
    border: 1px solid white;
}
.event-lot-card a {
    font-size: 0;
}
.event-lot-card a::after {
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    z-index: 2;
}
.card .card-body {
    padding: 0.25em 0.5em !important;
    margin: 0;
}
.event-lot-card.closed {
    border-color: #777;
}
.event-lot-card.closed::after {
    content: "CLOSED";
    position: absolute;
    top: 15%;
    transform: rotate(30deg);
    width: 100%;
    text-align: center;
    font-size: 2.75vw;
    color: #fff7;
    filter: blur(2px);
    z-index: 0;
}
.event-lot-card.closed {
    opacity: 0.5;
    background-color: #ccc;
}
.event-lot-card.closed img {
    filter: saturate(0);
}

@media (max-width: 992px) {
    #auction_clock {
        position: absolute;
        top: -90px;
        left: 0;
        margin: auto;
        width: 100%;
        box-shadow: 0 5px 5px #0004;
    }
}
