/*.page-content {
    margin-top: 0 !important;
    padding: calc(70px + 24px) calc(24px / 2) 60px calc(24px / 2) !important;
}*/
.board_wrapper {
    background: transparent;
    margin: 0 !important;
}

.flexContainer {
    overflow-y: auto;
    flex: 1;
}

    .flexContainer .overflowContainer {
        overflow-y: auto;
        padding-inline-end: 5px;
    }

#ordersContainer {
    background: var(--transparentPink);
    padding: 1rem;
    border-radius: 1rem;
}

    #ordersContainer .orderRow {
        width: 100%;
        display: flex;
        align-items: center;
        padding: 0.5rem;
        transition: all 0.3s ease-in-out;
        border-bottom: 1px solid #e9e9e9;
        justify-content: space-between;
        cursor: pointer;
        border-radius: 1rem;
    }

        #ordersContainer .orderRow:hover {
            background-color: var(--tablesRowsHoverColor) !important;
        }

.dashboardRow {
    width: 100%;
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease-in-out;
    border-bottom: 1px solid #e9e9e9;
}

    .dashboardRow .roundName {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 0.8rem;
        font-weight: bold;
        color: #fff;
        background: var(--seconadryPink);
        margin-inline-end: 0.5rem;
        transition: all 0.3s ease-in-out;
    }

    .dashboardRow:hover {
        background: var(--transparentPink);
        border-radius: 1rem;
        font-weight: bold;
    }

.profile_card {
    border-radius: 1rem;
    box-shadow: inset 1px 1px 7px #dbdbdb;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    /*padding-top: 4rem;*/
    height: 100%;
}

    .profile_card .logo-light {
        display: none !important;
    }

    .profile_card .logo-dark {
        display: block !important;
    }

.exit_btn {
    width: 90%;
    cursor: pointer;
    border-radius: 1rem;
    padding: 0.7rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    box-shadow: 0 0 5px #efeded;
}

.home_linkRow {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

.home_cards {
    display: flex;
    flex-direction: column;
    width: 100%;
    /* cursor: pointer; */
    background: #fff;
    box-shadow: #f6f6f6 1px 1px 20px;
    align-items: center;
    justify-content: flex-start;
    border-radius: 1rem;
}

    /*    .home_cards > div {
        height: 50%;
        width: 100%;
    }*/

    .home_cards .icon {
        color: var(--primaryColor);
        font-size: 1.5rem;
        margin-inline-end: 0.5rem;
    }
/* ____________________________ RESPONSIVNESS ____________________________  */

/* // Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    .container-fluid, .board {
        padding: 0 !important;
    }
}

/* // Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
}

/* // Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
}
/* // Tablet & Screens View and above */
@media (min-width: 768px) {
    .board_wrapper {
        height: 80vh;
        max-height: 80vh;
    }

    .board {
        overflow-y: auto;
        max-height: 80vh;
    }

    .home_cards {
        height: 100%;
        margin-top: 0.25rem;
    }
}
/* // Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
}

/* // Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
}