.sidebar {
    height: calc(100vh - 110px);
    width: 250px;
    border-right: 2px solid var(--bg);
    /* background-color: var(--blue-dark); */
    padding: 10px 0px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s;
}

.hide .sidebar {
    width: 0;
    transition: all 0.3s;
    overflow: hidden;
}

.sidebar li {
    list-style-type: none;
    margin-bottom: 8px;
    padding: 10px 30px;
    cursor: pointer;
}

.sidebar li a {
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    color: var(--off-white);
}

.sidebar li:hover {
    background-color: #262C3D;
    border-right: 5px solid var(--bg);
}

.sidebar ul {
    padding: 0px;
    margin: 0px;
}

.mx-30 {
    margin: 0px 30px;
}

.refer_friend_box {
    /* background-color: var(--blue-light); */
    padding: 58px 25px 20px;
    border-radius: 5px;
    margin-bottom: 10px;
}

.refer_friend_box h3 {
    font-size: 16px;
    font-weight: 400;
    color: var(--off-white);
    text-align: center;
    line-height: 25px;
    margin-bottom: 10px;
}

.refer_friend_box p {
    font-size: 12px;
    font-weight: 200;
    color: #7A7E89;
}

.refer_img {
    position: absolute;
    top: 0px;
    transform: translate(-50%, -50%);
    left: 50%;
}




