:root {
    /* === PRIMARY COLORS === */
    --primary-50: #fdebec;
    --primary-100: #fac0c4;
    --primary-200: #f8a1a7;
    --primary-300: #f4767f;
    --primary-400: #f25c66;
    --primary-500: #ef3340;
    --primary-600: #d92e3a;
    --primary-700: #aa242d;
    --primary-800: #831c23;
    --primary-900: #64151b;

    /* === SECONDARY COLORS === */
    --secondary-50: #e6e8f1;
    --secondary-100: #b0b7d3;
    --secondary-200: #8a95be;
    --secondary-300: #5464a0;
    --secondary-400: #33468d;
    --secondary-500: #001871;
    --secondary-600: #001667;
    --secondary-700: #001150;
    --secondary-800: #000d3e;
    --secondary-900: #000a2f;
}

@import './components/tab.css';

@font-face {
    font-family: "NexaReg";
    src: url('../fonts/Nexa-Font/NexaRegular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "NexaBold";
    src: url('../fonts/Nexa-Font/NexaBold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "NexaXBold";
    src: url('../fonts/Nexa-Font/NexaXBold.otf') format('opentype');
    font-weight: bolder;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "NexaBlack";
    src: url('../fonts/Nexa-Font/NexaBlack.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "NexaHeavy";
    src: url('../fonts/Nexa-Font/NexaHeavy.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Roboto";
    src: url('../fonts/Roboto/Roboto-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Roboto";
    src: url('../fonts/Roboto/Roboto-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Roboto";
    src: url('../fonts/Roboto/Roboto-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Roboto";
    src: url('../fonts/Roboto/Roboto-MediumItalic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Roboto";
    src: url('../fonts/Roboto/Roboto-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

* {
    box-sizing: border-box;
}

.relative {
    position: relative;
}

/* Font Weight */
.fw-bold {
    font-family: 'NexaHeavy', sans-serif;
}

.fw-semibold {
    font-family: 'NexaBold', sans-serif;
}

.fw-regular {
    font-family: 'NexaReg', sans-serif;
}

a:active,
a:focus,
a:visited,
button:focus,
button:visited,
input:focus,
input:visited,
.btn.focus,
.btn:focus {
    outline: 0 !important;
    box-shadow: none;
}

body {
    font-size: 16px;
    font-family: 'NexaReg', Arial, Helvetica, sans-serif;
    background: #f5f5f5;
}

.no-margin {
    margin: 0;
}

.no-padding {
    padding: 0;
}

a:hover {
    text-decoration: none;
}

section {
    margin-bottom: 60px;
}

.img-responsive {
    width: 100%;
}

h1 {
    font-size: 18px;
}

h2 {
    font-size: 18px;
}

.bg-white {
    background: #fff;
}

.title,
.custom-title,
b,
strong {
    font-family: 'NexaHeavy', sans-serif;
}

.icon-download-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.close-popup {
    display: none;
}

@media (max-width: 767px) {
    .close-popup {
        display: block;
        position: absolute;
        top: 1px;
        right: 8px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        font-size: 20px;
        color: #000;
        /* Change this to your preferred color */
    }
}

.box-img {
    border: 1px solid #ebebeb;
    padding: 10px 8px;
}

.box-img img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.news-item .box-img:hover {
    opacity: .7;
}

.red-link {
    color: #ee3342;
}

.red-link:hover {
    color: #ee3342;
    text-decoration: underline;
}

input::placeholder {
    color: #C3C3C3
}

.homeslider {
    min-height: 420px;
}

#loadingSlider {
    height: 420px;
    background: rgba(0, 0, 0, .12);
}

.custom-tab-menu .tab-content>.tab-pane,
.custom-tab .tab-content>.tab-pane {
    height: auto;
}

.slider-item:active,
.slider-item:focus {
    outline: none;
}

.slider-item {
    position: relative;
}

.slider-item img {
    width: 100%;
}

.slider-item .slider-caption {
    position: absolute;
    z-index: 999;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    color: #fff;
}

.slider-caption .container {
    height: 100%;
}

.slider-caption .caption-content {
    width: 270px;
    text-align: center;
    padding-top: 40px;
}

.caption-content .title {
    font-size: 24px;
    letter-spacing: 2px;
    text-transform: uppercase;

}

.caption-content .periode {
    font-size: 16px;
    font-family: 'NexaBold';
    letter-spacing: 3.2px;
    text-transform: uppercase;
    padding: 20px 0 0px;
    border-bottom: 1px solid #fff;
}

.caption-content .date {
    font-size: 12px;
    padding-top: 10px;
    font-family: 'NexaBold';
    text-transform: uppercase;
    margin-bottom: 10px;
}

.caption-content .slider-button {
    border-radius: 20px;
    font-size: 12px;
    color: #1f2a63;
    background: #fff;
    padding: 13px 20px 10px;
    display: block;
    font-family: 'NexaHeavy';
    text-transform: uppercase;
}

.slick-slide .slider-button img {
    display: inline-block;
    width: 20px;
    margin-left: 10px;
    margin-top: -2px;
}

.slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99;
    font-size: 0;
    background: #000;
    padding: 20px;
    border-radius: 50%;
    border: 0;
    left: 5%;
    opacity: 0.5;
}

.slick-arrow:hover {
    opacity: 80%;
}

.slick-arrow:before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 0px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
    display: block;
}

.slick-next {
    right: 5%;
    left: auto;
}

.slick-next:before {
    transform: rotate(-135deg);
}

.slick-dots {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);

}

.slick-dots li {
    display: inline-block;
    padding: 0 1px;
}

.slick-dots li button {
    background: #fff;
    border: 0;
    font-size: 0;
    border-radius: 3px;
    height: 6px;
    transition: all 0.5s ease-in-out;
    width: 8px;
}

.slick-dots .slick-active button {
    width: 30px;
    transition: all 0.5s ease-in-out;
}

.slider-section {
    position: relative;
}

.frontpage .slider-section {
    margin-bottom: 30px;
    min-height: 420px;
}

.slider-aditional-info {
    position: absolute;
    z-index: 999;
    top: 40%;
    right: -130px;
    color: #fff;
    display: flex;
    transform: rotate(-90deg);

}

.slider-aditional-info>div {
    padding: 0 10px;
    color: #fff;
    font-size: 40px;
    line-height: 25px;
    font-family: 'NexaHeavy';
}

.slider-aditional-info span {
    font-size: 10px;
    display: block;
}

.search-container {
    background: #fff;
    margin-top: -40px;
    position: relative;
    margin-bottom: 30px;
    text-align: center;
    padding: 30px;
    -webkit-box-shadow: 0px 0px 20px 0px rgba(153, 153, 153, 0.64);
    -moz-box-shadow: 0px 0px 20px 0px rgba(153, 153, 153, 0.64);
    box-shadow: 0px 0px 20px 0px rgba(153, 153, 153, 0.64);
    border-radius: 10px;
}

.search-container>form>input {
    vertical-align: top;
    font-family: 'NexaReg';
}

.search-container input[type="text"] {
    border-radius: 8px;
    border: 0;
    font-size: 16px;
    padding: 15px 20px 10px 20px;
    border: 1px solid #ebebeb;
}

.search-container.lelangkota-page {
    background: #212c68;
    margin-top: -40px;
    position: relative;
    margin-bottom: 30px;
    text-align: center;
    padding: 25px 0;
}

.search-container.lelangkota-page .basic-search{
    margin-bottom: 10px;
}

.search-container.lelangkota-page input[type=text] {
    width: 40%;
    border-radius: 3px;
    border: 0;
    font-size: 12px;
    padding: 8px 10px 5px 10px;
}
.search-container.lelangkota-page .basic-search select{
    width: 160px;
    border-radius: 3px;
    border: 1px solid rgb(195, 195, 195);
    margin: 0 4px 5px;
    display: inline-block;
    font-size: 12px;
    padding: 10px 7px 6px;
    color: #333;
}

.search-container.lelangkota-page .search-btn{
    width: 15%;
    padding:9px 10px 5px 10px;
    background: #EE3342;
    color: #fff;
    font-size:12px;
    text-align:center;
    border-radius: 3px;
    border:0;
    text-transform: uppercase;
    transition: 300ms ease;
}
.search-container.lelangkota-page .search-btn:hover {
    background: #f7606d;
}


.search-container.lelangkota-page .adv-search-btn, 
.search-container.lelangkota-page .basic-search-btn{
    border:1px solid #fff;
    background:#212c68;
    color: #fff;
    font-size: 12px;
    font-family: 'NexaReg', Arial, Helvetica, sans-serif;
    border-radius:3px;
    padding: 9px 10px 4px 10px;
    transition: 300ms ease;
    text-align: center;
    text-transform: uppercase;
    display: inline-block;
}
.search-container.lelangkota-page .adv-search-btn:hover, .search-container  .basic-search-btn:hover {
    background: #4b5baf;
}
@media (max-width: 767px) {
    .search-container input[type="text"] {
        font-size: 16px;
        padding: 12px 50px 9px 105px !important;
    }
}

.search-container-form {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding-top: 20px;
}

@media (max-width: 767px) {
    .search-container-form {
        flex-direction: column;
        gap: 5px;
    }

    .frontpage .search-container .basic-search input[type="text"],
    .frontpage .search-container .basic-search input.search-btn {
        width: 100% !important;
    }

    .search-container-form-button {
        flex: 0 0 100%;
        display: flex;
        justify-content: space-between;
        gap: 15px;
        width: 100%;
    }

    .product-search-content-revamp-filter-shorting {
        flex-direction: column;
        gap: 10px;
        align-items: start;
    }
}

.search-container-form .keyword {
    flex: 1 1 75%;
    /* flex-grow: 1, flex-shrink: 1, flex-basis: 85% */
    min-width: 0;
    /* Prevent overflow */
    padding-left: 44px !important;
    background-image: url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M11.5 21C16.7467 21 21 16.7467 21 11.5C21 6.25329 16.7467 2 11.5 2C6.25329 2 2 6.25329 2 11.5C2 16.7467 6.25329 21 11.5 21Z" stroke="black" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M22 22L20 20" stroke="black" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-repeat: no-repeat;
    background-position: 12px center;
    background-size: 24px;
}

.search-container-form-button {
    flex: 0 0 25%;
    /* flex-grow: 0, flex-shrink: 0, flex-basis: 15% */
    display: flex;
    gap: 15px;
}

.search-container .nav-tabs .nav-item.show .nav-link,
.search-container .nav-tabs .nav-link.active {
    color: #212c68;
    background-color: #fff;
    border-left: none;
    border-right: none;
    border-top: none;
    border-bottom: 3px solid #212c68;
    border-radius: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
}

.search-container .nav-tabs .nav-link {
    border: 1px solid transparent;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    background-color: transparent;
    color: #212c68;
    padding: 10px 0;
    font-family: Arial, Helvetica, sans-serif;
}

.search-container .nav-tabs {
    border-bottom: 0;
    gap: 30px;
}

.icon--filter::after {
    display: inline-block;
    width: 24px;
    height: 24px;
    vertical-align: -0.125em;
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-miterlimit='10' stroke-width='1.5' d='M21.25 12H8.895m-4.361 0H2.75m18.5 6.607h-5.748m-4.361 0H2.75m18.5-13.214h-3.105m-4.361 0H2.75m13.214 2.18a2.18 2.18 0 1 0 0-4.36a2.18 2.18 0 0 0 0 4.36Zm-9.25 6.607a2.18 2.18 0 1 0 0-4.36a2.18 2.18 0 0 0 0 4.36Zm6.607 6.608a2.18 2.18 0 1 0 0-4.361a2.18 2.18 0 0 0 0 4.36Z'/%3E%3C/svg%3E");
}

.search-container .search-btn {
    width: 100%;
    padding: 8px 15px 3px 15px;
    background: #212c68;
    color: #fff;
    font-size: 14px;
    text-align: center;
    border-radius: 8px;
    border: 0;
    transition: 300ms ease;
    font-family: 'NexaReg';
}

@media (max-width: 767px) {
    .search-container .search-btn {
        font-size: 16px;
        padding: 8px 15px 3px 15px !important;
        height: auto !important;
    }
}

.search-container .search-btn:hover {
    background: #f7606d;
}

.search-container .adv-search-btn,
.search-container .basic-search-btn {
    border: 1px solid #ebebeb;
    background: #fff;
    color: #000;
    font-size: 14px;
    font-family: "NexaReg", Arial, Helvetica, sans-serif;
    border-radius: 8px;
    padding: 12px 15px 5px 15px;
    transition: 300ms ease;
    text-align: center;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.search-container .adv-search-btn:hover,
.search-container .basic-search-btn:hover {
    background: #4b5baf;
}

.search-container .advance-search {
    width: 95%;
    display: none;
    margin: 0 auto;
}

.advance-search select,
.advance-search input {
    width: 100%;
    border-radius: 3px;
    border: 1px solid rgb(195, 195, 195);
    margin: 0 0px 5px;
    display: inline-block;
    font-size: 12px;
    padding: 10px 7px 6px;
    color: #333;
}

.basic-search select {
    width: 100%;
    border-radius: 3px;
    border: 1px solid rgb(195, 195, 195);
    margin: 0 4px 5px;
    display: inline-block;
    font-size: 12px;
    padding: 10px 7px 6px;
    color: #333;
}

.select2-results__option {
    font-size: 12px;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background: #ddd;
    color: #333333;
}

.search-container .advance-search select {
    width: 160px;
}

.search-container .basic-search select {
    width: 160px;
}

.advance-search-revamp select,
.advance-search-revamp input {
    width: 100%;
    border-radius: 4px;
    border: 1px solid #dadada;
    margin: 0 0px 5px;
    display: inline-block;
    font-size: 14px;
    padding: 10px 30px 5px 20px;
    color: #333;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%23888' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0px center;
    background-size: 20px;
}

.advance-search-revamp select::-ms-expand {
    display: none;
}

.advance-search-revamp select:focus {
    outline: none;
    border-color: #212c68;
}

#advanced-search-form .modal-body {
    padding: 25px !important;
}

.minimumSelect .select2 {
    width: 100% !important;
}

#advanced-search-form .select2-container {
    width: 100% !important;
}

#advanced-search-form .select2-container--default .select2-selection--single {
    background-color: #fff;
    border: 1px solid #dadada;
    border-radius: 4px;
    padding: 7px 10px 2px 10px;
    height: auto !important;
    font-size: 14px !important;
}

#advanced-search-form .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100%;
    position: absolute;
    top: 1px;
    right: 1px;
    width: 20px;
}

#advanced-search-form .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #444 !important;
    font-size: 14px !important;
    padding-top: 0 !important;
}

#advanced-search-form .form-control {
    height: auto !important;
    padding: 12px 10px 9px 10px !important;
    font-size: 14px !important;
}

.slider-nominal {
    width: 100%;
    margin-top: 10px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    font-size: 12px;
    font-weight: bold;
}

#advanced-search-form .modal-submit {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    border: none !important;
    margin-top: 20px;
}

