.nav-top{
    background: $darkGray;

    a{
        font-size: 14px;
    }
    .nav-ll{
        .social,
        .lang{
            padding: 1rem 0;
            width: 40px;
        }
        .social{
            background: $secondaryColor;

            a{
                color: $darkGray;
            }
        }
        .lang{
            background: $primaryColor;

            a{
                color: white;
            }
        }
    }
    .nav-lr{
        a{
            color: $secondaryColor;
            padding: 1rem;
        }
    }
}
.navbar-toggler{
    padding: .25rem 0;

    &[aria-expanded=true],
    &.active {
        .icon-bar {
            &:nth-of-type(2) {
                transform: translateY(8px) rotate(45deg);
            }
            &:nth-of-type(3) {
                opacity: 0;
            }
            &:nth-of-type(4) {
                transform: translateY(-10px) rotate(-45deg);
            }
        }
    }
    .icon-bar {
        background: $blackColor;
        width: 30px;
        height: 2px;
        display: block;
        @include trans(.2s);

        + .icon-bar {
            margin-top: 7px;
        }
    }
}
.separator{
    width: 1px;
    height: 20px;
    background: rgba(255,255,255,0.4);
    margin: -4px 0;
}
.navbar{
    .navbar-collapse{
        @include mqx(t){
            padding: 15px;
            border-top: 1px solid #f1f1f1;
            margin-top: 15px;
        }
    }
    .navbar-nav{
        .nav-item{
            @include mqn(t){
                margin-right: 20px;
            }
            @include mqx(t){
                text-align: center;
            }
            a{
                color: $blackColor;
            }
            &:last-of-type{
                margin-right: 0;
            }
            &.active{
                a{
                    color: $primaryColor;
                }
            }
        }
    }
    .nav-item{
        a{
            color: $blackColor;
        }
    }
    .dropdown-item{
        white-space: initial;
    }
    .separator{
        background: rgba(0,0,0,0.4);
        margin: -5 0;
    }
    .notification-dropdown{
        min-width: 330px;

        .noti-img{
            width: 50px;
            height: 50px;

            &.initial-letter{
                background: #f1f1f1;

                > div{
                    line-height: 41px;
                }
            }
        }
        .notification-details{
            max-width: 390px;

            p{
                color: $blackColor;
                @include multiLineEllipsis(1.6em, 2);
                font-size: 13px;
            }
        }
    }
}
.map-locator{
    #map{
        height: 570px;
    }
    .map-container{
        position: relative;
    }
}
#home-map,
#property-location{
    height: 350px;
}
.position-relative{
    .search-box{
        position: absolute;
        width: 70%;
        top: 450px;
        right: 50%;
        transform: translate(50%, -50%);

        @include mqx(t){
            top: 370px;
            width: 90%;
            left: 50%;
            transform: translate(-50%, 0);
        }
    }
}
.search-box{
    background: #fff;
    border-radius: 5px;
    z-index: 999;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0, 0.08);
    @include cfx;

    //form{
    //    @include mqn(t){
    //        width: 500px;
    //    }
    //}
}
.box{
    padding: 20px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0, 0.05);
    border-radius: 10px;
    @include trans;

    &:hover{
        box-shadow: 0 2px 10px rgba(0,0,0, 0.1);
    }
}
.offer-item{
    &:hover{
        .offer-img{
            transform: scale(1.2);

            &:before{
                display: block;
            }
        }
    }
    .offer-img-mask{
        border-radius: 5px;
        height: 260px;
        overflow: hidden;
        position: relative;
    }
    .offer-img{
        width: 100%;
        height: 100%;
        @include trans(.3s);
        position: relative;

        &:before{
            content: "";
            display: none;
            height: 100%;
            width: 100%;
            position: absolute;
            top: 0;
            left: 0;
            background-color: $primaryColor;
            opacity: .5;
        }
    }
    .offer-tag{
        position: absolute;
        top: 20px;
        right: 0;

        color: #fff;
        border-radius: 5px 0 0 5px;
        font-size: 14px;
        padding: 6px 15px;

        &.offer-sell{
            background: $primaryColor;
        }
        &.offer-rent{
            background: $secondaryColor;
        }
    }
    .offer-details{
        a{
            color: $blackColor;

            h3{
                font-size: 20px;
            }
            @include hoverFoucs{
                color: $primaryColor;
            }
        }
        .offer-info{
            background: $secondaryColor;
        }
        .property-details{
            padding: 10px 15px;
            width: 66%;
        }
        .property-price{
            font-size: 20px;
            color: #fff;
            padding: 5px 15px;
            width: 34%;
            position: relative;
            z-index: 9999;

            &:after{
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                width: 150%;
                height: 100%;
                /*rtl:ignore*/
                transform: skew(-30deg, 0deg);
                background: $primaryColor;
                z-index: -1;
            }
        }
    }

}
.location{
    color: $grayColor;
    font-size: 18px;
}
.offer-footer{
    a{
        font-size: 14px;
        color: $blackColor;
    }
}
.property-images{
    .slick-arrow{
        &.slick-prev{
            [dir="rtl"] &{
                /*rtl:ignore*/
                right: 15px;
                /*rtl:ignore*/
                left: initial;

                //@include mqn(l){
                //    /*rtl:ignore*/
                //    right: 15px;
                //    /*rtl:ignore*/
                //    left: initial;
                //}

                &:before{
                    content: none;
                }
            }
        }
        &.slick-next{
            [dir="rtl"] &{
                /*rtl:ignore*/
                left: 30px;
                /*rtl:ignore*/
                right: initial;

                //@include mqn(l) {
                //    /*rtl:ignore*/
                //    right: initial;
                //    /*rtl:ignore*/
                //    left: 30px;
                //}
            }
        }
    }
}
.slick-arrow{
    z-index: 99;

    i{
        color: #333;
        font-size: 16px;
        padding: 8px 0;
        text-align: center;
        width: 35px;
        background: #E4E4E4;
        border-radius: 5px;
    }

    @include hoverFoucs{
        i{
            color: #fff;
            background: $primaryColor;
        }
    }

    &.slick-prev{
        [dir="rtl"] &{
            /*rtl:ignore*/
            left: 15px;

            @include mqn(l){
                /*rtl:ignore*/
                left: -20px;
                /*rtl:ignore*/
                right: initial;
            }

            &:before{
                content: none;
            }
        }
    }
    &.slick-next{
        [dir="rtl"] &{
            /*rtl:ignore*/
            right: 0;

            @include mqn(l) {
                /*rtl:ignore*/
                left: initial;
                /*rtl:ignore*/
                right: -35px;
            }
            &:before{
                content: none;
            }
        }
    }
}
.slick-dots{
    li{
        margin: 0 8px;

        button{
            background: #E4E4E4;
            height: 3px;
            width: 25px;
            padding: 0;

            &:before{
                content:none;
            }
        }
        &.slick-active{
            button{
                background: $primaryColor;
            }
        }
    }
}
.download{
    //background-size: 100% 100%;
    height: 500px;
    overflow: hidden;

    @include mqx(l){
        height: 410px;
    }
    @include mqx(m){
        height: auto;
    }
    .download-content{
        .app-icon,.store{
            margin-left: -17px;

            @include mqx(l){
                img{
                    width: 40%;
                }
            }
        }
        //.app-icon{
        //    @include mqx(l){
        //        width: 35%;
        //    }
        //}
        h2,p{
            color: #fff;
        }
        h2{
            font-size: 36px;

            @include mqx(l){
                font-size: 26px;
            }
        }
        p{
            font-size: 30px;

            @include mqx(l){
                font-size: 20px;
            }
        }
    }
}
.service{
    padding: 35px;
    @include trans;

    &:hover {
        transform: scale(1.05);
    }
    .service-icon{
        min-height: 80px;

        img{
            @include trans;
        }
    }
    .service-title{
        h3{
            font-size: 20px;
        }
    }
    a{
        color: $secondaryColor;

        @include hoverFoucs{
            color: darken($secondaryColor, 5%);
        }
    }
}
.reviews{
    position: relative;
    color: #fff;
    
    .container{
        position: relative;
    }
    h2,
    h4,
    blockquote{
        color: #fff;
    }
    &:before{
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background: rgba(48, 61, 70, .8);
    }
    .review-item{
        position: relative;

        &:after{
            content: "";
            position: absolute;
            top: 15px;
            left: 50%;
            transform: translate(-50%, -50%);
            background: url("../images/dots.png");
            width: 177px;
            height: 59px;
        }
    }
    .reviewer-img{
        border-radius: 50%;
        width: 100px;
        height: 100px;
        overflow: hidden;
    }
    .review-info{
        h4{
            font-size: 16px;
        }
        p{
            color: #B9B9B9;
            font-size: 12px;
        }
        blockquote{
            font-size: 16px;
        }
    }
}
.how-it-works{
    .row .col-md-4{
        &:first-child{
            .box{
                @include mqn(t){
                    &:after{
                        content: "";
                        position: absolute;
                        top: -35px;
                        right: -65px;
                        //transform: translate(-50%, -50%);
                        background: url("../images/icons/arrow-top.png");
                        width: 147px;
                        height: 55px;
                    }
                }
            }
        }
        &:nth-child(2){
            .box{
                @include mqn(t){
                    &:after{
                        content: "";
                        position: absolute;
                        bottom: -35px;
                        right: -105px;
                        //transform: translate(-50%, -50%);
                        background: url("../images/icons/arrow-bottom.png");
                        width: 259px;
                        height: 128px;
                    }
                }
            }
        }
    }
    .how{
        padding: 30px;

        @include mqn(t){
            margin-bottom: 70px;
        }
    }
    .how-content{
        h3{
            font-size: 22px;
            font-family: $primaryFont;
        }
        p{
            font-size: 16px;
            line-height: 27px;
            font-family: $primaryFont;
        }
    }
}

