:root {
    --white: #FFF;
    --primary: #2F80ED;
    --primaryLight: #4DA9FF;
    --primaryBuble: #CCDAFC;
    --primaryDarker: #404040;
    --primaryGreen: #2ECC71;
    --primaryOrange: #C97832;

    --secondaryYellow: #FFAC2B;
    --secondaryTosca: #00ADB5;
    --secondaryRed: #FD6161;

    --textBlack: #404040;
    --textGray: #9D9D9D;
    --textLine: #DDE5E9;
    --textBackground: #F4F4FA;
}

body {
    margin: 0;
    font-family: "Nunito", sans-serif;
    text-rendering: optimizeLegibility;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--textBlack);
    background: var(--textBackground);
}

img {
    width: 100%;
}

a,
a:link,
a:visited {
    color: var(--textBlack);
    text-decoration: none;
}

.link {
    cursor: pointer;
}

/* Header */
.navbar-brand .logo {
    height: 45px;
}

.navbar-light .navbar-nav .nav-link {
    color: #444;
    font-weight: 600;
    position: relative;
    transition: all .2s ease-in-out;
}

.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-light .navbar-nav .nav-link.active::before,
.navbar-light .navbar-nav .nav-link::before {
    content: "";
    position: absolute;
    top: auto;
    bottom: 6px;
    height: 2px;
    width: 0;
    background-color: #2F80EDCC;
    border-radius: 4px;
    transition: width .4s ease-in-out;
}

.navbar-light .navbar-nav .nav-link.active::before {
    width: calc(100% - 1.4rem)
}

.navbar-light .navbar-nav .nav-link:hover::before {
    width: calc(100% - 1.4rem);
}

.navbar-light .navbar-nav.navbar-right .nav-link:hover::before {
    width: calc(100% - 1rem);
}

.link-language:hover::before {
    width: 0 !important;
}

.navbar-right .user-picture {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: solid 1px #eee;
    object-fit: cover;
}

.navbar-right .link-language {
    border: 0;
    border-radius: 10px;
    background-color: var(--primary);
    padding: 3px 22px 3px 8px !important;
    color: #FFF !important;
}

/* Content */
h1.title {
    text-align: left;
    color: var(--textBlack);
    margin: 0;
    font-weight: 500;
    font-size: 1.8em;
}

.back-content,
.card-custom {
    background: #FFF;
    box-sizing: border-box;
    padding: 20px;
    min-height: 300px;
    margin-bottom: 50px;
    border-radius: 12px;
    box-shadow: 0 2px 15px #55555510;
}

.card-custom {
    padding: 20px 30px;
    min-height: unset;
    transition: all .2s ease-in-out;
}

.card-custom h5 {
    font-size: 1em;
    margin-top: 20px;
    margin-bottom: 0;
}

.card-link.active {
    background-color: var(--primaryLight);
}

.card-link:hover {
    background-color: var(--primary);
}

.card-link:hover > h5 {
    color: #FFF;
}

.card-href {
    cursor: pointer;
}

.card-href:hover {
    box-shadow: 0 2px 15px #55555525;
}

/* FORM */
.wrap-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    width: 200px;
    height: 200px;
    box-sizing: border-box;
    border: solid 1px #E5E5E5;
    border-radius: 24px;
    background-color: #EEE;
    font-size: 40px;
    color: #00000030;
}

.wrap-image img {
    width: 200px;
    height: 200px;
    object-fit: cover;
}

.wrap-image .btn {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background-color: #f3f6f9CC;
    border-color: #f3f6f9CC;
    border-radius: 13px;
    padding: 0;
    width: 35px;
    height: 35px;
}

.wrap-images,
.wrap-images img {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    font-size: 30px;
}

.wrap-images .btn {
    width: 26px;
    height: 26px;
    font-size: 12px;
    border-radius: 8px;
    bottom: 6px;
    right: 6px;
}

.wrap-image.gallery {
    cursor: pointer;
}