#advanced-search-form .modal-submit p {
    font-size: 14px;
    color: #666;
    margin: 0;
    padding: 0;
}

#advanced-search-form .btn-filter-search {
    background: #212c68;
    color: #fff;
    border: 1px solid #212c68;
    padding: 15px 20px 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
}

#advanced-search-form .btn-filter-search:hover {
    background: #fff;
    color: #212c68;
}

@media screen and (max-width: 767px) {
    #advanced-search-form .select {
        width: 100% !important;
    }
}

.material-symbols--close {
    display: inline-block;
    width: 24px;
    height: 24px;
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M6.4 19L5 17.6l5.6-5.6L5 6.4L6.4 5l5.6 5.6L17.6 5L19 6.4L13.4 12l5.6 5.6l-1.4 1.4l-5.6-5.6z'/%3E%3C/svg%3E");
    background-color: currentColor;
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #c3c3c3;
}

.select2-container--below .select2-selection--single .select2-selection__rendered,
.select2-container--above .select2-selection--single .select2-selection__rendered {
    color: #333 !important;
}

.lang-container .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 1.8;
}

.search-container .advance-search .search-btn {
    width: 48%;
    margin-right: 10px;
}

.search-btn-container {
    display: flex;
    font-size: 11px;
    justify-content: space-between;
}

.search-btn-container input {
    flex: 1;
}

.slide-continer {
    padding: 15px 0;
}

.slide-continer:after,
.slide-continer:before {
    content: ' ';
    clear: both;
    display: table;
}

.noUi-horizontal {
    height: 5px;
}

.noUi-horizontal .noUi-handle {
    height: 11px;
    width: 11px;
    border-radius: 50%;
    right: -1px;
    background: #ee3342;
    border: 0;
    top: -3px;
    box-shadow: none
}

.noUi-target {
    border: 0;
    box-shadow: 0;
}

.noUi-horizontal .noUi-handle .noUi-touch-area:focus {
    outline: none;
}

.noUi-handle:after,
.noUi-handle:before {
    display: none;
}

.noUi-handle-upper .noUi-tooltip {
    right: 0;
    left: auto;
    transform: none;
}

.caraikut-container img {
    width: 100%;
    margin-bottom: 20px;
    height: 194px;
    object-fit: cover;
}

.caraikut-container .caraikut-item {
    margin-bottom: 30px;
}

.caraikut-container h2 {
    font-family: NexaHeavy;
    font-size: 20px;
    color: #212C68;

}

.caraikut-item a,
.caraikut-item a:visited,
.link-otherinfo a,
.link-otherinfo a:visited,
.link-otherinfo span {
    color: #ed2c3c;
}

.caraikut-item a:hover,
.link-otherinfo a:hover {
    color: #212C68;
}

.video-homepage-container {
    margin-top: -150px;
}

.other-info-container img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.other-info-slider .slider-point {
    padding: 0 15px;
}

