@charset "UTF-8";
/*** LTR websites ***/
@import url('https://fonts.googleapis.com/css2?family=Pacifico&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');
body {
    direction: ltr;
    text-align: left;
    background-color: #f3f4f6;
    font-family: 'Plus Jakarta Sans', serif;
    color: #000;
}

a {
    text-decoration: none;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
a.active,
a:focus {
    outline: none;
}
a:focus,
a:hover,
a:active {
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    text-decoration: none;
}

button:focus,
button.active {
    outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    font-family: 'Plus Jakarta Sans', serif;
    font-weight: 700;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

ul li {
    list-style: none;
}

p {
    margin: 0;
    padding: 0;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
}

img {
    border-style: none;
    display: inline-block;
    max-width: 100%;
    height: auto;
}

strong,
b,
label {
    font-weight: 700;
}

.max-limit-error {
    display: none;
    color: #c31b1b;
}

.badge {
    padding: 5px;
    text-transform: uppercase;
}

/* borders
/* ------------------------------------------------------------------------ */
.border-all {
    border: 1px solid #dce0e0;
}

.border-bottom {
    border-bottom: 1px solid #dce0e0;
}
.border-top {
    border-top: 1px solid #dce0e0;
}
.border-start {
    border-left: 1px solid #dce0e0;
}
.border-end {
    border-right: 1px solid #dce0e0;
}
.border-none {
    border: none !important;
}

/* buttons
/* ------------------------------------------------------------------------ */
button {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
button:active,
button:hover,
button:focus {
    outline: none !important;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    padding: 0 15px;
    font-weight: 500;
    line-height: 40px;
    white-space: nowrap;
}
.btn:active,
.btn:focus,
.btn.active,
.btn.focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none !important;
}

.btn-light-grey-outlined {
    border-radius: 4px !important;
    background-color: transparent;
    border-color: #dce0e0;
}
.btn-light-grey-outlined:hover {
    color: #fff;
    border-color: #dce0e0;
}

.btn-grey-outlined {
    border-radius: 4px !important;
    background-color: transparent;
    border-color: #dce0e0;
    color: #9ca3af;
}
.btn-grey-outlined:hover {
    background-color: #eaecec;
    color: #768085;
}

.btn-primary-outlined {
    background-color: transparent;
    border: 1px solid;
}
.btn-primary-outlined:hover {
    color: #fff;
}
.btn-primary-outlined:hover:before {
    color: #fff;
}

.btn-secondary-outlined {
    background-color: transparent;
    border: 1px solid;
}
.btn-secondary-outlined:hover {
    color: #fff;
}

.btn-success-outlined {
    color: #28a745;
    background-color: transparent;
    border-color: #28a745;
}
.btn-success-outlined:hover {
    color: #28a745;
    background-color: transparent;
    border-color: #28a745;
    cursor: default;
}

.drag-cell button,
.drag-cell a {
    cursor: move !important;
}

/* forms
/* ------------------------------------------------------------------------ */
.form-control,
.form-select {
    height: 42px;
}

.form-control {
    font-weight: 400;
    border: 1px solid #dce0e0;
}
.form-control .btn {
    background-color: #fff;
    border: 1px solid #dce0e0;
}

.dashboard-search {
    padding-left: 36px;
}

.form-control[type='file'] {
    padding: 7px 12px;
    height: auto;
}

::-webkit-file-upload-button {
    padding: 10px 20px;
    border-radius: 4px;
    background-color: #004274;
    color: #fff;
}

::file-selector-button {
    padding: 10px 20px;
    border-radius: 4px;
    background-color: #004274;
    color: #fff;
}

/* sidebar
/* ------------------------------------------------------------------------ */
.dashboard-sidebar {
    background-color: #002b4b;
    border-right: 1px solid #e5e7eb;
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 240px;
    overflow-y: auto;
    -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sidebar-collapsed .dashboard-sidebar {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.crose-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    top: 10px;
    right: 12px;
    z-index: 100;
}
.crose-btn i {
    color: #fff;
    font-size: 20px;
}

.sidebar-logo {
    position: sticky;
    top: 0;
    background-color: #002b4b;
    z-index: 10;
}
.sidebar-logo .logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    font-size: 24px;
    font-family: 'Pacifico', serif;
    font-weight: normal;
    border-bottom: 1px solid #374151;
    height: 64px;
    padding: 0 24px;
    margin-right: 0px;
}

.sidebar-nav {
    margin-top: 16px;
}

.nav-box {
    margin-bottom: 16px;
}
.nav-box h5 {
    color: #9ca3af;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 12px;
    line-height: 1;
    padding: 2px 24px;
    margin-bottom: 10px;
}
.nav-box ul li a {
    color: #d1d5db;
    padding: 8px 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    border-right: 4px solid transparent;
}
.nav-box ul li a i {
    font-size: 16px;
}
.nav-box ul li a:hover,
.nav-box ul li a.active {
    background-color: #003a64;
    color: #fff;
}
.nav-box ul li a.active {
    border-color: #00aeff;
}

/* header
/* ------------------------------------------------------------------------ */
.header {
    background-color: #fff;
    padding: 4px 24px;
    -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: sticky;
    z-index: 1;
    top: 0;
}

.header-left ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 32px;
}

.menu-btn {
    width: 32px;
    height: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 16px;
}

.vist-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #004274;
    gap: 8px;
    font-size: 16px;
    font-weight: 400;
}

