/*!
 * Boilerpuddy - Minimal CSS based on Bootstrap v4.2.1
 * Only includes styles used by the TTPotM project
 * Copyright 2011-2018 The Bootstrap Authors
 * Licensed under MIT
 */

/* ========================================================================
   CSS Reset and Base Styles
   ======================================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-family: "Helvetica Neue", sans-serif;
    color: #222;
}

body {
    margin: 0;
    font-family: "Helvetica Neue", sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    color: #222;
    text-align: left;
    background-color: transparent;
}

/* ========================================================================
   Typography
   ======================================================================== */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
}

h1,
.h1 {
    font-size: 2.5rem;
}
h2,
.h2 {
    font-size: 1.5rem;
}
h3,
.h3 {
    font-size: 1.25rem;
}
h4,
.h4 {
    font-size: 1.5rem;
}
h5,
.h5 {
    font-size: 1.25rem;
}
h6,
.h6 {
    font-size: 1rem;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
}

code {
    font-family:
        SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
        "Courier New", monospace;
    font-size: inherit;
    color: inherit;
}

/* ========================================================================
   Links
   ======================================================================== */
a {
    color: #222;
    text-decoration: none;
    background-color: transparent;
}

a:hover {
    text-decoration: underline;
}

a:not([href]):not([tabindex]) {
    color: inherit;
    text-decoration: none;
}

/* ========================================================================
   Images
   ======================================================================== */
