@font-face {
    font-family: 'Apercu Regular';
    src: url('../fonts/Apercu\ Regular.otf');
}
@font-face {
    font-family: 'Apercu Light';
    src: url('../fonts/Apercu\ Light.otf');
}

/* ----------------------------------------------------------------
	Custom CSS

	Add all your Custom Styled CSS here for New Styles or
	Overwriting Default Theme Styles for Better Handling Updates
-----------------------------------------------------------------*/
html, body {
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Apercu Regular', sans-serif !important;
}

small, .small {
    font-size: .9rem !important;
}

p {
    margin-bottom: 1rem !important;
}

/* Unit */
.apartment-item {
    border-radius: 1.25rem;
    overflow: hidden;
    border: 1px solid var(--bs-gray-300);
}
.apartment-item figure > img {
    height: 150px;
    width: 100%;
    object-fit: cover;
}
.apartment-item figure > .vip {
    position: absolute;
        top: .5rem;
        right: .5rem;
}
.apartment-item figure > .vip > img {
    pointer-events: none;
    height: 50px;
    width: 50px;
    object-fit: contain;
}
.apartment-item figure .overlay {
    position: absolute;
        bottom: 1rem;
        left: 0;
    background-color: var(--themecolor);
    color: var(--bs-white);
    padding: .25rem 1rem;
    border-radius: 0 .5rem .5rem 0;
}
.apartment-item figure .overlay > span {
    font-size: 14px;
}
.apartment-item figure .overlay-rate {
    display: block;
    position: absolute;
        top: .5rem;
        right: .5rem;
}
.apartment-item figure .overlay-rate .rating {
    padding: .25rem .5rem;
}
.apartment-item .desc .price-list > ul > li {
    display: flex;
    justify-content: space-between;
    margin-bottom: .35rem;
}
.apartment-item .desc .price-list > ul > li:last-child {
    margin-bottom: 0;
}
.apartment-item .desc .feature-unit {
    overflow-x: scroll;
}
.apartment-item .desc .feature-unit::-webkit-scrollbar {
    height: 1px;
    background-color: var(--bs-gray-300);
}
.apartment-item .desc .feature-unit > div > img {
    height: 14px;
    width: 14px;
    pointer-events: none;
    object-fit: contain;
    filter: grayscale(100%);
}
.apartment-item .desc .feature-unit > div > span {
    color: var(--bs-dark);
    font-size: .9rem;
    white-space: nowrap;
}
.apartment-item .desc .rating {
    display: none !important;
}
.apartment-item .desc .code-unit {
    color: var(--bs-gray-500);
    font-size: .9rem;
}
.apartment-item .desc > h3 {
    font-size: 18px;
    font-weight: 800;
    display: -webkit-box;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    margin-bottom: .25rem;
    line-height: 1.2;
}
.apartment-item .desc > address {
    color: var(--bs-dark);
    margin-bottom: 0;
    min-height: 40px;
    font-size: .9rem;
}
.apartment-item .desc .price-list > ul > li > span {
    color: var(--bs-gray-700);
    font-size: 14px;
    font-weight: 400;
}
.apartment-item .desc .facility-unit > span {
    position: relative;
    font-size: .9rem;
    color: var(--bs-gray-500);
}
.apartment-item .desc .facility-unit > span:not(:last-child)::after {
    content: ' | ';
}
/* End of Unit */

/* Unit */
.unit-item {
    border-radius: 1.25rem;
    overflow: hidden;
    border: 1px solid var(--bs-gray-300);
    position: relative;
}
.unit-item .rented-overlay {
    background-color: rgba(var(--bs-dark-rgb),.5);
    position: absolute;
        top: 0;
        left: 0;
    height: 100%;
    width: 100%;
}
.unit-item .rented-overlay > img {
    width: 60%;
    margin: auto;
    opacity: .75;
}

