.custom-select {
    font-size: 15px;
    letter-spacing: 0.3px;
    text-transform: capitalize;
    color: var(--placeholder);
    cursor: pointer;
}

.sale {
    background: var(--sale);
}

.rent {
    background: var(--rent);
}

.booking {
    background: var(--booking);
}

.flat-badge {
    color: var(--white);
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 0.3px;
    text-transform: capitalize;
}

.cross-badge {
    width: 25px;
    height: 35px;
    font-size: 14px;
    line-height: 30px;
    color: var(--white);
    text-align: center;
    background: var(--primary);
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    -webkit-clip-path: polygon(0 0, 53% 0, 100% 0, 100% 100%, 50% 85%, 0 100%);
    clip-path: polygon(0 0, 53% 0, 100% 0, 100% 100%, 50% 85%, 0 100%);
}

.account-card {
    margin-bottom: 30px;
    padding: 0px 30px 30px;
    background: var(--white);
    border-radius: var(--card-radius);
}

.account-title {
    padding: 18px 0px;
    margin-bottom: 25px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
}

    .account-title::before {
        position: absolute;
        content: "";
        bottom: -2px;
        left: 0px;
        width: 50px;
        height: 2px;
        background: var(--primary);
    }

    .account-title h3 {
        font-size: 20px;
    }

    .account-title button,
    .account-title a {
        border: none;
        width: 55px;
        height: 30px;
        font-size: 14px;
        font-weight: 500;
        line-height: 30px;
        text-align: center;
        border-radius: 5px;
        text-transform: capitalize;
        color: var(--primary);
        background: var(--light-white);
        transition: all linear 0.3s;
        -webkit-transition: all linear 0.3s;
        -moz-transition: all linear 0.3s;
        -ms-transition: all linear 0.3s;
        -o-transition: all linear 0.3s;
    }

        .account-title button:hover,
        .account-title a:hover {
            color: var(--white);
            background: var(--primary);
            text-shadow: var(--primary-tshadow);
        }

.account-card-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-bottom: 8px;
    margin-bottom: 8px;
    border-bottom: 1px solid var(--border);
}

    .account-card-list li:last-child {
        padding-bottom: 0px;
        margin-bottom: 0px;
        border-bottom: none;
    }

    .account-card-list li:hover h6 {
        color: var(--white);
        background: var(--primary);
    }

    .account-card-list li h5 {
        font-size: 16px;
        font-weight: 500;
    }

    .account-card-list li h6 {
        width: 30px;
        height: 30px;
        line-height: 30px;
        text-align: center;
        border-radius: 50%;
        color: var(--primary);
        background: var(--light-white);
    }

.account-card-link li {
    margin-bottom: 8px;
}

    .account-card-link li:last-child {
        margin-bottom: 0px;
    }

    .account-card-link li a {
        color: var(--body);
    }

        .account-card-link li a:hover {
            color: var(--primary);
        }

        .account-card-link li a i {
            margin-right: 5px;
        }

.account-card-text {
    margin-left: 20px;
}

    .account-card-text li {
        list-style-type: disc;
        margin-bottom: 20px;
    }

        .account-card-text li:last-child {
            margin-bottom: 0px;
        }

.account-card-form .form-group {
    margin-bottom: 20px;
}

    .account-card-form .form-group:last-child {
        margin-bottom: 0px;
    }

    .account-card-form .form-group .btn {
        width: 100%;
        padding: 10px 30px;
    }

@media (max-width: 575px) {
    .account-card {
        padding: 0px 20px 20px;
    }
}

