:root {
    --custom-blue: #095A70;
    --custom-yellow: #FFC93C;
    --custom-whites: #F1FAEE;
    --custom-textColor: #484B47;
}

/* custom checkbox */
.custom-checkbox {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: start;
}

.custom-checkbox p {
    margin-bottom: 0;
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    letter-spacing: 0;
    color: #000;
}

.custom-checkbox p a {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 27px;
    letter-spacing: 0;
    color: var(--custom-blue);
    text-decoration: none;
}

.custom-checkbox input {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
}

.custom-checkbox span {
    display: inline-block;
    width: 25px;
    height: 25px;
    aspect-ratio: 1 / 1;
    border: 1px solid var(--custom-blue);
    background-color: #fff;
    margin-right: .5em;
    position: relative;
    cursor: pointer;
}

.custom-checkbox input:checked ~ span {
    background-color: var(--custom-blue);
}

.custom-checkbox span::after {
    display: none;
    content: "";
    position: absolute;
    left: 8px;
    top: 4px;
    width: 7px;
    height: 13px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -ms-transform: rotate(40deg);
    transform: rotate(40deg);
}

.custom-checkbox input:checked ~ span::after {
    display: block;
}
/* end of custom checkbox */

/* navbar */
button.nav-link {
    background-color: transparent;
    border: none;
    outline: none;
}

button.nav-link::after {
    display: none;
}

.navbar .dropdown-menu {
    left: unset;
    right: 30px;
    min-width: 12rem;
    text-align: center;
    border-radius: 0;
}

.navbar .dropdown-menu a {
    color: var(--custom-blue);
    margin: 0 !important;
}

.navbar .dropdown-menu a:hover {
    background-color: transparent;
    color: var(--custom-blue);
}
/* end of navbar */

/* static content */
.static-content h1,
.static-content h2,
.static-content h3,
.static-content h4,
.static-content h5,
.static-content h6 {
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
}

/* .static-content h1 {
    font-size: 35px;
}
.static-content h2 {
    font-size: 32px;
}
.static-content h3 {
    font-size: 30px;
}
.static-content h4 {
    font-size: 25px;
}
.static-content h5 {
    font-size: 22px;
}
.static-content h6 {
    font-size: 19px;
} */

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

.static-content ul {
    columns: 2;
    padding: 0;
}

.static-content li {
    list-style-type: none;
    position: relative;
    margin-bottom: 0.6em;
    padding-left: 45px;
    display: inline-block;
}

.static-content li::before {
    content: "";
    background-color: var(--custom-blue);
    border-radius: 5px;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 3px;
    left: 0;
}
/* end of static content */

/* base stuff */
form label a,
form label a:hover {
    text-decoration: underline;
}

.base_container {
    min-height: 450px;
}

.light.cc_dialog {
    padding: 1em 1.5em !important;
    max-width: 90% !important;
}

.navbar-nav .dropdown-toggle::after,
.hidden {
    display: none;
}

html {
    scroll-behavior: smooth;
}

.navbar-toggler {
    border-color: #8d9aab;
}

form small {
    text-align: left !important;
    color: #f00;
}

a:focus,
a:hover,
a:focus *,
a:hover *{
    text-decoration: none !important;
    color: currentColor;
}
/* end of base stuff*/

/* popup */
.popup-modal {
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 600px;
    /*height: 400px;*/
    height: fit-content;
    max-width: 95%;
    max-height: 95%;
    z-index: 1010;
    box-shadow: 0 0 15px -3px rgba(0,0,0,0.35);
    padding: 1.2em 1em;
    overflow: scroll;
}

/*.popup-modal .popup-content {*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    overflow: auto;*/
/*    padding: 1.2em 1em;*/
/*}*/

.popup-modal #closePopup {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.1em 0.3em;
    cursor: pointer;
    font-size: 25px;
    z-index: 100;
}
/* end of popup */

.navbar-nav .active-link {
    color: #05b2ff;
}

a,
body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: #2b2b2b;
}

a:hover {
    text-decoration: none;
    color: #2b2b2b;
}

header {
    background-color: var(--custom-blue);
}

header .navbar {
    height: 85px;
    justify-content: space-between;
}

.social-block {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 25px;
}

.social-block a {
    margin-right: 30px;
}

.standard-btn {
    background-color: var(--custom-yellow);
    border: 1px solid var(--custom-yellow);
    min-height: 53px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 0 25px;
    font-family: 'Oswald', sans-serif;
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 0;
    border-radius: 10px;
    color: var(--custom-blue);
}

