html {
    font-size: 14px;
    color: #363636;
    background-color: #F4FBFA;
    font-family: Source Sans Pro, Calibri, Arial, sans-serif;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-top: 10px;
    margin-bottom: 60px;
    background-color: transparent;
}

.mychart-theme h1, .mychart-theme h2, .mychart-theme h3, .mychart-theme h4 {
    color: #2088B9;
}

.mychart-theme .button {
    box-shadow: inset 0 -2px 0 0 rgb(0 0 0 / 20%);
    color: #ffffff;
    background-color: #44BEAC;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: block;
    fill: currentColor;
    font-family: inherit;
    font-size: 1rem;
    line-height: normal;
    margin: 0.5rem 0;
    padding: 0.375rem 0.75rem;
    position: relative;
    text-align: center;
    user-select: none;
    white-space: normal;
}

    .mychart-theme .button:disabled {
        background-color: lightgray;
        color: gray;
        cursor: default;
    }

.mychart-theme table {
    border-collapse: separate;
    border-spacing: 0;
    background-color: transparent;
}

    .mychart-theme table th {
        padding: 10px;
        background-color: rgba(32, 136, 185, 0.05);
        color: #2088B9;
    }

    .mychart-theme table tr {
        background-color: transparent;
    }

    .mychart-theme table td {
        padding: 10px;
        background-color: white;
    }

.mychart-theme .cards {
    max-width: 500px
}

    .mychart-theme .cards button {
        border: none;
        background-color: transparent;
        width: 100%;
    }

.mychart-theme .card {
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
    text-align: left;
    color: #363636;
    font-size: 15px;
    font-weight: normal;
    min-width: 100%;
    min-height: 125px;
    padding-bottom: 5px;
    margin-bottom: 20px;
}

.mychart-theme .cardhover:hover {
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.5);
}

.mychart-theme .card .head {
    color: #2088B9;
    font-size: 19px;
    font-weight: 400;
    margin-top: 5px;
    margin-bottom: 10px;
}

.mychart-theme .card.highlight {
    box-shadow: 0 16px 32px 0 rgba(0,0,0,0.5);
}

.mychart-theme .card .container {
    padding: 2px 16px;
}

.mychart-theme .card .spinner {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .mychart-theme .card .spinner img {
        width: 64px;
    }