:root {
    --drawer-width: 480px;
    --neg-drawer-width: calc(var(--drawer-width) * -1);
}
.property-drawer-wrapper{    
    background: #fff;
    display: block;
    height: 100%;
    left: 100%;
    max-width: 100%;
    position: fixed;
    right: 0;
    top: 0;    
    transform: translateX(0);
    width: var(--drawer-width);
    z-index: 9999;
    transition: transform 0.3s ease-in-out;
    padding: 70px 50px;
    overflow-y: auto;
}

.property-drawer-wrapper.active{
    transform: translateX(var(--neg-drawer-width));
}
.property-drawer-backdrop{
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.property-drawer-backdrop.active{
    opacity: 1;
    visibility: visible;
}

.property-drawer-wrapper .close-drawer-btn{
    position: absolute;
    top: 20px;
    right: 20px;
    width: 24px;
    height: 24px;
    cursor: pointer;
    z-index: 9999;
    transform-origin: center center;
    background-color: transparent;
    transition: all 0.3s ease-in-out;
    display: block;
    &:hover{
        transform: rotate(90deg);
    }
}
.property-drawer-wrapper .close-drawer-btn svg{
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    min-height: 24px !important;
    max-width: none !important;
    display: block;
    flex-shrink: 0;
    vertical-align: top;
}

.property-drawer-wrapper label{
    max-width: 100% !important;
}

.single-property-minimal-template{
    padding-top: 95px;
}

.property-single-minimal-banner{
    padding-top: 40px;
    padding-bottom: 40px;
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    position: relative;
}
.property-single-minimal-banner::before{
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.8) 80%, rgba(255, 255, 255, 0.7) 100%);
    position: absolute;
    top: 0;
    left: 0;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.05);
    z-index: 0;
}
.property-single-minimal-banner .container{
    position: relative;
    z-index: 1;
}
.property-single-minimal-banner h1{
    color: #13294b;
    font-size: 2.5rem;
}
.property-single-minimal-banner .property-single-property-location{
    color: #ea5650;
}

.property-single-minimal-banner .property-single-price{
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 5px;
}

/* .property-single-minimal-banner .property-single-price span{
    font-size: 18px;
} */

.single-property-minimal-template .inner-padding{
    padding-top: 50px;
}
/* .property-sidebar-form-wrap{
    padding-top: 50px;
} */
.property-sidebar-form-wrap label{
    max-width: 100% !important;
}

.property-sidebar-form-wrap {
    & h2{
        color: #13294b !important;
    }
    & input[type="text"], & input[type="email"], & textarea, & input[type="password"], & input[type="tel"]{
        border-color: #f0f0f0 !important;
    }
}
.breadcrumb{
    float: right;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-direction: row;
    padding: 0;
   /* padding-bottom: 35px;*/
    background: transparent;
    font-size: 14px;
    & li{
        display: flex;
        align-items: center;
        gap: 10px;
        flex-direction: row;
    }
    & .separator{
        font-size: 12px;        
    }
}