footer{
    background: #303D46;
    padding: 50px 0 0;
    color: #fff;

    .logo-footer{
        p, span{
            color: #fff;
        }
    }
    .slogan{
        color: $primaryColor;
        line-height: 26px;
    }
    nav{
        a{
            color: #E9E9E9;

            &:hover,
            &:focus{
                color: #fff;
            }
        }
    }
    .footer-links{
        @include mqx(t){
            margin-bottom: 30px;
        }
        h4{
            font-size: 18px;
        }
        nav{
            a{
                margin: 15px 0;
            }
        }
    }

    .form-inline{
        position: relative;

        input.form-control{
            width: 80%;
            background: #f4f4f4;
            padding: 15px 19px;
            border: 0;
            border-radius: 0;
            font-weight: 300;
            font-size: 14px;
            height: calc(1.5em + .75rem + 17.5px);

            @include mqx(t){
                width: 100%;
            }
        }
        button {
            position: absolute;
            right: 0;
            top: 0;
            padding: 14px;
            border-radius: 0;
        }
    }
    .copyrights{
        background: #212B34;
        font-size: 12px;
        color: #fff;
        padding: 15px 0;
        @include cfx;

        @include mqn(t){
            margin-top: 50px;
        }
        .copy{
            @include mqn(t){
                float: left;
            }
        }
        .social-footer{
            margin-top: 15px;

            @include mqn(t){
                float: right;
                margin-top: 0;
            }
        }
    }
    .store{
        margin-left: -13px;

        a{
            width: 45%;
        }
    }
}
.buildings{
    background-image: url("../images/buildings.png");
    height: 131px;
    background-repeat: repeat-x;
    background-size: contain;
    background-position: bottom;
}
#map-content{
    padding: 20px;
}
.gm-style-iw,
.gm-style-iw-d,
.gm-style .gm-style-iw-c{
    padding: 0;
}