/* header right
/* ------------------------------------------------------------------------ */
.notification-btn {
    position: relative;
    width: 40px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #f3f4f6;
    border-radius: 50%;
}
.notification-btn i {
    color: #9ca3af;
    font-size: 16px;
}
.notification-btn span {
    border-radius: 50%;
    font-size: 12px;
    background-color: #ef4444;
    width: 20px;
    height: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    font-weight: normal;
    border: 2px solid #fff;
    position: absolute;
    top: -2px;
    right: -2px;
}

.user-dropdown {
    border: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    background-color: transparent;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    border-radius: 4px;
}
.user-dropdown .user-img {
    width: 40px;
    border-radius: 50%;
}

/* dashboard right
/* ------------------------------------------------------------------------ */
.dashboard-right {
    margin-left: 240px;
    -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sidebar-collapsed .dashboard-right {
    margin-left: 0;
}

.dashboard-content {
    padding: 24px;
}

/* heading
/* ------------------------------------------------------------------------ */
.heading .heading-text h2 {
    font-size: 24px;
}

/* stats box
/* ------------------------------------------------------------------------ */
.stats-box {
    background-color: #fff;
    padding: 24px;
    -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    border: 1px solid transparent;
    margin: 12px 0;
}
.stats-box .icon-box {
    width: 40px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
}
.stats-box .media {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 16px;
}
.stats-box .media i {
    font-size: 20px;
}
.stats-box h3 {
    font-size: 24px;
    line-height: 1;
}
.stats-box span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 14px;
    gap: 4px;
    margin-top: 12px;
}

/* dropdown
/* ------------------------------------------------------------------------ */
.dropdown-menu {
    -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 0;
    border: 1px solid #f3f4f6;
    border-radius: 4px;
    text-align: left;
}

.dropdown-divider {
    margin: 15px 0 0;
}

/* Properties page
/* ------------------------------------------------------------------------ */
.propertie-list {
    margin-top: 26px;
}
.propertie-list ul {
    padding-bottom: 0px;
}
.propertie-list ul li a {
    padding: 12px 24px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 4px 4px 0 0;
    font-weight: 600;
}
.propertie-list ul li a span {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.propertie-list ul li a:hover {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.propertie-list ul li a.active {
    color: #004274;
    background-color: #fff;
}

/* properties content
/* ------------------------------------------------------------------------ */
.houzez-data-content {
    background-color: #fff;
    -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    border-radius: 0 0 4px 4px;
}

.houzez-table-filters {
    border-bottom: 1px solid #dce0e0;
    border-radius: 4px;
}

.relative {
    position: relative;
}

.dashboard-search-filter span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    left: 12px;
    color: #9ca3af;
    font-size: 14px;
}

.fiter-btn {
    height: 40px;
    background-color: #f3f4f6;
    border-radius: 4px;
    gap: 8px;
    color: #000;
    font-size: 16px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 12px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

/* tables
/* ------------------------------------------------------------------------ */
.table > :not(:last-child) > :last-child > * {
    border-bottom-color: #dce0e0;
}
.table > :not(caption) > * > * {
    padding: 16px;
    background-color: #fff;
}

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

/* sorting
/* ------------------------------------------------------------------------ */
.houzez-sorting p {
    color: #9ca3af;
}
.houzez-sorting .relative {
    width: 129px;
}
.houzez-sorting .form-control {
    font-size: 14px;
    padding: 0 8px;
    width: 100%;
    height: 30px;
}

.sort-arrow {
    position: absolute;
    top: 50%;
    right: 10px;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    font-size: 12px;
}

.pagination ul li a,
.pagination ul li span {
    border: 1px solid #dce0e0;
    border-radius: 4px;
    width: 28px;
    height: 28px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #fff;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 12px;
    color: #000;
    font-weight: normal;
}
.pagination ul li a:hover,
.pagination ul li span:hover {
    background-color: #f3f4f6;
}
.pagination ul li a.active,
.pagination ul li span.active {
    color: #fff;
    background-color: #004274;
}

/* filter dropdown
/* ------------------------------------------------------------------------ */
.dropdown-menu2 {
    -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -4px rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -4px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    padding: 16px;
    border-radius: 4px;
    border: 1px solid #dce0e0;
    margin-top: 8px;
    min-width: 320px;
    width: 100%;
}

.filter-inner .form-group-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
}
.filter-inner p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #9ca3af;
    font-size: 14px;
    line-height: 1;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.filter-inner .form-group {
    margin-bottom: 20px;
}
.filter-inner .form-group:last-child {
    margin: 0;
}
.filter-inner .form-group ul {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 6fr 8px 6fr;
    grid-template-columns: 6fr 6fr;
    gap: 8px;
}
.filter-inner .form-group ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 16px;
    font-weight: normal;
    height: 40px;
}

.apply-btn {
    background-color: #004274;
    color: #fff;
}

.reset-btn {
    border: 1px solid #dce0e0;
    background-color: #fff;
    color: #000;
}

/* dropdown 3
/* ------------------------------------------------------------------------ */
.dropdown-menu3 {
    padding: 4px 0;
    min-width: 192px;
}
.dropdown-menu3 .dropdown-item {
    color: #6b7280;
    font-size: 14px;
    padding: 9px 16px;
    gap: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.dropdown-menu3 .dropdown-item:hover,
.dropdown-menu3 .dropdown-item.active {
    background-color: #f3f4f6;
}

/* offcanvas
/* ------------------------------------------------------------------------ */
.offcanvas {
    background-color: #fff;
    -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -4px rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -4px rgba(0, 0, 0, 0.1);
    width: 480px;
    border: none;
}
.offcanvas.offcanvas-end {
    width: 480px;
    border: none;
}

.offcanvas-body {
    padding: 24px;
}
.offcanvas-body .filter-inner .form-control {
    height: 42px;
}

.offcanvas-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 34px;
}
.offcanvas-head h5 {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    line-height: 1;
}

