.list_page {
    position: relative;
    &:before {
        content: '';
        position: absolute;
        background: #fafaff;
        width: 100%;
        left: 0;
        height: 80px;
    }
    .top-heading {
        max-width: 1136px;
        margin: 0 auto;
        position: relative;
        padding: 13px 35px;
        h1{
            font-weight: 400;
            font-size: 14px;
            color: #5673B1;
        }
        @media (max-width: 767px){
            text-align: center;
        }
    }
    .filter_btn {
        position: fixed;
        bottom: 20px;
        z-index: 2;
        left: 50%;
        transform: translate(-50%, 0);
        background: #fff100;
        border: none;
        padding: 15px 35px;
        border-radius: 55px;
        font-weight: 800;
        font-size: 17px;
        line-height: 17px;
        cursor: pointer;
        color: #0B2766;
        transition-property: color;
        transition: all 0.5s ease-in-out;
        overflow: hidden;
        &:before {
            content: "";
            position: absolute;
            z-index: -1;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: #0b2766;
            border-radius: 100%;
            transform: scale(0);
            transition-property: transform;
            transition-duration: 0.5s;
            transition-timing-function: ease-out;
        }
        &:hover {
            color: #fff;
            &:before {
                background: #0b2766;
                transform: scale(2);
            }
        }
    }
}
.list_haed {
    background: #FFFFFF;
    border: 1px solid #E0E6F2;
    box-sizing: border-box;
    box-shadow: 0px 6px 15px rgb(31 68 150 / 10%);
    border-radius: 20px;
    max-width: 1136px;
    margin: 0 auto;
    padding: 25px 35px;
    z-index: 9;
    position: relative;
    .search_header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        .search_box {
            position: relative;
            width: 100%;
            input {
                background-image: url('/images/search_icon_list.svg');
                border: none;
                background-repeat: no-repeat;
                padding: 10px 10px 10px 35px;
                background-position: 0;
                font-weight: 500;
                font-size: 20px;
                line-height: 170%;
                color: #C5D0E8;
                @media (max-width: 767px) {
                    background-image: url('/images/search_icon_list_dark.svg');
                }
                &::placeholder {
                    color: #C5D0E8;
                    @media (max-width: 767px) {
                        color: #2A4279;
                    }
                }
                &:focus {
                    outline: none;
                }
            }
            .dropdown_wrap {
                position: absolute;
                background: #fff;
                width: 100%;
                border-radius: 0 0 10px 10px;
                box-shadow: 0px 10px 15px rgb(31 68 150 / 10%);
                top: 100%;
                overflow: hidden;
                display: none;
                z-index: 1;
                max-height: 200px;
                overflow-y: auto;
                ul {
                    li {
                        padding: 10px;
                        display: inline-block;
                        width: 100%;
                        font-size: 12px;
                        line-height: 100%;
                        color: #5673B1;
                        cursor: pointer;
                        text-transform: capitalize;
                        &.hidden{
                            display:none;
                        }
                        &.filtered {
                            display: none;
                        }
                        &.active{
                            background: #eeeeee;
                        }
                    }
                }
                &.visible {
                    display:block;
                }
            }
        }
        .btn_grid {
            .add_btn {
                background: #F8F9FD;
                border-radius: 10px;
                border: none;
                padding: 16px 20px;
                cursor: pointer;
                font-weight: 800;
                font-size: 14px;
                line-height: 17px;
                color: #1F4496;
            }
            .enter_btn {
                font-size: 14px;
                line-height: 170%;
                color: #0B2766;
                background: none;
                border: none;
                margin: 0 0 0 10px;
                cursor: pointer;
                span {
                    font-weight: bold;
                }
            }
        }
    }
    .search_result {
        .search_result_inner {
            ul {
                display: flex;
                align-items: center;
                flex-wrap: wrap;
                li {
                    background: #F8F9FD;
                    border-radius: 100px;
                    font-size: 14px;
                    line-height: 170%;
                    color: #5673B1;
                    padding: 3px 30px 3px 10px;
                    position: relative;
                    margin: 0 8px 8px 0;
                    span {
                        position: absolute;
                        right: 12px;
                        top: 10px;
                        cursor: pointer;
                        width: 10px;
                        height: 10px;
                        background-image: url(/images/cross_icon.png);
                        background-repeat: no-repeat;
                    }
                }
            }
        }
    }
    .dropdown_list {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 33px 0 0;
        input {
            &:focus, &:focus-visible {
                outline: none;
            }
        }
        .Furniture_btn {
            width: 11%;
            padding-left: 20px;
            &.hide {
                display: none;
            }
            label {
                display: inline-flex;
                align-items: center;
                font-size: 14px;
                line-height: 150%;
                color: #5673B1;
                cursor: pointer;
                input {
                    display: none;
                    &:checked {
                        + span {
                            background: #fff100;
                            border-color: #fff100;
                            &:before {
                                content: '';
                                position: absolute;
                                width: 10px;
                                height: 4px;
                                border-left: 2px solid #0B2766;
                                border-bottom: 2px solid #0B2766;
                                transform: rotate(-45deg);
                                left: 2px;
                                top: 4px;
                            }
                        }
                    }
                }
                span {
                    display: inline-block;
                    width: 20px;
                    height: 20px;
                    border: 2px solid #C5D0E8;
                    box-sizing: border-box;
                    border-radius: 3px;
                    margin: 0 7px 0 0;
                    position: relative;
                }
            }
        }
        .ajouter-btn-grp {
            @media (max-width: 767px) {
                width: 100%;
                justify-content: space-between;
                display: flex;
                flex-wrap: wrap;
            }
            @media (max-width: 389px) {
                flex-direction: column;
                justify-content: center;
            }
            .zero_btn {
                display: none;
                @media (max-width: 767px) {
                    margin: 20px 0 0;
                    background: #F5F5FF;
                    padding: 16px 20px;
                    border-radius: 55px;
                    border: none;
                    font-weight: 800;
                    font-size: 14px;
                    line-height: 17px;
                    cursor: pointer;
                    color: #0B2766;
                    transition-property: color;
                    transition: all 0.5s ease-in-out;
                    position: relative;
                    overflow: hidden;
                    z-index: 1;
                    display: inline-block;
                    text-align: center;
                    display: block;
                    &:before {
                        content: "";
                        position: absolute;
                        z-index: -1;
                        top: 0;
                        left: 0;
                        right: 0;
                        bottom: 0;
                        background: #e0e0ec;
                        border-radius: 100%;
                        transform: scale(0);
                        transition-property: transform;
                        transition-duration: 0.5s;
                        transition-timing-function: ease-out;
                    }
                }
            }
            .zero_btn:hover:before {
                transform: scale(2);
            }
            .continue_btn {
                margin: 20px 0 0;
            }
        }
        
        .drop_block {
            padding: 5px 32px 0;
            border-right: 1px solid rgba(129, 146, 184, 0.2);
            &:first-child {
                width: 15%; 
                &.for-sale { 
                    @media (min-width: 768px){
                        width: 17%;
                    }
                    
                }
                padding-left: 0;
            }
            &:nth-child(2) {
                
                width: 20%;
                &.for-sale { 
                    @media (min-width: 768px){
                        width: 23%;
                    }
                    
                }
            }
            &:nth-child(3) {
                width: 27%; 
                &.for-sale {
                    @media (min-width: 768px){
                        width: 32%;
                    }
                    
                }
                label {
                    @media (max-width: 767px){
                        display: none;
                    }
                }
             }
            &:nth-child(4) {
                width: 27%;
                &.for-sale {
                    @media (min-width: 768px){
                        width: 31%;
                        border-right: none;
                        padding-right: 0; 
                    }
                    
                }
                
            }
            label {
                width: 100%;
                display: inline-block;
                font-weight: 800;
                font-size: 14px;
                line-height: 150%;
                color: #0B2766;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }
            .double_dropdown {
                display: flex;
                .label-heading {
                    width: 50%;
                    padding: 0px 10px 5px 0px;
                    @media (max-width: 767px) {
                        width: 100%;
                        border: 1px solid #E0E6F2;
                        padding: 10px 0px;
                        margin-bottom: 15px;
                        border-radius: 20px;
                        box-shadow: 0px 3px 5px rgba(31, 68, 150, 0.1);
                    }
                    .chamber-room {
                        width: 100%;
                        display: inline-block;
                        font-weight: 800;
                        font-size: 14px;
                        line-height: 150%;
                        color: #0B2766;
                        white-space: nowrap;
                        overflow: hidden;
                        text-overflow: ellipsis;
                        @media (min-width: 768px) {
                            display: none;
                        }
                        @media (max-width: 767px) {
                            padding: 0px 25px;
                        }
                    }
                }
                .dropdown_wrap {
                    position: relative;
                    width: 100%;
                    &:first-child {
                        p {
                            &:before {
                                right: 15px;
                            }
                        }
                    }
                }
            }
            .list_double {
                display: flex;
                justify-content: space-between;
                .box {
                    width: 50%;
                    &:first-child {
                        .dropdown_wrap {
                            p {
                                &:before {
                                    right: 15px;
                                }
                            }
                        }
                    }
                }
                &.for_sale{
                    &.hide{
                        display: none;
                    }
                    &.show{
                        display: flex;
                    }
                }
                &.for_rent{
                    &.hide{
                        display: none;
                    }
                    &.show{
                        display: flex;
                    }
                }
            }
            .dropdown_wrap {
                position: relative;
                p {
                    font-size: 14px;
                    line-height: 150%;
                    color: #5673B1;
                    cursor: pointer;
                    padding: 0 10px 5px 0;
                    position: relative;
                    white-space: nowrap;
                    overflow: hidden;
                    text-overflow: ellipsis;
                    @media (max-width: 767px) {
                        margin: 0px 25px;
                    }
                    &:before {
                        content: '';
                        position: absolute;
                        width: 0px;
                        height: 0px;
                        border-left: 5px solid transparent;
                        border-right: 5px solid transparent;
                        border-top: 5px solid #C5D0E8;
                        border-radius: 2px;
                        right: 0;
                        top: 9px;
                        @media (max-width: 767px) {
                            border-left: 7px solid transparent;
                            border-right: 7px solid transparent;
                            border-top: 7px solid #C5D0E8;
                            top: 0;
                        }
                    }
                }
                ul {
                    display: none;
                    position: absolute;
                    background: #fff;
                    width: 100%;
                    border-radius: 0 0 10px 10px;
                    box-shadow: 0px 10px 15px rgb(31 68 150 / 10%);
                    top: 100%;
                    overflow: hidden;
                    z-index: 99;
                    max-height: 180px;
                    overflow-y: auto;
                    @media (max-width: 767px) {
                        border: 1px solid #e0e6f2;
                        max-height: 170px;
                    }
                    li {
                        padding: 10px;
                        display: inline-flex;
                        align-items: center;
                        width: 100%;
                        font-size: 12px;
                        line-height: 100%;
                        color: #5673B1;
                        cursor: pointer;
                        border-left: 2px solid transparent;
                        transition: all 0.5s ease-in-out;
                        @media (max-width: 767px) {
                            padding: 10px 25px;
                        }
                        &:hover {
                            background: #eeeeee;
                            border-color: #0a2c71;
                        }
                    }
                    input {
                        +label {
                            padding: 0 0 0 7px;
                        }
                    }
                    &.active{
                        display: block;
                    }
                    &.visible{
                        display: block;
                    }
                }
                /*&:hover {
                    ul {
                        display: block;
                    }
                }*/
            }
        }
    }
}
.list_wrapper {
    padding: 60px 0 0;
    .card_head {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 10px;
        .left {
            width: 50%;
            display: inline-flex;
            align-items: center;
            .card_search {
                position: relative;
                &:before {
                    content: "";
                    position: absolute;
                    background-image: url(/images/card_search.svg);
                    background-position: 0px 0;
                    background-repeat: no-repeat;
                    width: 17px;
                    height: 17px;
                    left: 10px;
                    top: 7px;
                    z-index: 1;
                }
                input {
                    background: #1C3F8D;
                    box-shadow: 0px 6px 15px rgb(31 68 150 / 10%);
                    border-radius: 5px;
                    padding: 6px 10px 6px 35px;
                    font-weight: bold;
                    font-size: 14px;
                    line-height: 150%;
                    border: none;
                    color: #fff;
                    width: 190px;
                    &::-webkit-inner-spin-button {
                        -webkit-appearance: none;
                        -moz-appearance: none;
                        appearance: none;
                    }
                    &::placeholder {
                        color: #FFFFFF;
                    }
                    &:focus {
                        outline: none;
                    }
                }
            }
            p {
                font-weight: 800;
                font-size: 14px;
                line-height: 150%;
                text-align: center;
                color: #5673B1;
                padding: 0 0 0 20px;
                cursor: pointer;
            }
        }
        .right {
            width: 50%;
            display: inline-flex;
            justify-content: flex-end;
            .txt {
                font-weight: 800;
                font-size: 14px;
                line-height: 150%;
                color: #0B2766;
                margin: 0 15px 0 0;
            }
            .dropdown_wrap {
                position: relative;
                min-width: 100px;
                &#estate {
                    ul {
                        right: 0;
                        min-width: 150px;
                    }
                }
                p {
                    font-size: 14px;
                    line-height: 150%;
                    color: #5673B1;
                    position: relative;
                    padding: 0 17px 0 0;
                    cursor: pointer;
                    &:before {
                        content: '';
                        position: absolute;
                        width: 0px;
                        height: 0px;
                        border-left: 5px solid transparent;
                        border-right: 5px solid transparent;
                        border-top: 5px solid #C5D0E8;
                        border-radius: 2px;
                        right: 0;
                        top: 9px;
                    }
                }
                ul {
                    display: none;
                    position: absolute;
                    background: #fff;
                    width: 100%;
                    border-radius: 0 0 10px 10px;
                    box-shadow: 0px 10px 15px rgb(31 68 150 / 10%);
                    top: 100%;
                    overflow: hidden;
                    z-index: 8;
                    text-align: left;
                    li {
                        padding: 10px;
                        display: inline-block;
                        width: 100%;
                        font-size: 12px;
                        line-height: 100%;
                        color: #5673B1;
                        cursor: pointer;
                        border-left: 2px solid transparent;
                        transition: all 0.5s ease-in-out;
                        &:hover {
                            background: #eeeeee;
                            border-color: #0a2c71;
                        }
                    }
                    &.active{
                      display: block;  
                    }
                }
                &:last-child {
                    margin: 0 0 0 30px;
                }

                /*&:hover {
                    ul {
                        display: block;

                    }
                }*/
            }
        }
    }
    .estimation_card, .contact_card, .new-tag{
        display: none;
    }
	.list_block_box {
        display: flex;
        flex-wrap: wrap;
        /*justify-content: space-between;*/
        padding: 15px 0 0;
        .box_success {
            width: 33.3%;
            margin: 0 0 40px;
            position: relative;
            .card__Box {
                display: flex;
                width: calc(100% - 20px);
                align-items: center;
                margin: 0 auto;
                transition: all 0.5s ease-in-out;
                border-radius: 10px;
                &:hover {
                    box-shadow: 0px 6px 15px rgb(31 68 150 / 18%);
                }
                &.color_card {
                    background: linear-gradient(180deg, #1F4496 0%, #0B2766 100%), #0B2766;
                    box-shadow: 0px 6px 15px rgb(31 68 150 / 10%), 0px 6px 15px rgb(31 68 150 / 10%);
                    border-radius: 10px;
                    height: 100%;
                }
                &.no_link {
                    cursor: initial;
                }
            }
            figure {
                border-radius: 10px;
                overflow: hidden;
                /*cursor: pointer;*/
                display: flex;
                display: -webkit-flex;
                flex-direction: column;
                width: 100%;
                .img {
                    position: relative;
                    display: inline-grid;
                    &.loaded {
                        &:before {
                            content: '';
                            position: absolute;
                            width: 100%;
                            height: 100%;
                            left: 0;
                            top: 0;
                            background: #00000054;
                        }
                    }
                    .main_img {
                        display: flex;
                    }
                    .icon {
                        position: absolute;
                        z-index: 1;
                        left: 20px;
                        bottom: 16px;
                        width: 68px;
                    }
                    .img_main {
                        min-height: 190px;
                        max-height: 190px;
                        object-fit: cover;
                        width: 100%;
                    }
                    .side_bar {
                        font-weight: 800;
                        font-size: 14px;
                        line-height: 150%;
                        text-align: right;
                        color: #0B2766;
                        background: rgb(255 241 0 / 80%);
                        border-radius: 40px 0px 0px 40px;
                        display: inline-block;
                        position: absolute;
                        right: 0;
                        top: 24px;
                        padding: 6px 17px 6px 20px;
                    }
                    .new {
                        font-weight: 800;
                        text-align: left;
                        border-radius: 0 40px 40px 0;
                        left: 0;
                        right: auto;
                        top: 24px;
                        padding: 6px 20px 6px 17px;
                    }
                }
                figcaption {
                    display: flex;
                    justify-content: space-between;
                    padding: 14px 20px 20px;
                    border: 1px solid #E0E6F2;
                    box-sizing: border-box;
                    border-radius: 0 0 10px 10px;
                    background: #fff;
                    ul {
                        width: 100%;
                        li {
                            display: flex;
                            justify-content: space-between;
                            padding: 0 0 6px;
                            &:first-child {
                                padding: 0px 0 17px;
                            }
                            &:last-child {
                                padding: 0;
                            }
                            h2 {
                                font-weight: 800;
                                font-size: 14px;
                                line-height: 150%;
                                color: #0B2766;
                                /*white-space: nowrap;
                                overflow: hidden;
                                text-overflow: ellipsis;*/
                                width: 69%;
                                min-height: 42px;
                                &:last-child {
                                    text-align: right;
                                        width: 29%;
                                }
                            }
                            p {
                                font-size: 14px;
                                line-height: 150%;
                                color: #5673B1;
                                width: 49%;
                                min-height: 21px;
                                &:last-child {
                                    text-align: right;
                                }
                                &:first-child {
                                    text-align: left;
                                }
                            }
                        }
                    }
                }
            }
            .hover_box {
                top: 0;
                width: 100%;
                height: 100%;
                z-index: 1;
                display: flex;
                flex-wrap: wrap;
                align-items: center;
                justify-content: space-around;
                color: #fff;
                padding: 32px 15px;
                flex-direction: column;
                h2 {
                    font-weight: 500;
                    font-size: 20px;
                    line-height: 170%;
                    text-align: center;
                    max-width: 220px;
                    span {
                        color: #FFF100;
                    }
                }
                p {
                    font-size: 16px;
                    line-height: 170%;
                    max-width: 200px;
                    margin: 0 auto;
                    text-align: center;
                }
                .btn_block {
                    margin: 32px 0;
                    &:before {
                        background: #f0dc00;
                    }
                }
            }
        }
    }
}