.single-banner {
    background: url(../../../images/bg/singlebanner.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 100px 0px;
    position: relative;
    z-index: 1;
}

    .single-banner::before {
        position: absolute;
        content: "";
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
        background: -webkit-gradient(linear, left top, left bottom, from(rgb(7 185 169)), to(rgb(7 185 169)));
        background: linear-gradient(rgb(39 109 104), rgb(251 251 251 / 0%));
        z-index: -1;
    }

.single-content {
    text-align: center;
}

    .single-content h2 {
        color: var(--white);
        text-transform: uppercase;
        margin-bottom: 13px;
    }

    .single-content .breadcrumb {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

@media (max-width: 767px) {
    .single-banner {
        padding: 70px 0px;
    }
}

.single-banner {
    padding: 50px 0px 130px;
}

.dash-header-part {
    margin-top: -100px;
    position: relative;
    z-index: 1;
}

.dash-header-card {
    padding: 30px 30px 0px 30px;
    background: var(--white);
    border-radius: var(--card-radius);
}

.dash-header-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.dash-header-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.dash-avatar {
    margin-right: 30px;
}

    .dash-avatar a {
        border-radius: 50%;
        border: 3px solid var(--primary);
    }

        .dash-avatar a img {
            width: 140px;
            border-radius: 50%;
            border: 3px solid var(--white);
        }

.dash-intro h4 a {
    color: var(--heading);
    text-transform: capitalize;
}

.dash-intro h5 {
    font-size: 14px;
    line-height: 22px;
    color: var(--body);
    text-transform: capitalize;
    margin-bottom: 8px;
}

.dash-meta li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    margin-bottom: 3px;
}

    .dash-meta li:last-child {
        margin-bottom: 0px;
    }

    .dash-meta li i {
        font-size: 14px;
        margin-top: 5px;
        margin-right: 10px;
        color: var(--primary);
    }

    .dash-meta li span {
        font-size: 14px;
        line-height: 22px;
        margin-left: 10px;
    }

.dash-focus {
    width: 100%;
    padding: 25px 0px;
    text-align: center;
    margin-right: 20px;
    border-radius: var(--card-radius);
    background: url(../../../images/error/Halawy-success.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: relative;
    z-index: 1;
}

    .dash-focus::before {
        position: absolute;
        content: "";
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
        border-radius: var(--card-radius);
        background: var(--primary);
        opacity: 0.8;
        z-index: -1;
    }

    .dash-focus:last-child {
        margin-right: 0px;
    }

    .dash-focus h2 {
        color: var(--white);
        /*font-family: sans-serif;*/
    }

    .dash-focus p {
        color: var(--white);
        text-transform: capitalize;
    }

.dash-list::before {
    background: #df1313;
}

.dash-book::before {
    background: #00af1e;
}

.dash-rev::before {
    background: #d0a300;
}

.dash-header-alert {
    margin: 0px;
    margin-top: 30px;
    padding: 15px 25px;
    border-radius: 3px;
    background: var(--white);
    -webkit-box-shadow: var(--primary-bshadow);
    box-shadow: var(--primary-bshadow);
    border-left: 3px solid var(--primary);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

    .dash-header-alert button {
        border: none;
        outline: none;
        background: none;
        margin-left: 100px;
    }

        .dash-header-alert button i {
            width: 40px;
            height: 40px;
            line-height: 40px;
            text-align: center;
            border-radius: 3px;
            display: inline-block;
            color: var(--primary);
            background: var(--light-white);
            transition: all linear 0.3s;
            -webkit-transition: all linear 0.3s;
            -moz-transition: all linear 0.3s;
            -ms-transition: all linear 0.3s;
            -o-transition: all linear 0.3s;
        }

            .dash-header-alert button i:hover {
                color: var(--white);
                background: var(--primary);
            }

.dash-menu-list {
    margin-top: 30px;
}

    .dash-menu-list ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

        .dash-menu-list ul li {
            width: 100%;
        }

            .dash-menu-list ul li a {
                width: 100%;
                font-size: 14px;
                font-weight: 500;
                text-align: center;
                text-transform: uppercase;
                padding: 12px 0px;
                color: var(--heading);
                background: var(--white);
                border-bottom: 2px solid var(--white);
            }

            .dash-menu-list ul li .active {
                color: var(--primary);
                text-shadow: var(--primary-tshadow);
                border-bottom: 2px solid var(--primary);
            }

@media (max-width: 991px) {
    .dash-menu-list {
        overflow-x: scroll;
    }

        .dash-menu-list ul {
            width: 900px;
        }
}

@media (max-width: 575px) {
    .single-banner {
        padding: 60px 0px 160px;
    }

    .dash-header-card {
        padding: 20px 20px 0px 20px;
    }

    .dash-header-left {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .dash-avatar {
        margin-right: 0px;
        margin-bottom: 5px;
    }

    .dash-intro h5 {
        margin-bottom: 12px;
    }

    .dash-meta {
        margin-bottom: 25px;
    }

    .dash-header-right {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .dash-focus {
        margin-bottom: 20px;
        margin-right: 0px;
    }

        .dash-focus:last-child {
            margin-bottom: 0px;
        }

    .dash-header-alert button {
        margin-left: 0px;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .dash-header-right {
        margin-top: 30px;
    }

    .dash-focus h2 {
        font-size: 32px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .single-banner {
        padding: 80px 0px 180px;
    }

    .dash-header-right {
        margin-top: 30px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .dash-avatar {
        margin-right: 25px;
    }

        .dash-avatar a img {
            width: 120px;
        }
}

body {
    background: #f2f2f4;
}

.adpost-part {
    padding: 50px 0px 70px;
}

.adpost-card {
    margin-bottom: 30px;
    padding: 30px 30px 0px 30px;
    background: var(--white);
    border-radius: var(--card-radius);
}

.adpost-title {
    padding-bottom: 18px;
    margin-bottom: 25px;
    position: relative;
    border-bottom: 1px solid var(--border);
}

    .adpost-title::before {
        position: absolute;
        content: "";
        bottom: -2px;
        left: 0px;
        width: 50px;
        height: 2px;
        background: var(--primary);
    }

.form-group {
    margin-bottom: 30px;
}

.form-check-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-bottom: 15px;
}

    .form-check-list li:last-child {
        margin-bottom: 0px;
    }

.form-check {
    width: 15px;
    height: 15px;
    margin-right: 10px;
}

.form-check-text {
    font-weight: 500;
    line-height: 15px;
    text-transform: capitalize;
}

.adpost-plan-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--border);
}

.adpost-plan-content h6 {
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}

    .adpost-plan-content h6 span {
        font-weight: 500;
        font-size: 12px;
        text-transform: capitalize;
    }

.adpost-plan-meta {
    text-align: center;
    margin-left: 30px;
}

    .adpost-plan-meta h3 {
        /*font-family: sans-serif;*/
        margin-bottom: 5px;
    }

    .adpost-plan-meta .btn {
        padding: 6px 20px;
    }

.adpost-agree {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    margin-bottom: 45px;
}

    .adpost-agree .form-group {
        margin: 6px 0px 0px;
    }

@media (max-width: 767px) {
    .adpost-plan-list li {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .adpost-plan-meta {
        margin: 20px 0px 0px;
    }

    .pb-4 .btn {
        padding: 14px 25px;
    }
}