#banner {
    background-color: #CCDAFC;
    position: relative;
    overflow: hidden;
}

#banner .wrap-top {
    position: absolute;
    top: 80px;
}

#banner .carousel,
#banner .carousel-inner {
    position: unset;
}


#banner .carousel-inner,
#banner .carousel-item {
    height: 400px;
}

#banner .carousel-item {
    text-align: right;
}

#banner .carousel-item img {
    height: 500px;
    width: 500px;
    margin-left: auto;
    margin-right: 80px;
    margin-top: -50px;

    height: 400px;
    margin: 0;
    object-fit: cover;
    width: 100%;
    filter: brightness(30%);
}

#banner .carousel-control-next,
#banner .carousel-control-prev {
    position: absolute;
    top: 40%;
    color: #fff;
    background: #FFFFFF30;
    box-sizing: border-box;
    vertical-align: middle;
    height: 100px;
    width: 100px;
    border-radius: 50px;
    display: flex;
    align-items: center;
}

#banner .carousel-control-prev {
    left: -55px;
    justify-content: end;
    padding-right: 12px;
}

#banner .carousel-control-next {
    right: -55px;
    justify-content: start;
    padding-left: 12px;
}

#banner h1,
#feature h1 {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.4;
}

#banner form {
    margin-top: 30px;
    padding: 6px;
    background-color: #FFF;
    border: solid 1px #FFF;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 3px 3px 15px 5px #22222205;
    display: flex;
    align-items: center;
    width: 500px;
    transition: box-shadow .3s ease-in-out;
}

#banner form:hover {
    box-shadow: 3px 3px 15px 5px #22222210;
}

#banner form input,
#banner form select,
#banner form button {
    background-color: transparent;
    border: 0;
    outline: 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 40px;
    height: 40px;
    padding: 0 8px;
    width: 100%;
    display: block;
}

#banner form select {
    width: 30%;
}

#banner form button {
    background-color: var(--primary);
    border-radius: 8px 16px 16px 8px;
    padding: 0 10px;
    margin-left: 5px;
    color: #FFF;
    width: auto;
    display: inline-block;
    transition: background-color .3s ease-in-out;
}

#banner form button:hover {
    background-color: var(--primaryLight);
}

#feature {
    padding: 3em 0;
}

#feature .container {
    padding: 1.5em 0;
    border-radius: 12px;
    background-color: #FFF;
}

#maps .container {
    padding: 1.5em;
    border-radius: 12px;
    background-color: #FFF;
}

#maps .container #map {
    padding: 1em;
    border-radius: 10px;
    overflow: hidden;
}

#feature .slider button {
    outline: 0;
    border: 0;
    background-color: transparent;
    text-align: center;
    line-height: 36px;
    height: 36px;
    width: 36px;
    font-size: 20px;
    color: #888;
    transition: all .2s ease-in-out;
}

#feature .slider button:hover,
#feature .slider button:active {
    color: #222;
}

#feature #lightSlider {
    position: relative;
    height: auto !important;
}

#feature #lightSlider .for-first {
    padding-left: 20px;
}

#feature #lightSlider .for-first:last-child {
    padding-right: 20px;
}

#feature #lightSlider .for-first img {
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
}

#feature #lightSlider .for-first .img-count {
    position: absolute;
    right: 10px;
    top: 10px;
    background-color: #FFFFFF50;
    color: #FFF;
    font-weight: bold;
    padding: 2px 7px 1px;
    border-radius: 8px;
}

#feature #lightSlider .for-first .caption svg {
    position: relative;
    top: -2px;
    margin-left: 3px;
}


#why {
    padding: 4em 0 6em;
}

#why .card {
    text-align: center;
    border-radius: 12px;
    border-color: transparent;
    box-shadow: 2px 10px 30px #22222210;
    margin: 0 10px 20px;
    cursor: default;
    background-color: #FAFAFA;
    transition: transform .3s ease-in-out;
}

