/* font-family: 'Poppins', sans-serif;
font-family: 'Rubik', sans-serif; */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* outline: 1px solid red; */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}
html, body {
    height: var(--full-height);
    overflow-x: hidden;
}
body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: #7c7c7d;
    /* line-height: 1.3;
    letter-spacing: 0.5px; */
}
a {
    color: #3C3C3C;
    text-decoration: none;
    transition: all .3s;
}
a:hover {
    opacity: 80%;
}
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: #d1d1d132;
    /* box-shadow: inset 0 0 0 2px white; */
    /* overflow: hidden; */
}
::-webkit-scrollbar-thumb {
    background: #A3A7AB;
    border-radius: 7px;
}
::-webkit-scrollbar-thumb:hover {
    background: #A3A7AB;
}

input {
    touch-action: manipulation !important;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 30px;
}
.container-2 {
    padding: 0 90px;
}
.container-padding {
    padding: 0 70px;
}
.bg-click {
    display: none;
}
.search-mobile-btn-bg {
    display: none;
}

/* ____________________________ HEADER _____________________________ */
.linie-header {
    width: 100%;
    height: 1px;
    background-color: #B08364;
    margin: 15px 0 15px;
    display: none;
}
.header-container {
    display: flex;
    flex-direction: column;
    position: relative;
    padding-top: 10px;
    max-width: 1600px;
    margin: 0 auto;
    padding-bottom: 15px;
}
body.sticky .header-container-sticky-in {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    height: 175px;
}
body.sticky .header-container-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background-color: #fff;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
.menu-mobile-contact-container {
    display: none;
}
.menu-contact-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    height: 75px;
    border-bottom: 1px solid #BD9476;
}
.menu-contact-container > :last-child {
    margin-left: auto;
}
.mail,
.whatsapp,
.phone{
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 10px;
}
.mail-img {
    background: url('/siteStorage/icons/mail-outline.svg') center no-repeat;
    width: 15px;
    height: 11px;
}
.whatsapp-img {
    background: url('/siteStorage/icons/whatsapp.svg') center no-repeat;
    width: 15px;
    height: 15px;
}
.phone-img {
    background: url('/siteStorage/icons/phone.svg') center no-repeat;
    width: 9px;
    height: 15px;
}
.phone {
    background: #704324;
    padding: 0 22px;
    height: 45px;
    border-radius: 5px;
}
.phone-text {
    color: #fff;
    font-size: 13px;
    font-family: 'Rubik';
}
.mail-text,
.whatsapp-text {
    font-size: 14px;
    font-weight: 400;
    color: #212121;
    font-family: 'Rubik';
}
.menu-mobile-btn {
    display: none;
}
.menu-mobile-btn-line {
    width: 100%;
    height: 3px;
    border-radius: 100px;
    background-color: #704324;
    /* margin: 6px 0; */
    transition: 0.4s;
}

.menu-link-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2%;
    height: 75px;
}
.menu-link {
    font-size: 14px;
    font-weight: 500;
    color: #212121;
    font-family: 'Rubik';
}
.menu-link.active {
    color: #704324;
}

a.menu-logo {
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    width: 265px;
    height: 150px;
    background: #fff;
}
a.menu-logo:hover {
    opacity: 1;
}
.menu-logo-img {
    background: url('/siteStorage/icons/logo-header.svg') center no-repeat;
    width: 100%;
    height: 100%;
}