.close-btn {
    color: #eaecec;
    font-size: 14px;
    line-height: 1;
}
.close-btn:hover {
    color: #6b7280;
}

.filter-inner label.form-check-label {
    font-weight: normal;
}

.image-holder {
    max-width: 100px;
    width: 100%;
    border-radius: 50%;
}
.image-holder img {
    border-radius: 4px;
}

.stats-box span.error-price {
    color: #ef4444;
}

.offcanvas-box {
    margin-bottom: 32px;
}
.offcanvas-box:last-child {
    margin-bottom: 0;
}
.offcanvas-box h4 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 16px;
    color: #000;
}

.offcanvas-lead .offcanvas-head {
    padding: 20px 24px;
    border-bottom: 1px solid #dce0e0;
    position: sticky;
    top: 0;
    margin: 0;
}
.offcanvas-lead .offcanvas-footer {
    padding: 20px 24px;
    border-top: 1px solid #dce0e0;
    position: sticky;
    bottom: 0;
}

.delet-btn {
    color: #ef4444;
}

.result-fund p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    color: #eaecec;
}

/* invoice filter
/* ------------------------------------------------------------------------ */
.houzez-invoice-filter {
    -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    padding: 24px;
    background-color: #fff;
    margin-top: 24px;
}
.houzez-invoice-filter form {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 3fr 16px 3fr 16px 3fr 16px 3fr;
    grid-template-columns: 3fr 3fr 3fr 3fr;
    gap: 16px;
}
.houzez-invoice-filter form .form-group {
    margin: 0;
}

/* membership
/* ------------------------------------------------------------------------ */
.houzez-membership {
    background-color: #fff;
    padding: 24px;
    border-radius: 4px;
    margin: 20px 0 0 0;
}

/* inquiry  
/* ------------------------------------------------------------------------ */
.houzez-inquiry {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 24px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-top: 24px;
}
.houzez-inquiry-right {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: 100%;
    border-radius: 4px;
}

.inquiry-detail {
    background-color: #fff;
    padding: 24px;
    max-width: 332px;
    width: 100%;
}
.inquiry-detail-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 24px;
}
.inquiry-data {
    padding: 24px 24px 0;
    background-color: #fff;
}

/* dashaboard add new property
/* ------------------------------------------------------------------------ */
.dashaboard-snake-nav {
    border-top: 1px solid #dce0e0;
    background-color: #fff;
}
.dashaboard-snake-nav .step-block {
    -ms-flex-preferred-size: calc(100% / 3);
    flex-basis: calc(100% / 3);
    border-bottom: 4px solid #dce0e0;
    padding: 15px 0;
}
.dashaboard-snake-nav .step-block:not(.active) {
    color: #636363;
}
@media (max-width: 767.98px) {
    .dashaboard-snake-nav .step-block {
        padding: 5px;
        font-size: 12px;
    }
}

/* blocks
/* ------------------------------------------------------------------------ */
.block-wrap {
    padding: 30px;
    background-color: #fff;
    border-radius: 4px;
    margin: 12px 0;
}
@media (max-width: 767.98px) {
    .block-wrap {
        padding: 16px;
        margin-top: 0;
    }
}
.block-title-wrap {
    border-bottom: 1px solid #dce0e0;
    margin-bottom: 30px;
    padding-bottom: 30px;
}
@media (max-width: 767.98px) {
    .block-title-wrap {
        padding-bottom: 16px;
        margin-bottom: 16px;
    }
}
.block-title-wrap h2 {
    margin: 0;
    font-size: 18px;
}
@media (max-width: 767.98px) {
    .block-title-wrap h2 {
        font-size: 16px;
    }
}
.block-title-wrap h3 {
    margin: 0;
    font-size: 16px;
}
.block-content-wrap .block-title-wrap {
    margin-top: 40px;
    margin-bottom: 25px !important;
    padding-bottom: 18px;
}
@media (max-width: 767.98px) {
    .block-content-wrap .block-title-wrap {
        padding-bottom: 0;
    }
}
.block-content-wrap p:last-of-type,
.block-content-wrap ul:last-of-type {
    margin-bottom: 0;
}

/* mambership package
/* ----------------------------------------------------------- */
.price-table-module {
    background-color: #fff;
    margin-left: -1px;
}
.price-table-module.featured {
    position: relative;
    z-index: 2;
    -webkit-box-shadow: 0 70px 70px rgba(0, 0, 0, 0.2);
    box-shadow: 0 70px 70px rgba(0, 0, 0, 0.2);
    padding: 50px 0;
    margin-top: -15px;
}
.price-table-title,
.price-table-price,
.price-table-currency {
    font-weight: 500;
}
.price-table-title {
    font-size: 18px;
    line-height: 18px;
}
.price-table-price {
    font-size: 64px;
    line-height: 64px;
    letter-spacing: -4px;
}
@media (max-width: 991.98px) {
    .price-table-price {
        font-size: 40px;
        line-height: 40px;
        letter-spacing: -2px;
    }
}
.price-table-currency {
    font-size: 24px;
}
.price-table-description li i {
    margin-right: 10px;
}