.standard-btn.inv-btn {
    background-color: transparent;
    color: var(--custom-whites);
}

.button-row .inv-btn {
    margin-left: 25px;
}


.button-row {
    display: flex;
    align-items: center;
    padding-right: 25px;
    justify-content: center;
    flex-direction: row;
}

.body-bg {
    background-image: url("../images/body-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

.home-block {
    height: calc(100vh - 85px);
}

.home-block.diff {
    min-height: calc(100vh - 85px);
    height: auto;
}

.home-bigImg {
    height: calc(100vh - 85px);
    width: 100%; 
    object-fit: cover; 
}

.home-title {
    font-family: 'Oswald', sans-serif;
    font-size: 50px;
    font-weight: 700;
    line-height: 50px;
    text-transform: uppercase;
    letter-spacing: 0;
    color: #000000B2;
    position: absolute;
    left: 155px;
    top: 100px;
    width: 750px;
}

.home-bigcol {
    padding-right: 0 !important;
    padding-left: 0 !important;
}

.home-left-div {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 !important;
    height: calc(100vh - 85px);
    overflow: hidden;
}

.home-left-div.smaller {
    align-items: center;
    justify-content: flex-start;
}

.left-subtitle {
    font-family: 'Pacifico', cursive;
    font-size: 38px;
    font-weight: 400;
    line-height: 70px;
    letter-spacing: 0;
    color: #000;
}

.menu-block {
    background-color: #F1FAEE99;
    width: 100%;

}

.menu-block .nav-link {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 600;
    line-height: 44px;
    letter-spacing: 0;
    color: var(--custom-blue);
    padding-left: 25px;
    padding-right: 25px;
    border-bottom: 1px solid #C19653;
}

.menu-block .nav-link:hover,
.menu-block .nav-link:focus,
.menu-block .nav-link.active-link {
    border-bottom: 2px solid #095A70;
}

.nav-item.current .nav-link {
    border-bottom: 2px solid #095A70;
}

.home-big-logo {
    max-height: 200px;
}

.home-big-logo.smaller {
    max-height: 181px;
    margin-top: 4em;
    margin-bottom: 4em;
}

.smaller .menu-block .nav-link {
    font-size: 22px;
}


.account-col {
    min-height: calc(100vh - 85px);
    display: flex;
    align-items: center;
}

.account-col.higher {
    margin-top: 8em;
    margin-bottom: 8em;
}

.main-account-div {
    background-color: #F1FAEE;
    width: 100%;
    padding: 2em 11em 4em 11em;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 30px;
}

.main-account-div .home-big-logo {
    margin-top: -100px;
}

.account-title {
    font-family: Oswald, serif;
    font-size: 50px;
    font-weight: 700;
    line-height: 74px;
    letter-spacing: 0;
    color: var(--custom-textColor);
    text-transform: uppercase;
}

.account-form {
    display: flex;
    width: 100%;
    flex-direction: column;
    padding-top: 1.5em;
    align-items: center;
}

.cw-label {
    padding-bottom: 0;
    padding-left: 15px;
    color: var(--custom-blue);
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: 0;
    margin-bottom: 1px;
}

.cw-control {
    background-color: #FFFFFFB2;
    border: 2px solid #095A70;
    min-height: 57px;
    border-radius: 10px;
}

.standard-btn.wider {
    padding: 0 65px;
    min-height: 50px;
}

.static-content {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0;
    text-align: left;
    color: #000;
}

.static-content.smaller {
    font-size: 16px;
}

.account-btn-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    width: 100%;
    margin-top: 3em;
}

.account-subtitle {
    font-family: 'Oswald', sans-serif;
    font-size: 30px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: 0;
    text-align: center;
    color: var(--custom-textColor);
}

.design-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    margin-top: 2.5em;
}

.design-btn-block {
    margin-left: 10px;
    margin-right: 10px;
    background: #095A7080;
    border-radius: 10px;
    width: 75px;
    height: 6px;
}

.design-btn-block.active,
.design-btn-block:hover {
    background: #095A70;
    cursor: pointer;
}

.account-subsubtitle {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0;
    margin-top: 1.5em;
    margin-bottom: 0;
    text-align: center;
    color: #484B47;
}

.contact-col {
    background-color: var(--custom-whites);
    padding: 4em !important;
}

.black-title {
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    font-size: 30px;
    font-weight: 500;
    line-height: 44px;
    letter-spacing: 0;
    color: var(--custom-textColor);
}