/* ____________________________ HOME _____________________________ */
.home-banner {
    display: flex;
    flex-direction: row;
    align-items: center;
    background: #170600;
    justify-content: space-around;
    height: 600px;
    border-radius: 10px;
    margin-top: 16px;
    padding: 0 20px;
    position: relative;
    overflow: hidden;
}
.home-banner-img {
    /* background: url('/siteStorage/images/phonix-logo.webp') center no-repeat; */
    width: 500px;
    height: 530px;
    align-self: flex-start;
    background-size: cover;
}
.home-banner-img-absolute {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    opacity: 0.6;
    object-fit: cover;
}
.home-banner-text {
    max-width: 410px;
    z-index: 200;
}
.home-banner-text h1 {
    font-size: 21px;
    font-family: 'Rubik';
    font-weight: 500;
    color: #fff;
    margin-bottom: 19px;
}
.home-banner-text p {
    font-size: 15px;
    font-weight: 300;
    color: #fff;
}
.search-home-container {
    width: calc(100% - 80px);
    min-height: 115px;
    background: #fff;
    border: 1px solid #B8B8B8;
    margin-top: -66px;
    margin-left: 40px;
    margin-bottom: 31px;
    padding: 30px;
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}
.search-select-container {
    flex: 1;
}
.search-no-home-p {
    display: none;
}
.search-select-title {
    font-size: 15px;
    font-weight: 400;
    font-family: 'Rubik';
    color: #170600;
    margin-bottom: 15px;
}
.select2-container {
    width: 100% !important;
}
.select2-container .select2-selection--single {
    border: 1px solid #704324 !important;
    border-radius: 5px !important;
    height: 40px !important;
}
.select2-container .select2-selection--single .select2-selection__rendered {
    color: #717171 !important;
    font-size: 13px !important;
    font-family: 'Rubik' !important;
    line-height: 38px !important;
    padding-left: 10px !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 6px !important;
}
.search-button-container {
    display: flex;
    align-items: flex-end;
    height: 73px;
}
.search-button {
    font-size: 15px;
    font-family: 'Rubik';
    color: #fff;
    background-color: #704324;
    border-radius: 5px;
    border: none;
    width: 150px;
    height: 40px;
    align-self: flex-end;
}
.select2-results__option {
    font-size: 13px !important;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #B08364 !important;
}
.select2-dropdown {
    border: 1px solid #704324 !important;
    border-radius: 5px !important;
    overflow: hidden !important;
}

.home-title-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 30px;
}
/* .home-title-container {} */
.home-title-h2 {
    font-size: 24px;
    font-weight: 500;
    font-family: 'Rubik';
    color: #260E00;
    margin-bottom: 7px;
}
.home-text-h2 {
    font-size: 14px;
    font-weight: 300;
    color: #212121;
    max-width: 500px;
}
.filter-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin: 0px 0 15px 0;
}
.filter-btn-container {
    display: flex;
    align-items: center;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
    /* flex-wrap: wrap; */
}
.filter-btn {
    font-size: 11px;
    color: #000000;
    border: 1px solid #704324;
    width: fit-content;
    padding: 3px 16px;
    border-radius: 100px;
    cursor: pointer;
    transition: all .3s;
    flex-shrink: 0;
}
.filter-btn:hover {
    background-color: #FFF7F1;
}
.filter-btn.selected {
    background-color: #704324;
    color: #fff;
}
.see-all-btn {
    font-size: 16px;
    font-family: 'Rubik';
    color: #704324;
    align-self: flex-end;
}
.prop-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 20px;
    column-gap: 20px;
    margin-bottom: 55px;
}
.prop-container.prop-container-expirat {
   /* display: none; */
}
.prop-container {
    height: fit-content;
    border: 1px solid #E5E5E5;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}
.tip-prop {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #B08364;
    padding: 5px 18px;
    text-align: center;
    border-radius: 100px;
    font-size: 12px;
    color: #fff;
}
.prop-img {
    width: 100%;
    /* height: 250px; */
    height: 400px;
    object-fit: cover;
}
.no-prop-img {
    width: 100%;
    /* height: 250px; */
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #E5E5E5;
}
.no-prop-img img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.prop-text-container {
    display: flex;
    flex-direction: column;
    padding: 15px;
    /* gap: 16px; */
}
.prop-name {
    font-size: 13px;
    color: #170600;
    font-weight: 600;
    height: 40px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    white-space: normal;
}
.prop-info-container {
    display: flex;
    flex-direction: column;
    margin: 10px 0 20px;
    /* gap: 10px; */
}
.prop-info {
    display: flex;
    align-items: center;
    gap: 15px;
    height: 35px;
}
.prop-info .text {
    font-size: 12px;
    color: #717171;
}
.prop-info-locatie .img {
    background: url('/siteStorage/icons/pin.svg') center no-repeat;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}
.prop-info-m2 .img {
    background: url('/siteStorage/icons/Layer-2.svg') center no-repeat;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}
.prop-info-data .img {
    background: url('/siteStorage/icons/calendar-minus.svg') center no-repeat;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}
.prop-info-data .img-camere {
    background: url(/siteStorage/icons/box.svg) center no-repeat;
    filter: invert(44%) sepia(7%) saturate(52%) hue-rotate(201deg) brightness(98%) contrast(90%);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}
.prop-btn-container {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
}
.prop-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #704324;
    width: 120px;
    height: 40px;
    border-radius: 5px;
    color: #fff;
    font-size: 14px;
    font-family: 'Rubik';
}
.prop-price {
    font-size: 18px;
    font-weight: 600;
    color: #704324;
}