/*!
 * Bootstrap-select v1.13.9 (https://developer.snapappointments.com/bootstrap-select)
 *
 * Copyright 2012-2019 SnapAppointments, LLC
 * Licensed under MIT (https://github.com/snapappointments/bootstrap-select/blob/master/LICENSE)
 */
.bootstrap-select > select.bs-select-hidden,
select.bs-select-hidden,
select.selectpicker {
    display: none !important;
}

.bootstrap-select {
    width: 220px\0;
    vertical-align: middle;
}

.bootstrap-select > .dropdown-toggle {
    position: relative;
    width: 100%;
    text-align: right;
    white-space: nowrap;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.bootstrap-select > .dropdown-toggle:after {
    margin-top: -1px;
}

.bootstrap-select > .dropdown-toggle.bs-placeholder,
.bootstrap-select > .dropdown-toggle.bs-placeholder:active,
.bootstrap-select > .dropdown-toggle.bs-placeholder:focus,
.bootstrap-select > .dropdown-toggle.bs-placeholder:hover {
    color: #999;
    background-color: #fff;
    border: 1px solid #dce0e0;
}

.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-danger,
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-danger:active,
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-danger:focus,
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-danger:hover,
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-dark,
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-dark:active,
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-dark:focus,
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-dark:hover,
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-info,
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-info:active,
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-info:focus,
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-info:hover,
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-primary,
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-primary:active,
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-primary:focus,
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-primary:hover,
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-secondary,
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-secondary:active,
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-secondary:focus,
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-secondary:hover,
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-success,
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-success:active,
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-success:focus,
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-success:hover {
    color: rgba(255, 255, 255, 0.5);
}

.bootstrap-select > select {
    position: absolute !important;
    bottom: 0;
    left: 50%;
    display: block !important;
    width: 0.5px !important;
    height: 100% !important;
    padding: 0 !important;
    opacity: 0 !important;
    border: none;
    z-index: 0 !important;
}

.bootstrap-select > select.mobile-device {
    top: 0;
    left: 0;
    display: block !important;
    width: 100% !important;
    z-index: 2 !important;
}

.bootstrap-select.is-invalid .dropdown-toggle,
.error .bootstrap-select .dropdown-toggle,
.has-error .bootstrap-select .dropdown-toggle,
.was-validated .bootstrap-select .selectpicker:invalid + .dropdown-toggle {
    border-color: #b94a48;
}

.bootstrap-select.is-valid .dropdown-toggle,
.was-validated .bootstrap-select .selectpicker:valid + .dropdown-toggle {
    border-color: #28a745;
}

.bootstrap-select.fit-width {
    width: auto !important;
}

.bootstrap-select:not([class*='col-']):not([class*='form-control']):not(
        .input-group-btn
    ) {
    width: 220px;
}

.bootstrap-select .dropdown-toggle:focus,
.bootstrap-select > select.mobile-device:focus + .dropdown-toggle {
    outline: none !important;
}

.bootstrap-select.form-control {
    margin-bottom: 0;
    padding: 0;
    border: none;
}

:not(.input-group) > .bootstrap-select.form-control:not([class*='col-']) {
    width: 100%;
}

.bootstrap-select.form-control.input-group-btn {
    float: none;
    z-index: auto;
}

.form-inline .bootstrap-select,
.form-inline .bootstrap-select.form-control:not([class*='col-']) {
    width: auto;
}

.bootstrap-select:not(.input-group-btn),
.bootstrap-select[class*='col-'] {
    float: none;
    display: inline-block;
    margin-left: 0;
}

.bootstrap-select.dropdown-menu-right,
.bootstrap-select[class*='col-'].dropdown-menu-right,
.row .bootstrap-select[class*='col-'].dropdown-menu-right {
    float: right;
}

.form-group .bootstrap-select,
.form-horizontal .bootstrap-select,
.form-inline .bootstrap-select {
    margin-bottom: 0;
}

.form-group-lg .bootstrap-select.form-control,
.form-group-sm .bootstrap-select.form-control {
    padding: 0;
}

.form-group-lg .bootstrap-select.form-control .dropdown-toggle,
.form-group-sm .bootstrap-select.form-control .dropdown-toggle {
    height: 100%;
    font-size: inherit;
    line-height: inherit;
    border-radius: inherit;
}

.bootstrap-select.form-control-lg .dropdown-toggle,
.bootstrap-select.form-control-sm .dropdown-toggle {
    font-size: inherit;
    line-height: inherit;
    border-radius: inherit;
}

.bootstrap-select.form-control-sm .dropdown-toggle {
    padding: 0.25rem 0.5rem;
}

.bootstrap-select.form-control-lg .dropdown-toggle {
    padding: 0.5rem 1rem;
}

.form-inline .bootstrap-select .form-control {
    width: 100%;
}

.bootstrap-select.disabled,
.bootstrap-select > .disabled {
    cursor: not-allowed;
}

.bootstrap-select.disabled:focus,
.bootstrap-select > .disabled:focus {
    outline: 0 !important;
}

.bootstrap-select.bs-container {
    position: absolute;
    top: 0;
    left: 0;
    height: 0 !important;
    padding: 0 !important;
}

.bootstrap-select.bs-container .dropdown-menu {
    z-index: 1060;
}

.bootstrap-select .dropdown-toggle .filter-option {
    position: static;
    top: 0;
    left: 0;
    float: left;
    height: 100%;
    width: 100%;
    text-align: left;
    overflow: hidden;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
}

.bs3.bootstrap-select .dropdown-toggle .filter-option {
    padding-right: inherit;
}

.input-group .bs3-has-addon.bootstrap-select .dropdown-toggle .filter-option {
    position: absolute;
    padding-top: inherit;
    padding-bottom: inherit;
    padding-left: inherit;
    float: none;
}

.input-group
    .bs3-has-addon.bootstrap-select
    .dropdown-toggle
    .filter-option
    .filter-option-inner {
    padding-right: inherit;
}

.bootstrap-select .dropdown-toggle .filter-option-inner-inner {
    overflow: hidden;
}

.bootstrap-select .dropdown-toggle .filter-expand {
    width: 0 !important;
    float: left;
    opacity: 0 !important;
    overflow: hidden;
}

.bootstrap-select .dropdown-toggle .caret {
    position: absolute;
    top: 50%;
    right: 12px;
    margin-top: -2px;
    vertical-align: middle;
}

.input-group .bootstrap-select.form-control .dropdown-toggle {
    border-radius: inherit;
}

.bootstrap-select[class*='col-'] .dropdown-toggle {
    width: 100%;
}

.bootstrap-select .dropdown-menu {
    min-width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.bootstrap-select .dropdown-menu > .inner:focus {
    outline: 0 !important;
}

.bootstrap-select .dropdown-menu.inner {
    position: static;
    float: none;
    border: 0;
    padding: 0;
    margin: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.bootstrap-select .dropdown-menu li {
    position: relative;
}

.bootstrap-select .dropdown-menu li.active small {
    color: rgba(255, 255, 255, 0.5) !important;
}

.bootstrap-select .dropdown-menu li.disabled a {
    cursor: not-allowed;
}

.bootstrap-select .dropdown-menu li a {
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.bootstrap-select .dropdown-menu li a.opt {
    position: relative;
    padding-left: 2.25em;
}

.bootstrap-select .dropdown-menu li a span.check-mark {
    display: none;
}

.bootstrap-select .dropdown-menu li a span.text {
    display: inline-block;
}

.bootstrap-select .dropdown-menu li small {
    padding-left: 0.5em;
}

.bootstrap-select .dropdown-menu .notify {
    position: absolute;
    bottom: 5px;
    width: 96%;
    margin: 0 2%;
    min-height: 26px;
    padding: 3px 5px;
    background: #f5f5f5;
    border: 1px solid #e3e3e3;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
    pointer-events: none;
    opacity: 0.9;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.bootstrap-select .no-results {
    padding: 3px;
    background: #f5f5f5;
    margin: 0 5px;
    white-space: nowrap;
}

.bootstrap-select.fit-width .dropdown-toggle .filter-option {
    position: static;
    display: inline;
    padding: 0;
    width: auto;
}

.bootstrap-select.fit-width .dropdown-toggle .filter-option-inner,
.bootstrap-select.fit-width .dropdown-toggle .filter-option-inner-inner {
    display: inline;
}

.bootstrap-select.fit-width .dropdown-toggle .bs-caret:before {
    content: ' ';
}

.bootstrap-select.fit-width .dropdown-toggle .caret {
    position: static;
    top: auto;
    margin-top: -1px;
}

.bootstrap-select.show-tick .dropdown-menu .selected span.check-mark {
    position: absolute;
    display: inline-block;
    right: 15px;
    top: 5px;
}

.bootstrap-select.show-tick .dropdown-menu li a span.text {
    margin-right: 34px;
}

.bootstrap-select .bs-ok-default:after {
    content: '';
    display: block;
    width: 0.5em;
    height: 1em;
    border-style: solid;
    border-width: 0 0.26em 0.26em 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.bootstrap-select.show-menu-arrow.open > .dropdown-toggle,
.bootstrap-select.show-menu-arrow.show > .dropdown-toggle {
    z-index: 1061;
}

.bootstrap-select.show-menu-arrow .dropdown-toggle .filter-option:before {
    content: '';
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid rgba(204, 204, 204, 0.2);
    position: absolute;
    bottom: -4px;
    left: 9px;
    display: none;
}

.bootstrap-select.show-menu-arrow .dropdown-toggle .filter-option:after {
    content: '';
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #fff;
    position: absolute;
    bottom: -4px;
    left: 10px;
    display: none;
}

.bootstrap-select.show-menu-arrow.dropup
    .dropdown-toggle
    .filter-option:before {
    bottom: auto;
    top: -4px;
    border-top: 7px solid rgba(204, 204, 204, 0.2);
    border-bottom: 0;
}

.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle .filter-option:after {
    bottom: auto;
    top: -4px;
    border-top: 6px solid #fff;
    border-bottom: 0;
}

.bootstrap-select.show-menu-arrow.pull-right
    .dropdown-toggle
    .filter-option:before {
    right: 12px;
    left: auto;
}

.bootstrap-select.show-menu-arrow.pull-right
    .dropdown-toggle
    .filter-option:after {
    right: 13px;
    left: auto;
}

.bootstrap-select.show-menu-arrow.open > .dropdown-toggle .filter-option:after,
.bootstrap-select.show-menu-arrow.open > .dropdown-toggle .filter-option:before,
.bootstrap-select.show-menu-arrow.show > .dropdown-toggle .filter-option:after,
.bootstrap-select.show-menu-arrow.show
    > .dropdown-toggle
    .filter-option:before {
    display: block;
}

.bs-actionsbox,
.bs-donebutton,
.bs-searchbox {
    padding: 4px 8px;
}

.bs-actionsbox {
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.bs-actionsbox .btn-group button {
    width: 50%;
}

.bs-donebutton {
    float: left;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.bs-donebutton .btn-group button {
    width: 100%;
}

.bs-searchbox + .bs-actionsbox {
    padding: 0 8px 4px;
}

.bs-searchbox .form-control {
    margin-bottom: 0;
    width: 100%;
    float: none;
}

.bootstrap-select .bs-ok-default:after,
.bootstrap-select .dropdown-toggle::after {
    font-family: 'houzez-iconfont';
    border-style: none;
}

.bootstrap-select .dropdown-toggle::after {
    content: '';
    font-size: 10px;
    font-weight: bold;
}

.bootstrap-select .bs-ok-default:after {
    content: '';
    width: 10px;
    height: 10px;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}

.control-group {
    display: inline-block;
    vertical-align: top;
    background: #fff;
    text-align: left;
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 200px;
    height: 210px;
    margin: 10px;
}

.control {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    cursor: pointer;
    font-size: 18px;
}

.control input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.control__indicator {
    position: absolute;
    top: 2px;
    left: 0;
    height: 20px;
    width: 20px;
    background: #fff;
}

.control--radio .control__indicator {
    border-radius: 50%;
}

.control input:disabled ~ .control__indicator {
    background: #e6e6e6;
    opacity: 0.6;
    pointer-events: none;
}

.control__indicator:after {
    content: '';
    position: absolute;
    display: none;
}

.control input:checked ~ .control__indicator:after {
    display: block;
}

.control.control--checkbox {
    line-height: 22px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
}

.control--checkbox .control__indicator:after {
    left: 8px;
    top: 4px;
    width: 3px;
    height: 8px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.control--checkbox input:disabled ~ .control__indicator:after {
    border-color: #dce0e0;
}

.control--radio .control__indicator:after {
    left: 7px;
    top: 7px;
    height: 6px;
    width: 6px;
    border-radius: 50%;
    background: #fff;
}

.control--radio input:disabled ~ .control__indicator:after {
    background: #fff;
}

.select {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
    width: 100%;
}

.select select {
    display: inline-block;
    width: 100%;
    cursor: pointer;
    padding: 10px 15px;
    outline: 0;
    border: 0;
    border-radius: 0;
    background: #e6e6e6;
    color: #7b7b7b;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.select select::-ms-expand {
    display: none;
}

.select select:hover,
.select select:focus {
    color: #000;
    background: #ccc;
}

.select select:disabled {
    opacity: 0.5;
    pointer-events: none;
}

.select__arrow {
    position: absolute;
    top: 16px;
    right: 15px;
    width: 0;
    height: 0;
    pointer-events: none;
    border-style: solid;
    border-width: 8px 5px 0 5px;
    border-color: #7b7b7b transparent transparent transparent;
}

.select select:hover ~ .select__arrow,
.select select:focus ~ .select__arrow {
    border-top-color: #000;
}

.select select:disabled ~ .select__arrow {
    border-top-color: #ccc;
}

/* forms
/* ------------------------------------------------------------------------ */
.form-control {
    height: 42px;
    font-weight: 400;
    border: 1px solid #dce0e0;
}
.form-control .btn {
    border: 1px solid #dce0e0;
}
.form-control:disabled,
.form-control[readonly] {
    background-color: rgba(220, 224, 224, 0.4);
}

.input-group-text {
    background-color: #fff;
    border: 1px solid #dce0e0;
    width: 42px;
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #eaecec;
}

/* bootstrap select
/* ------------------------------------------------------------------------ */
.dropdown-menu {
    border-color: #dce0e0;
}

.bootstrap-select .dropdown-item {
    padding: 10px 15px;
}
.bootstrap-select .bs-actionsbox {
    padding: 15px 15px 10px;
}
.bootstrap-select .bs-actionsbox .btn-group button {
    font-size: 12px;
    border-color: #dce0e0;
    white-space: nowrap;
}
.bootstrap-select .filter-option-inner {
    line-height: 40px;
}

/* custom radio and checkboxes styles
/* ------------------------------------------------------------------------ */
.control {
    color: #eaecec;
    min-height: 24px;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
}
.control__indicator {
    border: 1px solid #dce0e0;
    border-radius: 2px;
}

.control--checkbox .control__indicator::after {
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
}

.control--radio .control__indicator::after {
    left: 6px;
    top: 6px;
}

.radio-tab {
    padding: 8px 12px;
    margin-bottom: 0;
}
.radio-tab .control__indicator {
    left: auto;
    right: 12px;
    top: calc(50% - 10px);
}
.radio-tab .radio-tab-inner {
    border: 1px solid #dce0e0;
    border-radius: 4px;
}

input[type='radio'],
input[type='checkbox'] {
    margin: 6px 0 0;
}

label.control.control--checkbox.hz-checkbox-0 {
    margin-top: 15px;
}

.houzez-data-table .control--checkbox {
    margin-bottom: 0;
}

/* Lists
/* ------------------------------------------------------------------------ */
.list-lined .list-lined-item {
    border-bottom: 1px solid #dce0e0;
}

.add-new-listing-bottom-nav-wrap {
    border-top: 1px solid #dce0e0;
    position: fixed;
    bottom: 0;
    left: 0;
    margin: 0;
    width: 100%;
    padding: 10px;
    background: #fff;
}
@media (min-width: 992px) {
    .add-new-listing-bottom-nav-wrap {
        left: 240px;
        width: calc(100% - 240px);
    }
}

/* dashaboard content
/* ------------------------------------------------------------------------ */
.dashboard-map-field {
    position: relative;
}
.dashboard-map-field .map_canvas {
    position: relative;
    height: 300px;
}

/* dashaboard property media
/* ------------------------------------------------------------------------ */
.upload-image-counter {
    position: absolute;
    top: 10px;
    right: 16px;
    left: auto;
    font-size: 12px;
    margin-bottom: 0;
    color: #636363;
}

.media-drag-drop {
    position: relative;
    background-color: #eaecec;
    border: 3px dashed #dce0e0;
    text-align: center;
    font-weight: bold;
}
.media-drag-drop span {
    font-weight: normal;
}

.upload-gallery-thumb-buttons {
    border: 1px solid #dce0e0;
}
.upload-gallery-thumb-buttons button {
    color: #000;
    background-color: transparent;
    border-color: transparent;
}

.upload-icon {
    display: inline-block;
    position: relative;
    z-index: 2;
    background-color: #eaecec;
    border: 3px dashed #c1c8c8;
    color: #ced4d4;
    font-size: 24px;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 10px;
    -webkit-box-shadow: -10px 10px 0 #c1c8c8;
    box-shadow: -10px 10px 0 #c1c8c8;
}

/* dashaboard add new property
/* ------------------------------------------------------------------------ */
.dashaboard-snake-nav {
    border-top: 1px solid #dce0e0;
    background-color: #fff;
}
.dashaboard-snake-nav .step-block {
    font-weight: 500;
    -ms-flex-preferred-size: calc(100% / 3);
    flex-basis: calc(100% / 3);
    border-bottom: 4px solid #dce0e0;
    padding: 15px 0;
}
.dashaboard-snake-nav .step-block:not(.active) {
    color: #636363;
    font-weight: 300;
}
@media (max-width: 767.98px) {
    .dashaboard-snake-nav .step-block {
        padding: 5px;
        font-size: 12px;
    }
}

/* front-end submission
/* ------------------------------------------------------------------------ */
.frontend-submission-page .dashaboard-snake-nav {
    margin-bottom: 20px;
}

/* dashaboard admin-property settings
/* ------------------------------------------------------------------------ */
.dashboard-content-block-property-settings label {
    padding-bottom: 0;
}

.menu-edit-property-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
}

/* property-thumb
/* ------------------------------------------------------------------------ */
.price-table-button .control--radio {
    padding: 10px;
}
.price-table-button .control--radio .control__label {
    font-weight: 700;
}
.price-table-button .control--radio .control__background {
    border-radius: 4px;
    border: 1px solid #dce0e0;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}
.price-table-button .control--radio .control__indicator {
    top: 12px;
    left: 12px;
}

.profile-card-wrap {
    position: sticky;
    top: 90px;
}

/* deals
/* ------------------------------------------------------------------------ */
.deals-content {
    position: relative;
}

.deals-table-wrap {
    padding: 10px;
}
@media (min-width: 768px) {
    .deals-table-wrap {
        position: absolute;
        width: 100%;
        margin-left: -25px;
        margin-right: -25px;
        overflow-x: scroll;
        overflow-y: visible;
        padding: 0 30px;
        height: calc(100vh - 132px);
        scrollbar-width: 8px;
    }
    .deals-table-wrap::-webkit-scrollbar {
        width: 8px;
        height: 8px;
    }
    .deals-table-wrap::-webkit-scrollbar-track {
        border-radius: 4px;
    }
    .deals-table-wrap::-webkit-scrollbar-thumb {
        border-radius: 4px;
    }
}

.deals-nav-tab.nav-pills {
    gap: 2px;
}
.deals-nav-tab.nav-pills .nav-link {
    margin: 0;
    border-radius: 0;
    padding: 15px 20px;
    background-color: #ebebeb;
    border-top: 2px solid #ebebeb;
}
@media (max-width: 575.98px) {
    .deals-nav-tab.nav-pills .nav-link {
        font-size: 14px;
        padding: 15px 10px;
    }
}
.deals-nav-tab.nav-pills .nav-link.active-deals {
    border-top: 2px solid #ffc107;
    font-weight: 700;
}
.deals-nav-tab.nav-pills .nav-link.won-deals {
    border-top: 2px solid #28a745;
    font-weight: 700;
}
.deals-nav-tab.nav-pills .nav-link.lost-deals {
    border-top: 2px solid #dc3545;
    font-weight: 700;
}
.deals-nav-tab.nav-pills .nav-link.active.active-deals,
.deals-nav-tab.nav-pills .nav-link.active.won-deals,
.deals-nav-tab.nav-pills .nav-link.active.lost-deals {
    background-color: #fff;
}

.dashboard-label {
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
}

.dashboard-label-small {
    padding: 2px 4px;
    font-size: 10px;
    color: #000;
    background-color: #fff;
    line-height: 1;
    text-transform: uppercase;
}

.image-holder {
    position: relative;
}
.image-holder .dashboard-label-small {
    position: absolute;
    bottom: 4px;
    left: 4px;
    z-index: 2;
    border-radius: 4px;
}

.dashboard-label-featured {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background-color: #fff;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    top: -8px;
    right: -9px;
    z-index: 2;
    border: 1px solid #dce0e0;
}
.dashboard-label-featured img {
    height: 12px;
    width: auto;
}

/* rating
/* ------------------------------------------------------------------------ */
.star .icon-rating {
    width: 14px;
    height: 14px;
    margin-right: 1px;
    background-size: 14px;
}
.star .full-star {
    background-image: url(../../img/full-star.svg);
}
.star .half-star {
    background-image: url(../../img/half-star.svg);
}
.star .empty-star {
    background-image: url(../../img/empty-star.svg);
}

/* loader  
/* ------------------------------------------------------------------------ */
.houzez-hidden {
    display: none;
}

.loader-show {
    display: inline-block;
    margin-right: 5px;
}

span.expire {
    font-size: 12px;
}

.houzez-dashboard-loading {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.65);
}
.houzez-dashboard-loading .dashboard-loading-placeholder {
    width: 100px;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

/* bounce
/* ----------------------------------------------------------- */
@-webkit-keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        -webkit-transform: translateY(0);
    }
    40% {
        -webkit-transform: translateY(-3px);
    }
    60% {
        -webkit-transform: translateY(-3px);
    }
}
@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -webkit-transform: translateY(-3px);
        transform: translateY(-3px);
    }
    60% {
        -webkit-transform: translateY(-3px);
        transform: translateY(-3px);
    }
}
.bounce {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-name: bounce;
    animation-name: bounce;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}

/* spinner
/* ------------------------------------------------------------------------ */
.spinner {
    text-align: center;
}
.spinner > div {
    width: 15px;
    height: 15px;
    background-color: #333;
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.spinner .bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
    0%,
    80%,
    100% {
        -webkit-transform: scale(0);
    }
    40% {
        -webkit-transform: scale(1);
    }
}
@keyframes sk-bouncedelay {
    0%,
    80%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

/* Bootstrap 5 File Input Customization
/* ------------------------------------------------------------------------ */
#csv-file-input {
    font-size: 14px;
    padding: 8px 12px;
}

#csv-file-input::-webkit-file-upload-button {
    padding: 8px 16px;
    margin-right: 10px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    background-color: #004274;
    color: #fff;
    border: none;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

#csv-file-input::file-selector-button {
    padding: 8px 16px;
    margin-right: 10px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    background-color: #004274;
    color: #fff;
    border: none;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

#csv-file-input::-webkit-file-upload-button:hover {
    background-color: #003560;
}

#csv-file-input::file-selector-button:hover {
    background-color: #003560;
}

.btn-full-width {
    width: 100%;
}

/* Bootstrap 5 Dropdown Adjustments
/* ------------------------------------------------------------------------ */
/* Dropdown positioning is handled by Bootstrap 5's .dropdown-menu-end class */

/* Import Page Enhancements
/* ------------------------------------------------------------------------ */
.dashboard-table-file-import {
    border: 1px solid #dce0e0;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 24px;
}

.dashboard-table-file-import thead {
    background-color: #f9fafb;
}

.dashboard-table-file-import thead th {
    font-weight: 600;
    font-size: 14px;
    color: #374151;
    padding: 12px 16px;
    border-bottom: 1px solid #dce0e0;
}

.dashboard-table-file-import tbody td {
    padding: 16px;
    font-size: 14px;
    vertical-align: middle;
}

.dashboard-table-file-import tbody tr:hover {
    background-color: #f9fafb;
}

.dashboard-table-file-import .action-col {
    width: 120px;
    text-align: right;
}

.property-action-menu .dropdown-toggle {
    font-size: 14px;
    padding: 6px 12px;
    line-height: 1.5;
}

.dashboard-content-block {
    background-color: #fff;
    border-radius: 4px;
    padding: 24px;
    margin-bottom: 16px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1),
        0 1px 2px -1px rgba(0, 0, 0, 0.1);
}

.dashboard-content-block h2 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #111827;
}

.dashboard-content-block ol {
    counter-reset: item;
    padding-left: 0;
}

.dashboard-content-block ol li {
    counter-increment: item;
    margin-bottom: 12px;
    padding-left: 32px;
    position: relative;
    color: #4b5563;
    line-height: 1.6;
}

.dashboard-content-block ol li:before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 0;
    background-color: #004274;
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
}