.blue-title {
    font-family: 'Oswald', sans-serif;
    font-size: 40px;
    font-weight: 600;
    line-height: 44px;
    letter-spacing: 0;
    color: var(--custom-blue);
}

.extra-leftp {
    padding-left: 3em;
}

.contacts-title {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 33px;
    letter-spacing: 0.02em;
    color: var(--custom-textColor);
    text-transform: uppercase;
    margin-top: 2em;
}

.extra-padding {
    padding-left: 9em;
    padding-right: 3em;
}

footer {
    background-color: var(--custom-blue);
    padding-top: 2em;
    padding-bottom: .5em;
}

.footer-logo {
    padding-left: 2em;
    display: flex;
    flex-direction: column;
}

.footer-logo img {
    margin-bottom: 12px;
}

.footer-aszf-link {
    font-family: 'Poppins', sans-serif;
    font-size: 21px;
    font-weight: 400;
    letter-spacing: 0;
    text-align: left;
    line-height: 1;
    color: var(--custom-whites);
}

.footer-link:hover,
.footer-link:focus,
.footer-aszf-link:hover,
.footer-aszf-link:focus {
    color: var(--custom-yellow);
}

.footer-link {
    font-family: 'Poppins', sans-serif;
    font-size: 21px;
    font-weight: 300;
    letter-spacing: 0;
    text-align: left;
    line-height: 1;
    color: var(--custom-whites);
    display: flex;
    width: fit-content;
    margin-bottom: 9px;
}

.contact-elem {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
}

.contact-elem a,
.contact-elem {
    font-family: 'Poppins', sans-serif;
    font-size: 19px;
    font-weight: 300;
    letter-spacing: 0;
    text-align: left;
    line-height: 1;
    color: var(--custom-whites);
}

.contact-elem span {
    width: 150px;
    font-family: 'Poppins', sans-serif;
    font-size: 19px;
    font-weight: 600;
    line-height: 38px;
    letter-spacing: 0;
    text-align: left;
    color: var(--custom-whites);
}

.allrights {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 500;
    line-height: 38px;
    letter-spacing: 0;
    text-align: left;
    color: var(--custom-whites);
}

.allrights a {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 500;
    line-height: 38px;
    letter-spacing: 0;
    color: var(--custom-whites);
    text-align: right;
}

.allrights a:hover,
.allrights a:focus {
    color: var(--custom-yellow);
}

.bottom-infos {
    padding-top: 4em;
}

.desktop-right {
    text-align: right;
}

.blog-item {
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 3em;
}

.blog-item > a {
    width: 45%;
    height: 337px;
}

.blog-item > a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-item .text-part {
    width: 55%;
    min-height: 337px;
    display: flex;
    flex-direction: column;
    padding-left: 25px;
}

.text-part .description {
    height: 182px;
    display: block;
    margin-bottom: 38px;
    overflow: hidden;
    color: #000000B2;
}

.title-line {
    font-family: 'Oswald', sans-serif;
    font-size: 26px;
    font-weight: 500;
    letter-spacing: 0;
    text-align: left;
    color: #000000B2;
    display: flex;
    min-height: 70px;
    align-items: flex-start;
    justify-content: flex-start;
    line-height: 1;
    text-transform: uppercase;
}

.blog-btn-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.blog-btn-row span {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-style: italic;
    font-weight: 300;
    line-height: 27px;
    letter-spacing: 0;
    text-align: right;
    color: #00000099;
}

.pagination {
    padding-top: 2em;
}

.page-link {
    border-color: var(--custom-blue) !important;
    background-color: transparent !important;
    border-radius: 0 !important;
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: 0;
    text-align: center;
    padding: 0 !important;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--custom-whites);
}

.page-link i {
    color: var(--custom-blue) !important;
}

.page-item.active .page-link {
    background-color: var(--custom-blue) !important;
}

.profilom-nav {
    display: flex;
    width: 100%;
    justify-content: center;
    flex-direction: row;
    align-items: center;
}

.profilom-link {
    font-family: 'Oswald', sans-serif;
    font-size: 26px;
    font-weight: 600;
    line-height: 39px;
    letter-spacing: 0;
    text-align: left;
    color: var(--custom-blue);
    border-bottom: 3px solid transparent;
    margin-left: 25px;
    margin-right: 25px;
}

.profilom-link:hover,
.profilom-link:focus,
.profilom-link.active {
    border-bottom: 3px solid var(--custom-yellow);
    color: var(--custom-blue);
}