.about-us-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    align-items: stretch;
    gap: 29px;
    margin-bottom: 70px;
}
.about-us-container {
    background-image:
        linear-gradient( to right bottom, rgba(112, 67, 36, 0.79), rgba(112, 67, 36, 0.79) ),
        url('/siteStorage/images/pexels-ahmed-abdelaziz-453201.jpg');
    background-size: cover;
    background-position: center;
    /* background-color: #704324; */
    border-radius: 10px;
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.about-us-container-fullwidth {
    padding: 50px 70px;
}
.send-prop-container {
    background-color: #B08364;
    border-radius: 10px;
    padding: 30px 25px;
    min-width: 309px;
    width: 32%;
    display: flex;
    flex-direction: column;
}
.about-us-title {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 15px;
    font-family: 'Rubik';
}
.about-us-text {
    font-size: 13px;
    color: #fff;
    margin-bottom: 30px;
}
.about-us-btn {
    font-size: 13px;
    font-family: 'Rubik';
    color: #fff;
    width: 155px;
    height: 40px;
    background-color: #B08364;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-us-send-prop-btn-container {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 15px;
}
.send-prop-btn-container {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 15px;
    justify-content: space-between;
    margin-top: auto;
}
.send-prop-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    font-size: 13px;
    font-family: 'Rubik';
    color: #fff;
    width: 165px;
    height: 40px;
    background-color: #704324;
    border-radius: 5px;
    padding: 0 5px;
}

/* ____________________________ INCHIRIERI _____________________________ */


.small-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #170600;
    height: 200px;
    border-radius: 10px;
    margin: 16px 0 30px;
    padding: 0 70px;
    position: relative;
    overflow: hidden;
}
/* .small-banner.small-banner-litleBig {
    height: 600px;
} */
.small-banner-text {
    max-width: 598px;
    z-index: 200;
}
.small-banner-text h1 {
    font-size: 20px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 10px;
    width: 100%;
}
.small-banner-text p {
    font-size: 14px;
    color: #fff;
    font-weight: 300;
    width: 100%;
}
.small-banner-img {
    width: 200px;
    height: 100%;
}
.small-banner-img-absolute {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    opacity: 0.6;
    object-fit: cover;
}

.rent-container {
    display: flex;
    gap: 25px;
    margin-bottom: 60px;
}
.search-no-home-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 275px;
    height: fit-content;
    padding: 20px;
    border: 1px solid #B8B8B8;
    border-radius: 10px;
    flex-shrink: 0;
}
.search-no-home-container .search-select-container {
    flex: unset;
    width: 100%;
}
.search-no-home-container .search-button {
    width: 100%;
}
.search-mobile-btn {
    display: none;
}
.prop-load-wrapper {
    display: flex;
    flex-direction: column;
    flex: 1;
}
.rent-container .prop-wrapper {
    margin-bottom: unset;
}
.load-more {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 35px auto 0px;
    height: 45px;
    width: 250px;
    border: 1px solid #704324;
    border-radius: 5px;
    font-family: 'Rubik';
    color: #704324;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
}
/* .no-load-more {
    margin: 85px auto 0px;
    height: 45px;
} */

.rent-about-container {
    display: flex;
    justify-content: flex-end;
    /* gap: 25px; */
}
.rent-about-container-margin .container {
    /* margin: 0 -25px; */
    padding: 0;
}
.about-us-wrapper-div-gol {
    width: 275px;
    flex-shrink: 0;
    margin-right: 25px;

}


