@import url('https://fonts.googleapis.com/css2?family=Forum&family=Redacted&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url(./font.css);
* {
    margin: 0;
    padding: 0;
    font-family: Overused Grotesk, sans-serif;
    box-sizing: border-box;
}
:root {
    --primary: #c9a56e;
    --secondary: #f9f4ee;
    --white: #fff;
    --black: #000;
    --grey: #737579;
}
.font-forum {
    font-family: "Forum", serif;
}
.font-italic {
    font-style: italic;
}
.font-poppins{
    font-family: "Poppins", serif;
}
a {
    text-decoration: none;
}
.bg-primary {
    background-color: var(--primary) !important;
}
.bg-secondary {
    background-color: var(--secondary) !important;
}
.border-primary {
    border: 1px solid var(--primary) !important;
}
.border-secondary {
    border: 1px solid var(--secondary) !important;
}
.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    border: 1px solid var(--primary);
}
.text-grey {
    color: var(--grey);
}
.text-primary {
    color: var(--primary) !important;
}
.text-secondary {
    color: var(--secondary) !important;
}
.text-white {
    color: var(--white) !important;
}
.text-black {
    color: var(--black) !important;
}
.fs-58 {
    font-size: 58px;
}
.fs-40 {
    font-size: 40px;
}
.fs-38 {
    font-size: 38px;
}
.fs-32 {
    font-size: 32px;
}
.fs-28 {
    font-size: 28px;
}
.fs-22{
    font-size: 22px;
}
.fs-20 {
    font-size: 20px;
}
.fs-18 {
    font-size: 18px;
}
.fs-16 {
    font-size: 16px;
}
.fs-14 {
    font-size: 14px;
}
.fs-12 {
    font-size: 12px;
}

/* width */
.w-20px {
    width: 20px;
}
.w-30px {
    width: 30px;
}
.w-40px {
    width: 40px;
}
.w-50px {
    width: 50px;
}
.w-60px {
    width: 60px;
}
.w-70px {
    width: 70px;
}
.w-80px {
    width: 80px;
}
.w-90px {
    width: 90px;
}
.w-100px {
    width: 100px;
}
.aspect-1 {
    aspect-ratio: 1;
}
.object-fit-cover {
    object-fit: cover;
}
.object-fit-contain {
    object-fit: contain;
}
.rounded-5{
    border-radius: 30px;
}
body {
    display: flex !important;
    height: 100vh;
}
#sidebar {
    margin-right: 30px;
    width: 320px;
    height: 100vh;
    background-color: var(--primary);
    overflow: hidden;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    & .logo {
        & img {
            padding: 30px;
            border-bottom: 1px solid var(--white);
        }
    }
    & .anchors {
        margin-top: 45px;
        margin-left: 20px;
        margin-right: 20px;
        & #drop {
            position: relative;
            &::before {
                content: unset !important;
            }
        }
        & a {
            margin-bottom: 10px;
            color: var(--white);
            font-size: 22px;
            text-decoration: none;
            display: block;
            padding: 10px 20px;
            position: relative;
            &:hover {
                background-color: #b7925b;
                border-radius: 50px;
                transition: 0.3s ease-in;
            }
        }
    }
}

.logout {
    position: absolute;
    bottom: 5%;
    margin-left: 20px;
    margin-right: 20px;
    & a {
        margin-bottom: 10px;
        color: var(--white);
        font-size: 22px;
        text-decoration: none;
        display: block;
        padding: 10px 20px;
        /* position: relative; */
        color: var(--white);
        text-decoration: none;
        &:hover {
            text-decoration: underline;
        }
    }
}
& .ico {
    &:hover {
        & ::before {
            content: "|";
            position: absolute;
            right: 10%;
            transition: 0.3s ease-in;
        }
    }
}
#main {
    width: calc(100vw - 320px);
    overflow-x: hidden;
    overflow-y: scroll;
}
.navigation {
    background-color: var(--secondary);
    padding: 15px;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    & .back {
        display: flex;
        align-items: center;
        & p {
            margin: 0;
            font-size: 25px;
        }
    }
    .notification {
        & ::before {
            content: "";
            width: 8px;
            height: 8px;
            position: absolute;
            top: 0;
            background-color: var(--primary);
            right: 0;
            border-radius: 50%;
        }
    }
}