.modal-dialog{
    display: flex;
    align-items: center;
    margin: 0 auto;
    height: 100%;

    .modal-content{
        padding: 40px 35px;
        margin-bottom: 50px;
        border-radius: 15px;
    }
    .close{
        position: absolute;
        top: 25px;
        right: 30px;
    }
    .modal-header{
        border-bottom: 0;

        .modal-title{
            font-size: 27px;
        }
        .model-desc{
            font-size: 16px;
        }
    }
    .modal-body{

    }
    .modal-footer{
        border-top: 0;

        > * {
            margin: 0;
        }
    }

    .forget-password{
        font-size: 14px;
    }
    .social-login{
        .btn{
            width: 70px;
            padding: 15px;
            border: none;

            &.facebook{
                background: #3a5793;

                @include hoverFoucs{
                    background: lighten(#3a5793, 10%);
                }
            }
            &.google{
                background: #c54938;

                @include hoverFoucs{
                    background: lighten(#c54938, 10%);
                }
            }
        }
    }
}
.checkbox-custom{
    .form-checkbox{
        width: 15px;
        height: 15px;
        margin-right: 6px;
    }
    label{
        font-size: 14px;
    }
}
.modal-dialog{
    height: auto;

    .close {
        font-size: 20px;
        color: #ccc;
    }
}
.iti{
    display: block;

    .iti__flag {background-image: url("../images/flags.png");}

    @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
        .iti__flag {background-image: url("../images/flags@2x.png");}
    }
}

.iti--allow-dropdown input,
.iti--allow-dropdown input[type=tel],
.iti--allow-dropdown input[type=text],
.iti--separate-dial-code input,
.iti--separate-dial-code input[type=tel],
.iti--separate-dial-code input[type=text]{
    padding-right: 6px;
    padding-left: 52px;
    direction: rtl;
    text-align: left;
}
.iti--allow-dropdown .iti__flag-container,
.iti--separate-dial-code .iti__flag-container{
    right: auto;
    left: 0;
}
.iti__selected-flag{
    padding: 0 0 0 10px;
}
.iti__arrow{
    margin-left: 6px;
}
.profile-image{
    width: 100px;
    height: 100px;
    overflow: hidden;
}
.user-menu{
    li{
        a{
            color: $blackColor;

            &.active{
                color: $primaryColor;
            }
            @include hoverFoucs{
                color: $primaryColor;
            }
        }
    }
}
.profile-image {
    .upload-container {
        position: absolute;
        bottom: 0;
    }
}
.js {
    .profile-image{
        .input-file-trigger {
            padding: 5px 42px 14px;
            background: $primaryColor;
            background: -moz-linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(255,255,255,0) 100%);
            background: -webkit-linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(255,255,255,0) 100%);
            background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(255,255,255,0) 100%);
            filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#ffffff",GradientType=1);
            color: #fff;
        }
        .input-file {
            bottom: 0;
            top: initial;
        }
        .input-file:hover + .input-file-trigger,
        .input-file:focus + .input-file-trigger,
        .input-file-trigger:hover,
        .input-file-trigger:focus {
            background: $primaryColor;
            color: #fff;
        }
    }
}
.file-return {
    margin: 0;

    &:not(:empty) {
        margin: 1em 0;
    }
}
.js{
    .input-file-trigger {
        display: block;
        padding: 14px 0;
        background: transparent;
        color: $blackColor;
        font-size: 1em;
        transition: all .4s;
        cursor: pointer;
    }
    .input-file {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        opacity: 0;
        padding: 14px 0;
        cursor: pointer;
        border: none;
    }
}
.file-return {
    font-style: italic;
    font-size: .9em;
    font-weight: bold;
    cursor: pointer;

    &:not(:empty):before {
        content: "Selected file: ";
        font-style: normal;
        font-weight: normal;
    }
}

