/* Animations */
@keyframes shake-rotate {
    0% { transform: translateY(-12px) rotate(-10deg); }
    20% { transform: translateY(-12px) rotate(-20deg); }
    40% { transform: translateY(-12px) rotate(0deg); }
    60% { transform: translateY(-12px) rotate(10deg); }
    80% { transform: translateY(-12px) rotate(20deg); }
    100% { transform: translateY(-12px) rotate(0deg); }
}
@keyframes auction-loading {
    0% {
      transform: rotate(0);
      animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    50% {
      transform: rotate(900deg);
      animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    100% {
      transform: rotate(1800deg);
    }
}

/* Fonts */
@font-face {
    font-family: 'Poppins';
    src: url('../fontie-package/Poppins Regular.woff2');
}
@font-face {
    font-family: 'Poppins';
    src: url('../fontie-package/Poppins SemiBold.woff2');
    font-weight: bold;
}
@font-face {
    font-family: 'Open Sans';
    src: url('../fontie-package/OpenSans-Regular.ttf');
}

/* Layout */
.opacity-0 {
    opacity:0!important;
 }
 .opacity-1 {
    opacity:0.2!important;
}
.opacity-2 {
    opacity:0.4!important;
}
.opacity-3 {
    opacity:0.6!important;
}
.opacity-4 {
    opacity:.8!important;
}
.opacity-5 {
    opacity:1!important;
}

.vdp {
    padding-bottom: 0!important;
    padding-top: 2rem;
    font-family: 'Poppins';
}
.vrp {
    font-family: 'Poppins';
}

.vdp .vdp-header-model {
    position: relative;
    margin: .8rem 0;
}
.vdp-header-model::before {
    content: ' ';
    left: 0;
    position: absolute;
    background: #2C9BE4;
    width: 5px;
    height: 70%;
    top: 10px;
}
.vrp-card.winning .vdp-header-model::before {
    background-color: #35a651;
}
.vdp-header-model:not(.no-after)::after {
    content: ' ';
    position: absolute;
    bottom: -10px;
    width: 95%;
    background: #a2a2a2;
    height: 1px;
}

.vdp .vdp-header-model h1 {
    font-weight: 700;
}

.vdp .vdp-main-image img:not(.noimg) {
    width: 100%;
    max-height: 800px;
    object-fit: cover;
}
.vdp .vdp-main-image img.noimg {
    width: 100%;
    max-height: 400px;
    object-fit: contain;
}

.text-huge {
    font-size: 3rem;
}
.text-bigger {
    font-size: 2.5rem;
}
.text-big {
    font-size: 2rem;
}
.text-med {
    font-size: 1.5rem;
}
.text-small {
    font-size: .7rem;
}
.text-bold {
    font-weight: bold;
}
.color-blue {
    color: #2C9BE4;
}
.color-green {
    color: #36A651;
}
.color-black {
    color: #000;
}
.sup {
    vertical-align: super;
}

.timer-countdown {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    align-content: center;
    text-align: center;
    color: grey;
    position: relative;
}
.timer-countdown .timer-block {
    border-radius: 10px;
    color: grey;
    padding: 5px 10px;
    background: #efefef;
    width: 80px;
    margin: 0 5px;
    position: relative;
    overflow: hidden;
}
.timer-countdown > .timer-block:not(:last-child)::after {
    content: ':';
    position: absolute;
    top: 50%;
    right: -9px;
    transform: translateY(-50%);
    font-size: 2em;
    color: #ccc8c8;
}
.timer-countdown .timer-block > span {
    color: #36A651 !important;
    font-weight: bold;
    display: block;
    font-size: 3em;
}

.bid-price-field {
    padding: 10px 10px 5px 50px;
    background: white;
    border: 1px solid #35a650;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    box-shadow: none;
    font-size: 2rem;
    height: 40px;
    max-width: 280px;
    font-weight: bold;
}
.bid-price-field:focus {
    box-shadow: 0px 0px 5px #35a650 !important;
    border-color: #35a650 !important;
}
.bid-price-field::placeholder {
    opacity: 0.1;
}
.bid-price-field::-webkit-input-placeholder,
.bid-price-field:-moz-placeholder,
.bid-price-field::-moz-placeholder,
.bid-price-field::-ms-input-placeholder
{
    opacity: 0.1;
}
/* Smaller placeholder on mobile */
@media (max-width: 576px) {
    .bid-price-field::placeholder {
        font-size: 1rem; /* Adjust this value to your preference */
    }
}
.bid-now-btn {
    background: #35a650;
    color: white;
    border: none;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    font-weight: bold;
    font-size: 1.2rem;
    text-transform: uppercase;
    min-width: 70px;
}
.bid-price-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 20px;
    font-size: 1.5rem;
    color: #35a650;
}
.bid-price-icon.animated {
    animation-name: shake-rotate;
    animation-duration: 200ms;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 3;
}

.vdp-watch-btn {
    background: none;
    border: none;
    color: #2b9be4;
}
.vdp-watch-btn.red {
    color: red !important;
}

.underline {
    position: relative;
}
.underline::before {
    content: ' ';
    width: 80px;
    background: #2C9BE4;
    height: 5px;
    position: absolute;
    bottom: -10px;
}

.vdp-imperfections > img,
.vdp-related-card img,
.vdp-photo > img,
.vrp-card img {
    max-height: 450px;
    display: block;
    padding: 10px;
    width: 100%;
    object-fit: cover;
    height: 230px;
    border-radius: 20px;
}
.vdp-related-card a,
.vrp-card a {
    color: inherit;
    text-decoration: none;
}

.slick-prev:before, .slick-next:before {
    color: #2C9BE4 !important;
}

ul.vdp-specs-list, ul.vdp-options-list {
    list-style: none;
    column-count: 3;
}
.vdp-specs-list > li {
    padding: 10px 0;
}

.vdp-options-list {
    background-color: white;
    background: linear-gradient(
        0deg, #fff 0%, #efefef 50%, rgb(255 255 255) 90%);
}
.vdp-options-list > li i {
    font-size: 150%;
    position: relative;
    top: 3px;
    padding-right: 20px;
}
.vdp-options-list > li:not(.checked) i {
    color: grey;
}
.vdp-options-list > li {
    color: black;
    padding: 10px 0;
}
.vdp-options-list > li.checked i {
    color: transparent;
    background-color: #2C9BE4;
    text-shadow: 2px 2px 20px rgb(255 255 255 / 62%);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
}
.pre_icon {
    width: 40px;
    height: 40px;
    display: inline-block;
    transform: translateY(25%);
    margin-right: 20px;
    fill: #777;
    vertical-align: text-bottom;
}

.vdp-damages-box {
    border: 2px solid #349BE4;
    border-radius: 5px;
    padding: 10px;
}
.vdp-damages-box > h5 {
    border-bottom: 2px solid #349BE4;
    background: #F3FAFE;
    padding: 10px;
    margin: -9px;
}
.vdp-damages-box > ul {
    margin-top: 20px;
}
.vdp-damages-box > ul > li {
    padding: 10px;
}

.vdp_related {
    background-color: #F4F6F7;
}
.related, .vrp-countdown {
    transform: scale(0.6);
    margin: -20px;
}

.timer-countdown.related .timer-block,
.vrp-card:hover .vrp-countdown .timer-block {
    background-color: #fff !important;
}

.hover-red {
    transition: ease .3s all;
}
.hover-red:hover {
    color: red;
}

.vrp-card {
    transition: ease all .3s;
    border-radius: 10px;
}
.vrp-card:hover {
    box-shadow: 0px 0px 5px #bbbbbb;
    background-color: #f1f1f1;
}
.vrp-card::before {
    content: '';
    width: calc(100% - 5px);
    height: 100%;
    position: absolute;
    border-radius: 10px;
    right: 3px;
    box-shadow: 0px 0px 5px 0px rgb(0 0 0 / 50%);
    transition: ease all .3s;
}
.vrp-card.winning::before {
    box-shadow: 0px 0px 0px 2px #35a651;
}
.vrp-card:hover::before {
    box-shadow: none;
}
.vrp-card .vrp-watch {
    display: none;
    z-index: 1;
}
.vrp-card:hover .vrp-watch {
    display: block;
}

.vdp-empty-box {
    min-height: 100px;
    height: 100px;
    width: 100px;
    position: relative;
    border-radius: 100%;
    border: 5px solid black;
    opacity: .1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    margin: -10px 0 30px;
}
.vdp-empty-box::before {
    width: 5px;
    height: 100%;
    content: ' ';
    display: block;
    left: 50%;
    position: relative;
    background: black;
}

.vdp-related-card {
    border-radius: 10px;
    transition: ease all .3s;
}
.vdp-related-card:hover {
    box-shadow: inset 0px 0px 10px #E1E1E1;
    background-color: white;
}

.vdp-price-up {
    left: -30px;
    transition: ease all .4s;
    top: 50px;
    opacity: 0;
    transform: scale(0.7);
}

.vdp-ribbon {
    width: 150px;
    height: 150px;
    overflow: hidden;
    position: absolute;
    transition: ease all .3s;
}
.vdp-ribbon::before,
.vdp-ribbon::after {
    position: absolute;
    z-index: -1;
    content: '';
    display: block;
    border: 5px solid #216d33;
}
.vdp-ribbon span {
    position: absolute;
    display: block;
    width: 225px;
    padding: 15px 0;
    background-color: #36A651;
    box-shadow: 0 5px 10px rgba(0,0,0,.1);
    color: #fff;
    font: 700 18px/1 'Lato', sans-serif;
    text-shadow: 0 1px 1px rgba(0,0,0,.2);
    text-transform: uppercase;
    text-align: center;
}
.vdp-ribbon.right {
    top: -10px;
    right: -10px;
}
.vdp-ribbon.right::before,
.vdp-ribbon.right::after {
    border-top-color: transparent;
    border-right-color: transparent;
}
.vdp-ribbon.right::before {
    top: 0;
    left: 0;
}
.vdp-ribbon.right::after {
    bottom: 0;
    right: 0;
}
.vdp-ribbon.right span {
    left: -25px;
    top: 30px;
    transform: rotate(45deg);
}
.vrp-card:hover .vdp-ribbon {
    opacity: .3;
}

.vrp_myauctions {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}
.vrp_myauctions th {
    background-color: #349be4;
    color: white;
    box-shadow: inset 0px 0px 1px black;
    padding: 5px;
}
.vrp_myauctions tr {
    text-align: center;
}
.vrp_myauctions tr:hover {
    background-color: #2b9be41c;
    color: #349be4;
}
.vrp_myauctions tr:hover td {
    box-shadow: inset 0px 0px 1px 0px #349be4;
}
.vrp_myauctions td {
    box-shadow: inset 0px 0px 1px black;
}
.vrp_myauctions a[href*="/"] {
    color: unset;
    text-decoration: underline;
}
.vrp_myauctions tr:last-child td:first-child {
    border-bottom-left-radius: 10px;
}
.vrp_myauctions tr:last-child td:last-child {
    border-bottom-right-radius: 10px;
}
.vrp_myauctions tr:first-child th:first-child {
    border-top-left-radius: 10px;
}
.vrp_myauctions tr:first-child th:last-child {
    border-top-right-radius: 10px;
}
.vrp_myauctions td img {
    padding: 1px;
    margin: 5px 0;
    border-radius: 5px;
    border: 1px solid #349be4;
    transition: ease all .3s;
}

.vrp_myauctions_statuses {
    padding-left: 5px;
}
.vrp_myauctions_statuses label {
    margin: 0px -2px;
    background-color: #E8F4FC;
    padding: 10px 15px 5px;
    border-top-right-radius: 20px;
    position: relative;
    border-top: 1px solid white;
    border-right: 1px solid white;
    transition: ease all .3s;
    cursor: pointer;
}
.vrp_myauctions_statuses label:not(:first-child)::before {
    content: '';
    position: absolute;
    top: 0px;
    left: -15px;
    z-index: -1;
    background-color: #e8f4fc;
    width: 15px;
    height: 100%;
    transition: ease all .3s;
}
.vrp_myauctions_statuses label:hover, 
.vrp_myauctions_statuses label:hover::before {
    background-color: white;
}

.auction-loading_wrapper {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    background-color: #ffffff7d;
    width: 100%;
    height: 100vh;
    z-index: 10;
}
.auction-loading {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.auction-loading:after {
    content: " ";
    display: block;
    border-radius: 50%;
    width: 0;
    height: 0;
    margin: 8px;
    box-sizing: border-box;
    border: 32px solid #349BE4;
    border-color: #349BE4 transparent #349BE4 transparent;
    animation: auction-loading 1.2s infinite;
}

.auction_checkbox_wrapper {
    display: inline-block;
    position: relative;
    cursor: pointer;
    font-size: 18px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
  
.auction_checkbox_wrapper input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.auction_checkbox {
    position: relative;
    display: inline-block;
    top: 3px;
    height: 20px;
    width: 20px;
    background-color: #eee;
    border-radius: 10px;
    box-shadow: 0px 0px 0px 1px #32323240;
}
.auction_checkbox_wrapper:hover input ~ .auction_checkbox {
    background-color: #ccc;
}
.auction_checkbox_wrapper input:checked ~ .auction_checkbox {
    background-color: #349BE4;
    box-shadow: unset;
}
.auction_checkbox:after {
    content: "";
    position: absolute;
    display: none;
}
.auction_checkbox_wrapper input:checked ~ .auction_checkbox:after {
    display: block;
}
.auction_checkbox_wrapper .auction_checkbox:after {
    left: 7px;
    top: 1px;
    width: 7px;
    height: 15px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.copy_vin {
    cursor: pointer;
    margin-left: 5px;
    position: relative;
    display: inline-block;
    color: #5a5a5d;
}

.bg-none {
    background: unset;
}

.vdp_imperfections .vdp-imperfections-wrapper {
    position: absolute;
    bottom: 10px;
    left: 10px;
    border: 1px solid transparent;
    background: white;
    padding: 0 10px;
    width: calc(100% - 20px);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    color: black;
    opacity: .4;
    font-size: 80%;
    transition: ease .3s all;
}
.vdp_imperfections a.vdp-photo:hover .vdp-imperfections-wrapper {
    opacity: .9;
    border-color: rgb(190, 190, 190);
}

.vrp-see-bidders {
    position: absolute;
    bottom: 20px;
    margin: -20px 10px 0;
    width: 0%;
    background: #349be4;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    right: 0;
    white-space: nowrap;
    overflow: hidden;
    padding: 10px;
    color: white;
    box-shadow: none;
    opacity: 0;
    transition: ease .3s all;
}
.vrp-card:hover .vrp-see-bidders {
    width: 50%;
    opacity: 1;
}
.vrp-see-bidders:hover {
    box-shadow: 0px 0px 5px 0px #349be4;
}

.vdp-see-bidders {
    position: fixed;
    bottom: 10px;
    border-radius: 99px;
    background: #349be4;
    right: 20px;
    padding: 25px 18px;
    box-shadow: 3px 9px 10px #0000009c;
    transition: ease all .3s;
    z-index: 10;
}
.vdp-see-bidders:hover {
    transform: translateY(-10px);
}
.vdp-see-bidders > a {
    text-decoration: none;
    color: white;
}

.vrp-leader {
    position: absolute;
    left: -30px;
    top: 5px;
    text-shadow: 0px 0px 1px white, -1px -1px 1px white, 1px 1px 1px white, 0px -1px 1px white, 0px 1px 1px white, 1px 0px 1px white, -1px 0px 1px white;
    color: #36A651;
}

.vrp-card.winning .vdp-current-price,
.vdp.winning .vdp-current-price {
    color: #36A651;
}

.bidders_modal .amount {
    display: inline-block
}
.bidders_modal .amount > .proxy {
    display: block;
    font-size: 70%;
    font-weight: bold;
    line-height: 3px;
    opacity: .5;
    text-align: right;
    text-decoration: underline dotted;
    cursor: help;
}

.extra-bold {
    font-weight: bolder;
    text-shadow: 0 0 1px black;
}

.nav-disabled {
    position: relative;
}
.nav-disabled::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: rgb(249, 249, 249);
    width: 100%;
    height: 100%;
    opacity: .8;
    z-index: 1;
}

@media (min-width: 1050px) and (max-width: 1400px) {
    .bid-price-field::placeholder {
        font-size: 1.6rem; /* Adjust this value as needed */
    }
}

@media screen and (max-width: 1190px) {
    .vdp-header-flex {
        flex-wrap: wrap;
    }
    .vdp-header-flex > div:first-child {
        width: 100%;
        flex-basis: 100%;
    }
    .vdp-header-flex > div:nth-child(2),
    .vdp-header-flex > div:nth-child(3) {
        width: 50%;
        flex-basis: 50%;
    }
    .vdp-header-flex .vdp-header-price {
        text-align: center;
    }
    .vdp-header-flex .vdp-header-time > span:first-child {
        text-align: center;
    }
    
    .vdp-header-model-container {
        margin-bottom: 40px;
    }
    .vdp-header-model-container > .vdp-header-info {
        position: absolute;
        right: 3rem;
    }
}

@media screen and (max-width: 1024px) {
    ul.vdp-specs-list, ul.vdp-options-list {
        column-count: 2;
    }

    .vdp-price-up {
        left: 40px !important;
    }
}
@media screen and (max-width: 768px) {
    
    .menu-bottom {
        z-index: 2;
        flex-direction: row !important;
        justify-content: center;
        bottom: 0;
        left: 0;
        }
    .menu-bottom .nav-link {
        padding: 4px 0px 2px !important;
     }
    .vdp-header-model::after {
        bottom: -40px !important;
    }
    .vdp-header-model-container {
        margin-bottom: 20px !important;
    }
    .vdp-header-info {
        position: relative !important;
        right: unset !important;
        margin: 0 auto !important;
        top: -10px;
    }
    .vdp-header-info > p {
        display: inline-block;
        width: 40%;
        font-size: 80%;
    }

    .vdp-header-flex > div:nth-child(2),
    .vdp-header-flex > div:nth-child(3) {
        width: 100%;
        flex-basis: 100%;
    }

    .vdp-current-price {
        margin-bottom: 10px !important;
    }
    .vdp-current-price #vdp-leader-amount {
        text-align: center !important;
    }

    .vdp-header-time > .vdp-time-left {
        display: none;
    }
    .add_watchlist {
        margin-bottom: 20px;
    }

    ul.vdp-specs-list,
    ul.vdp-options-list {
        column-count: 1;
    }
    
    .vdp-damages-box {
        margin-bottom: 10px;
    }

    .auction-nav {
        width: 100%;
        bottom: 0;
        left: 0;
        max-width: unset !important;
        min-height: unset !important;
        position: fixed;
        z-index: 2;
        flex-direction: row !important;
        justify-content: center;
    }
    .auction-nav .nav-link.active {
        border-right: unset;
        background-color: #349BE4 !important;
        color: white !important;
    }
    .auction-nav .nav-link {
        text-align: center !important;
        line-height: 1.2rem;
    }
    .auction-nav .nav-link > i {
        display: block;
        font-size: 150%;
        text-align: center;
    }

    .timer-countdown .timer-block > span {
        font-size: 2em;
    }

    .slick-prev {
        left: 0 !important;
        z-index: 1;
    }
    .slick-next {
        right: 0 !important;
        z-index: 1;
    }

    .vrp_myauctions_statuses label {
        margin: 5px 0;
        width: 49%;
        font-size: 120%;
    }

    .copy_vin {
        position: absolute;
        right: 0;
        top: 5px;
        font-size: 1.5em;
    }

    .bid-price-field {
        padding-top: unset;
        padding-bottom: unset;
        height: 50px;
    }
}