.profilom-header {
    display: flex;
    width: 100%;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    margin-top: 4em;
}

.profilom-header-title {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
}

.profilom-header-title img {
    margin-left: 15px;
}

.profile-header-avatar {
    height: 192px;
    width: 192px;
    object-fit: cover;
    border-radius: 50%;
}

.profilom-form {
    display: flex;
    flex-direction: column;
}

.design-label,
.profilom-form label {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 300;
    text-transform: uppercase;
    line-height: 27px;
    margin-bottom: 0;
    letter-spacing: 0;
    margin-top: 1.5em;
    text-align: left;
    color: var(--custom-textColor);
}

.readonly-control {
    border: 0;
    border-bottom: 1px solid #AFBDAA;
    background-color: transparent !important;
    border-radius: 0;
    outline: none !important;
    padding-top: 0;
    padding-left: 0;
    font-family: 'Oswald', sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 44px;
    letter-spacing: 0;
    text-align: left;
    color: var(--custom-textColor);
}

.readonly-control.diff-readonly {
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: normal;
}

.text-btn {
    display: flex;
    width: fit-content;
    font-family: 'Oswald', sans-serif;
    font-size: 30px;
    font-weight: 400;
    line-height: 44px;
    letter-spacing: 0;
    text-align: left;
    color: var(--custom-textColor);
}

.text-btn:hover,
.text-btn:focus {
    color: var(--custom-yellow);
}

.first-text-btn {
    margin-top: 2em;
}

.inner-div {
    display: flex;
    flex-direction: column;
    padding-left: 3em;
}

.quotation-request-form {
    width: 500px;
    max-width: 100%;
}

.one-house-inList {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex-direction: column;
    box-shadow: 0 10px 10px 0 #00000040;
    margin-top: 2em;
    border-radius: 15px;
}

.house-list-img {
    width: 100%;
    height: 258px;
    object-fit: cover;
    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
}

.house-list-content {
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
    background-color: #fff;
    padding: 15px 25px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.house-area {
    display: flex;
    width: 100%;
    align-items: end;
    justify-content: center;
    height: 31px;
    line-height: 1;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #095A70;
}

.house-list-title {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    height: 60px;
    font-family: 'Poppins', sans-serif;
    font-size: 19px;
    font-weight: 600;
    line-height: 25px;
    letter-spacing: 0;
    text-align: left;
    color: var(--custom-textColor);
}

.icons-row {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    padding-top: 15px;
}

.one-icon {
    width: 33%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.icon-nr {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
    color: var(--custom-textColor);
    margin-top: 15px;
}

.icon-text {
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0;
    text-align: center;
    color: var(--custom-textColor);
}

.price-block {
    display: flex;
    width: 100%;
    text-align: center;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0;
    color: var(--custom-blue);
    margin-top: 20px;
}

.black-text {
    color: var(--custom-textColor) !important;
}

.one-category-inList {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 2em;
}

.one-category-inList img {
    width: 100%;
    object-fit: contain;
    box-shadow: 0 10px 10px 0 #00000040;
}

.category-title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: 0;
    text-align: center;
    color: var(--custom-textColor);
    margin-top: 10px;
}

.nosubscription {
    position: relative;
    display: flex;
    width: 100%;
    margin-top: 1em;
}

.nosubscription .text-block {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: 0;
    display: flex;flex-direction: column;justify-content: center;align-items: center;
    text-align: center;
    color: #000;
    width: 440px;
    position: absolute;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: calc(50% - 70px);
    max-width: 100%;
}

.nosubscription .text-block .btn {
    margin-top: 15px;
}

.empty-house-block {
    width: 100%;
    height: calc(100% - 2em);
    border: 2px solid #095A70;
}

.add-house {
    font-family: 'Oswald', sans-serif;
    font-size: 34px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
    color: var(--custom-blue);
}

.add-house:hover,
.add-house:focus {
    color: var(--custom-yellow);
}

.column-checkbox.custom-checkbox {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    margin-top: 8px;
}

.column-checkbox.custom-checkbox span {
    margin-right: 0;
    margin-top: 8px;
}

.filter-block {
    background-color: #fff;
    border: 1px solid #D0D7CE;
    margin-top: 2em;
    padding-top: 10px;
    padding-bottom: 10px;
}

.filter-title {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 27px;
    letter-spacing: 0;
    text-align: left;
    padding-left: 25px;
    padding-bottom: 10px;
    margin-bottom: 25px;
    border-bottom: 1px solid #D0D7CE;
    color: #000;
}

.filter-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0;
    text-align: left;
    padding-left: 25px;
    color: #000;
    margin-bottom: 5px;
}