.other-info-slider .slick-list {
    margin: 0 -15px;
}

.other-item {
    height: 100%;
}

.other-info-container .row>div {
    margin-bottom: 30px;
}

.other-title {
    font-size: 20px;
    color: #212c68;
    font-family: 'NexaHeavy';
    padding: 16px 0 0;
}

.sidebar-container .other-info-container {
    margin: 0;
    padding-top: 30px;
}

.noUi-handle-lower .noUi-tooltip {
    left: 0;
    transform: none;
}

.noUi-tooltip {
    font-size: 10px;
    background: transparent;
    border: 0;
    color: #fff;
}

.noUi-connect {
    background: #ee3342;
}

.grade-list a {
    display: block;
    border-radius: 5px;
    box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.05);
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
}

.grade-info {
    position: absolute;
    z-index: 99;
    bottom: 10px;
    left: 15px;
    text-align: center;
    color: #fff;
}

.grade-info img {
    margin-left: 10px;
    width: 13px;
}

.grade-letter {
    font-size: 90px;
    line-height: 65px;
    font-family: 'NexaBlack';
}

.page-title,
.sub-title {
    margin-bottom: 30px;
}

.page-title h1,
.sub-title h2 {
    text-transform: uppercase;
    display: flex;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    margin: 0;
    padding-top: 7px;
}

@media (max-width: 768px) {

    .page-title h1,
    .sub-title h2 {
        justify-content: center;
    }
}


.page-title .title-text {
    font-size: 20px;
}

.page-title .title-text::before {
    content: none;
}

.page-title h1:before,
.sub-title h2:before {
    content: '';
    height: 30px;
    width: 31px;
    background-color: #212c68;
    display: inline-block;
    margin-right: 10px;
    border-radius: 50%;
    margin-top: -7px;
    flex: 0 0 31px;
}

.schedule-item {
    margin: 10px 0;
    height: 120px;
    padding: 8px 10px;
    border-radius: 10px;
    overflow: hidden;
}

.schedule-item.car-bid {
    background: url(../img/car-schedule-bg.svg) no-repeat left bottom #fff;
    background-size: 85px;
}

.schedule-item.heavy-bid {
    background: url(../img/heavy-schedule-bg.svg) no-repeat left bottom #fff;
    background-size: 85px;
}

.schedule-item.bike-bid {
    background: url(../img/bike-schedule-bg.svg) no-repeat left bottom #fff;
    background-size: 85px;
    color: #EE3342;
}

.schedule-item.salvage-bid {
    /*background: url(../img/salvage-schedule-bg.svg) no-repeat left bottom #fff;*/
    background: url(../img/icon_timetauction_bg.png) no-repeat left bottom #fff;
    background-size: 85px;
}

.schedule-slider .slick-slide,
.schedule-slider-bike .slick-slide,
.schedule-slider-others .slick-slide {
    /* padding: 20px; */
    margin: 0 10px;
    position: relative;
    overflow: hidden;
}

.schedule-slider-others .slick-track {
    margin-left: 0;
}

.bid-location {
    font-family: NexaHeavy;
    font-size: 16px;
    text-align: right;
}

.bid-date,
.bid-time {
    font-family: NexaBold;
    font-size: 12px;
    text-align: right;

    display: flex;
    justify-content: flex-end;
    flex: 1;
}

.search-tab-menu {
    background: #fff;
}

.search-tab-menu .nav-tabs .nav-item:last-child {
    padding-top: 7px;
}

.btn-showhide-searchtab {
    width: 28px;
    height: 28px;
    background: #ed2c3c;
    padding: 5px;
    text-align: center;
    display: block;
    border-radius: 5px;
    overflow: hidden;
}

.btn-showhide-searchtab:before {
    content: '';
    height: 10px;
    width: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    display: inline-block;
    transform: rotate(-45deg);
    position: relative;
    top: 0;

}

.btn-showhide-searchtab.collapsed:before {
    transform: rotate(135deg);
    top: -3px;
}

.video-item {
    /*background:url('../img/bg-video.svg') no-repeat;
    background-size: cover;
    border-radius: 5px;
    padding: 80px 30px;*/
    margin: 0 10px;
    position: relative;
}

.video-slider .slick-dots,
.other-info-slider .slick-dots {
    position: static;
    text-align: center;
    padding-top: 20px;
    transform: unset;
}

.video-slider .slick-dots li,
.other-info-slider .slick-dots li {
    padding: 0 3px;
}

.video-slider .slick-dots button,
.other-info-slider .slick-dots button {
    background-color: #C1C1C1;
    height: 10px;
    border-radius: 6px;
}

.video-slider .slick-dots .slick-active button,
.other-info-slider .slick-dots .slick-active button {
    background-color: #212C68;

}

.video-title {
    position: absolute;
    top: 0;
    left: 0;
    background: #EE3342;
    color: #fff;
    padding: 5px 15px 2px;
    font-size: 18px;
    border-radius: 0px 0px 15px;
}

.tips-item {
    font-size: 13px;
    color: #212c68;
}

.tips-item img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 4px;
    border: solid 1px #fff;
}

.tips-number {
    width: 40px;
    height: 40px;
    background: #222b68;
    color: #fff;
    margin: -24px auto 0;
    border-radius: 50%;
    text-align: center;
    padding: 10px;
    z-index: 99;
    position: relative;
    font-size: 16px;
}

.tips-text {
    padding-top: 10px;
    text-align: center;
}

.tips-item>a.titiplual-link {
    position: relative;
    display: block;
}

.titipjual-tips .row>div:last-child .tips-text {
    padding-top: 25px;
}

.tips-text a {
    color: #212c68;
}

.btn-titip {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: inline-flex;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    text-align: center;
    color: #fff;
}

.btn-titip>div {
    width: 100%;
    text-align: center;
    padding: 10px;
}

.btn-titip .arrow {
    display: block;
    border-radius: 50%;
    background: #ed2c3c;
    width: 40px;
    height: 40px;
    padding: 13px 0 0;
    margin: 0 auto
}

.btn-titip .arrow:before {
    content: '';
    width: 10px;
    height: 10px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    transform: rotate(45deg);
    display: inline-block;
}

.why-us-section {
    position: relative;
    padding-bottom: 200px;
}

.whyus-content-container {
    background: linear-gradient(-180deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
}

.whyus-list {
    margin-bottom: 40px;
}

.whyus-list li {
    width: 32%;
    margin-bottom: 20px;
    display: inline-flex;
    justify-content: left;
    align-items: center;
}

.whyus-list li img {
    display: inline;
    margin-right: 10px;
    max-width: 50px;
    border-radius: 5px;
    box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.1);
}

.why-us-section h2 {
    font-size: 28px;
}

.why-us-section h2>span {
    display: block;
    font-size: 14px;
    font-family: 'NexaReg';
    padding-bottom: 10px;
}

.why-us-section .whyus-text {
    line-height: 36px;
    margin-bottom: 25px;
}

.hand {
    position: absolute;
    bottom: 0;
    right: 0;
}

.news-list {
    height: 100%;
    background-color: #fff;
    padding: 25px 30px;
}

.promote-news .news-img:before {
    width: 40px;
    height: 40px;
    background: url(../img/promote.svg);
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 99;

}

.news-img {
    margin-bottom: 10px;
    position: relative;
}

.meta-news {
    color: #9d9b9b;
    font-size: 11px;
    margin-bottom: 15px;
}

.meta-news img {
    margin-right: 8px;
}

.meta-news>div {
    display: inline-flex;
    margin-right: 20px;
    padding: 5px 0 0 25px;
    font-family: 'NexaBold';
}

.meta-news>div.date {
    background: url(../img/icon-date.svg) no-repeat left;
    background-size: 15px;
}

.meta-news>div.time {
    background: url(../img/icon-time.svg) no-repeat left;
    background-size: 15px;
}

.news-category {
    text-transform: uppercase;
    color: #ed2c3c;
    font-size: 12px;
    font-family: 'NexaHeavy';
    padding-bottom: 6px;
}

.news-title {
    color: #212c68;
    margin-bottom: 10px;
    font-size: 14px;
}

.news-info {
    color: #2e2e2f;
}

.news-section {
    margin-bottom: 60px;
}

.budget-list {
    margin: 0 -15px
}

.budget-list:before,
.budget-list:after {
    content: '';
    display: table;
    clear: both;

}

.budget-list>.budget-item:first-child {
    width: 50%;
}

.budget-list>.budget-item {
    display: inline-block;
    float: left;
    width: 25%;
    padding: 15px;
}