.loader {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 0 90px;
    flex-direction: column;
    .result-empty {
        color: red;
        display: none;
        width: 100%;
        &.no_result {
            color: #0B2766;
            font-size: 25px;
            line-height: 27.5px;
            font-weight: 800;
            padding: 124px 35px 0px;
            @media (max-width: 389px) {
                padding: 25px 35px 0px;
            }
        }
        &.whise-error {
            position: absolute;
            top: 10px;
        }
        .sub-text {
            padding-top: 12px;
            font-size: 13px;
            line-height: 19.5px;
            font-weight: 500;
        }
        .vous{
            background: #fff100;
            border: none;
            padding: 16px 20px;
            border-radius: 55px;
            font-weight: 800;
            font-size: 14px;
            line-height: 16.8px;
            cursor: pointer;
            color: #0B2766;
            margin-top: 15px;
            position: relative;
            overflow: hidden;
            z-index: 1;
            display: inline-block;
            &:before {
                content: "";
                position: absolute;
                z-index: -1;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: #f0dc00;
                border-radius: 100%;
                transform: scale(0);
                transition-property: transform;
                transition-duration: 0.5s;
                transition-timing-function: ease-out;
            }
        }
        .vous:hover:before {
            transform: scale(2);
        }
        a {
            color:#0B2766;
        }
        &.empty {
            display: block;
        }
    }
    .loader_img {
        max-width: 32px;
        &.hide{
            display:none;
        }
    }
    .btn_block {
        position: absolute;
        right: 40px;
        background: #F8F9FD;
        color: #1F4496;
        overflow: hidden;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        &:before {
            background: #fff100;
        }
        &:hover {
            color: #1F4496;
        }
        img {
            max-width: 12px;
        }
    }
}
@media (max-width: 719px) {
    .list_wrapper {
        .list_block_box {
            .box_success {
                figure {
                    figcaption {
                        ul {
                            li {
                                h2 {
                                    min-height: inherit;
                                    width: 68%;
                                    &:last-child {
                                        width: 30%;
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
@media (max-width: 767.5px) {
    .list_page {
        &:before {
            display: none;
        }
    }
    .list_wrapper {
        padding: 20px 0 0;
        .card_head {
            flex-wrap: wrap;
            .left {
                width: 100%;
                display: inline-flex;
                align-items: center;
                max-width: 400px;
                margin: 0 auto;
                flex-wrap: wrap;
                justify-content: center;
                .card_search {
                    input {
                        font-size: 12px;
                        width: 170px;
                    }
                }
                p {
                    font-size: 14px;
                    padding: 10px 10px 10px;
                }
            }
            .right {
                width: 100%;
                display: inline-flex;
                align-items: center;
                max-width: 400px;
                margin: 0 auto;
                justify-content: center;
                flex-wrap: wrap;
                .dropdown_wrap {
                    margin: 0 0 10px;
                    &:last-child {
                        margin: 0 0 10px 10px;
                    }
                }
                .txt {
                    margin: 0 15px 10px 0;
                }
            }
        }
        .list_block_box {
            justify-content: center;
            .box_success {
                width: 100%;
                // max-width: 320px;
                margin: 0 0 20px;
                .card__Box {
                    padding: 0;
                }
                figure {
                    .img {
                        .img_main {
                            min-height: 100%;
                            max-height: 100%;
                        }
                    }
                    figcaption {
                        padding: 14px 10px 20px;
                    }
                }
            }
        }
    }
    .list_haed {
        box-shadow: none;
        border-radius: 0;
        padding: 40px 20px;
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        left: -500px;
        max-width: 500px;
        z-index: 1000;
        transition: all 0.5s ease-in-out;
        overflow-y: auto;
        .close {
            position: absolute;
            width: 20px;
            height: 20px;
            right: 10px;
            // background: #2a3d6d;
            border: 2px solid #0B2766;
            top: 10px;
            cursor: pointer;
            border-radius: 15px;    
            &:before {
                content: '';
                position: absolute;
                width: 2px;
                height: 10px;
                background: #0B2766;
                transform: rotate(45deg);
                left: 7px;
                top: 3px;
            }
            &:after {
                content: '';
                position: absolute;
                width: 2px;
                height: 10px;
                background: #0B2766;
                transform: rotate(-45deg);
                left: 7px;
                top: 3px;
            }
        }
        &.active {
            left: 0;
        }
        .search_header {
            flex-wrap: wrap;
            padding: 0 0 10px;
            .search_box {
                input {
                    padding: 10px 10px 10px 31px;
                    font-size: 15px;
                    border-bottom: 2px solid #0B2766;                    ;
                    width: 100%;
                    color: #0B2766;
                }
            }
            .btn_grid {
                .add_btn {
                    padding: 10px 15px;
                }
            }
        }
        .search_result {
            .search_result_inner {
                ul {
                    flex-wrap: wrap;
                    li {
                        font-size: 12px;
                        padding: 3px 25px 3px 10px;
                        margin: 0 8px 5px 0;
                        span {
                            right: 9px;
                            top: 8px;
                        }


                    }
                }
            }
        }
        .dropdown_list {
            flex-wrap: wrap;
            flex-direction: column;
            padding: 15px 0 0;
            .drop_block {
                &:first-child, &:nth-child(2), &:nth-child(3), &:nth-child(4) {
                    width: 100%;
                    padding: 5px 0 0;
                    max-width: 458px;
                    border: none;
                    @media (max-width: 767px) {
                        padding: 0px 0px 0px;                        
                    }
                    &.border {
                        @media (max-width: 767px) {
                            border: 1px solid #E0E6F2;
                            padding: 10px 0px;
                            margin-bottom: 15px;
                            border-radius: 20px;
                            box-shadow: 0px 3px 5px rgba(31, 68, 150, 0.1);
                        }
                        label {
                            @media (max-width: 767px){
                                padding: 0px 25px;
                            }
                        }
                    }
                }
                .double_dropdown {
                    flex-direction: column;
                    .dropdown_wrap {
                        width: 100%;
                        &:first-child {
                            p {
                                &:before {
                                    right: 0;
                                }
                            }
                        }
                    }
                }
                .list_double {
                    flex-direction: column;
                    .box {
                        width: 100%;
                        border: 1px solid #E0E6F2;
                        padding: 10px 0px;
                        margin-bottom: 15px;
                        border-radius: 20px;
                        box-shadow: 0px 3px 5px rgba(31, 68, 150, 0.1);
                        &:first-child {
                            .dropdown_wrap {
                                p {
                                    &:before {
                                        right: 0;
                                    }
                                }
                            }
                        }
                        label {
                            @media (max-width: 767px) {
                                padding: 0px 25px;
                            }
                        }
                    }
                }
            }
            .Furniture_btn {
                width: 100%;
                padding-left: 0;
                max-width: 320px;
                text-align: center;
            }
        }
    }
    .loader {
        padding: 40px 0 50px;
        flex-wrap: wrap;
        flex-direction: column;
        .btn_block {
            position: inherit;
            right: initial;
            left: 0;
            margin: 180px 0 0;
            img {
                position: relative;
                top: -2px;
            }
        }
    }
}
@media (min-width: 768px) and (max-width: 991.5px) {
    .list_haed {
        padding: 20px 20px;
        width: 95%;
        .search_header {
            .search_box {
                input {
                    font-size: 15px;
                }
            }
            .btn_grid {
                .add_btn {
                    padding: 10px 20px;
                }
            }
        }
        .search_result {
            padding: 10px 0 0;
            .search_result_inner {
                ul {
                    li {
                        font-size: 12px;
                        padding: 3px 25px 3px 10px;
                        span {
                            right: 9px;
                            top: 8px;
                        }
                    }
                }
            }
        }
        .dropdown_list {
            .drop_block {
                padding: 5px 14px 0;
                &.for-rent {
                    label {
                        font-size: 10px;
                    }
                    .dropdown_wrap {
                        p {
                            font-size: 10px;
                            &:before {
                                border-left: 3px solid transparent;
                                border-right: 3px solid transparent;
                                border-top: 3px solid #C5D0E8;
                                top: 8px;
                            }
                        }
                    }
                }
                
                .dropdown_wrap {
                    p {
                        // font-size: 10px;
                        &:before {
                            border-left: 5px solid transparent;
                            border-right: 5px solid transparent;
                            border-top: 5px solid #C5D0E8;
                            top: 8px;
                        }
                    }
                    ul {
                        li {
                            padding: 10px;
                            font-size: 10px;
                        }
                    }
                }
            }
            .Furniture_btn {
                padding-left: 8px;
                label {
                    font-size: 10px;
                    word-break: break-word;
                    span {
                        width: 20px;
                        height: 15px;
                    }
                }
            }
        }
    }
    .list_wrapper {
        .card_head {
            .left {
                p {
                    font-size: 12px;
                    padding: 0 0 0 10px;
                }
            }
            .right {
                .dropdown_wrap {
                    &:last-child {
                        margin: 0 0 0 20px;
                    }
                }
            }
        }
        .list_block_box {
            .box_success {
                figure {
                    .img {
                        .img_main {
                            min-height: 150px;
                            max-height: 150px;
                        }
                        .icon {
                            left: 10px;
                            bottom: 10px;
                        }
                    }
                    figcaption {
                        padding: 14px 10px 20px;
                        ul {
                            li {
                                h2 {
                                    font-size: 12px;
                                    min-height: 36px;
                                }
                                p {
                                    font-size: 12px;
                                    min-height: 18px;
                                }
                            }
                        }
                    }
                }
                .hover_box {
                    h2 {
                        font-size: 15px;
                        line-height: 120%;
                    }
                    p {
                        font-size: 14px;
                        line-height: 120%;
                    }
                }
                
            }
        }
    }
}
@media (min-width: 992px) and (max-width: 1199.5px) {
    .list_haed {
        padding: 20px 20px;
        width: 95%;
        .dropdown_list {
            .drop_block {
                padding: 5px 20px 0;
                // label {
                //     font-size: 12px;
                // }
                .dropdown_wrap {
                    // p {
                    //     font-size: 12px;
                    // }
                }
            }
            .Furniture_btn {
                padding-left: 10px;
                label {
                    font-size: 12px;
                    span {
                        margin: 0 5px 0 0;
                    }
                }
            }
        }
    }

    .list_wrapper {
        .list_block_box {
            .box_success {
                figure {
                    figcaption {
                        padding: 14px 15px 20px;
                        ul {
                            li {
                                p {
                                    min-height: 22px;
                                    font-size: 13px;
                                }
                            }
                        }
                    }
                }
            }
        }
    }

}
@media (min-width: 768px) {
    .list_page {
        .filter_btn {
            display: none;
        }
    }
    .list_haed {
        .close {
            display: none;
        }
        .dropdown_list {
            .continue_btn {
                display: none;
            }
        }
    }
    .list_wrapper {
        .list_block_box {
            .box_success {
                .hover_box {
                    .btn_block {
                        margin: 30px 0;
                    }
                }
            }
        }
    }
}
@media (max-width: 479px) {
    .list_wrapper {
        .list_block_box {
            .box_success {
                .card__Box {
                    min-height: initial;
                    width: 100%;
                }
            }
        }
    }
}