/* ____________________________ CONTACT _____________________________ */
.contact-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10%;
}
.form-contact-container,
.info-contact-wrapper {
    width: 50%;
}
.form-contact-container .contact-text-detaliu {
    display: none;
}
.contact-text {
    font-size: 14px;
    font-weight: 300;
    color: #170600;
    margin-bottom: 30px;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.field-two-col {
    display: flex;
    align-items: center;
    gap: 20px;
}
.field-two-col .field {
    width: 50%;
}
.field textarea,
.field input {
    width: 100%;
    border: 1px solid #704324;
    outline: none;
    color: #170600 !important;
    font-size: 13px !important;
    font-family: 'Poppins', sans-serif !important;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -webkit-appearance: none;
    padding: 0 15px 0 40px;
    height: 45px;
}
.field.field-mesaj textarea {
    height: 147px; 
    resize: none;
    padding: 18px 15px 18px 40px;
}

.pers-img-1,
.pers-img-2,
.tel-img,
.email-img,
.info-img,
.msg-img {
    position: relative;
}
.pers-img-1::after,
.pers-img-2::after,
.tel-img::after,
.email-img::after,
.info-img::after,
.msg-img::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
}
.pers-img-1::after,
.pers-img-2::after,
.tel-img::after,
.email-img::after,
.info-img::after {
    top: 50%;
    left: 4px;
    transform: translate(50%, -50%);
}
.pers-img-1::after {
    background: url('/siteStorage/icons/person-outline.svg') center no-repeat;
}
.pers-img-2::after {
    background: url('/siteStorage/icons/person-outline.svg') center no-repeat;
}
.tel-img::after {
    background: url('/siteStorage/icons/phone-2.svg') center no-repeat;
}
.email-img::after {
    background: url('/siteStorage/icons/mail-outline-2.svg') center no-repeat;
}
.info-img::after {
    background: url('/siteStorage/icons/info.svg') center no-repeat;
}
.msg-img::after {
    top: 22px;
    left: 13px;
    background: url('/siteStorage/icons/msg.svg') center no-repeat;
}
.detaliu-see-container .field.info-img {
    display: none;
}

.AcceptTermeni {
    display: flex;
    flex-direction: row;
    gap: 11px;
    width: 90%;
    align-items: center;
    margin: 20px 0 26px
}
.AcceptTermeni label {
    font-size: 14px;
    color: #170600;
    font-weight: 300;
}
.AcceptTermeni label a {
    color: #A6510B;
    font-weight: 500;
}
.checkbox-custom {
    display: block;
    position: relative;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    
}
.checkbox-custom input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 20px;
    width: 20px;
}
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    border: 1px solid #707070;
    border-radius: 5px;
}
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    width: 12px;
    height: 12px;
    border-radius: 5px;
    background-color: #704324;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.checkbox-custom input:checked ~ .checkmark {
    border-color:#704324;
}
.checkbox-custom input:checked ~ .checkmark:after {
    display: block;
}
.contact-form-btn input {
    background-color: #704324;
    padding: 0 50px;
    width: 100%;
    height: 45px;
    border-radius: 5px;
    -webkit-border-radius: 5px; /* For iOS  booooorrrraaaattttt*/
    -webkit-appearance: none;
    border: 1px solid #704324;
    font-size: 14px;
    font-family: 'Rubik';
    font-weight: 400;
    color: #fff;
    cursor: pointer;
}
.SendMessage {
    font-size: 16px;
    font-weight: 500;
    margin-top: 10px;
}
.info-contact-container {
    display: flex;
    flex-direction: column;
    gap: 23px;
}
.info-contact-container > a {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}
.info-bg-cl-c {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 100%;
    background-color: #EFC6AA;
    flex-shrink: 0;
}
.info-mail-img {
    width: 15px;
    height: 15px;
    background: url('/siteStorage/icons/mail-outline.svg') center no-repeat;
}
.info-whatsapp-img {
    width: 15px;
    height: 15px;
    background: url('/siteStorage/icons/whatsapp.svg') center no-repeat;
}
.info-phone-img {
    width: 15px;
    height: 15px;
    background: url('/siteStorage/icons/phone-2-black.svg') center no-repeat;
}
.info-address-img {
    width: 15px;
    height: 15px;
    background: url('/siteStorage/icons/pin-line.svg') center no-repeat;
}
.info-contact-container a p {
    font-size: 14px;
    font-family: 'Rubik', sans-serif;
    color: #170600;
    letter-spacing: 2px;
}
.info-contact-container a span {
    font-size: 16px;
    color: #212121;
}
.info-address-text {
    max-width: 300px;
}
/* ____________________________ SERVICII TEXT IMAGINE _____________________________ */
.info-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 20px;
}
.info-container.type-img-left {
    flex-direction: row-reverse;
}
.info-text-container {
    max-width: 600px;
}
.info-text-container.info-text-container-noImg {
    max-width: 100%;
}
.info-img-m.info-img-m-noImg {
    display: none;
}
.title {
    font-size: 22px;
    font-family: 'Rubik';
    color: #260E00;
    font-weight: 500;
    margin-bottom: 16px;
}
.text {
    font-size: 15px;
    color: #260E00;
    font-weight: 400;
}
.info-img-m {
    width: 41%;
    max-height: 460px;
    object-fit: contain;
    border-radius: 5px;
}