.budget-list>.budget-item a {
    display: block;
    position: relative;
    border-radius: 5px;
    box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.budget-list>.budget-item img {
    width: 100%;
    height: auto;
}

.budget-caption {
    position: absolute;
    bottom: 5px;
    right: 10px;
    z-index: 9;
    font-family: 'NexaBold';
    text-align: right;
    color: #fff;
    font-size: 14px;
}

.budget-item:first-child {
    bottom: 20px;
    right: 20px;
}

.budget-caption:after {
    display: inline-block;
    background: url('../img/arrow-right-white.svg') no-repeat;
    background-size: contain;
    content: ' ';
    width: 16px;
    height: 16px;
}

.budget-item .budget-caption span {
    font-family: 'NexaHeavy';
    font-size: 18px;
    display: block;
    line-height: 18px;
}

.budget-item:first-child .budget-caption {
    font-size: 16px;
}

.budget-item:first-child .budget-caption span {
    font-size: 30px;
    line-height: 30px;
}

.container {
    position: relative;
}

.footer-social-media {
    margin-top: 0px;
    display: flex;
    align-items: flex-end;
}

.footer-social-media a {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    border: 1px solid #ee3342;
    overflow: hidden;
    margin-right: 5px;
    width: 40px;
    height: 40px;
}

.footer-cnaf .cs-container,
.footer-cnaf .operatinal-container {
    margin-bottom: 16px !important;
}

.footer-cnaf .footer-social-media {
    justify-content: flex-end;
}

.footer-cnaf .footer-social-media a:last-of-type {
    margin-right: 0;
}

/* .schedule-slider .slider-item > div{
 filter: blur(3px);
 }
 .schedule-slider .slider-item.slick-active > div{
     filter: none;
 } */
.schedule-slider:before,
.schedule-slider-bike:before {
    content: '';
    height: 100%;
    width: 150px;
    background: rgb(245, 245, 245);
    background: linear-gradient(90deg, rgba(245, 245, 245, 1) 0%, rgba(245, 245, 245, 0) 100%);
    position: absolute;
    z-index: 10;
    left: 0;
    opacity: 0.7
}

.schedule-slider:after,
.schedule-slider-bike:after {
    content: '';
    height: 100%;
    width: 150px;
    background: rgb(245, 245, 245);
    background: linear-gradient(90deg, rgba(245, 245, 245, 0) 0%, rgba(245, 245, 245, 1) 100%);
    position: absolute;
    z-index: 10;
    right: 0;
    opacity: 0.7;
    top: 0;
}

.footer .footer-contact {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.footer-contact a {
    color: #212c68;
    margin-right: 20px;
    display: inline-flex;
    align-items: center;
    font-size: 12px;
}

.footer-contact a img {
    margin-right: 5px;
}

.desktop-show {
    display: block;
}

.mobile-hide {
    display: inline-block;
}

.mobile-show {
    display: none;

}

#jba-footermenu {
    display: flex;
}

.recomendation-slider2 .slider-item.recomendation-item {
    margin: 0 10px
}

.homeslider.slick-initialized .slick-slide .img-responsive {
    display: block;
    max-height: 420px;
    object-fit: cover;
    object-position: top;
}


.modal-custom-homepage .close {
    background: red;
    opacity: 1;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: #fff;
    z-index: 999;
    font-size: 30px;
    outline: none;
    padding: 2px;
}

.lang-container .form-control-select {
    padding: 3.5px;
}

.slider-section .slick-list {
    background: #333;
}

/* Lang Menu */
/* ================== */
.top-menu .lang-container .select2-container {
    width: auto !important;
}

.top-menu .lang-container .select2-container .select2-selection__rendered img {
    margin-right: 0 !important;
}

.top-menu .lang-container .select2-container .select2-selection__rendered span {
    font-size: 12px;
    padding: 0 5px 0 5px;
    line-height: 1;
    color: #212C68;
}

.top-menu .lang-container .select2-container--default .select2-selection--single {
    border-color: #212C68;
}

.top-menu .lang-container .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-width: 7px 7px 0 7px;
    margin-left: -12px;
    margin-top: -4px;
    border-color: #212C68 transparent;
}

.top-menu .lang-container .select2-search.select2-search--dropdown {
    display: none;
}

.top-menu .lang-container span.select2.select2-container.select2-container--default.select2-container--below.select2-container--focus.select2-container--open .select2-selection__arrow b {
    transform: rotate(180deg);
}

/* Hide the default triangle */
.top-menu .lang-container .select2-container--default .select2-selection--single .select2-selection__arrow b {
    display: none !important;
}

/* Use your custom image */
.top-menu .lang-container .select2-container--default .select2-selection--single .select2-selection__arrow::after {
    content: "";
    display: block;
    width: 1em;
    /* adjust size */
    height: 1em;
    /* adjust size */
    margin: auto;
    background: no-repeat center / contain url("../img/arrow-lang.svg");
    transition: transform 0.2s ease;
}

/* Rotate when open */
.top-menu .lang-container .select2-container--open .select2-selection--single .select2-selection__arrow::after {
    transform: rotate(180deg);
}

.top-menu .lang-container .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 17px;
    position: absolute;
    top: 50%;
    width: 16px;
    right: 3px;
    transform: translateY(-50%);
}


/* Lang Menu */
/* ================== */

/* Topbar Navbar */
.navbar-main-top {
    background: rgb(240, 240, 240) !important;
}

.navbar-text-contact {
    color: rgb(33, 44, 104);
    font-family: 'NexaBold', sans-serif;
    font-size: 12px;
    font-weight: bold;
    text-align: right;
    padding: 11px 6px 7px;
}

.navbar-text-contact b {
    padding-left: 2px;
}

.kendaraan-status {
    margin: 8px 0 0;
}

.kendaraan-status .status-title {
    font-size: 12px;
    text-align: center;
    color: #5b5b5b;
    padding: 1px 0 1px;
    background: #e5e5e5;
}

.status-content {
    text-align: center;
    font-size: 11px;
    text-transform: uppercase;

    color: #5b5b5b;
}

.status-content .row>.col {
    border-left: 1px solid #EEEEEF;
    padding: 10px 0px 8px;
}

.status-content .row>.col:first-child {
    border: 0;
}

.status-content span img {
    height: 13px;
    display: block;
    margin: 0 auto 5px;
}

.grade-kendaraan-content span {
    font-size: 24px;
    font-family: 'NexaHeavy';
    display: block;
    text-transform: uppercase;
    text-align: center;
}

.schedule-noslider {
    padding: 0 100px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.schedule-noslider .schedule-item,
.schedule-item {
    width: 100%;

    display: flex;
    flex-direction: column;
}

.schedule-item .bid-info {
    display: flex;
    flex-direction: column;
    justify-items: flex-end;
    align-items: flex-end;
}

.schedule-item .bid-info img {
    width: auto !important;
}

.schedule-item .bid-info .auction-started {
    color: rgb(238, 51, 66);
    font-size: 11px;
    font-weight: bold;
    text-align: right !important;
    letter-spacing: 0.11px;
}

.schedule-item .bid-info .auction-not-started {
    color: rgb(155, 155, 155) !important;
    font-size: 11px;
    font-weight: bold;
    text-align: right !important;
    letter-spacing: 0.11px;
}

.schedule-noslider .slider-item {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 10px;
}

.schedule-noslider.schedule-noslider-others {
    padding: 0px;
}

.schedule-noslider.schedule-noslider-others .slider-item {
    flex: 0 0 33.3%;
    max-width: 33.3%;
    padding: 0 10px;
}

.hamburger-sitemap {
    border: 0;
    background: #212c68;
    color: #fff;
    border-radius: 5px;
    font-size: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 9px 10px;
    padding-bottom: 7px;
    text-transform: uppercase;
    cursor: pointer;
    flex-direction: column;
}

.sitemap-cont:hover .hamburger-sitemap {
    padding: 3px;
}

.hamburger-sitemap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    padding: 4px !important;
}

.sitemap-icon {
    width: 16px;
    height: 2px;
    margin-bottom: 2px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    padding: 4px !important;
}

