/*
 * Filename: /Users/nate.weber/Desktop/Website/styles.css
 * Path: /Users/nate.weber/Desktop/Website
 * Created Date: Wednesday, August 25th 2021, 9:18:32 am
 * Author: Nate Weber
 *
 * Copyright (c) 2021 MacPractice
 */

 /* || Utilities */
 .mp-bg-primary {
     background-color: #1f6a96;
 }

 .mp-bg-secondary {
     background-color: #63bbe0;
 }

 /* || Page Header */
.mp-page-header {
    margin-top: -20px;
    background-color: #f7f7f7;
    min-height: 72px;
}

.mp-page-header > .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 20px
}

/* Page Header Pills */
.mp-page-header > .container > .nav-pills {
    margin-top: 0;
}

.mp-page-header .nav-pills > li + li {
    margin-left: 0;
}

.mp-page-header .nav-justified > li > a {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0;
}

.mp-page-header .nav-pills > li > a {
    min-height: 30px;
    border: 1px solid #8c8c8c;
    background-color: #fff;
    vertical-align: middle;
}

.mp-page-header .nav-pills > li > a,
.mp-page-header .nav-pills > li > a:hover,
.mp-page-header .nav-pills > li.active > a:hover,
.mp-page-header .nav-pills > li.active > a:focus {
    color: #707070;
}

.mp-page-header .nav-pills > li.active > a,
.mp-page-header .nav-pills > li.active > a:hover,
.mp-page-header .nav-pills > li.active > a:focus,
.mp-page-header .nav-pills > li > a:hover {
    background-color: #e6e6e6;
}

.mp-page-title {
    color: #707070;
    font-weight: 300;
    font-size: 28px;
}

.mp-page-title strong {
    color: #1f6a96;
    font-weight: 600;
}

/* || Section */
.mp-section {
    display: flex;
    flex-direction: column;
    row-gap: 30px;
}

.mp-section-alt {
    background-color: #f7f7f7;
    padding: 40px 0;
}

.mp-section h2 {
    font-size: 24px;
}

.mp-section h3 {
    font-size: 20px;
}

/* || Tables */
.mp-requirements-table {
    table-layout: fixed;
    margin-bottom: 0;
}

.mp-requirements-table > thead > tr,
.mp-requirements-table > tbody > tr {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
}

.mp-requirements-table > thead > tr > th,
.mp-requirements-table > tbody > tr > th,
.mp-requirements-table > tbody > tr > td {
    display: block;
    width: 50%;
    border: none;
    min-height: 28px;
}

.mp-requirements-table > thead > tr > th:first-child,
.mp-requirements-table > tbody > tr > th:first-child,
.mp-requirements-table > tbody > tr > td:first-child {
    text-align: center;
    width: 100%;
}

.mp-requirements-table > thead > tr > h2 {
    margin-top: 10px;
}

.mp-requirements-table > tbody {
    border: 2px solid #dadada;
}

.mp-requirements-table > tbody > tr > td {
    font-size: 14px;
    color: #555;
}

.mp-requirements-table > tbody > tr:nth-child(odd) {
    background-color: #f7f7f7;
}

.mp-requirements-table thead th {
    color: #fff;
    text-align: center;
}

.mp-requirements-table th {
    font-size: 18px;
}

.mp-requirements-table td {
    text-align: center;
}

.mp-section h2,
.mp-section h3,
.mp-requirements-table > tbody > tr > th {
    color: #1f6a96;
}

/* || Card */
.mp-card-group,
.mp-card-group-center {
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    align-items: stretch;
}

.mp-card-group-item {
    padding-bottom: 15px;
}

.mp-card-group-item:last-child {
    padding-bottom: 0;
}

.mp-card {
    display: inline-block;
    width: 100%;
    border: 1px solid #e1e1e1;
    background-color: #efefef;
    margin: 0;
    border-radius: 4px;
}

.mp-card-heading {
    display: flex;
    align-items: center;
    background-color: #dedede;
    min-height: 40px;
    padding: 10px 30px;
}

.mp-card-heading-center {
    justify-content: center;
}
.mp-card-title {
    margin: 0;
}

.mp-card-body {
    margin: 24px;
}

.mp-card-body li {
    margin-left: -24px;
}

.mp-card-body p,
.mp-card-body ul,
.mp-card-body li {
    font-size: 16px;
}

/* Tablet */
@media (min-width: 768px) {
    .mp-requirements-table > tbody > tr > td {
        font-size: 16px;
    }

    .mp-page-header .nav-pills {
        margin-top: 30px;
    }

    .mp-page-header .nav-pills > li > a {
        min-height: 66px;
    }

    .mp-page-header .nav-justified > li:first-of-type > a {
        border-radius: 8px 0 0 8px;
    }

    .mp-page-header .nav-justified > li:last-of-type > a {
        border-radius: 0 8px 8px 0;
    }
}

/* Desktop */
@media (min-width: 992px) {
    .mp-page-header {
        min-height: 6.4em;
    }
    .mp-page-title {
        font-size: 48px;
    }

    .mp-section {
        row-gap: 60px;
    }

    .mp-section h2 {
        font-size: 32px;
    }

    .mp-section h3 {
        font-size: 24px;
    }

    .mp-card-group {
        flex-direction: row;
        justify-content: space-between;
        align-items: stretch;
    }

    .mp-card-group-center {
        flex-direction: row;
        justify-content: center;
        column-gap: 80px;
    }

    .mp-card-group-item {
        padding-bottom: 0;
    }

    .full-height {
        height: 100%;
    }

    .mp-card-heading {
        min-height: 60px;
    }

    .mp-spec-card {
        width: 300px;
    }

    /* || Tables */
    .mp-requirements-table > thead > tr,
    .mp-requirements-table > tbody > tr {
        display: table-row;
    }

    .mp-requirements-table > thead > tr > th,
    .mp-requirements-table > tbody > tr > th,
    .mp-requirements-table > tbody > tr > td {
        display: table-cell;
        height: 86px;
        vertical-align: middle;
    }

    .mp-requirements-table > thead > tr > th:first-child,
    .mp-requirements-table > tbody > tr > th:first-child {
        text-align: right;
        width: 260px;
        padding-right: 32px;
    }

    .mp-requirements-table > thead > tr > h2 {
        margin-top: 10px;
    }

    .mp-requirements-table > tbody {
        border: none;
    }

    .mp-requirements-table > tbody > tr > td {
        font-size: 18px;
        border-left: 2px solid #dadada;
    }

    .mp-requirements-table > tbody > tr:nth-child(odd) {
        background-color: #f7f7f7;
    }

    .mp-requirements-table thead th {
        color: #fff;
        text-align: center;
    }

    .mp-requirements-table th {
        font-size: 24px;
    }

    .mp-section h2,
    .mp-section h3,
    .mp-requirements-table > tbody > tr > th {
        color: #1f6a96;
    }
}