.info-title-h3 {
    font-size: 22px;
    font-family: 'Rubik';
    color: #260E00;
    font-weight: 500;
    margin-bottom: 50px;
}
.info-container-mic-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 15px;
    row-gap: 55px;
    margin-bottom: 65px;
}
.info-container-mic {
    display: flex;
    align-items: flex-start;
    gap: 25px;
}
.info-text-container-mic {
    max-width: 600px;
}
.title-mic {
    font-size: 16px;
    font-family: 'Rubik';
    font-weight: 500;
    text-transform: uppercase;
    color: #170600;
    margin-bottom: 15px;
}
.text-mic {
    font-size: 15px;
    color: #212121;
    font-weight: 300;
}
.info-img-mic {
    width: 60px;
    height: 60px;
}
.button-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #704324;
    border: 1px solid #704324;
    font-family: 'Rubik';
    font-size: 13px;
    color: #fff;
    height: 45px;
    width: 190px;
    border-radius: 5px;
    margin-top: 25px;
}
.button-btn.type-btn-no-full {
    color: #704324;
    border: 1px solid #A6510B;
    background-color: transparent;
}
/* ____________________________ DETALIU LOCUINTA _____________________________ */
.page-location-container {
    display: flex;
    align-items: center;
    column-gap: 10px;
    margin: 20px 0 25px;
    flex-wrap: wrap;
}
.page-location-text {
    font-size: 13px;
    color: #704324;
}
.page-location-arrow {
    font-size: 14px;
    color: #717171;
    line-height: 1;
}

.detaliu-title-container {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}
.detaliu-pret-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    flex-shrink: 0;
}
.detaliu-title {
    font-size: 22px;
    font-weight: 600;
    color: #170600;
    max-width: 850px;
}
.detaliu-pret {
    font-size: 24px;
    font-weight: 600;
    color: #704324;
}
.detaliu-pret .tva {
    font-size: 15px;
    font-weight: 600;
    color: #704324;
}
.detaliu-pret-data {
    position: relative;
    padding-left: 34px;
    font-size: 13px;
    color: #717171;
}
.detaliu-pret-data::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background: url('/siteStorage/icons/calendar-minus.svg') center no-repeat;
}
.detaliu-pret-data.mobile,
.ap-location-adresa.mobile {
    display: none;
}

.ap-location-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}
.ap-location-tip {
    background-color: #B08364;
    padding: 5px 18px;
    text-align: center;
    border-radius: 100px;
    font-size: 12px;
    color: #fff;
}
.ap-location-tip.share-btn {
    border: none;
    -webkit-appearance: none;
    padding: 7px 18px;
}
.ap-location-adresa {
    position: relative;
    padding-left: 30px;
    font-size: 16px;
    font-weight: 500;
    color: #704324;
}
.ap-location-adresa::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background: url('/siteStorage/icons/pin.svg') center no-repeat;
    filter: invert(23%) sepia(89%) saturate(372%) hue-rotate(342deg) brightness(50%) contrast(91%);
}