.box-alt{
    @extend .box;

    &:hover{
        box-shadow: 0 2px 10px rgba(0,0,0, 0.05);
    }
}
.steps-wrapper{
    .steps{
        margin: 0 50px;
        position: relative;
        overflow: hidden;

        @include mqn(d){
            margin: 0 100px;
        }
        @include mqx(t){
            margin: 50px 0;
        }
        li{
            font-size: 14px;
            font-family: $primaryFont;
            color: #C5C5C5;

            .step-c{
                width: 30px;
                height: 30px;
                background: #C5C5C5;
                border-radius: 50%;
            }
            a{
                position: relative;
                min-width: 100px;
                min-height: 80px;

                &:before{
                    content: "";
                    position: absolute;
                    left: 38px;
                    top: 30px;
                    width: 25px;
                    height: 25px;
                    background: #C5C5C5;
                    border-radius: 50%;
                }
                &.active{
                    color: $primaryColor;
                    font-weight: bold;

                    &:before{
                        content: "\f00c";
                        background: $primaryColor;
                        font-family: "Font Awesome 5 Free";
                        font-size: 11px;
                        color: #fff;
                        font-weight: 600;
                        padding: 5px 0;
                        z-index: 2;
                    }
                    &:first-child{
                        &:after{
                            background: #f7f7f7;
                            z-index: 1;
                        }
                    }
                }
            }
        }
    }
}
@keyframes step {
    from {
        box-shadow: 0 0 0 0 rgba(63,166,162,0.1);
    }
    50%{
        box-shadow: 0 0 0 8px rgba(63,166,162,0.1);
    }
    to{
        box-shadow: 0 0 0 0 rgba(63,166,162,0.1);
    }
}
#propertyLocation{
    height: 350px;
}
.image-preview{
    img{
        width: 100%;
    }
}
.gallery-upload{
    margin: -10px;

    img{
        width: 90px;
        height: 80px;
        display: inline-block;
        margin: 10px;
    }
}
.nav-tabs{
    border-bottom: 0;
}
#range-slider,
#range-slider-1,
#range-slider-2 {
    background: #ececec;
    border: 0;
    height: 2px;
    margin: 35px 10px 0;

    .ui-slider-range{
        background: $primaryColor;
    }
    .ui-state-default, .ui-widget-content .ui-state-default {
        border-radius: 50%;
        outline: 0;
        top: -9px;
    }
    .ui-button, .ui-state-default,
    .ui-widget-content .ui-state-default,
    .ui-widget-header .ui-state-default,
    html .ui-button.ui-state-disabled:active,
    html .ui-button.ui-state-disabled:hover{
        border: 1px solid $primaryColor;
        background: $primaryColor;
        font-weight: 400;
        color: #454545;
    }
    .ui-slider-handle{
        width: 18px;
        height: 18px;
    }
}
.range-data{
    font: 500 18px/1 $primaryFont;

    input{
        width: 45%;
        display: inline-block;
        padding: 13px 0;
        border: 0;
        font: 500 18px/1 $primaryFont;
    }
}
.result{
    font: 500 16px/1 $primaryFont;

    span{
        color: $primaryColor;
    }
}
.filter{
    display: none;
}
.pagination{
    .page-item{
        &.active{
            .page-link{
                background: $primaryColor;
                border-color: $primaryColor;
            }
        }
    }
    .page-link{
        color: $blackColor;

        &:focus{
            box-shadow: none;
        }
    }
}
.header-cta{
    .nav-item{
        font-size: 18px;
    }
}
.sm-menu{
    font-size: 26px;

    .dropdown-menu{
        min-width: 13rem;

        .dropdown-item{
            padding: 10px 15px;
        }
    }
}
input[type=submit]{
    height: initial !important;
}