.sitemap-icon {
    width: 16px;
    height: auto;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.sitemap-open {
    opacity: 1;
    position: absolute;
}

.sitemap-close {
    opacity: 0;
    position: absolute;
}

/* Sitemap hover effects */
.sitemap-cont:hover .sitemap-open {
    opacity: 0;
    transform: rotate(180deg);
}

.sitemap-cont:hover .sitemap-close {
    opacity: 1;
    transform: rotate(0deg);
}

.logo-link img {
    transition: width 0.3s ease, margin-top 0.3s ease;
}

.custom-header:has(.sitemap-cont:hover) .logo-link img {
    width: 70px;
    margin-top: 0;
}

.btn-sitemap {
    border: 0;
    background: #212c68;
    color: #fff;
    border-radius: 5px;
    font-size: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 9px 10px;
    text-transform: uppercase;
}

.btn-sitemap::before {
    background: url('../img/icon-sitemap.svg') no-repeat;
    background-size: 10px;
    content: '';
    display: inline-block;
    margin-right: 10px;
    height: 10px;
    width: 10px;
}

.btn-sitemap span {
    line-height: 0;
    display: inline-block;
    padding-top: 2px;
}

.sitemapmenu-header {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 200px;
    z-index: -1;
    display: none;
    padding-top: 10px;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

.sitemap-cont:hover .sitemapmenu-header {
    z-index: 999;
    top: 43px;
    opacity: 1;
    transition: all 0.5s ease-in-out;
    display: block;
}

.header-cnaf .sitemap-cont:hover .sitemapmenu-header {
    top: 75px;
}

.sitemap-menu-container {
    background: #fff;
    padding: 20px 0;
}

.top-menu .sitemap-list,
.header-cnaf .sitemap-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.sitemap-title {
    font-size: 16px;
    font-family: 'NexaBold';
    text-align: left;
    margin-bottom: 10px;
    text-decoration: underline;
}


.top-menu .sitemap-list a.sitemap-link,
.header-cnaf .sitemap-list a.sitemap-link {
    border: 0;
    color: #111;
    font-size: 13px;
    text-transform: capitalize;
    padding: 8px 0 7px;
    max-width: 50%;
    flex: 0 0 50%;
    text-align: left;
}

.top-menu .sitemap-list a.sitemap-link:hover,
.header-cnaf .sitemap-list a.sitemap-link:hover {
    color: #212c68;
}

.sitemap-list .sitemap-link-col {
    max-width: 50%;
    flex: 0 0 50%;
}

.sitemap-list .sitemap-link-col a {
    border: 0 !important;
    padding: 8px 0 7px !important;
    color: #111 !important;
    font-size: 13px !important;
    text-transform: capitalize !important;
    text-align: left !important;
}

.sitemap-list .sitemap-link-col a:hover {
    color: #212c68 !important;
}

.logo-link {
    opacity: 1;
    transition: all 0.2s ease-in-out;
}

.logo-link.hide {
    opacity: 0;
    transition: all 0.2s ease-in-out;
}

.title-w-more {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.title-w-more a.btn-selengkapnya {
    color: #ee3342;
    font-family: NexaBold;
}

.title-w-more a.btn-selengkapnya:hover {
    color: #212C68;
}

.table-responsive {
    overflow-x: auto;
}

.detail-product-share {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 10px;
}

.detail-product-share li {
    list-style: none;
}

.detail-product-share li a {
    width: 37px;
    height: 37px;
    display: block;
}

.detail-product-share li.fb-icon a,
.socialMedia li.fb-icon a {
    background: url(../img/social/icon-facebook-square.svg) no-repeat;
}

.detail-product-share li.email-icon a {
    background: url(../img/social/icon-mail.svg) no-repeat;
}

.detail-product-share li.wa-icon a {
    background: url(../img/social/icon-wa-square.svg) no-repeat;
}

.detail-product-share li.ig-icon a {
    background: url(../img/social/icon-instagram-square.svg) no-repeat;
}

.detail-product-share li.twitter-icon a {
    background: url(../img/social/icon-twitter-square.svg) no-repeat;
}

.lSSlideOuter .lSPager.lSGallery li {
    height: 90px;
}

.youtube {
    position: relative;
    height: 198px;
    overflow: hidden;
    cursor: pointer;
}

.youtube img {
    width: 100%;
    left: 0;
    opacity: 1;
    height: auto;
}

.youtube .play-button {
    width: 68px;
    height: 48px;
    background-color: #333;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.0);
    z-index: 1;
    opacity: 0.8;
    border-radius: 12px;
}

.youtube .play-button:hover,
.youtube:hover .play-button {
    background-color: #c00;
    opacity: 1;
}

.youtube .play-button:before {
    content: "";
    border-style: solid;
    border-width: 10px 0 10px 18px;
    border-color: transparent transparent transparent #fff;
}

.youtube img,
.youtube .play-button {
    cursor: pointer;
}

.youtube .play-button,
.youtube .play-button:before {
    position: absolute;
}

.youtube .play-button,
.youtube .play-button:before {
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
}

.youtube iframe {
    height: 100%;
    width: 100%;

}

.app-icon-links a:hover,
.app-icon-links-mobile a:hover {
    text-decoration: none;
    opacity: .7;
}

.app-icon-links-mobile {
    display: none;
}

.btn-primary-jba {
    color: #fff;
    background-color: #222B67;
    border-color: #222B67;
    padding: 9px 14px 4px;
}

.btn-primary-jba:hover,
.btn-primary-jba:focus,
.btn-primary-jba:active,
.btn-primary-jba.active,
.open>.dropdown-toggle.btn-primary-jba {
    color: #fff;
    background-color: #00398f;
    border-color: #00398f;
}

.btn-gray-jba {
    background: #F8F8FA;
    color: #232C64;
    padding: 9px 14px 4px;
}

.btn-gray-jba:hover,
.btn-gray-jba:focus,
.btn-gray-jba:active,
.btn-gray-jba.active {
    background: #EFEFEF;
}


.form-floating {
    position: relative;
}

.form-floating>.form-control {
    padding: 18px;
    border: 1px solid #DFE2E6;
    border-radius: 10px;
    height: calc(3.5rem + 10px);
    color: #232C64;
    font-weight: 500;
}

.form-floating > input ~ label {
    position: absolute;
    top: 0;
    left: 0;
    padding: 18px;
    height: calc(3.5rem + 10px);
    color: #232C64;
    transition: transform .3s;
    transform-origin: 0 0;
    cursor: text;
    margin-bottom: 0px;
    line-height: 2;
    white-space: nowrap;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.form-floating > select{
    appearance: none;
    --webkit-appearance: none;
    -moz-appearance: none;
}

.form-floating > select ~ label {
    position: absolute;
    top: 21px;
    left: 23px;
    color: #232C64;
    transition: transform .3s, opacity .3s;
    transform-origin: 0 0;
    cursor: text;
    margin-bottom: 0px;
    white-space: nowrap;
    opacity: 0;
    animation: hide-select-floating-label .3s forwards;
}

@keyframes hide-select-floating-label {
    0%{
        visibility: visible;
    }
    100%{
        visibility: hidden;
    }
}

.form-floating .img-form-floating-icon{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
}

.form-floating>.form-control::placeholder {
    color: transparent;
}

.form-floating>input.form-control:focus,
.form-floating>input.form-control:not(:placeholder-shown) {
    padding: 30px 18px 8px 16px;
}

/* for select form floating label, you need to
- add required into select field
- add label after select field
- add option with text same as label and the value equal to ""
*/
.form-floating>select.form-control:has(option[value=""]:not(:checked)){
    padding: 30px 18px 8px 14px;
}

.form-floating>input.form-control:focus~label,
.form-floating>input.form-control:not(:placeholder-shown)~label {
    opacity: .65;
    transform: scale(.85) translateY(-.1rem) translateX(.15rem);
    line-height: 1.5;
}

.form-floating > select.form-control:has(option[value=""]:not(:checked)) ~label {
    opacity: .65;
    transform: scale(.85) translateY(-.5rem) translateX(-5px);
    line-height: 1.5;
    animation: show-select-floating-label .3s forwards;
}

.form-floating:has(select)::after{
    content: '';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: url(../img/chevron-down.svg) no-repeat center;
    background-size: 24px;
    background-size: contain;
    pointer-events: none;
}


@keyframes show-select-floating-label {
    0%{
        visibility: hidden;
    }
    100%{
        visibility: visible;
    }
}

/*responsive*/
@media (min-width: 1024px) {
    .homeslider.slick-initialized .slick-slide .img-responsive {
        min-height: 350px;
    }
}

@media (min-width: 1200px) {
    .homeslider.slick-initialized .slick-slide .img-responsive {
        max-height: 480px;
        height: 480px;
    }
}

@media (max-width: 1023px) {
    .hand {
        width: auto;
        height: auto;
    }

}

@media (max-width: 991px) {
    .hand {
        width: 250px;
        height: auto;
    }

    .why-us-section {
        padding-bottom: 00px;
    }

    .news-section {
        margin-top: 50px;
    }

    .homeslider.slick-initialized .slick-slide {
        height: 380px;
    }

    .homeslider.slick-initialized .slick-slide .img-responsive {
        height: 100%;
    }

    .homeslider.slick-initialized .slick-slide img {
        object-fit: cover;
        height: 100%;
        width: 100%;
        max-height: none;
    }

    .schedule-item {
        height: 145px;
    }

    .budget-list>.budget-item {
        display: inline-block;
        float: left;
        width: 50%;
        padding: 15px;
    }

    .budget-list>.budget-item:first-child {
        width: 100%;
    }

    .grade-list a>img {
        width: 100%;
    }

    .video-item iframe {
        height: 190px;
    }

    .footer-social-media {
        margin-top: 0px;
    }

    .sitemap-cont:hover .sitemapmenu-header {
        top: 120px;
    }

    .top-menu .sitemap-list {
        flex-direction: column;
    }

    .top-menu .sitemap-list a.sitemap-link {
        flex: 0 0 100%;
        max-width: none;

    }

    .whyus-list li {
        width: 49%;
    }

    .video-homepage-container {
        margin: 20px 0 40px;
    }

    .news-list .box-img img {
        height: 115px;
    }

    .schedule-noslider {
        padding: 0 60px;
    }

    .schedule-noslider .slider-item {
        flex: 0 0 33.33%;
        max-width: 33.33%;
    }

    .lSSlideOuter .lSPager.lSGallery {
        margin-bottom: 10px;
    }

    .lSSlideOuter .lSPager.lSGallery li {
        height: 83px;
        overflow: hidden;
    }

    .lSSlideOuter .lSPager.lSGallery li img {
        height: 100%;
        max-width: none;
        width: 100%;
        object-fit: cover;
    }

}

@media (max-width: 767px) {

    .app-icon-links {
        display: none;
    }

    .app-icon-links-mobile {
        display: flex;
    }

    .mobile-hide {
        display: none;
    }

    .top-menu ul li.sitemap-cont {
        display: none;
    }

    .mobile-show {
        display: flex;

    }

    #jba-footermenu.collapse:not(.show) {
        display: none;
    }

    #jba-footermenu {
        padding: 20px 10px;
    }

    section {
        margin-bottom: 30px;
    }

    .homeslider.slick-initialized .slick-slide {
        height: 420px;

    }

    .homeslider.slick-initialized .slick-slide img {
        object-fit: cover;
        height: 100%;
    }

    .slider-aditional-info {
        transform: rotate(0deg);
        right: 10px;
        top: 380px;
        text-shadow: 2px 2px 1px rgba(1, 1, 1, 1);
        display: none;
    }

    .slider-item .slider-caption {
        left: 40px;
        right: 40px;
    }

    .slick-next {
        right: 0;
    }

    .slick-prev {
        left: 0;
    }

    .search-container .search-btn,
    .search-container input[type=text],
    .search-container .adv-search-btn,
    .advance-search {
        width: 100%;
        margin-bottom: 10px;
    }

    .search-container .advance-search .search-btn {
        width: 100%;
        margin: 0px;
    }

    .search-btn-container {
        flex-direction: column;
        gap: 10px;
        flex-wrap: wrap;
    }

    .advance-search .slide-continer {
        padding: 40px 0 25px 0;
    }

    .advance-search select {
        width: 100%;
        margin: 0 0 10px;
    }

    .basic-search select {
        width: 100%;
        margin: 0 0 10px;
    }

    .search-tab-menu .nav-tabs .nav-item {
        width: 45%;
        text-align: center;
    }

    .search-tab-menu .nav-tabs .nav-item:last-child {
        width: 10%;
        padding-top: 20px;
    }

    .video-slider .slick-dots {
        display: block !important;
    }

    .tips-item {
        margin-bottom: 15px;
    }

    .hand {
        width: 45%;
    }

    .whyus-list li {
        width: 100%;
    }

    .news-item {
        margin-bottom: 20px;
    }

    .budget-list>.budget-item,
    .budget-list>.budget-item:first-child {
        width: 100%;
    }

    .chat-icon,
    .chat-button.active .chat-icon {
        width: 60px;
        height: 60px;
    }

    .footer-social-media {
        margin-top: 0px;

    }

    .footer-info .custom-title {
        font-size: 14px;
        font-family: 'NexaBold';
        padding-bottom: 10px;
    }

    footer .row .footer-info {
        font-size: 12px;
        padding-top: 10px;
    }

    footer .row .footer-address {}

    footer .address-contaier {
        margin: 0;
    }

    .footer-info>div:not(:last-child) {
        margin-bottom: 15px;
    }

    .footer-info .operatinal-container .custom-title {
        font-size: 12px;
    }

    .footer-social-media a {
        margin: 0 5px 0 0
    }

    .site-map-footer>button {
        width: 100%;
        color: #fff;
        display: flex;
        flex-direction: row;
        justify-content: space-between;

    }

    .site-map-footer .navbar-toggler-icon:before,
    .site-map-footer .navbar-toggler-icon::after {
        display: none;
    }

    .site-map-footer .navbar-toggler .navbar-toggler-icon {
        background: transparent;
        border-bottom: 2px solid #fff;
        border-right: 2px solid #fff;
        transform: rotate(-130deg);
        width: 10px;
        height: 10px;
    }

    .site-map-footer .navbar-toggler.collapsed .navbar-toggler-icon {
        background: transparent;
        border-bottom: 2px solid #fff;
        border-right: 2px solid #fff;
        transform: rotate(45deg);
        width: 10px;
        height: 10px;
    }

    .address-contaier {
        border-top: 1px solid #212c68;
        padding-top: 20px;
    }

    .footer-address .footer-social-media {
        padding-top: 10px;
        border-bottom: 1px solid #212c68;
        padding-bottom: 5px;
    }

    .footer-info {
        display: flex;
        flex-direction: row;
    }

    .footer-cnaf .footer-info {
        flex-direction: column;
    }

    .cs-container,
    .operatinal-container {
        position: relative;
        padding-left: 45px;
        font-size: 9px;
        width: 50%;
    }

    .cs-container:before,
    .operatinal-container:before {
        background: url(../img/icon-footer-cs.svg) no-repeat center center;
        content: '';
        width: 40px;
        height: 40px;
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        background-size: 20px;
        border-radius: 5px;
        border: 1px solid #212c68;
    }

    .operatinal-container:before {
        background: url(../img/icon-footer-support.svg) no-repeat center center;
        background-size: 20px;
    }

    .footer-cnaf .cs-container,
    .footer-cnaf .operatinal-container {
        width: calc(100% - 60px);
    }

    .footer-info .custom-title,
    .footer-info .operatinal-container .custom-title {
        font-size: 10px;
        text-transform: uppercase;
        padding-bottom: 0;
        font-family: 'NexaHeavy';
    }

    .cs-info span.day {
        display: block;
    }

    .num-tel {
        display: block;
    }

    .frontpage .search-container .basic-search {
        padding: 0 15px;
    }

    .frontpage .search-container .basic-search input[type=text],
    .frontpage .search-container .basic-search input.search-btn {
        width: 50%;
    }

    .search-container .adv-search-btn {
        width: 100%;
    }

    .frontpage .search-container {
        padding: 15px 0;
        margin-top: -80px;
    }

    .frontpage .search-container .advance-search {
        width: 100%;
        padding: 0 10px;
    }

    .frontpage .select-container {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .frontpage .search-container .advance-search select {
        width: calc(50% - 10px);
        margin: 0 5px 10px;
    }

    .frontpage .search-container .basic-search select {
        width: calc(50% - 10px);
        margin: auto;
    }

    .frontpage .search-container .advance-search .search-btn-container {
        padding: 5px;

    }

    .frontpage .search-container .advance-search .basic-search-btn {
        margin: 0
    }

    .frontpage .btn-seemore-container {
        padding: 0 15px;
        margin-bottom: 30px;
    }

    .frontpage .btn-seemore-container .btn-seemore {
        border: 0;
        background: #ee3342;
        color: #fff;
        font-size: 12px;
        padding: 10px;
        text-align: center;
        display: block;
        width: 100%;
        border-radius: 5px;
    }

    .frontpage .btn-seemore-container.car-blue .btn-seemore {
        background: #212c68;
    }

    .frontpage .whyus-list li {
        margin-bottom: 10px;
    }

    .frontpage .whyus-list li img {
        width: 40px;
    }

    .frontpage .news-list {
        padding: 10px;
    }

    .frontpage .news-list .news-info {
        display: none;
    }

    .frontpage .news-list .news-title {
        font-size: 16px;
    }

    .recomendation-slider2 .slick-dots {
        position: static;
        width: 100%;
        text-align: center;
        margin: 0;
        padding: 0;
        transform: unset;
    }

    .recomendation-slider2 .slick-dots .slick-active button {
        background: #212C68;
    }

    .recomendation-slider2 .product-item {
        margin: 0 5px;
    }

    .modal-custom-homepage .close {
        position: absolute;
        right: 20px;
        top: 20px;
    }

    .slider-caption .caption-content {
        margin: auto;
    }

    .schedule-noslider,
    .schedule-slider,
    .schedule-slider-bike {
        padding: 0;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        overflow: hidden;
        position: relative;


    }

    .schedule-noslider .slider-item,
    .schedule-slider .slider-item,
    .schedule-slider-bike .slider-item {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 0 15px;
        margin: 0;
    }

    .schedule-noslider .schedule-item,
    .schedule-slider-bike .schedule-item {
        width: 100%;
        margin: 10px 0;
    }

    .schedule-slider:before,
    .schedule-slider-bike:before,
    .schedule-slider:after,
    .schedule-slider-bike:after {
        display: none !important;
    }

    .auction-space {
        display: block;
        font-size: 0;
    }

    .schedule-item.car-bid {
        background: url(../img/car-schedule-bg.svg) no-repeat left bottom #fff;
        background-size: 75px;
    }

    .schedule-item.bike-bid {
        background: url(../img/bike-schedule-bg.svg) no-repeat left bottom #fff;
        background-size: 75px;
    }

    .video-homepage-container {
        margin-top: 30px;
    }

    .lSSlideOuter .lSPager.lSGallery li {
        height: 40px;
        overflow: hidden;
    }

    .lSSlideOuter .lightSlider {
        height: 260px !important;
    }

    .news-list .box-img img {
        height: auto;
    }

    .youtube {
        height: auto;
    }

    .youtube img {
        height: auto;
    }

    .news-category {
        padding-bottom: 8px;
    }
}

.btn-delete-book {
    background: white;
    color: #212c68;
    font-size: 13px;
    font-family: NexaBold;
    text-align: center;
    padding: 8px 0;
    border: 1px solid #212c68;
    width: 100%;
    border-radius: 3px;
    margin-top: 8px;
}

.btn-book {
    background: #212c68;
    color: #fff;
    font-size: 12px;
    padding: 15px 0 11px;
    border: 0;
    display: block;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 300ms ease;
}

.btn-book--uppercase {
    text-transform: uppercase;
}

.btn-book .booked-price {
    font-weight: bold;
}

.btn-delete-book:hover {
    background: #212c68;
    color: #fff;
}

.img-ads img {
    width: 100% !important;
    height: auto;
    margin-bottom: 20px;
}

@media(min-width:768px) {
    .img-ads img {
        margin-bottom: 0;
    }
}

.text-212c68 {
    color: #212c68;
}

.mobile-only {
    display: none;
}

@media (max-width: 575px) {
    .mobile-only {
        display: block;
    }
}

@media (min-width: 576px) {
    .modal-custom-homepage .modal-dialog {
        max-width: 600px;
    }
}

@media (min-width:768px) {
    .text-petunjuk-arah {
        margin-left: 43px;
    }
}

.lelang-detail-content img {
    max-width: 100%;
}

.cta-download-app {
    background: #212c68;
    color: #fff;
    padding: 50px 0 0 0;
    margin: 0;
}

.cta-download-app h2 {
    font-family: "Roboto", sans-serif;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 60px;
    line-height: 44px;
    letter-spacing: 0.66px;
}

.cta-download-app span {
    display: block;
    font-family: "Roboto", sans-serif;
    font-size: 25px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0.66px;
    margin-bottom: 16px;
}

.cta-download-app-icon {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-operational-container {
    display: flex;
    flex-direction: column;
}


@media screen and (max-width: 767px) {
    .cta-download-app h2 {
        font-size: 20px;
        line-height: 32px;
        text-align: center;
        width: 80%;
        margin: 0 auto 50px auto;
    }

    .cta-download-app span {
        font-size: 18px;
        line-height: 28px;
        text-align: center;
    }

    .cta-download-app-icon {
        justify-content: center;
        align-items: center;
        margin-bottom: 40px;
    }

    .cta-download-app-icon img {
        width: 150px;
        height: 50px;
    }

    footer .title {
        font-size: 18px;
    }

    .address-contaier {
        font-size: 16px;
    }

    .footer-operational-container {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap-reverse;
        gap: 15px;
    }

    .w-45 {
        width: 45%;
    }

    .w-51 {
        width: 54%;
    }
}


.cta-download-app-image {
    background: rgb(89, 97, 142);
    background: radial-gradient(circle, rgba(89, 97, 142, 1) 0%, rgba(252, 70, 107, 0) 68%);
}

.desktop-hide {
    display: none;
}

@media screen and (max-width: 767px) {
    .desktop-hide {
        display: inline-block;
    }
}

#modal-penitip-unit .modal-header {
    height: auto !important;
}

.product-search-content-revamp {
    width: 100%;
    background: #FFF;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.product-search-content-revamp-meta {
    flex: 1;
}

.product-search-content-revamp-meta h2 {
    font-family: "NexaHeavy";
    color: var(--secondary-500);
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 0px;
}

.product-search-content-revamp-location {
    width: 200px;
    background: #f8f8f8;
    border-radius: 8px;
    margin: 0 auto;
}

.product-search-content-revamp-meta-item-container {
    display: flex;
    align-items: center;
    gap: 16px;
}

.product-search-content-revamp-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-search-content-revamp-meta-item i {
    color: black;
}
.product-search-content-revamp-meta-item span {
    margin: 0;
    font-family: "NexaReg", sans-serif;
    font-size: 16px;
    color: var(--secondary-500);
    line-height: 24px;
    margin-top: 5px;
}


.icon-map-marker {
    display: inline-block;
    width: 24px;
    height: 24px;
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M18.296 4.637a8.71 8.71 0 0 0-12.57 0c-1.53 2-2 5-1.14 8.08c.88 3.33 3.23 5.74 5.12 7.67l.92 1a2 2 0 0 0 .63.45a1.86 1.86 0 0 0 1.51 0a2 2 0 0 0 .62-.44l.93-1c1.89-1.93 4.24-4.34 5.12-7.67c.81-3.09.39-6.09-1.14-8.09m-6.29 8.25a3.48 3.48 0 1 1 3.215-2.15a3.47 3.47 0 0 1-3.215 2.14z'/%3E%3C/svg%3E");
    background-color: currentColor;
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
}

.icon-calendar {
    display: inline-block;
    width: 24px;
    height: 24px;
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M14 14H7v2h7m5 3H5V8h14m0-5h-1V1h-2v2H8V1H6v2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2m-2 7H7v2h10z'/%3E%3C/svg%3E");
    background-color: currentColor;
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
}

.icon-clock {
    display: inline-block;
    width: 24px;
    height: 24px;
    --svg: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none"><path d="M13.3 14.7L14.7 13.3L11 9.6V5H9V10.4L13.3 14.7ZM10 20C8.61667 20 7.31667 19.7375 6.1 19.2125C4.88333 18.6875 3.825 17.975 2.925 17.075C2.025 16.175 1.3125 15.1167 0.7875 13.9C0.2625 12.6833 0 11.3833 0 10C0 8.61667 0.2625 7.31667 0.7875 6.1C1.3125 4.88333 2.025 3.825 2.925 2.925C3.825 2.025 4.88333 1.3125 6.1 0.7875C7.31667 0.2625 8.61667 0 10 0C11.3833 0 12.6833 0.2625 13.9 0.7875C15.1167 1.3125 16.175 2.025 17.075 2.925C17.975 3.825 18.6875 4.88333 19.2125 6.1C19.7375 7.31667 20 8.61667 20 10C20 11.3833 19.7375 12.6833 19.2125 13.9C18.6875 15.1167 17.975 16.175 17.075 17.075C16.175 17.975 15.1167 18.6875 13.9 19.2125C12.6833 19.7375 11.3833 20 10 20Z" fill="%231C1B1F"/></svg>');
    background-color: currentColor;
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
}

.product-search-content-revamp-lot-catalog-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 10px;
    margin-bottom: 30px;
}

.product-search-content-revamp-lot-catalog-container .product-search-content-revamp-lot-catalog-number {
    font-family: "NexaReg";
    font-size: 16px;
    color: #222529;
  }

  .product-search-content-revamp-lot-catalog-download {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    color: white;
    background: #316CB2;
    border-radius: 8px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease, background 0.3s ease;
}

.product-search-content-revamp-lot-catalog-download:hover {
    color: white;
    background: #2262b0;
}


.icon-download {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23232C64' d='M14.032 13.164a.75.75 0 0 1 .937 1.172l-2.494 1.995a.75.75 0 0 1-.473.169h-.008a.75.75 0 0 1-.465-.166l-2.497-1.998a.75.75 0 0 1 .937-1.172l1.281 1.026v-3.44a.75.75 0 1 1 1.5 0v3.44z'/%3E%3Cpath fill='%23232C64' fill-rule='evenodd' d='M7 2.25A2.75 2.75 0 0 0 4.25 5v14A2.75 2.75 0 0 0 7 21.75h10A2.75 2.75 0 0 0 19.75 19V8.198a1.75 1.75 0 0 0-.328-1.02L16.408 2.98a1.75 1.75 0 0 0-1.421-.73zM5.75 5c0-.69.56-1.25 1.25-1.25h7.25v4.397c0 .414.336.75.75.75h3.25V19c0 .69-.56 1.25-1.25 1.25H7c-.69 0-1.25-.56-1.25-1.25z' clip-rule='evenodd'/%3E%3C/svg%3E");
}

.icon-download-folded {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjUiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNSAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPG1hc2sgaWQ9Im1hc2swXzIzMDZfMjY2NTQiIHN0eWxlPSJtYXNrLXR5cGU6YWxwaGEiIG1hc2tVbml0cz0idXNlclNwYWNlT25Vc2UiIHg9IjAiIHk9IjAiIHdpZHRoPSIyNSIgaGVpZ2h0PSIyNCI+CjxyZWN0IHg9IjAuNSIgd2lkdGg9IjI0IiBoZWlnaHQ9IjI0IiBmaWxsPSIjRDlEOUQ5Ii8+CjwvbWFzaz4KPGcgbWFzaz0idXJsKCNtYXNrMF8yMzA2XzI2NjU0KSI+CjxwYXRoIGQ9Ik0xMi41IDE3TDE2LjUgMTNMMTUuMSAxMS42TDEzLjUgMTMuMTVWOUgxMS41VjEzLjE1TDkuOSAxMS42TDguNSAxM0wxMi41IDE3Wk02LjUgMjJDNS45NSAyMiA1LjQ3OTE3IDIxLjgwNDIgNS4wODc1IDIxLjQxMjVDNC42OTU4MyAyMS4wMjA4IDQuNSAyMC41NSA0LjUgMjBWOEwxMC41IDJIMTguNUMxOS4wNSAyIDE5LjUyMDggMi4xOTU4MyAxOS45MTI1IDIuNTg3NUMyMC4zMDQyIDIuOTc5MTcgMjAuNSAzLjQ1IDIwLjUgNFYyMEMyMC41IDIwLjU1IDIwLjMwNDIgMjEuMDIwOCAxOS45MTI1IDIxLjQxMjVDMTkuNTIwOCAyMS44MDQyIDE5LjA1IDIyIDE4LjUgMjJINi41Wk02LjUgMjBIMTguNVY0SDExLjM1TDYuNSA4Ljg1VjIwWiIgZmlsbD0id2hpdGUiLz4KPC9nPgo8L3N2Zz4K");
}

.product-search-content-revamp-filter {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.product-search-content-revamp-filter-shorting {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 55%;
}

.product-search-content-revamp-filter-shorting-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
}

.product-search-content-revamp-filter-shorting-item label {
    font-family: "Roboto", sans-serif;
    margin: 0;
    color: #5b5b5b;
}

.product-search-content-revamp-filter-shorting-item .select2-container {
    width: auto !important;
}

.product-search-content-revamp-filter-shorting-item  .select2-container--default .select2-selection--single {
    border: 1px solid #EBEBEB;
    border-radius: 8px;
    height: auto;
    display: flex;
    justify-content: space-between;
    color: #C3C3C3;
    padding: 4px 0;
}

.product-search-content-revamp-filter-shorting-item .select2-container .select2-selection--single .select2-selection__rendered {
    font-family: "NexaReg";
    border-radius: 6px;
    padding: 11px 16px;
    line-height: 1;
    color: #B2B2B2;
    font-size: 16px;
}

.product-search-content-revamp-filter-shorting-item .select2-container--default .select2-selection--single .select2-selection__arrow {
    position: relative;
    top: 1px;
    right: 6px;
    width: 18px;
    height: unset;
}

.product-search-content-revamp-filter-shorting-item .select2-container--default .select2-selection--single .select2-selection__arrow b {
    background-image: url(../img/icon-expand-more.svg);
    background-color: transparent;
    background-size: contain;
    border: none !important;
    height: 20px !important;
    width: 20px !important;
    margin: auto !important;
    top: 50% !important;
    left: -12px !important;
    transform: translateY(-50%) !important;
    transition: transform 0.3s ease !important;
  }

  /* Rotate icon when dropdown is open */
  .product-search-content-revamp-filter-shorting-item .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    transform: translateY(-50%) rotate(180deg) !important;
  }

    .product-search-content-revamp-filter-shorting-item .select2-container--default .select2-results>.select2-results__options{
        padding: 8px;
    }
    .product-search-content-revamp-filter-shorting-item .select2-container--default .select2-results .select2-results__option{
        border-radius: 4px;
        color: #232C64;
        font-size: 16px;
    }

    .product-search-content-revamp-filter-shorting-item .select2-container--default .select2-results__option--highlighted,
    .product-search-content-revamp-filter-shorting-item .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable{
        background: #316CB2;
        color: white;
    }

.product-search-content-revamp-filter-shorting-item .select2-container--default .select2-results__option--highlighted,
.product-search-content-revamp-filter-shorting-item .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background: #001871;
    color: white;
}