img {
    vertical-align: middle;
    border-style: none;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.img-thumbnail {
    padding: 0.25rem;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    max-width: 100%;
    height: auto;
}

/* ========================================================================
   Layout - Grid System
   ======================================================================== */
.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

/* Column classes */
.col,
.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col-auto,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm,
.col-sm-auto,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md,
.col-md-auto,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg,
.col-lg-auto,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl,
.col-xl-auto {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.col-1,
.col-sm-1,
.col-md-1,
.col-lg-1,
.col-xl-1 {
    width: 8.333333%;
}
.col-2,
.col-sm-2,
.col-md-2,
.col-lg-2,
.col-xl-2 {
    width: 16.666667%;
}
.col-3,
.col-sm-3,
.col-md-3,
.col-lg-3,
.col-xl-3 {
    width: 25%;
}
.col-4,
.col-sm-4,
.col-md-4,
.col-lg-4,
.col-xl-4 {
    width: 33.333333%;
}
.col-5,
.col-sm-5,
.col-md-5,
.col-lg-5,
.col-xl-5 {
    width: 41.666667%;
}
.col-6,
.col-sm-6,
.col-md-6,
.col-lg-6,
.col-xl-6 {
    width: 50%;
}
.col-7,
.col-sm-7,
.col-md-7,
.col-lg-7,
.col-xl-7 {
    width: 58.333333%;
}
.col-8,
.col-sm-8,
.col-md-8,
.col-lg-8,
.col-xl-8 {
    width: 66.666667%;
}
.col-9,
.col-sm-9,
.col-md-9,
.col-lg-9,
.col-xl-9 {
    width: 75%;
}
.col-10,
.col-sm-10,
.col-md-10,
.col-lg-10,
.col-xl-10 {
    width: 83.333333%;
}
.col-11,
.col-sm-11,
.col-md-11,
.col-lg-11,
.col-xl-11 {
    width: 91.666667%;
}
.col-12,
.col-sm-12,
.col-md-12,
.col-lg-12,
.col-xl-12 {
    width: 100%;
}

.col-auto,
.col-sm-auto,
.col-md-auto,
.col-lg-auto,
.col-xl-auto {
    flex: 0 0 auto;
    width: auto;
}

/* Offset classes */
.offset-1,
.col-sm-offset-1,
.col-md-offset-1,
.col-lg-offset-1,
.col-xl-offset-1 {
    margin-left: 8.333333%;
}
.offset-2,
.col-sm-offset-2,
.col-md-offset-2,
.col-lg-offset-2,
.col-xl-offset-2 {
    margin-left: 16.666667%;
}
.offset-3,
.col-sm-offset-3,
.col-md-offset-3,
.col-lg-offset-3,
.col-xl-offset-3 {
    margin-left: 25%;
}
.offset-4,
.col-sm-offset-4,
.col-md-offset-4,
.col-lg-offset-4,
.col-xl-offset-4 {
    margin-left: 33.333333%;
}
.offset-5,
.col-sm-offset-5,
.col-md-offset-5,
.col-lg-offset-5,
.col-xl-offset-5 {
    margin-left: 41.666667%;
}
.offset-6,
.col-sm-offset-6,
.col-md-offset-6,
.col-lg-offset-6,
.col-xl-offset-6 {
    margin-left: 50%;
}
.offset-7,
.col-sm-offset-7,
.col-md-offset-7,
.col-lg-offset-7,
.col-xl-offset-7 {
    margin-left: 58.333333%;
}
.offset-8,
.col-sm-offset-8,
.col-md-offset-8,
.col-lg-offset-8,
.col-xl-offset-8 {
    margin-left: 66.666667%;
}
.offset-9,
.col-sm-offset-9,
.col-md-offset-9,
.col-lg-offset-9,
.col-xl-offset-9 {
    margin-left: 75%;
}
.offset-10,
.col-sm-offset-10,
.col-md-offset-10,
.col-lg-offset-10,
.col-xl-offset-10 {
    margin-left: 83.333333%;
}
.offset-11,
.col-sm-offset-11,
.col-md-offset-11,
.col-lg-offset-11,
.col-xl-offset-11 {
    margin-left: 91.666667%;
}

/* Flex utilities */
.d-flex {
    display: flex;
}

.flex-md-row {
    flex-direction: row;
}

@media (min-width: 768px) {
    .flex-md-row {
        flex-direction: row;
    }
}

.align-self-center {
    align-self: center;
}

.float-left {
    float: left;
}

/* ========================================================================
   Spacing Utilities
   ======================================================================== */
.m-0 {
    margin: 0;
}
.mt-0,
.my-0 {
    margin-top: 0;
}
.mr-0,
.mx-0 {
    margin-right: 0;
}
.mb-0,
.my-0 {
    margin-bottom: 0;
}
.ml-0,
.mx-0 {
    margin-left: 0;
}
.m-1 {
    margin: 0.25rem;
}
.mt-1,
.my-1 {
    margin-top: 0.25rem;
}
.mr-1,
.mx-1 {
    margin-right: 0.25rem;
}
.mb-1,
.my-1 {
    margin-bottom: 0.25rem;
}
.ml-1,
.mx-1 {
    margin-left: 0.25rem;
}
.m-2 {
    margin: 0.5rem;
}
.mt-2,
.my-2 {
    margin-top: 0.5rem;
}
.mr-2,
.mx-2 {
    margin-right: 0.5rem;
}
.mb-2,
.my-2 {
    margin-bottom: 0.5rem;
}
.ml-2,
.mx-2 {
    margin-left: 0.5rem;
}
.m-3 {
    margin: 1rem;
}
.mt-3,
.my-3 {
    margin-top: 1rem;
}
.mr-3,
.mx-3 {
    margin-right: 1rem;
}
.mb-3,
.my-3 {
    margin-bottom: 1rem;
}
.ml-3,
.mx-3 {
    margin-left: 1rem;
}
.m-4 {
    margin: 1.5rem;
}
.mt-4,
.my-4 {
    margin-top: 1.5rem;
}
.mr-4,
.mx-4 {
    margin-right: 1.5rem;
}
.mb-4,
.my-4 {
    margin-bottom: 1.5rem;
}
.ml-4,
.mx-4 {
    margin-left: 1.5rem;
}
.m-5 {
    margin: 3rem;
}
.mt-5,
.my-5 {
    margin-top: 3rem;
}
.mr-5,
.mx-5 {
    margin-right: 3rem;
}
.mb-5,
.my-5 {
    margin-bottom: 3rem;
}
.ml-5,
.mx-5 {
    margin-left: 3rem;
}

.p-0 {
    padding: 0;
}
.pt-0,
.py-0 {
    padding-top: 0;
}
.pr-0,
.px-0 {
    padding-right: 0;
}
.pb-0,
.py-0 {
    padding-bottom: 0;
}
.pl-0,
.px-0 {
    padding-left: 0;
}
.p-1 {
    padding: 0.25rem;
}
.pt-1,
.py-1 {
    padding-top: 0.25rem;
}
.pr-1,
.px-1 {
    padding-right: 0.25rem;
}
.pb-1,
.py-1 {
    padding-bottom: 0.25rem;
}
.pl-1,
.px-1 {
    padding-left: 0.25rem;
}
.p-2 {
    padding: 0.5rem;
}
.p-3 {
    padding: 1rem;
}
@media (min-width: 768px) {
    .p-md-5 {
        padding: 3rem;
    }
}
.px-0 {
    padding-right: 0;
    padding-left: 0;
}
.pb-3 {
    padding-bottom: 1rem;
}

.m-auto {
    margin: auto;
}
.mt-auto,
.my-auto {
    margin-top: auto;
}
.mr-auto,
.mx-auto {
    margin-right: auto;
}
.mb-auto,
.my-auto {
    margin-bottom: auto;
}
.ml-auto,
.mx-auto {
    margin-left: auto;
}

/* ========================================================================
   Background and Border Utilities
   ======================================================================== */
.bg-transparent {
    background-color: transparent;
}

.border-0 {
    border: 0;
}

.rounded {
    border-radius: 0.25rem;
}

/* ========================================================================
   Text Utilities
   ======================================================================== */
.text-dark {
    color: #222;
}

.text-center {
    text-align: center;
}

/* ========================================================================
   Component: Jumbotron
   ======================================================================== */
.jumbotron {
    padding: 2rem 1rem;
    margin-bottom: 2rem;
    background-color: transparent;
    border-radius: 0.25rem;
}

@media (min-width: 768px) {
    .jumbotron {
        padding: 4rem 2rem;
    }
}

/* ========================================================================
   Component: Cards
   ======================================================================== */
.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    height: var(--bs);
    word-wrap: break-word;
    background-clip: border-box;
}

.card > hr {
    margin-right: 0;
    margin-left: 0;
}

.card-body {
    flex: 1 1 auto;
    padding: 1rem 1rem;
}

.card-title {
    margin-bottom: 0.5rem;
}

.card-text:last-child {
    margin-bottom: 0;
}

.card-columns {
    column-count: 1;
    column-gap: 1.25rem;
}

@media (min-width: 768px) {
    .card-columns {
        column-count: 2;
    }
}

@media (min-width: 992px) {
    .card-columns {
        column-count: 3;
    }
}

.flex-md-row {
    flex-direction: column;
}

@media (min-width: 768px) {
    .flex-md-row {
        flex-direction: row;
    }
}

/* ========================================================================
   Component: Navbar
   ======================================================================== */
.navbar {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 1rem;
}

.navbar > .container,
.navbar > .container-fluid {
    display: flex;
    flex-wrap: inherit;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    display: inline-block;
    padding-top: 0.3125rem;
    padding-bottom: 0.3125rem;
    margin-right: 1rem;
    font-size: 1.25rem;
    line-height: inherit;
    white-space: nowrap;
}

.navbar-nav {
    display: flex;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.navbar-text {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.nav-link {
    display: inline-block;
    padding: 0.5rem 1rem;
}

.navbar-dark .navbar-brand {
    color: rgba(255, 255, 255, 0.9);
}

.navbar-dark .navbar-brand:hover,
.navbar-dark .navbar-brand:focus {
    color: #fff;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.5);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus {
    color: rgba(255, 255, 255, 0.75);
}

.navbar-dark .navbar-text {
    color: rgba(255, 255, 255, 0.5);
}

.navbar-dark .navbar-text a,
.navbar-dark .navbar-text a:hover,
.navbar-dark .navbar-text a:focus {
    color: #fff;
}

/* ========================================================================
   Component: Forms
   ======================================================================== */
.form-inline {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
}

.form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition:
        border-color 0.15s ease-in-out,
        box-shadow 0.15s ease-in-out;
}

.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* ========================================================================
   Component: List Group
   ======================================================================== */
.list-group {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
}

.list-group-item-action {
    width: 100%;
    color: #495057;
    text-align: inherit;
}

.list-group-item-action:hover,
.list-group-item-action:focus {
    color: #495057;
    text-decoration: none;
    background-color: #f8f9fa;
}

.list-group-item-action:active {
    color: #212529;
    background-color: #e9ecef;
}

.list-group-item {
    position: relative;
    display: block;
    padding: 0.5rem 1rem;
    margin-bottom: -1px;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.125);
}

.list-group-item:first-child {
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}

.list-group-item:last-child {
    margin-bottom: 0;
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
}

.list-group-item.disabled,
.list-group-item:disabled {
    color: #6c757d;
    pointer-events: none;
    background-color: transparent;
}

/* ========================================================================
   Component: Buttons
   ======================================================================== */
.btn {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition:
        color 0.15s ease-in-out,
        background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out,
        box-shadow 0.15s ease-in-out;
}

.btn:hover {
    text-decoration: none;
}

.btn:focus,
.btn.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.btn.disabled,
.btn:disabled {
    opacity: 0.65;
}

.btn-primary {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:hover {
    color: #fff;
    background-color: #0069d9;
    border-color: #0062cc;
}

.btn-primary:focus,
.btn-primary.focus {
    box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
}

.btn-primary.disabled,
.btn-primary:disabled {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-secondary {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}

.btn-secondary:hover {
    color: #fff;
    background-color: #5a6268;
    border-color: #545b62;
}

.btn-secondary:focus,
.btn-secondary.focus {
    box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
}

.btn-secondary.disabled,
.btn-secondary:disabled {
    background-color: #6c757d;
    border-color: #6c757d;
}

.btn-link {
    font-weight: 400;
    color: #007bff;
    border-radius: 0;
}

.btn-link:hover {
    color: #0056b3;
    text-decoration: underline;
    background-color: transparent;
}

.btn-link:focus,
.btn-link.focus {
    color: #0056b3;
    text-decoration: underline;
    background-color: transparent;
}

.btn-link.disabled,
.btn-link:disabled {
    color: #6c757d;
}

/* ========================================================================
   Component: Modal
   ======================================================================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    display: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0;
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 0.5rem;
    pointer-events: none;
}

.modal.fade .modal-dialog {
    transition: transform 0.3s ease-out;
    transform: translate(0, -25%);
}

.modal.show .modal-dialog {
    transform: translate(0, 0);
}

.modal-dialog-centered {
    display: flex;
    align-items: center;
    min-height: calc(100% - 1rem);
}

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.25rem;
    outline: 0;
}

.modal-header {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid #dee2e6;
    border-top-left-radius: calc(0.25rem - 1px);
    border-top-right-radius: calc(0.25rem - 1px);
}

.modal-title {
    margin-bottom: 0;
    line-height: 1.5;
}

.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 1rem;
}

.modal-footer {
    display: flex;
    flex-wrap: wrap;
    flex-shrink: 0;
    align-items: center;
    justify-content: flex-end;
    padding: 0.75rem;
    border-top: 1px solid #dee2e6;
    border-bottom-right-radius: calc(0.25rem - 1px);
    border-bottom-left-radius: calc(0.25rem - 1px);
}

.modal-footer > * {
    margin: 0.25rem;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    width: 100vw;
    height: 100vh;
    background-color: #000;
}

.modal-backdrop.fade {
    opacity: 0;
}

.modal-backdrop.show {
    opacity: 0.5;
}

.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll;
}

/* ========================================================================
   Component: Collapse/Accordion
   ======================================================================== */
.collapse:not(.show) {
    display: none;
}

.collapsing {
    height: 0;
    overflow: hidden;
    transition: height 0.35s ease;
}

/* ========================================================================
   Utility: Hide
   ======================================================================== */
.hide {
    display: none;
}

/* ========================================================================
   Responsive helpers
   ======================================================================== */
@media (max-width: 575.98px) {
    .d-sm-none {
        display: none !important;
    }
    .d-sm-inline {
        display: inline !important;
    }
    .d-sm-inline-block {
        display: inline-block !important;
    }
    .d-sm-block {
        display: block !important;
    }
    .d-sm-table {
        display: table !important;
    }
    .d-sm-table-row {
        display: table-row !important;
    }
    .d-sm-table-cell {
        display: table-cell !important;
    }
    .d-sm-flex {
        display: flex !important;
    }
    .d-sm-inline-flex {
        display: inline-flex !important;
    }
}

@media (max-width: 767.98px) {
    .d-md-none {
        display: none !important;
    }
    .d-md-inline {
        display: inline !important;
    }
    .d-md-inline-block {
        display: inline-block !important;
    }
    .d-md-block {
        display: block !important;
    }
    .d-md-table {
        display: table !important;
    }
    .d-md-table-row {
        display: table-row !important;
    }
    .d-md-table-cell {
        display: table-cell !important;
    }
    .d-md-flex {
        display: flex !important;
    }
    .d-md-inline-flex {
        display: inline-flex !important;
    }
}

@media (max-width: 991.98px) {
    .d-lg-none {
        display: none !important;
    }
    .d-lg-inline {
        display: inline !important;
    }
    .d-lg-inline-block {
        display: inline-block !important;
    }
    .d-lg-block {
        display: block !important;
    }
    .d-lg-table {
        display: table !important;
    }
    .d-lg-table-row {
        display: table-row !important;
    }
    .d-lg-table-cell {
        display: table-cell !important;
    }
    .d-lg-flex {
        display: flex !important;
    }
    .d-lg-inline-flex {
        display: inline-flex !important;
    }
}

@media (max-width: 1199.98px) {
    .d-xl-none {
        display: none !important;
    }
    .d-xl-inline {
        display: inline !important;
    }
    .d-xl-inline-block {
        display: inline-block !important;
    }
    .d-xl-block {
        display: block !important;
    }
    .d-xl-table {
        display: table !important;
    }
    .d-xl-table-row {
        display: table-row !important;
    }
    .d-xl-table-cell {
        display: table-cell !important;
    }
    .d-xl-flex {
        display: flex !important;
    }
    .d-xl-inline-flex {
        display: inline-flex !important;
    }
}

/*# sourceMappingURL=boilerpuddy.css.map */
