﻿.grid-item {
    text-align: center;
    border-radius: 10px;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.75);
    overflow: hidden;
    max-height: 250px;
    min-width: 260px;
    max-width: 300px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

    .grid-item:hover .background {
        background-color: #45658d;
    }

.background {
    height: 120px;
    padding: 10px 0;
    transition: background-color 0.2s;
    background-color: inherit;
    display: flex;
    justify-content: center;
    align-items: center;
}

span {
    color: white;
    font-size: 2.5rem;
}

.panel-body {
    background-color: white;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    position: relative;
}

    .panel-body h4 {
        margin: 0;
        font-size: 18px;
        color: #333;
        text-align: center;
        line-height: 1.2;
    }