#why .card:hover {
    transform: translateY(-5px);
}

#why .card .card-img-top {
    height: 200px;
    width: 50%;
    object-fit: contain;
    margin: 0 auto;
}

#why .card .card-title {
    font-weight: 600;
    color: #444;
}

#why .card .card-text {
    color: #444444AA;
    margin-top: 10px;
    margin-bottom: 15px;
}

#article {
    background-color: #FFF;
    padding: 5em 0 6em;
}

.article-list {
    cursor: pointer;
    margin-bottom: 30px;
    padding: 8px;
    border-radius: 16px;
    display: flex;
    transition: all .2s ease-in-out;
}

.article-list:hover {
    background-color: #ecefff;
}

.article-list img {
    width: 120px;
    height: 100px;
    object-fit: cover;
    margin-right: 10px;
    border-radius: 16px;
    border: dotted 2px #FFF;
    padding: 2px;
}

.article-list b {
    font-weight: 600;
    font-size: 1.1em;
    margin-bottom: 3px;
    display: block;
}

.article-list p {
    margin: 0;
    color: #555;
}

#testimonials {
    padding: 5em 0 6em;
    background-color: #3385ff;
}

#testimonials .carousel-indicators {
    position: relative;
    margin-bottom: 1.8rem;
}

#testimonials .carousel-indicators button {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    padding: 0;
    display: inline-block;
    background: #FFFFFFCC;
    box-sizing: border-box;
    border-radius: 50%;
    border-top: 0;
    border-bottom: 0;
}

#testimonials .carousel-inner img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: solid 4px #CCCCCC80;
    padding: 3px;
}

#testimonials .carousel-inner p {
    margin: 30px auto 20px;
    font-size: 16px;
    font-weight: normal;
    font-style: italic;
    text-align: center;
    width: 50%;
    display: block;
    color: #FFFFFFCC;
}

#testimonials .carousel-inner p:before {
    content: "\f6b0";
    font-family: 'bootstrap-icons';
    font-size: 24px;
    padding-right: 6px;
    border: solid 1px #FFFFFF88;
    width: 46px;
    height: 46px;
    line-height: 46px;
    border-radius: 23px;
    position: absolute;
    margin-top: -35px;
    margin-left: -60px;
}

#testimonials .carousel-inner h5 {
    font-weight: 600;
    letter-spacing: 2px;
    color: #FFF;
}

#app {
    padding: 4em 0 0;
}

#app a {
    transition: transform .2s ease-in-out;
    display: inline-block;
}

#app a:hover {
    transform: translateY(-3px);
}

#app a img {
    width: 200px;
    margin-left: -12px;
}

#footer {
    background-color: #00041d;
}

#footer .footer-logo {
    width: 160px;
}

#footer .socials-icon {
    display: flex;
    align-items: center;
    margin-top: 40px;
    margin-bottom: 30px;
}

#footer .socials-icon .social-button {
    background: #FFFFFF;
    color: #111A3F;
    border-radius: 50px;
    margin-right: 20px;
    text-decoration: none;
    width: 40px;
    height: 40px;
    line-height: 43px;
    text-align: center;
    transition: transform .2s ease-in-out;
}

#footer .socials-icon .social-button:hover {
    transform: translateY(-3px);
}

#footer .socials-icon .social-button i {
    display: block;
    margin: 0;
    font-size: 20px;
}

#footer .footer-title {
    margin-top: 10px;
    font-weight: bold;
    font-size: 24px;
    line-height: 36px;
    letter-spacing: 0.005em;
    color: #FFFFFF;
}

#footer .description {
    margin-top: 60px;
}

#footer .description .text {
    position: relative;
    padding-left: 30px;
    margin-top: 10px;
    font-weight: normal;
    font-size: 16px;
    line-height: 27px;
    letter-spacing: 0.005em;
    color: rgba(255, 255, 255, 0.6);
}