#realtor_slider {
    position: relative;
    & .card_content {
        -webkit-writing-mode: vertical-rl;
        text-align: center;
        height: 100%;
        top: 5%;
    }
    & .background {
        &::before {
            content: "";
            width: 100%;
            height: 90%;
            position: absolute;
            bottom: 0;
            left: 0;
            background: var(--primary);
            border-radius: 11px;
            z-index: -1;
        }
    }
    & .background-2 {
        &::before {
            content: "";
            width: 100%;
            height: 90%;
            position: absolute;
            bottom: 0;
            left: 0;
            background: var(--secondary);
            border-radius: 11px;
            z-index: -1;
            border: 1px solid var(--primary);
        }
    }
    & .img_wrap {
        & img {
            height: 280px;
        }
    }
    & .ml-100 {
        margin-left: 100px;
    }
    & .prev-arrow {
        position: absolute;
        top: -24%;
        right: 4%;
        background-color: var(--secondary);
        width: 50px;
        height: 50px;
        border-radius: 50%;
        border: 1px solid var(--primary);
        display: grid;
        place-content: center;
    }
    & .next-arrow {
        position: absolute;
        top: -24%;
        right: 0;
        background-color: var(--primary);
        width: 50px;
        height: 50px;
        border-radius: 50%;
        border: 1px solid var(--primary);
        display: grid;
        place-content: center;
    }
}
.text-grad-1 {
    background: -webkit-linear-gradient(left, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-grad-2 {
    background: -webkit-linear-gradient(
        right,
        var(--primary),
        var(--secondary)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.lh-0-4 {
    line-height: 0.4 !important;
}
.lh-1 {
    line-height: 1 !important;
}

#analytics {
    position: relative;
}
#listing {
    & .img-wrap {
        background-color: var(--primary);
        height: 87px;
        width: 87px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
}
.border-left {
    border-left: 1px solid var(--grey);
}
.chart-container {
    display: flex;
    align-items: flex-end; /* Align bars to the bottom */
    justify-content: center;
    height: 100%;
    width: 200px;
    border-bottom: 1px solid var(--grey); /* Bottom axis line */
    position: relative; /* For absolute positioning of labels */
}

.bar {
    width: 30px;
    margin: 0 10px;
    background-color: var(--primary); /* Golden bar color */
    transition: height 0.5s ease; /* Smooth height transitions */
    border-top-right-radius: 35px;
    border-top-left-radius: 35px;
}

.label {
    position: absolute;
    left: 0;
    width: 100%;
    text-align: center;
    color: #555;
    font-size: smaller;
}

.label.max {
    top: -15px; /* Position above the chart */
}

.label.min {
    bottom: -15px; /* Position below the chart */
}
.chart-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 1px;
    background-color: #ccc;
}
.chart-container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 1px;
    width: 100%;
    background-color: #ccc;
}
.grid-line {
    position: absolute;
    left: 0;
    width: 100%;
    border-top: 1px solid #ccc;
}
.grid-line:nth-child(2) {
    top: 25%;
}
.grid-line:nth-child(3) {
    top: 50%;
}
.grid-line:nth-child(4) {
    top: 75%;
}
.number {
    margin-right: 25px;
    margin-top: -25px;
}
.img-icon {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

table {
    &.dt {
        & th {
            &:first-child {
                padding-left: 30px;
                border-radius: 15px 0 0 15px;
            }
            &:last-child {
                padding-right: 30px;
                border-radius: 0 15px 15px 0;
            }
            border-bottom: unset !important;
        }
        & td {
            &:first-child {
                padding-left: 30px;
            }
            &:last-child {
                padding-right: 30px;
            }
        }
        & tbody > tr:nth-child(odd) > * {
            box-shadow: unset !important;
        }
    }
}

#realtor_properties{
    position: relative;
    & .wrap{
        width : 100%;
        height: 250px;
        object-fit: contain;
        & img{
            width : 100%;
            height : 100%;
            object-fit: cover;
        }
    }
    & .heart{
        height: 58px;
        width: 58px;
        border-radius: 50%;
        border: 2px solid #E8E6F9;
        display: flex;
        justify-content: center;
        align-items: center;

    }
    & .card_content{
        border: 1px solid #F0EFFB;
        padding: 15px 25px;
        background-color: #fff;
    }
    & .popular{
        position: absolute;
        top: 50%;
        left: 0;
        margin-top: -20px;
        width: 137px;
    }
    & .shape {
        position: absolute;
        bottom: -6px;
        left: 3px;
        height: 12px;
        width: 14px;
        background-color: var(--primary);
        z-index: -1;
        transform: rotate(40deg);
    }
    & .borders{
        border-top-left-radius:11px;
        border-top-right-radius: 11px;
        border-bottom-right-radius: 11px;
    }
}
.breadcrumbs{
    & ul{
        & li{
            margin: 0px 15px;
            color: #71717A;
            font-size: 13px;
            font-family: "Poppins", serif;
            &:first-child{
                margin: 0;
            }
        }
    }
}
iframe{
    width: 100%;
    height: 100%;
    border-radius: 15px;
}
.p-6{
    padding: 15px 35px;
}


.breadcrumbs{
    & li{
        font-size: 12px;
    }

    & .fa-greater-than{
        font-size: 10px;
    }
}


#realtor_profile{
    position: relative;
    & .realtor{
        & img {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            line-height: 120px;
            border: 4px dotted var(--primary);
        }
    }
}
#connections{
    position: relative;
    & .nav-link{
        color: var(--primary);
    }
    & .wrap{
        height: 110px;
        width: 110px;
        object-fit: cover;
        aspect-ratio: 1/1;
        border-radius: 50%;
        overflow: hidden;
        border: 2px dotted var(--primary);
    }
    & .action_btns{
        & a{
            width: 50px;
            height: 50px;
            line-height: 37px;
        }
        & :hover{
            background-color: var(--primary);
            color: #fff !important;
        }
    }
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link
{
    background-color: var(--primary);
    color: #fff !important;
}

.avatar-name {
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 100%;
    border: 1px solid;

    overflow: hidden;
    background-color: var(--primary);
    /* border-color: var(--grey); */
}

.blur {
    filter: blur(3px);
  }