.filter-subblock {
    padding-bottom: 15px;
    border-bottom: 1px solid #D0D7CE;
    width: 100%;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    row-gap: 8px;
}

.filter-subblock:last-child {
    border-bottom: 0;
    margin-bottom: 0;
}

.custom-checkbox.smaller p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    color: #000;
}

.custom-checkbox.smaller {
    margin-left: 25px;
}

.custom-checkbox.smaller span {
    width: 14px;
    height: 14px;
    border-color: #D0D7CE;
    border-radius: 2px;
}

.service-icons {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
}

.service-icons img {
    margin-right: 35px;
}

.add-input-block {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
}

.one-add-input {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin-right: 15px;
}

.one-add-input .label {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 0;
    text-align: left;
    color: var(--custom-textColor);
    padding-left: 15px;
}

.add-input-data {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    background-color: #fff;
    border: 1px solid #095A70;
    border-radius: 5px;
    padding: 5px;
}

.add-input-data input {
    width: 60px;
    text-align: center;
    border: 0;
    outline: none !important;
    font-family: 'OSwald', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0;
    color: var(--custom-textColor);
}

.add-input-data input.date-input {
    width: 140px;
}

.best-offer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    background-color: #fff;
    border: 1px solid #095A70;
    border-radius: 5px;
    padding: 15px;
    margin-top: 25px;
}

.best-offer-title {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0;
    text-align: left;
    padding-bottom: 5px;
    margin-bottom: 15px;
    border-bottom: 1px solid #095A70;
    color: #000;
    width: 100%;
    display: flex;
}

.date-row {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: normal;
    color: var(--custom-textColor);
    letter-spacing: 0;
    text-align: left;
}

.date-row span {
    font-weight: 400;
    font-size: 14px;
}

.best-offer-info-row {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    text-decoration: underline;
    font-weight: 500;
    line-height: normal;
    color: var(--custom-textColor);
    letter-spacing: 0;
    text-align: left;
}

.price-offer-row {
    margin-top: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: normal;
    color: var(--custom-blue);
    letter-spacing: 0;
    text-align: left;
}

.best-offer-info-row-2 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    color: var(--custom-textColor);
    letter-spacing: 0;
    text-align: left;
    margin-bottom: 35px;
}

.house-profile-title {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 27px;
    letter-spacing: 0;
    color: var(--custom-textColor);
}

.extra-pp {
    padding-left: 45px;
    padding-right: 45px;
}

.profile-datas .house-area {
    font-size: 18px;
    height: auto;
    line-height: normal;
}

.profile-datas .house-list-title {
    font-size: 24px;
    margin-top: 20px;
    height: auto;
    line-height: normal;
}

.profile-datas .price-block {
    font-size: 20px;
    line-height: normal;
}

.basic-datas {
    display: flex;
    margin-top: 2em;
    flex-direction: column;
    padding-left: 35px;
    margin-bottom: 25px;
}

.basic-datas .house-profile-title {
    font-size: 18px;
}

.basic-datas-row {
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    color: var(--custom-textColor);
    font-size: 14px;
    font-weight: 300;
    line-height: 21px;
    letter-spacing: 0;

}

.basic-datas-row span {
    width: 80px;
    font-weight: 500;
}

.image-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
}

.image-row img {
    height: 175px;
    width: 250px;
    object-fit: cover;
    margin-right: 25px;
}

.images-col {
    padding-top: 4em;
    padding-bottom: 4em;
}

.more-rooms-offer {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    background-color: #fff;
    border: 1px solid #095A70;
    border-radius: 5px;
    padding: 25px;
    margin-top: 25px;
}

.room-offer-indexImg {
    height: 160px;
    width: 160px;
    border-radius: 5px;
    object-fit: cover;
}

.title-desc-block {
    display: flex;
    flex-direction: column;
    padding-left: 25px;
    width: calc(100% - 160px - 300px - 150px);
}

.more-info-block {
    display: flex;
    flex-direction: column;
    padding-top: 10px;
    padding-left: 20px;
}

.add-input-block.smaller {
    margin-top: 10px;
    width: 300px;
}

.add-input-block.smaller .add-input-data img {
    height: 25px;
}

.more-info-room {
    width: 150px;
}

.tab {
    display: none;
}

.sight-item-input span {
    width: 50%;
    padding-left: 15px;
    font-size: 14px;
}

