.default, .lightmode {
    --background-color        : #f0f0f0;
    --text-color              : #000;
    --inversed-text-color     : #fff;
    --content-background-color: #fff;
    --card-border-color       : #fff;
}

@media only screen and (prefers-color-scheme: dark) {
    .default {
        --background-color        : #141414;
        --text-color              : #fff;
        --inversed-text-color     : #000;
        --content-background-color: #000;
        --card-border-color       : #444;
    }
}

.darkmode {
    --background-color        : #141414;
    --text-color              : #fff;
    --inversed-text-color     : #000;
    --content-background-color: #000;
    --card-border-color       : #444;
}

.kgp-logo {
    padding: 0 1rem;
    font-size: 1.5rem;
    font-family: 'Times New Roman', Times, serif;
    font-weight: bold;
    cursor: default;
}

.kgp-logo:hover {
    cursor: default;
}

.kgp-logo-small {
    display: none;
    font-size: 1.5rem;
    font-family: 'Times New Roman', Times, serif;
    font-weight: bold;
    cursor: default;
}

.kgp-logo-small:hover {
    cursor: default;
}

.content {
    padding-left : var(--bs-gutter-x, .75rem);
    padding-right: var(--bs-gutter-x, .75rem);
}

h1 {
    margin-bottom: 2rem;
}

h3 {
    font-size: 2rem;
}

.card {
    background-color: var(--content-background-color);
    color           : var(--text-color);
    border-width    : 1px;
    border-radius: 1rem;
    border-color    : var(--card-border-color);
    margin-bottom   : var(--bs-gutter-x, .75rem);
}

.card-content {
    display        : flex;
    justify-content: space-between;
    flex-wrap      : wrap;
    gap            : 8px;
}

.content-header {
    margin-bottom: 1rem;
}

.kgp-equipment {
    margin-bottom: 0;
    display: flex;
    justify-content: space-between;
}

.kgp-equipment-txt {
    display: inline-block;
    padding-right: 2rem;
    width: 50%;
}

.kgp-equipment-img {
    display: inline-block;
    width: 50%;
}

.kgp-loc-txt {
    width: 59%;
    display: inline-block;
    vertical-align: top;
}

.slate {
    display        : flex;
    justify-content: space-between;
    justify-items  : stretch;
    flex-wrap      : wrap;
}

.slate-left {
    width: 49.5%;
}

.slate-right {
    width: 49.5%;
}

.round-radius {
    border-radius: 0.5rem;
}

@media only screen and (max-width: 768px) {
    .content {
        padding-top: 1rem;
    }

    .kgp-logo {
        padding: 0;
        margin-left: 1rem;
    }

    .kgp-equipment {
        display: block;
    }

    .kgp-equipment-txt {
        padding: none;
        display: block;
        width: 100%;
    }

    .kgp-equipment-img {
        display: block;
        width: 100%;
    }

    .kgp-loc-txt {
        width: 100%;
        display: block;
    }

    .kpg-loc-map {
        width: 100%;
        display: block;
    }

    .slate-left {
        width: 100%;
    }
    
    .slate-right {
        width: 100%;
    }
}

@media only screen and (max-width: 420px) {
    .kgp-logo {
        display: none;
    }

    .kgp-logo-small {
        display: inline-block;
        margin-left: 1rem;
    }
}