.product-search-content-revamp-filter-pagination {
    width: 40%;
    display: flex;
    align-items: end;
    gap: 4px;
    justify-content: end;
}

.product-search-content-revamp-filter-pagination .pagination {
    margin: 0px;
}

.product-search-content-revamp-filter-pagination .lot-number {
    color: rgba(91, 91, 91, 1);
    font-size: 14px;
}

.product-filter-option-title {
    font-weight: 500;
    font-size: 16px;
}

.product-filter-option-desc {
    font-size: 14px;
}

.participate-auction {
    width: 100%;
    margin: 10px 0 20px 0;
}

.participate-auction a {
    font-size: 16px;
    text-transform: uppercase;
    border: 1px solid #212c68;
    padding: 12px 16px;
    border-radius: 8px;
    color: #fff;
    display: block;
    text-align: center;
    background: #212c68;
    font-family: "NexaHeavy";
}

.participate-auction a:hover {
    background: #fff;
    color: #212c68;
}

.video-slider .youtube {
    width: 100%;
    left: 0px;
    opacity: 1;
    height: 200px;
    object-fit: cover;
}

.cta-joining-auction {
    width: 100%;
    text-align: center;
    padding: 50px 0;
    margin-bottom: 40px;
}

.cta-joining-auction h2 {
    font-family: "NexaBold";
    font-size: 32px;
}