/* File upload form styling */
#csv-file-input {
    border: 2px dashed #dce0e0;
    background-color: #f9fafb;
    padding: 12px;
    transition: all 0.2s ease-in-out;
}

#csv-file-input:hover {
    border-color: #004274;
    background-color: #f3f4f6;
}

#csv-file-input:focus {
    border-color: #004274;
    box-shadow: 0 0 0 3px rgba(0, 66, 116, 0.1);
}

/* Responsive table adjustments */
@media (max-width: 767px) {
    .dashboard-table-file-import,
    .dashboard-table-file-import tbody,
    .dashboard-table-file-import tr,
    .dashboard-table-file-import td {
        display: block;
        width: 100%;
    }

    .dashboard-table-file-import thead {
        display: none;
    }

    .dashboard-table-file-import tr {
        margin-bottom: 16px;
        border: 1px solid #dce0e0;
        border-radius: 4px;
        padding: 16px;
    }

    .dashboard-table-file-import td {
        padding: 8px 0;
        border: none;
    }

    .dashboard-table-file-import td:before {
        content: attr(data-label);
        font-weight: 600;
        display: block;
        margin-bottom: 4px;
        color: #374151;
    }

    .dashboard-table-file-import .action-col {
        text-align: left;
        width: 100%;
    }
}