#footer .icon-map:before,
#footer .icon-email:before,
#footer .icon-phone:before,
#highlight .icon-map:before,
#highlight .icon-email:before,
#highlight .icon-phone:before {
    font-family: 'bootstrap-icons', sans-serif;
    position: absolute;
    left: 0;
    margin-top: -1px;
}

#footer .icon-map:before,
#highlight .icon-map:before {
    content: "\f47f";
}

#footer .icon-email:before,
#highlight .icon-email:before {
    content: "\f32e";
}

#footer .icon-phone:before,
#highlight .icon-phone:before {
    content: "\f5c1";
}

#highlight .agent-picture {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 14px;
}

#footer .description .form-row {
    background-color: #FFFFFF;
    border-radius: 16px;
    padding: 6px 4px 6px 0;
    margin: 20px 2px;
    overflow: hidden;
    position: relative;
}

#footer .description .form-row input,
#footer .description .form-row input:hover,
#footer .description .form-row input:focus {
    border-radius: 0;
    border: 0;
    outline: 0;
    height: 40px;
    line-height: 40px;
    padding: 0 7.5em 0 1em;
    box-shadow: unset;
}

#footer .description .form-row button {
    background-color: var(--primary);
    color: #FFF;
    height: 44px;
    padding-top: unset;
    padding-bottom: unset;
    line-height: 44px;
    font-size: 14px;
    font-weight: normal;
    position: absolute;
    right: 4px;
    top: 4px;
    border-radius: 13px;
    transition: background-color .2s ease-in-out;
}

#footer .description .form-row button:hover {
    background-color: #1c6fde;
}

#footer hr {
    margin: 50px auto 20px;
    display: block;
    background: #FFFFFF30;
}

#footer .copyright-text {
    font-weight: normal;
    font-size: 14px;
    line-height: 30px;
    text-align: center;
    color: #FFFFFF60;
}

/* Search page */
#search-form {
    padding: 3em 0 4em;
}

#search-form form {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 25px;
    border-radius: 60px;
    transition: box-shadow .3s ease-in-out;
    background-color: #FFF;
    box-shadow: 3px 3px 15px 5px #22222205;
}

#search-form form:hover {
    box-shadow: 3px 3px 15px 5px #22222210;
}

#search-form form > div {
    width: 100%;
}

#search-form form small,
#search-form form label {
    font-size: 13px;
    letter-spacing: 1px;
    display: block;
    color: #888;
}

#search-form form span,
#search-form form input {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    width: 96%;
    border: 0;
    outline: 0;
    background-color: transparent;
    padding: 0;
}

#search-form form span {
    cursor: pointer;
}

#search-form form input::placeholder {
    color: #000;
}

#search-form form button {
    position: absolute;
    right: 10px;
    background-color: var(--primary);
    border-radius: 30px;
    border: 0;
    color: #FFF;
    width: 56px;
    height: 56px;
    display: inline-block;
    transition: background-color .3s ease-in-out;
}

#search-form form button:hover {
    background-color: #2168d0;
}

#search-form form button > svg {
    width: 30px;
    height: 30px;
    fill: white !important;
    left: 1px;
    position: relative;
}

#search .list-options {
    position: relative;
    font-weight: 500;
    border: solid 1px #CCC;
    line-height: 40px;
    height: 42px;
    padding: 0 16px;
    border-radius: 30px;
    margin-right: 10px;
    cursor: pointer;
    transition: color .3s ease-in-out,
    border-color .3s ease-in-out;
}

#search .list-options.active,
#search .list-options:hover {
    border-color: var(--primary);
    color: var(--primary);
}

#search .list-options.active:after {
    content: "\f633";
    font-family: 'bootstrap-icons';
    font-size: 14px;
    color: #FFF;
    position: absolute;
    right: -6px;
    top: -3px;
    height: 20px;
    width: 20px;
    line-height: 19px;
    text-align: center;
    padding: 0;
    border-radius: 12px;
    background-color: #2f80ed;
    border: solid 1px var(--primary);
}