.sight-item-input button {
    background-color: var(--custom-blue);
    width: calc(50% - 0.5em);
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 0.5em 1em;
}

.sight-item-input {
    display: flex;
    column-gap: 1em;
    align-items: center;
    max-width: 450px;
}

.sights-container {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

.remove-sight {
    color: #f00;
    cursor: pointer;
}

.hidden {
    display: none !important;
}

.popup {
    position: fixed;
    top: 120px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 100%;
    padding: 0.7em 1em;
    border-radius: 5px;
    z-index: 101;
    text-align: center;
    background-color: var(--custom-yellow);
}

.home-bigcol {
    overflow: hidden;
}

.one-room-row-edit.profilom-form label {
    margin-top: 0.5em;
}

.fileinput-nodisplay {
    height: 0 !important;
    width: 0 !important;
    opacity: 0;
}

.one-room-img .uploadlabel {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.one-room-img {
    height: 250px;
    width: 220px;
    border-radius: 5px;
    margin-right: 35px;
    background: rgba(247, 247, 247);
    position: relative;
}

.one-room-img img {
    height: 250px;
    width: 220px;
    border-radius: 5px;
    object-fit: cover;
}

.one-room-img .uploadlabel img {
    height: auto;
}

.one-room-row-edit .delete-layer {
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    right: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    justify-content: end;
    padding: 1.5em;
}

.deleteRoom,
.oneFoodRowBtn,
.one-room-row-edit .delete-layer svg {
    cursor: pointer;
}

.item-wrapper form {
    display: none;
}

.item-wrapper.editable .view-mode {
    display: none;
}

.item-wrapper.editable form {
    display: block;
}

.price-input{
    width: 100%;
    display: flex;
    margin-bottom: 20px;
}
.price-input .field{
    display: flex;
    width: 100%;
    align-items: center;
}
.field input{
    width: 100%;
    height: 100%;
    outline: none;
    font-size: 16px;
    border-radius: 5px;
    border: none;
    -moz-appearance: textfield;
}

.field input.input-min {
    text-align: right;
    margin-left: 15px;
}

.field input.input-max {
    text-align: left;
    margin-right: 15px;
}

.price-input .separator{
    width: 100px;
    display: flex;
    font-size: 14px;
    align-items: center;
    justify-content: center;
}
.filter_form .slider{
    height: 5px;
    position: relative;
    background: #ddd;
    border-radius: 5px;
}
.filter_form .slider .progress{
    height: 100%;
    left: 25%;
    right: 25%;
    position: absolute;
    border-radius: 5px;
    background: #095A704D;
}
.range-input{
    position: relative;
}
.range-input input{
    position: absolute;
    width: 100%;
    height: 5px;
    top: -5px;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}
input[type="range"]::-webkit-slider-thumb{
    height: 17px;
    width: 17px;
    border-radius: 50%;
    background: var(--custom-blue);
    pointer-events: auto;
    -webkit-appearance: none;
    box-shadow: 0 0 6px rgba(0,0,0,0.05);
}
input[type="range"]::-moz-range-thumb{
    height: 17px;
    width: 17px;
    border: none;
    border-radius: 50%;
    background: var(--custom-blue);
    pointer-events: auto;
    -moz-appearance: none;
    box-shadow: 0 0 6px rgba(0,0,0,0.05);
}

.nostyle-btn,
button.prev,
button.next {
    background-color: transparent;
    border: none;
}

button.prev,
button.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

button.prev {
    left: -25px;
}

button.next {
    right: -25px;
}

.fav-icon {
    display: flex;
    width: 31px;
    height: 31px;
    background-image: url('../images/empty-heart.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-color: transparent;
    border: none;
    position: absolute;
    top: 10px;
    left: 10px;
}

.fav-icon:hover,
.fav-icon.filled {
    background-image: url('../images/filled-heart.png');
}

.readonly-control:not(:read-only) {
    background-color: #fff !important;
}

.profilom-form.password-change {
    margin-top: 5em;
}

.billing-item {
    font-size: 18px;
}

.quantity-icon {
    visibility: hidden;
}

#map {
    height: 242px;
    margin-top: 10px;
    margin-bottom: 20px;
    width:100%;
}

.map-link {
    font-size: 17px;
}

.map-link:hover {
    text-decoration: underline !important;
}

.lg-sub-html {
    display: none !important;
}

.menu-block .nav-link.submenu {
    font-size: 20px;
    line-height: 30px;
}
/*EOF*/