.unit-item figure {
    position: relative;
}
.unit-item figure > .vip {
    position: absolute;
        top: .5rem;
        right: .5rem;
}
.unit-item figure > .vip > img {
    pointer-events: none;
    height: 50px;
    width: 50px;
    object-fit: contain;
}
.unit-item figure,
.unit-item figure > img {
    pointer-events: none;
    height: 150px;
    width: 100%;
    object-fit: cover;
}
.unit-item .desc {
    min-height: 174px;
}
.unit-item .desc .feature-unit {
    border-bottom: 1px solid var(--bs-gray-300);
    grid-template-columns: auto auto auto;
}
.unit-item .desc .feature-unit > div > img {
    height: 14px;
    width: 14px;
    object-fit: contain;
    filter: grayscale(100%);
}
.unit-item .desc .feature-unit > div > span {
    color: var(--bs-dark);
    font-size: 10px;
    white-space: nowrap;
}
.unit-item .desc .feature-unit > div:last-child > span {
    display: -webkit-box;
    line-clamp: 1 !important;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    white-space: normal;
}
.unit-item .desc .code-unit {
    color: var(--bs-gray-500);
    font-size: .9rem;
}
.unit-item .desc > h3 {
    font-size: 18px;
    font-weight: 800;
    display: -webkit-box;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    margin-bottom: 0;
}
.unit-item .desc > address {
    color: var(--bs-dark);
    margin-bottom: 0;
    font-size: .9rem;
}
.unit-item .desc .price-unit > span {
    color: var(--themecolor);
    font-size: 14px;
    font-weight: 600;
}
.unit-item .desc .price-unit > small {
    font-size: .9rem;
    color: var(--bs-gray-500);
}
.unit-item .desc .facility-unit > span {
    position: relative;
    font-size: .9rem;
    color: var(--bs-gray-500);
}
.unit-item .desc .facility-unit > span:not(:last-child)::after {
    content: ' | ';
}
/* End of Unit */

/* Article */
.article-item {
    border-radius: 1.25rem;
    border: 1px solid var(--bs-gray-300);
    overflow: hidden;
}
.article-item figure > img {
    pointer-events: none;
    height: 150px;
    width: 100%;
    object-fit: cover;
}
.article-item .desc {
    padding: .15rem;
}
.article-item .desc > h3 {
    font-size: 18px;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.article-item .desc .info {
    font-size: .9rem;
    color: var(--bs-gray-500);
}
.article-item .desc p {
    font-size: .9rem;
    min-height: 40px;
    margin-bottom: 0;
    color: var(--bs-dark);
    display: -webkit-box;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}
/* End of Article */

/* Select2 */
.select2 {
    padding-top: .5rem;
    padding-bottom: .5rem;
}
.select2 .select2-selection--single {
    background-color: transparent!important;
    border-width: 0!important;
}
.select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 0;
    padding-right: 0;
    line-height: 24px!important;
}
.select2-container--default .select2-results__option--selectable {
    font-size: 14px;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: var(--themecolor)!important;
}
.select2 .select2-selection--single .select2-selection__arrow {
    display: none;
}
.select2-dropdown {
    border-radius: .5rem !important;
    overflow: hidden !important;
}
/* End of Select2 */

.text-themecolor {
    color: var(--themecolor) !important;
}
.text-color1 {
    color: var(--color1) !important;
}

.tns-outer~.controls-container>div {
	background-color: white;
    color: var(--themecolor) !important;
    font-size: 28px;
    position: absolute;
        top: 50%;
    /* transform: translateY(-50%); */
    border-radius: 50rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem 0.375rem;
    cursor: pointer;
    transition: all 0.2s linear;
    z-index: 100;
}

.tns-outer~.controls-container>div:hover {
    box-shadow: 0 0 .9rem rgba(var(--bs-dark-rgb),.5) !important;
    color: var(--themecolor-hover);
}

.tns-outer~.controls-container .prev {
    right: 3.5rem;
}

.tns-outer~.controls-container .next {
    right: 1rem;
}

.tns-outer~.controls-container div[aria-disabled="true"] {
    display: flex;
}

.tns-outer~.controls-container div[aria-disabled="true"],
.tns-outer~.controls-container div[aria-disabled="true"]:hover {
    opacity: .35;
}

.top-stack {
    margin-top: 80px;
}

.rating {
    color: var(--bs-dark);
}
.rating > span {
    font-weight: 700;
    font-size: 14px;
}
.rating > span > small {
    color: var(--bs-gray-500);
    font-size: 10px;
    font-weight: 400;
}
.rating .rate > i {
    font-size: .9rem;
    color: var(--bs-gray-300);
}
.rating .rate > i.filled {
    color: var(--bs-warning);
}

.fn-apercu {
    font-family: 'Apercu Regular', sans-serif !important;
}
.fn-apercu-light {
    font-family: 'Apercu Light', sans-serif !important;
}
.fs-normal {
    font-size: 14px;
}

