﻿.st_divWrapper {
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    clear: both;
}

.st_cardlink {
    text-decoration: none;
    color: blue;
}

    .st_cardlink:hover {
        /*box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;*/
        box-shadow: var(--input-border-focus);
        cursor: pointer;
    }

.st_cardMain {
    border: var(--input-border-primary);
    border-radius: 15px;
    position: relative;
    height: 160px;
    width: 160px;
    display: table-cell;
}

.st_cardCallRptNew {
    background-position: top;
    background-size: 60%;
    background-repeat: no-repeat;
    background-image: url("../Images/Cards/card_callrptnew.png");
}

.st_cardCallRptSearch {
    background-position: top;
    background-size: 60%;
    background-repeat: no-repeat;
    background-image: url("../Images/Cards/card_callrptsearch.png");
}

.st_cardDashboards {
    background-position: top;
    background-size: 60%;
    background-repeat: no-repeat;
    background-image: url("../Images/Cards/card_dashboards.png");
}

.st_cardCallRptSetup {
    background-position: top;
    background-size: 60%;
    background-repeat: no-repeat;
    background-image: url("../Images/Cards/card_callrptsetup.png");
}

.st_cardLibrary {
    background-position: top;
    background-size: 60%;
    background-repeat: no-repeat;
    background-image: url("../Images/Cards/card_Library.png");
}

.st_cardException {
    background-position: top;
    background-size: 60%;
    background-repeat: no-repeat;
    background-image: url("../Images/Cards/card_exception.png");
}

.st_cardDuplicate {
    background-position: top;
    background-size: 60%;
    background-repeat: no-repeat;
    background-image: url("../Images/Cards/card_duplicate.png");
}

.st_cardFooter {
    width: 100%;
    height: 100px;
    padding-top: 25px;
    text-align: center;
    position: absolute;
    bottom: 0;
}

.st_cardText {
    padding: 0 10px;
    width: 100%;
    font-weight: bolder;
    font-size: 0.90rem;
    text-align: center;
    position: absolute;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
    bottom: 0;
    height: 60px;
    line-height: 1.2rem;
    background-color: var(--bg-light);
    border-top: solid 1px silver;
    border-radius: 0 0 15px 15px;
    overflow-y: auto;

}

@media screen and (max-width: 1200px) {
    .st_divWrapper {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media screen and (max-width: 850px) {
    .st_divWrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 550px) {
    .st_divWrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .st_cardMain {
        height: 75px;
        width: 330px;
    }

    .st_cardText {
        height: 100%;
        top: 0;
        line-height: 25px;
        background-color: var(--bg-light);
        border-radius: 15px 15px;
    }

}