#search .list-options + .divider {
    background-color: #CCC;
    width: 1px;
    height: 60%;
    margin-right: 10px;
}

#search .list-options.icon-hidden .dropdown-toggle:after {
    content: unset;
}

#search .line {
    background-color: #BBB;
    width: 100%;
}

#search .list-item {
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: solid 1px #DDD;
    display: flex;
    align-items: center;
    overflow: hidden;
    cursor: pointer;
    transition: transform .3s ease-in-out;
}

#search .list-item:hover {
    transform: translateX(5px);
}

#search .list-item:last-child {
    border: 0;
    margin-bottom: 60px;
}

#search .list-item-images .thumbnail {
    width: 220px;
    height: 160px;
    border-radius: 12px;
    object-fit: cover;
}

#search .list-item hr {
    margin: 8px 0;
    display: block;
    width: 50px;
    background-color: #AAA;
}

#search .list-item-text svg {
    position: relative;
    top: -2px;
}

#search .list-item-text .badge {
    height: 22px;
    line-height: 22px;
    font-size: 13px;
    font-weight: normal;
    letter-spacing: 1px;
    padding: 0 .80em;
    opacity: .8;
}

#search .list-maps > #map,
#overview .list-maps > #map {
    border-radius: 12px;
    position: sticky;
    top: 10px;
}

#search.wishlist .list-item {
    border: 0;
    margin-bottom: 30px;
}

/* Detail page or property */
#slider .lightSlider {
    height: 420px !important;
}

#slider .lslide img {
    height: 420px !important;
    object-fit: cover;
}

#overview {
    padding: 2em 0 4em;
}

#overview .main-content {
    margin-bottom: 2em;
}

#overview .main-content svg {
    position: relative;
    top: -2px;
}

#overview .text-price-desc {
    font-size: .8rem;
    color: #000000DD;
    margin-left: 6px;
    margin-bottom: -7px;
}

#overview .table-row tbody {
    margin-top: 10px;
}

#overview .table-row .property-attr {
    border-bottom: 1px dashed #ccc;
    height: 100%;
    padding-top: 6px;
    text-transform: capitalize;
    display: block;
}

#overview .table-row .label-block {
    display: block;
    margin: 0;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
}

#overview .table-row .value-block,
#overview p.value-block {
    font-size: 15px;
    line-height: 1.6;
    padding: 0 0 6px;
    display: block;
    color: #000;
    font-weight: 600;
}

#overview .right-content {
    position: sticky;
    top: 10px;
    border-radius: 16px;
    padding: 25px 15px;
    background-color: #FFFFFFCC;
    box-shadow: 2px 10px 30px #22222205;
}

#overview .right-content .agent-detail {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#overview .right-content .agent-detail .form-control,
#overview .right-content .agent-detail .btn-outline-primary {
    font-size: 14px !important;
}

#overview .right-content .agent-picture {
    object-fit: cover;
    border: solid 1px #EEE;
    padding: 2px;
    width: 100px;
    height: 100px;
    border-radius: 50px;
    box-shadow: 2px 10px 30px #22222210;
}

#overview .right-content .background {
    display: inline-block;
    color: #FFF;
    border: 0;
    font-size: 15px;
    outline: 0;
    height: 38px;
    line-height: 38px;
    padding: 0 30px;
    margin-bottom: 6px;
    border-radius: 12px;
    cursor: pointer;
    transition: all .2s ease-in-out;
}

#overview .btn-wish,
#overview .btn-share {
    font-size: 18px;
    line-height: 40px;
    height: 40px;
    width: 40px;
    text-align: center;
    padding: 0;
}

#overview .dropdown-toggle::after {
    content: "";
}

#overview .sold {
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0.8px;
    color: var(--bs-danger);
    border: solid 2px var(--bs-danger);
    line-height: 30px;
    padding: 0 6px;
    position: relative;
    top: -2px;
    transform: scale(.9);
}

#highlight {
    color: #FFF;
    background-color: var(--primary);
    padding: 6em 0;
}