.detaliu-see-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 18px;
}
.detaliu-img-container {
    width: calc(100% - 450px);
    max-height: 800px;
}
.detaliu-img-container-expirat,
.detaliu-img-container-expirat::after,
.detaliu-img-container-expirat::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}
/* .detaliu-img-container-expirat::before {
    content: '';
    background-color: #000;
    opacity: .3;
    z-index: 3;
} */
/* .detaliu-img-container-expirat::after {
    content: 'Proprietate expirata';
    color: #fff;
    opacity: 0.9;
    z-index: 4;
    font-size: 30px;
    font-weight: 600;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -40%);
    width: fit-content;
    height: fit-content;
} */
.detaliu-formContact-open {
    display: none;
}
.detaliu-formContact-container {
    width: 400px;
    flex-shrink: 0;
}
.detaliu-formContact-container .form-contact-container {
    width: 100%;
}
.detaliu-formContact-container .form-contact-container .contact-text {
    display: none;
}
.detaliu-formContact-container .form-contact-container .contact-text-detaliu,
.contact-text-detaliu-expirat {
    display: block;
    font-size: 18px;
    font-weight: 500;
    color: #170600;
    margin-bottom: 30px;
    text-align: center;
    
}
.detaliu-formContact-container .form-contact-container .field-two-col {
    flex-direction: column;
    gap: 20px;
}
.detaliu-formContact-container .form-contact-container .field-two-col .field {
    width: 100%;
}
.detaliu-formContact-container .form-contact-container .AcceptTermeni {
    gap: 15px;
    width: 100%;
    margin: 0px 0 45px;
}

.detalii-generale-wrapper {
    border: 1px solid #704324;
    border-radius: 5px;
    padding: 20px 20px 0 20px;
    margin-bottom: 26px;
    overflow: hidden;
}
.detalii-generale-title {
    font-size: 16px;
    font-weight: 600;
    color: #170600;
    margin-bottom: 18px;
}
.detalii-generale {
    display: flex;
    flex-direction: row;
    margin-bottom: 30px;
}
.detalii-info-wrapper-1,
.detalii-info-wrapper-2 {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 50%;
}
.detalii-info-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
}
.detalii-info {
    display: flex;
    flex-direction: row;
    gap: 10px;
    width: 145px;
}
.detalii-info .text {
    font-size: 14px;
    font-weight: 500;
    color: #170600;
}
.detalii-info-locatie .img{
    width: 18px;
    height: 18px;
    background: url('/siteStorage/icons/pin.svg') center no-repeat;
    filter: invert(23%) sepia(89%) saturate(372%) hue-rotate(342deg) brightness(50%) contrast(91%);
}
.detalii-info-spatiu .img{
    width: 18px;
    height: 18px;
    background: url('/siteStorage/icons/Layer-2-maro.svg') center no-repeat;
}
.detalii-info-tip .img{
    width: 18px;
    height: 18px;
    background: url('/siteStorage/icons/bxs-building-house.svg') center no-repeat;
}
.detalii-info-client .img{
    width: 18px;
    height: 18px;
    background: url('/siteStorage/icons/info.svg') center no-repeat;
}
.detalii-info-camere .img{
    width: 18px;
    height: 18px;
    background: url('/siteStorage/icons/box.svg') center no-repeat;
}
.detalii-info-bai .img{
    width: 18px;
    height: 18px;
    background: url('/siteStorage/icons/bxs-bath.svg') center no-repeat;
}
.detalii-info-etaj .img{
    width: 18px;
    height: 18px;
    background: url('/siteStorage/icons/layersalt.svg') center no-repeat;
}
.detalii-info-text {
    font-size: 14px;
    color: #717171;
}
.detalii-generale-descriere {
    font-size: 16px;
    font-weight: 300;
    color: #170600;
    margin-bottom: 50px;
}