.cta-joining-auction .btn-register {
    display: inline-block;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    border: 1px solid #ee3342;
    padding: 20px 30px 15px 30px;
    border-radius: 30px;
    color: #fff;
    background-color: #ee3342;
    line-height: 1;
    margin-top: 10px;
}

.cta-joining-auction .btn-register:hover {
    background-color: #fff;
    border-color: #ee3342;
    color: #ee3342;
}

.section-video-old {
    width: 100%;
}

.section-video-old .video-item {
    background: url(../img/bg-video.svg) no-repeat;
    background-size: cover;
    border-radius: 5px;
    padding: 80px 30px;
    position: relative;
    margin: 15px 10px;
}

.section-video-old .video-title {
    position: absolute;
    top: 0;
    left: 0;
    background: #EE3342;
    color: #fff;
    padding: 5px 15px 2px;
    font-size: 18px;
    border-radius: 0px 0px 15px;
}

/* Header */
.header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    transform: translateY(0);
}

/* Only apply hide/show behavior on screens larger than 768px */
@media (min-width: 769px) {
    .header-wrapper.hidden-navbar {
        transform: translateY(-100%);
    }
}

/* Ensure body has proper padding to account for fixed header */
body {
    padding-top: 0;
    /* Will be adjusted by JavaScript based on header height */
}