#content .accordion-item:last-of-type .accordion-button.collapsed,
#content .accordion-item:last-of-type {
    border-bottom-right-radius: 12px;
    border-bottom-left-radius: 12px;
    overflow: hidden;
}

#content .accordion-item:first-of-type .accordion-button,
#content .accordion-item:first-of-type {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    overflow: hidden;
}

#content .accordion-button {
    border-radius: 12px;
    box-shadow: unset;
}

#content .accordion-button:not(.collapsed) {
    border-radius: unset;
}

#content .article-list img {
    width: 100%;
    height: 200px;
    border: 0;
    padding: 0;
}

/* Rating */
.rating {
    display: flex;
    align-items: center;
}

.rating i {
    font-size: 20px;
    margin-right: 7px;
    color: #EEE;
}

.rating i.check,
.rating-list .rating i.check {
    color: #FFB801;
}

.rating-list {
    margin-bottom: 5px;
    padding: 10px 0;
    display: flex;
    align-items: start;
    cursor: default;
}

.rating-list > img {
    border: solid 1px #DDD;
    padding: 2px;
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.rating-list > .d-flex {
    border: solid 1px #E5E5E5;
    background-color: #f9f9f9;
    width: 100%;
    padding: 10px 14px 15px;
    border-radius: 4px 14px 14px 14px;
}

.rating-list .rating i {
    font-size: 15px;
    color: #777;
}

.rate {
    float: left;
    height: 30px;
}

.rate:not(:checked) > input {
    position: absolute;
    top: -9999px;
}

.rate:not(:checked) > label {
    float: right;
    width: 1em;
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
    margin-right: 6px;
    font-size: 24px;
    color: #DDD;
}

.rate:not(:checked) > label:before {
    font-family: 'bootstrap-icons', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    content: "\f586";
}

.rate > input:checked ~ label {
    color: #ffc700;
}

.rate:not(:checked) > label:hover,
.rate:not(:checked) > label:hover ~ label {
    color: #deb217;
}

.rate > input:checked + label:hover,
.rate > input:checked + label:hover ~ label,
.rate > input:checked ~ label:hover,
.rate > input:checked ~ label:hover ~ label,
.rate > label:hover ~ input:checked ~ label {
    color: #c59b08;
}

/* Discuss */
.discuss-list {
    margin-bottom: 5px;
    padding: 10px 0;
    display: flex;
    align-items: start;
    cursor: default;
}

.discuss-list.child,
.form-discuss-respons.child {
    margin-left: 70px;
}

.discuss-list > img {
    border: solid 1px #DDD;
    padding: 2px;
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.discuss-list > .d-flex {
    border: solid 1px #E5E5E5;
    background-color: #f9f9f9;
    width: 100%;
    padding: 10px 14px 15px;
    border-radius: 4px 14px 14px 14px;
}

.discuss-list .badge {
    padding: 0.25em 0.6em 0.32em;
    top: -1px;
    position: relative;
    border-radius: 7px;
    letter-spacing: 1px;
    color: #FFFFFFCC;
}

/* Pagination li */
.pagination li {
    display: inline-block;
    padding: 0;
    margin-right: 8px;
    border-radius: .55rem;
    background-color: transparent;
    border: solid 2px #D2D2D2;
    box-sizing: border-box;
    transition: all .3s linear;
}

.pagination li > a {
    position: relative;
    height: 2.2rem;
    min-width: 2.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--textBlack);
    font-size: 1rem;
    font-weight: bold;
    line-height: 1rem;
    cursor: pointer;
    transition: color .15s ease, background-color .15s ease, border-color .15s ease, box-shadow .15s ease;
}

.pagination-sm {
    outline: 0;
    position: relative;
    height: 2.2rem;
    min-width: 2.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin-right: 8px;
    border-radius: .55rem;
    background-color: transparent;
    border: solid 2px #D2D2D2;
    color: var(--textBlack);
    font-size: 1rem;
    font-weight: bold;
    line-height: 1rem;
    box-sizing: unset;
    transition: color .15s ease, background-color .15s ease, border-color .15s ease, box-shadow .15s ease;
}

.pagination li:hover,
.pagination li.active,
.pagination-sm:hover {
    border-color: var(--primary);
}

.pagination li.active > a {
    color: var(--primary)
}

.pagination-sm.disabled {
    border: solid 2px #EEE;
    color: #AAAAAA;
}

.pagination-sm.disabled:hover {
    border: solid 2px #EEE;
    color: #AAAAAA;
    cursor: default;
}

/* Jquery Validate */
.form-control.error:focus,
.form-select.error:focus {
    box-shadow: 0 0 0 0.2rem rgba(253, 7, 7, 0.2);
    border-color: #fe8686;
}

label.error {
    position: relative;
    margin: 5px 0 10px 0;
    font-size: 12px;
    color: #c32c27;
    letter-spacing: 0;
    text-transform: none;
    text-align: left;
    display: block;
    transform: none !important;
}

label.error {
    position: absolute;
    top: -3px;
    right: 0;
    left: unset;
}

select + label.error {
    right: 23px;
}

/* Custom css air datepicker */
#datepickers-container {
    z-index: 9999;
}