.mapp-prop-style {
    display:block;
    height: 300px;
    margin-top:0;
    width: calc(100% - -40px);
    margin-left: -20px;
}
/* ____________________________ TERMENI SI CONDITII _____________________________ */
.termeni-text-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 22px;
    margin-bottom: 17px;
}
.termeni-text-container .bullet {
    width: 15px;
    height: 15px;
    background-color: #A6510B;
    border-radius: 100px;
    flex-shrink: 0;
}

/* ____________________________ FOOTER _____________________________ */
.footer-bg-color {
    background-color: #0B0B0B;
    width: 100%;
    margin-top: 55px;
}
.footer-link-container {
    display: flex;
    flex-direction: row;
    border-bottom: 1px solid #B08364;
    padding: 35px 35px 55px 35px;
    align-items: flex-start;
    justify-content: space-between;
}
a.footer-logo {
    background: url('/siteStorage/icons/logo-footer.svg') center no-repeat;
    width: 180px;
    height: 98px;
}
a.footer-logo {
    opacity: 1;
}
.footer-link-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.footer-mob-drop {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.footer-link-title {
    font-size: 14px;
    font-weight: 500;
    font-family: 'Rubik';
    color: #B08364;
    margin-bottom: 9px;
}
.footer-link-a {
    font-size: 12px;
    color: #D3D3D3;
}
.footer-rights,
.footer-rights a {
    font-size: 12px;
    color: #B08364;
    text-align: center;
    padding: 30px 0 45px;
}
.google-map {
    width: 100%;
    height: 500px;
    display: none;
}
.google-map.show {
    display: block;
}
.google-map-temporar {
    width: 100%;
    height: 500px;
    background: url('/siteStorage/images/harta-temporara.svg') center no-repeat;
    margin-top: 75px;
    display: none;
}
.google-map-temporar.show {
    display: block;
}


swiper-container {
    width: 100%;
    height: 100%;
}

swiper-slide {
    text-align: center;
    font-size: 18px;
    /*background: #fff;*/
    background: #ccc;
    display: flex;
    justify-content: center;
    align-items: unset;
    border-radius: 7px;
    overflow: hidden;
}

swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


swiper-container {
    width: 100%;
    height: 300px;
    margin-left: auto;
    margin-right: auto;
}

swiper-slide {
    background-size: cover;
    background-position: center;
}

.mySwiper {
    height: 80%;
    width: 100%;
}
.swiper-container-detaliu {
    position: relative;
}


/* .swiper-container-detaliu::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: url(/siteStorage/icons/logo-detaliu.svg) center no-repeat;
    opacity: 0.3;
    z-index: 1;
    pointer-events: none;
} */
.swiper-container-detaliu-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
    object-fit: contain;
}
.mySwiper2 {
    height: 20%;
    box-sizing: border-box;
    padding: 10px 0;
}

.mySwiper2 swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.4;
}

.mySwiper2 .swiper-slide-thumb-active {
    opacity: 1;
}

swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.no-img-swiper-cont {
    border: 1px solid #717171 !important;
}
.no-img-swiper-cont-2 {
    border: 1px solid #717171 !important;
}
.no-img-swiper {
    width: 100px;
    height: 100px;
    object-fit: contain;
}
.no-img-swiper-2 {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.detaliu-img-container .swiper-button-next,
.detaliu-img-container .swiper-button-prev {
    /* Modificați aici stilul butoanelor */
    width: 20px !important;
    height: 20px !important;
    background-color: #000 !important;
    opacity: 1 !important;
    padding: 10px !important;
    border-radius: 50% !important;
}

.detaliu-img-container .swiper-button-next svg,
.detaliu-img-container .swiper-button-prev svg {
    /* Modificați aici stilul SVG-ului butoanelor */
    width: 100% !important;
    height: 100% !important;
    filter: none !important;
}

.mapp {
    overflow: hidden;
    width: 100%;
    height: 400px;
    display: none;
}
.mapp.show {
    display: block;
}
#map {
    height: 100%;
    width: 100%;
}

.lost-prop {
    margin: 70px auto;
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    color: #212121;
}

.detalii-info-container--info-client {
    display: none;
}
.detalii-info-container--info-client.show {
    display: flex;
}