.btn-selengkapnya {
    display: flex;
    align-items: center;
    font-size: 12px;
    gap: 6px;
    color: var(--primary-500);
    letter-spacing: 0.175px;
    font-family: 'NexaBold';
}

@media screen {
    .btn-selengkapnya {
        font-size: 14px;
    }
}

.btn-selengkapnya:hover {
    color: var(--secondary-500);
    border-bottom: 1px solid var(--secondary-500);
}

.btn-selengkapnya:hover::after {
    background-image: url('/NewJBATheme/assets/img/icon-selengkapnya-blue.svg');
}

.btn-selengkapnya::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url('/NewJBATheme/assets/img/icon-selengkapnya.svg');
    flex: 0 0 16px;
    margin-bottom: 2px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

@media (min-width: 768px) {
    .btn-selengkapnya {
        font-size: 16px;
    }

    .btn-selengkapnya::after {
        width: 24px;
        height: 24px;
        flex: 0 0 24px;
    }
}

@media (max-width: 991px) {
    .product-search-content-revamp-meta h2 {
        margin-bottom: 8px;
    }

    .product-search-content-revamp {
        flex-direction: column;
        align-items: start;
    }

    .product-search-content-revamp-filter-pagination {
        display: none;
    }

    .product-search-content-revamp-meta-item-container {
        flex-direction: column;
        align-items: start;
        gap: 12px;
    }

    .product-search-content-revamp-filter-shorting {
        width: 100%;
    }

    .product-search-content-revamp-lot-catalog-download {
        width: 100%;
        flex-direction: row;
        justify-content: center;
    }
}
@media (max-width: 576px) {
    .product-search-content-revamp-lot-catalog-container {
        padding-top: 24px;
        margin-bottom: 24px;
    }
}

.section-share {
    flex-direction: row;
    gap: 24px;
}

@media (max-width: 768px) {
    .section-share {
        flex-direction: column;
        gap: 12px;
    }

    .share-button {
        margin-top: -16px !important;
        padding: 0 !important;
    }

    .section-share .btn-container {
        width: 100%;
    }

    .vehicle-info-container .btn-container button {
        text-align: center !important;
    }

    .car-info-container .like-view .like-count, .car-info-container .like-view .view-count, .vehicle-info-container .like-view .like-count, .vehicle-info-container .like-view .view-count {
        align-items: center !important;
    }

    .car-info-container .like-view .like-count .number,
    .car-info-container .like-view .view-count .number,
    .vehicle-info-container .like-view .like-count .number,
    .vehicle-info-container .like-view .view-count .number {
        font-size: 14px !important;
    }

    .car-info-container .like-view img,
    .car-info-container .like-view img,
    .vehicle-info-container .like-view img,
    .vehicle-info-container .like-view img {
        width: 14px !important;
        height: 14px !important;
    }

    .other-info-container .row>div {
        margin-bottom: 40px;
    }
}