.form-control.datepicker-here[readonly] {
    background-color: #FFF;
}

/* Custom css bootstrap */
.btn {
    border-radius: 12px;
    font-family: inherit;
    font-size: 15px;
    height: 40px;
    padding-left: 20px;
    padding-right: 20px;
}

.btn-auto {
    height: unset;
}

.form-label {
    font-weight: bold;
}

.form-control,
.form-select {
    font-size: 15px;
    border-radius: 12px;
    border-color: #E5E5E5;
}

.form-control:hover,
.form-select:hover {
    border-color: var(--primaryLight);
}

.form-control:focus,
.form-select:focus {
    box-shadow: 0 0 0 0.20rem rgba(13, 110, 253, 0.20);
}

.form-control[readonly] {
    background-color: unset;
}

.form-select {
    color: #6C757D;
    transition: all .15s ease-in-out;
}

.form-floating > .form-control,
.form-floating > .form-select {
    border-radius: 10px;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
    transform: scale(0.80) translateY(-.65rem) translateX(.15rem);
}

.input-group-text {
    border: 1px solid #E5E5E5;
    border-radius: 12px;
}

.badge {
    padding: .25em .4em .32em;
}

.modal-content {
    border-radius: 10px;
}

.modal-body h6 {
    line-height: 1.6;
}

.toast {
    width: auto;
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1em;
    border-radius: 10px;
    background-color: #FFF;
    overflow: hidden;
    z-index: -1;
}

.toast.show,
.toast.hide {
    z-index: 1111;
}

.toast-body {
    padding: 1em 2em 1em 1.6em;
}

.toast .btn-close {
    width: 5px;
    height: 5px;
    box-shadow: none;
}

.toast-body:before {
    content: "";
    width: 6px;
    height: 42px;
    background-color: var(--primary);
    border-radius: 6px;
    position: absolute;
    left: 6px;
    top: 5px;
}

.danger .toast-body:before {
    background-color: var(--secondaryRed);
}

.warning .toast-body:before {
    background-color: var(--secondaryYellow);
}

.success .toast-body:before {
    background-color: var(--primaryGreen);
}

.primary .toast-body:before {
    background-color: var(--primary);
}

.dropdown-menu {
    margin-top: 10px;
    border-radius: 12px;
    border-color: #00000010;
    box-shadow: 1px 2px 20px 5px #00000010;
}

.dropdown-menu li .dropdown-item,
.dropdown-menu li.dropdown-item {
    font-size: 15px;
    padding: 0 1rem;
    height: 40px;
    line-height: 40px;
    border-bottom: solid 1px #f6f6f6;
    cursor: pointer;
}

