.dashboard_card {
    width: 100%;
    background-color: #b3e5fc;
    position: relative;
    border-radius: 10px;
    padding: 25px;
    height: 140px;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
    /* overflow: hidden; */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 20px;
}

.dashboard_card.bg_1 {
    background-color: #BEFFBC;
}

.dashboard_card.bg_1 .corner i {
    background-color: #BEFFBC;
    color: #2AA129;
}

.dashboard_card.bg_2 {
    background-color: #FFEAB9;
}

.dashboard_card.bg_2 .corner i {
    background-color: #FFEAB9;
    color: #C8961D;
}

.dashboard_card.bg_3 {
    background-color: #F6FFC0;
}

.dashboard_card.bg_3 .corner i {
    background-color: #F6FFC0;
    color: #9BAE26;
}

.dashboard_card .corner {
    background-color: #F7F7F7;
    height: 45px;
    width: 45px;
    line-height: 45px;
    text-align: center;
    position: absolute;
    right: -2px;
    bottom: -2px;
    border-radius: 20px 0px 10px 0px;
    border-top: 2px solid transparent;
    border-left: 2px solid transparent;
}


.dashboard_card .chat_icons {
    position: absolute;
    bottom: 0;
    right: 0;
}

.dashboard_card .corner i {
    width: 30px;
    height: 30px;
    line-height: 30px;
    color: #147487;
    background-color: #b3e5fc;
    border-radius: 50px;
    text-align: center;
    font-size: 12px;
}

.dashboard_card h4 {
    color: #686868;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard_card h4 img {
    width: 35px;
}

.dashboard_card h3 {
    color: #147487;
    margin-bottom: 0;
}

.dashboard_card.bg_1 h3{
    color: #2AA129;
}

.dashboard_card.bg_2 h3{
    color: #C8961D;
}


.dashboard_card.bg_3 h3{
    color: #9BAE26;
}


.dashboard_card_map {
    background-color: #FFFFFF;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 10px;
}

.dashboard_card_map h4 {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.dashboard_card_map h4 span {
    font-size: 12px;
    font-weight: 500;
    color: #565656;
}

.dashboard_card_map h4 span i {
    font-size: 6px;
    margin-right: 5px;
    color: #5CC65B;
}

.dashboard_card_map h4 span i.yellow {
    color: #EFBE44;

}

.dashboard_card_map h4 span a {
    color: #2AA129;

}

.dashboard_card_map .table {
    margin-bottom: 5px;
}

.dashboard_card_map .btn_more {
    color: #2AA129;
    font-weight: 500;
}