.property-images{
    border: 1px solid #e4e4e4;

    .property-img{
        height: 400px;

        &:focus{
            outline: 0;
        }
        //img{
        //    margin: auto;
        //    max-height: 385px;
        //}

        @include mqx(t){
            //@include aspect-ratio(1,1);

            //img{
            //    padding:  20px 0;
            //    max-height: 100%;
            //}
        }
        @include mqx(m){
            //@include aspect-ratio(1,1);
        }
    }
}
.property-thumbnail{
    .slick-track{
        margin: 0;
    }
    .property-thumb{
        background: #F7F7F7;
        margin: 0 7.5px;
        //@include aspect-ratio(1,1);
        border: 1px solid transparent;
        transition: border .2s;
        cursor: pointer;
        height: 80px;

        &:focus{
            outline: 0;
        }
        &.slick-current{
            border: 1px solid $primaryColor;
        }
        //img{
        //    margin: auto;
        //    max-height: 80px;
        //    padding: 10px 0;
        //}

        @include mqx(t){
            //@include aspect-ratio(2,1);
            //
            //img{
            //    max-height: 100%;
            //}
        }
        @include mqx(m){
            //@include aspect-ratio(1,1);
        }
    }
}
.property-i{
    h3{
        font-size: 22px;
    }
    .location{
        font-size: 16px;
    }
}
.feature{
    .feature-item{
        font-size: 14px;

        &.feature-price{
            font-size: 18px;
            color: $primaryColor;
        }
    }
}
.property-details{
    .price{
        font-size: 27px;
        color: $primaryColor;
    }
}
.property-head{
    font-size: 20px;
    color: $secondaryColor;
}
.property-owner{
    .owner-img{
        width: 25px;
        height: 25px;
    }
}
.card {
    border: none;
    box-shadow: 0 0 6px 2px #e9ecef6e;

    &.card-replay{
        margin-left: 50px;
    }
}
.box-sh{
    box-shadow: 0 0 6px 2px #e9ecef6e;
    background: #fff;
}
.dots {
    height: 4px;
    width: 4px;
    margin-bottom: 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block
}