.dropdown-menu li:last-child .dropdown-item,
.dropdown-menu li.dropdown-item:last-child {
    border: 0;
}

.dropdown-item:focus, .dropdown-item:hover {
    color: #FFF;
    background-color: var(--primary);
}

.dropdown-toggle::after {
    content: "\f282";
    border: 0;
    font-family: 'bootstrap-icons';
    position: absolute;
    font-size: 10px;
    margin-top: 4px;
    margin-left: 6px;
}

.offcanvas {
    overflow-y: auto;
    overflow-x: hidden;
}

/* Animation button */
.btn-loading > .bi-arrow-clockwise::before,
.btn-loading > .bi-dash-circle-dotted::before {
    animation: spin 2s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

/* Custom simplelightbox */
.sl-overlay {
    z-index: 1061 !important;
    background: #000 !important;
}

.sl-wrapper {
    z-index: 1062 !important;
}

.sl-wrapper .sl-close,
.sl-wrapper .sl-navigation button {
    color: #FFF !important;
}

.sl-wrapper .sl-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 10px #33333320;
}

.sl-wrapper .sl-image .sl-caption {
    padding: 10px 20px !important;
    background: rgba(0, 0, 0, 0.4) !important;
    border-radius: 20px
}

.sl-wrapper .sl-counter {
    color: #FFF !important;
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 0.7rem;
        padding-left: 0.7rem;
    }

    .navbar-expand-lg .navbar-nav .nav-link.dropdown-toggle {
        padding-right: 1.3rem;
    }
}

@media (max-width: 576px) {
    .navbar-toggler {
        padding: 0.25rem;
        border-radius: 8px;
    }

    .navbar-toggler:focus {
        text-decoration: none;
        box-shadow: 0 0 0 0.20rem #0a53be40;
    }

    .navbar-collapse {
        margin-top: 10px;
    }

    .navbar-light .navbar-nav .nav-item {
        text-align: center;
    }

    .navbar-light .navbar-nav .nav-link {
        display: inline-block;
    }

    .navbar-right {
        margin-top: 10px;
        padding-top: 15px;
        border-top: solid 1px #EEE;
    }

    #banner h1,
    #feature h1 {
        font-size: 1.6rem;
    }

    #banner .carousel-item {
        text-align: center;
    }

    #banner .carousel-item img {
        margin-left: auto;
        margin-right: auto;
        width: 100%;
    }

    #banner form {
        width: 100%;
    }

    #banner .wrap-top {
        position: unset;
        top: unset;
        padding-bottom: 40px;
    }

    #testimonials .carousel-inner p {
        width: 100%;
    }

    #testimonials .carousel-inner p:before {
        margin-top: -55px;
        margin-left: -30px;
    }

    #app {
        padding: 4em 0;
        text-align: center;
    }

    #footer .footer-logo {
        margin: 0 auto;
        display: inherit;
    }

    #footer .socials-icon {
        justify-content: center;
    }

    #footer .description {
        margin: 10px 0 30px;
    }

    /* Search */
    #search-form form {
        flex-direction: column;
        margin: 0 20px !important;
        width: calc(100% - 40px);
        border-radius: 16px;
    }

    #search-form form > div {
        margin-bottom: 18px;
    }

    #search-form form > div:nth-child(5) {
        margin-bottom: 5px;
    }

    #search-form form button {
        bottom: 10px;
        width: 50px;
        height: 50px;
    }

    #search .list-options,
    #search .list-options + .divider {
        display: none;
    }

    #search .list-options:nth-child(5),
    #search .list-options:nth-child(6) {
        display: inline-block;
    }

    #search .list-item {
        flex-direction: column;
        flex-wrap: wrap;
    }

    #search .list-item-images {
        margin: 0 !important;
        width: 100%;
    }

    #search .list-item-images .thumbnail {
        width: 100%;
        height: 200px;
    }

    #search .list-item-text {
        width: 100%;
        margin-top: 10px;
        font-size: 1.1em;
    }

}