.actionCard {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 17vh;
    min-width: 31.5%;
    border-radius: 8px;
    background-color: #fff;
    margin-right: 2.5%;
    padding-block: 2vh;
    cursor: pointer;
}

.actionCard .moreIcon {
    background-image:url("http://d1gq9jzbezk7fw.cloudfront.net/d/en_US/gv/i/plus_circle_outline_v1.svg");
    background-size: contain;
    background-repeat: no-repeat;
    height: 40px;
    width: 40px;
}

.actionCard .divider {
    background-color: #cae4ef;
    width: 90%;
    height: 1px;
    margin-block: 1vh;
}

.actionCard .text {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Metropolis Bold";
    font-size: 15px;
    line-height: 16px;
    letter-spacing: 0.12px;
    color: #0d4962;
    text-align: center;
    width: 80%;
    min-height: 32px;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* iPad */
@media (min-width: 768px) and (max-width: 1024px) {
    .actionCard {
        width: 46%;
        height: 135px;
        margin: 0 10px 10px 0;
        padding-block: 10px;
    }
    .actionCard .text {
        font-size: 16px;
        line-height: 22px;
        letter-spacing: 0.16px;
        min-height: 44px;
    }
}

/* ################# dark mode ################### */
.dark .actionCard {
    background-color: #0d4962;
}

.dark .actionCard .text {
    color: rgba(255, 255, 255, 0.87);
}

.dark .actionCard .moreIcon {
    background-image:url("http://d1gq9jzbezk7fw.cloudfront.net/d/en_US/gv/i/more_icon_white_back_office_v1.svg");    
}

@media (min-width: 1024px) {
    .actionCard {
        min-width: 17%;
    }
}