.badge {
    padding: 7px;
    padding-right: 9px;
    padding-left: 16px;
    box-shadow: 5px 6px 6px 2px #e9ecef
}

.user-img {
    margin-top: 4px
}

.check-icon {
    font-size: 17px;
    color: #c3bfbf;
    top: 1px;
    position: relative;
    margin-left: 3px
}

.form-check-input {
    margin-top: 6px;
    margin-left: -24px !important;
    cursor: pointer
}

.form-check-input:focus {
    box-shadow: none
}

.icons i {
    margin-left: 8px
}

.reply {
    margin-left: 12px
}

.reply small {
    color: #b7b4b4
}

.reply small:hover {
    color: green;
    cursor: pointer
}
nav{
    .social-icon{
        width: 50px;
        padding: 10px 0;
        color: #fff;
        @include trans;

        &.facebook{
            background: #3A5793;
            @include hoverFoucs{
                background: darken(#3A5793, 15%);
            }
        }
        &.twitter{
            background: #1D9DED;

            @include hoverFoucs{
                background: darken(#1D9DED, 15%);

            }
        }
        &.linkedin{
            background: #0071AF;

            @include hoverFoucs{
                background: darken(#0071AF, 15%);

            }
        }
        &.pinterest{
            background: #CB2027;

            @include hoverFoucs{
                background: darken(#CB2027, 15%);

            }
        }

    }
}
.compare-item{
    &:hover{
        .offer-img{
            transform: none;

            &:before{
                display: none;
            }
        }
    }
    .remove-item{
        width: 27px;
        height: 27px;
        text-align: center;
        position: absolute;
        top: -11px;
        left: 9px;
        z-index: 999;
        color: #fff;
        line-height: 27px;

    }
}
.page-content{
    @include mqn(t){
        width: 70%;
    }
}
.plan-card{
    img{

    }
    ul{
        li{
            font-size: 16px;
            font-weight: 600;
            margin: 10px 0;
        }
    }
}
.price-list{
    sub{
        color: $blackColor;
        font-size: 16px;
    }
}
.price{
    font-size: 27px;
    color: $primaryColor;
}
.my-offers{
    .nav-tabs{
        border-bottom: 1px solid #f1f1f1;
    }
    .nav-item{
        a{
            background: transparent;
            font-size: 16px;
            border-radius: 0;
            border: 0;
            padding: 15px 30px;
            color: #777;

            &.active{
                background: $primaryColor;
                color: #fff;
                font-weight: bold;
            }
        }
    }
    .tab-content{
        padding-top: 15px;
    }
}
.form-search{
    input{

    }
    button{
        position: absolute;
        right: 0;
        top: 0;
        border-radius: 0;
        width: 50px;
        height: 49px;
        text-align: center;
        padding: 0;
    }
}



