.py-2-5 {
    padding-top: .75rem;
    padding-bottom: .75rem;
}

.text-justify {
    text-align: justify;
}
.text-muted {
    color: var(--bs-gray-500) !important;
}

.btn-theme {
    background-color: var(--themecolor);
    border: 1px solid var(--themecolor);
    color: var(--bs-white);
    transition: all .2s;
}
.btn-theme:hover {
    background-color: var(--themecolor-hover);
    color: var(--bs-white);
}
.btn-white {
    background-color: var(--bs-white);
    border: 1px solid var(--bs-gray-500);
    color: var(--bs-dark);
    transition: all .2s;
}
.btn-white:hover {
    background-color: var(--bs-gray-200);
    border: 1px solid var(--bs-gray-700);
}
.btn-theme-outline {
    background-color: var(--themecolor);
    border: 1px solid var(--bs-white);
    color: var(--bs-white);
    transition: all .2s;
}
.btn-theme-outline:hover {
    background-color: var(--bs-white);
    color: var(--bs-white);
}
.btn-white-outline {
    background-color: var(--bs-white);
    border: 2px solid var(--bs-dark);
    color: var(--bs-dark);
    border-radius: 25px;
    transition: all .2s;
}
.btn-white-outline:hover {
    background-color: var(--bs-gray-100);
}

.theme-hover > svg {
    transition: all .2s
}
.theme-hover:hover {
    background-color: #2071B1;
    color: var(--bs-white);
    border-color: #2071B1
}
.theme-hover:hover > svg {
    color: var(--bs-white);
    filter: invert(100%)
}

.select-caret {
    position: relative;
}
.select-caret::before {
    content: '\f0d7';
    font-family: "Font Awesome 6 Free";
    font-weight: 900 !important;
    font-size: .9rem;
    pointer-events: none;
    position: absolute;
        right: 10px;
        bottom: 10px;
}
.select-caret > select {
    background-color: transparent;
    border:  0 none;
    font-size: 14px;
    appearance: none;
    -webkit-appearance: none;
}

.pure-pagination > span > a,
.pure-pagination > ul > li > a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    transition: all .2s;
}
.pure-pagination > span > a {
    background-color: var(--themecolor);
    color: var(--bs-white);
    font-size: .9rem;
}
.pure-pagination > span > a[disabled] {
    cursor: default;
    opacity: .5;
}
.pure-pagination > span > a:hover {
    background-color: var(--themecolor-hover);
    color: var(--bs-white);
}
.pure-pagination > ul > li > a {
    background-color: var(--bs-white);
    color: var(--bs-dark);
    font-size: 14px;
}
.pure-pagination > ul > li > a.active {
    color: var(--themecolor);
    font-weight: 800;
    cursor: default;
}
.pure-pagination > ul > li > a:hover {
    background-color: var(--bs-gray-300);
}


.shadow-hover.scale-hover {
    transition: all .3s;
}
.scale-hover figure > img {
    transform: scale(1,1);
    transition: all .3s;
}
.scale-hover:hover figure > img {
    transform: scale(1.02,1.02);
}
.shadow-hover.scale-hover:hover {
    box-shadow: 0 0 15px rgba(var(--bs-dark-rgb),.1);
}
.scale-hover:active figure > img,
.scale-hover:focus figure > img {
    transform: scale(1.01,1.01);
}


/* sm: phone - landscape */
@media (min-width: 576px) {
}

/* md: tablet */
@media (min-width: 768px) {
    .top-stack {
        margin-top: 40px;
    }

    .unit-item .desc .feature-unit {
        border-bottom:  0 none;
    }
}

/* lg: desktop */
@media (min-width: 992px) {
    .border-bottom-md-0 {
        border-bottom: 0 none !important;
    }

    .apartment-item .overlay-rate {
        display: none !important;
    }
    .apartment-item .desc .rating {
        display: flex !important;
    }

    .apartment-item figure > img {
        height: 200px;
    }

    .unit-item figure,
    .unit-item figure > img {
        height: 200px;
    }
    .unit-item .desc .feature-unit {
        border-bottom:  0 none;
    }

    .top-stack {
        margin-top: 90px;
    }
}

/* xl: wide */
@media (min-width: 1200px) {
}

/* super wide */
@media (min-width: 1440px) {
}