body {
    -webkit-font-smoothing: subpixel-antialiased;
    -moz-osx-font-smoothing: subpixel-antialiased;
    font-family: 'Lato', sans-serif;
}

/* From Bootstrap */



.card {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #ffffff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, .125);
    border-radius: .25rem;
}

.card > hr {
    margin-right: 0;
    margin-left: 0;
}

.card > .list-group:first-child .list-group-item:first-child {
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
}

.card > .list-group:last-child .list-group-item:last-child {
    border-bottom-right-radius: .25rem;
    border-bottom-left-radius: .25rem;
}

.card-body {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    min-height: 1px;
    padding: 1.25rem;
}

.card-title {
    margin-bottom: .75rem;
}

.card-subtitle {
    margin-top: -.375rem;
    margin-bottom: 0;
}

.card-text:last-child {
    margin-bottom: 0;
}

.card-link:hover {
    text-decoration: none;
}

.card-link + .card-link {
    margin-left: 1.25rem;
}

.card-header {
    padding: .75rem 1.25rem;
    margin-bottom: 0;
    background-color: rgba(0, 0, 0, .03);
    border-bottom: 1px solid rgba(0, 0, 0, .125);
}

.card-header:first-child {
    border-radius: calc(.25rem - 1px) calc(.25rem - 1px) 0 0;
}

.card-header + .list-group .list-group-item:first-child {
    border-top: 0;
}

.card-footer {
    padding: .75rem 1.25rem;
    background-color: rgba(0, 0, 0, .03);
    border-top: 1px solid rgba(0, 0, 0, .125);
}

.card-footer:last-child {
    border-radius: 0 0 calc(.25rem - 1px) calc(.25rem - 1px);
}

.card-header-tabs {
    margin-right: -.625rem;
    margin-bottom: -.75rem;
    margin-left: -.625rem;
    border-bottom: 0;
}

.card-header-pills {
    margin-right: -.625rem;
    margin-left: -.625rem;
}

.card-img-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1.25rem;
}

.card-img, .card-img-top, .card-img-bottom {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%;
}

.card-img, .card-img-top {
    border-top-left-radius: calc(.25rem - 1px);
    border-top-right-radius: calc(.25rem - 1px);
}

.card-img, .card-img-bottom {
    border-bottom-right-radius: calc(.25rem - 1px);
    border-bottom-left-radius: calc(.25rem - 1px);
}

.card-deck .card {
    margin-bottom: 15px;
}

@media (min-width: 576px) {
    .card-deck {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
        margin-right: -15px;
        margin-left: -15px;
    }
    .card-deck .card {
        -ms-flex: 1 0 0;
        flex: 1 0 0;
        margin-right: 15px;
        margin-bottom: 0;
        margin-left: 15px;
    }
}

.card-group > .card {
    margin-bottom: 15px;
}

@media (min-width: 576px) {
    .card-group {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
    }
    .card-group > .card {
        -ms-flex: 1 0 0;
        flex: 1 0 0;
        margin-bottom: 0;
    }
    .card-group > .card + .card {
        margin-left: 0;
        border-left: 0;
    }
    .card-group > .card:not(:last-child) {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }
    .card-group > .card:not(:last-child) .card-img-top, .card-group > .card:not(:last-child) .card-header {
        border-top-right-radius: 0;
    }
    .card-group > .card:not(:last-child) .card-img-bottom, .card-group > .card:not(:last-child) .card-footer {
        border-bottom-right-radius: 0;
    }
    .card-group > .card:not(:first-child) {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }
    .card-group > .card:not(:first-child) .card-img-top, .card-group > .card:not(:first-child) .card-header {
        border-top-left-radius: 0;
    }
    .card-group > .card:not(:first-child) .card-img-bottom, .card-group > .card:not(:first-child) .card-footer {
        border-bottom-left-radius: 0;
    }
}

.card-columns .card {
    margin-bottom: .75rem;
}

@media (min-width: 576px) {
    .card-columns {
        -webkit-column-count: 3;
        -moz-column-count: 3;
        column-count: 3;
        -webkit-column-gap: 1.25rem;
        -moz-column-gap: 1.25rem;
        column-gap: 1.25rem;
        orphans: 1;
        widows: 1;
    }
    .card-columns .card {
        display: inline-block;
        width: 100%;
    }
}
.w-25 {
    width: 25% !important;
}

.w-50 {
    width: 50% !important;
}

.w-75 {
    width: 75% !important;
}

.w-100 {
    width: 100% !important;
}

.w-auto {
    width: auto !important;
}

.h-25 {
    height: 25% !important;
}

.h-50 {
    height: 50% !important;
}

.h-75 {
    height: 75% !important;
}

.h-100 {
    height: 100% !important;
}

.h-auto {
    height: auto !important;
}

.mw-100 {
    max-width: 100% !important;
}

.mh-100 {
    max-height: 100% !important;
}

.min-vw-100 {
    min-width: 100vw !important;
}

.min-vh-100 {
    min-height: 100vh !important;
}

.vw-100 {
    width: 100vw !important;
}

.vh-100 {
    height: 100vh !important;
}

.stretched-link::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    pointer-events: auto;
    content: "";
    background-color: rgba(0, 0, 0, 0);
}

.m-0 {
    margin: 0 !important;
}

.mt-0, .my-0 {
    margin-top: 0 !important;
}

.mr-0, .mx-0 {
    margin-right: 0 !important;
}

.mb-0, .my-0 {
    margin-bottom: 0 !important;
}

.ml-0, .mx-0 {
    margin-left: 0 !important;
}

.m-1 {
    margin: .25rem !important;
}

.mt-1, .my-1 {
    margin-top: .25rem !important;
}

.mr-1, .mx-1 {
    margin-right: .25rem !important;
}

.mb-1, .my-1 {
    margin-bottom: .25rem !important;
}

.ml-1, .mx-1 {
    margin-left: .25rem !important;
}

.m-2 {
    margin: .5rem !important;
}

.mt-2, .my-2 {
    margin-top: .5rem !important;
}

.mr-2, .mx-2 {
    margin-right: .5rem !important;
}

.mb-2, .my-2 {
    margin-bottom: .5rem !important;
}

.ml-2, .mx-2 {
    margin-left: .5rem !important;
}

.m-3 {
    margin: 1rem !important;
}

.mt-3, .my-3 {
    margin-top: 1rem !important;
}

.mr-3, .mx-3 {
    margin-right: 1rem !important;
}

.mb-3, .my-3 {
    margin-bottom: 1rem !important;
}

.ml-3, .mx-3 {
    margin-left: 1rem !important;
}

.m-4 {
    margin: 1.5rem !important;
}

.mt-4, .my-4 {
    margin-top: 1.5rem !important;
}

.mr-4, .mx-4 {
    margin-right: 1.5rem !important;
}

.mb-4, .my-4 {
    margin-bottom: 1.5rem !important;
}

.ml-4, .mx-4 {
    margin-left: 1.5rem !important;
}

.m-5 {
    margin: 3rem !important;
}

.mt-5, .my-5 {
    margin-top: 3rem !important;
}

.mr-5, .mx-5 {
    margin-right: 3rem !important;
}

.mb-5, .my-5 {
    margin-bottom: 3rem !important;
}

.ml-5, .mx-5 {
    margin-left: 3rem !important;
}

.p-0 {
    padding: 0 !important;
}

.pt-0, .py-0 {
    padding-top: 0 !important;
}

.pr-0, .px-0 {
    padding-right: 0 !important;
}

.pb-0, .py-0 {
    padding-bottom: 0 !important;
}

.pl-0, .px-0 {
    padding-left: 0 !important;
}

.p-1 {
    padding: .25rem !important;
}

.pt-1, .py-1 {
    padding-top: .25rem !important;
}

.pr-1, .px-1 {
    padding-right: .25rem !important;
}

.pb-1, .py-1 {
    padding-bottom: .25rem !important;
}

.pl-1, .px-1 {
    padding-left: .25rem !important;
}

.p-2 {
    padding: .5rem !important;
}

.pt-2, .py-2 {
    padding-top: .5rem !important;
}

.pr-2, .px-2 {
    padding-right: .5rem !important;
}

.pb-2, .py-2 {
    padding-bottom: .5rem !important;
}

.pl-2, .px-2 {
    padding-left: .5rem !important;
}

.p-3 {
    padding: 1rem !important;
}

.pt-3, .py-3 {
    padding-top: 1rem !important;
}

.pr-3, .px-3 {
    padding-right: 1rem !important;
}

.pb-3, .py-3 {
    padding-bottom: 1rem !important;
}

.pl-3, .px-3 {
    padding-left: 1rem !important;
}

.p-4 {
    padding: 1.5rem !important;
}

.pt-4, .py-4 {
    padding-top: 1.5rem !important;
}

.pr-4, .px-4 {
    padding-right: 1.5rem !important;
}

.pb-4, .py-4 {
    padding-bottom: 1.5rem !important;
}

.pl-4, .px-4 {
    padding-left: 1.5rem !important;
}

.p-5 {
    padding: 3rem !important;
}

.pt-5, .py-5 {
    padding-top: 3rem !important;
}

.pr-5, .px-5 {
    padding-right: 3rem !important;
}

.pb-5, .py-5 {
    padding-bottom: 3rem !important;
}

.pl-5, .px-5 {
    padding-left: 3rem !important;
}

.m-n1 {
    margin: -.25rem !important;
}

.mt-n1, .my-n1 {
    margin-top: -.25rem !important;
}

.mr-n1, .mx-n1 {
    margin-right: -.25rem !important;
}

.mb-n1, .my-n1 {
    margin-bottom: -.25rem !important;
}

.ml-n1, .mx-n1 {
    margin-left: -.25rem !important;
}

.m-n2 {
    margin: -.5rem !important;
}

.mt-n2, .my-n2 {
    margin-top: -.5rem !important;
}

.mr-n2, .mx-n2 {
    margin-right: -.5rem !important;
}

.mb-n2, .my-n2 {
    margin-bottom: -.5rem !important;
}

.ml-n2, .mx-n2 {
    margin-left: -.5rem !important;
}

.m-n3 {
    margin: -1rem !important;
}

.mt-n3, .my-n3 {
    margin-top: -1rem !important;
}

.mr-n3, .mx-n3 {
    margin-right: -1rem !important;
}

.mb-n3, .my-n3 {
    margin-bottom: -1rem !important;
}

.ml-n3, .mx-n3 {
    margin-left: -1rem !important;
}

.m-n4 {
    margin: -1.5rem !important;
}

.mt-n4, .my-n4 {
    margin-top: -1.5rem !important;
}

.mr-n4, .mx-n4 {
    margin-right: -1.5rem !important;
}

.mb-n4, .my-n4 {
    margin-bottom: -1.5rem !important;
}

.ml-n4, .mx-n4 {
    margin-left: -1.5rem !important;
}

.m-n5 {
    margin: -3rem !important;
}

.mt-n5, .my-n5 {
    margin-top: -3rem !important;
}

.mr-n5, .mx-n5 {
    margin-right: -3rem !important;
}

.mb-n5, .my-n5 {
    margin-bottom: -3rem !important;
}

.ml-n5, .mx-n5 {
    margin-left: -3rem !important;
}

.m-auto {
    margin: auto !important;
}

.mt-auto, .my-auto {
    margin-top: auto !important;
}

.mr-auto, .mx-auto {
    margin-right: auto !important;
}

.mb-auto, .my-auto {
    margin-bottom: auto !important;
}

.ml-auto, .mx-auto {
    margin-left: auto !important;
}

@media (min-width: 576px) {
    .m-sm-0 {
        margin: 0 !important;
    }
    .mt-sm-0, .my-sm-0 {
        margin-top: 0 !important;
    }
    .mr-sm-0, .mx-sm-0 {
        margin-right: 0 !important;
    }
    .mb-sm-0, .my-sm-0 {
        margin-bottom: 0 !important;
    }
    .ml-sm-0, .mx-sm-0 {
        margin-left: 0 !important;
    }
    .m-sm-1 {
        margin: .25rem !important;
    }
    .mt-sm-1, .my-sm-1 {
        margin-top: .25rem !important;
    }
    .mr-sm-1, .mx-sm-1 {
        margin-right: .25rem !important;
    }
    .mb-sm-1, .my-sm-1 {
        margin-bottom: .25rem !important;
    }
    .ml-sm-1, .mx-sm-1 {
        margin-left: .25rem !important;
    }
    .m-sm-2 {
        margin: .5rem !important;
    }
    .mt-sm-2, .my-sm-2 {
        margin-top: .5rem !important;
    }
    .mr-sm-2, .mx-sm-2 {
        margin-right: .5rem !important;
    }
    .mb-sm-2, .my-sm-2 {
        margin-bottom: .5rem !important;
    }
    .ml-sm-2, .mx-sm-2 {
        margin-left: .5rem !important;
    }
    .m-sm-3 {
        margin: 1rem !important;
    }
    .mt-sm-3, .my-sm-3 {
        margin-top: 1rem !important;
    }
    .mr-sm-3, .mx-sm-3 {
        margin-right: 1rem !important;
    }
    .mb-sm-3, .my-sm-3 {
        margin-bottom: 1rem !important;
    }
    .ml-sm-3, .mx-sm-3 {
        margin-left: 1rem !important;
    }
    .m-sm-4 {
        margin: 1.5rem !important;
    }
    .mt-sm-4, .my-sm-4 {
        margin-top: 1.5rem !important;
    }
    .mr-sm-4, .mx-sm-4 {
        margin-right: 1.5rem !important;
    }
    .mb-sm-4, .my-sm-4 {
        margin-bottom: 1.5rem !important;
    }
    .ml-sm-4, .mx-sm-4 {
        margin-left: 1.5rem !important;
    }
    .m-sm-5 {
        margin: 3rem !important;
    }
    .mt-sm-5, .my-sm-5 {
        margin-top: 3rem !important;
    }
    .mr-sm-5, .mx-sm-5 {
        margin-right: 3rem !important;
    }
    .mb-sm-5, .my-sm-5 {
        margin-bottom: 3rem !important;
    }
    .ml-sm-5, .mx-sm-5 {
        margin-left: 3rem !important;
    }
    .p-sm-0 {
        padding: 0 !important;
    }
    .pt-sm-0, .py-sm-0 {
        padding-top: 0 !important;
    }
    .pr-sm-0, .px-sm-0 {
        padding-right: 0 !important;
    }
    .pb-sm-0, .py-sm-0 {
        padding-bottom: 0 !important;
    }
    .pl-sm-0, .px-sm-0 {
        padding-left: 0 !important;
    }
    .p-sm-1 {
        padding: .25rem !important;
    }
    .pt-sm-1, .py-sm-1 {
        padding-top: .25rem !important;
    }
    .pr-sm-1, .px-sm-1 {
        padding-right: .25rem !important;
    }
    .pb-sm-1, .py-sm-1 {
        padding-bottom: .25rem !important;
    }
    .pl-sm-1, .px-sm-1 {
        padding-left: .25rem !important;
    }
    .p-sm-2 {
        padding: .5rem !important;
    }
    .pt-sm-2, .py-sm-2 {
        padding-top: .5rem !important;
    }
    .pr-sm-2, .px-sm-2 {
        padding-right: .5rem !important;
    }
    .pb-sm-2, .py-sm-2 {
        padding-bottom: .5rem !important;
    }
    .pl-sm-2, .px-sm-2 {
        padding-left: .5rem !important;
    }
    .p-sm-3 {
        padding: 1rem !important;
    }
    .pt-sm-3, .py-sm-3 {
        padding-top: 1rem !important;
    }
    .pr-sm-3, .px-sm-3 {
        padding-right: 1rem !important;
    }
    .pb-sm-3, .py-sm-3 {
        padding-bottom: 1rem !important;
    }
    .pl-sm-3, .px-sm-3 {
        padding-left: 1rem !important;
    }
    .p-sm-4 {
        padding: 1.5rem !important;
    }
    .pt-sm-4, .py-sm-4 {
        padding-top: 1.5rem !important;
    }
    .pr-sm-4, .px-sm-4 {
        padding-right: 1.5rem !important;
    }
    .pb-sm-4, .py-sm-4 {
        padding-bottom: 1.5rem !important;
    }
    .pl-sm-4, .px-sm-4 {
        padding-left: 1.5rem !important;
    }
    .p-sm-5 {
        padding: 3rem !important;
    }
    .pt-sm-5, .py-sm-5 {
        padding-top: 3rem !important;
    }
    .pr-sm-5, .px-sm-5 {
        padding-right: 3rem !important;
    }
    .pb-sm-5, .py-sm-5 {
        padding-bottom: 3rem !important;
    }
    .pl-sm-5, .px-sm-5 {
        padding-left: 3rem !important;
    }
    .m-sm-n1 {
        margin: -.25rem !important;
    }
    .mt-sm-n1, .my-sm-n1 {
        margin-top: -.25rem !important;
    }
    .mr-sm-n1, .mx-sm-n1 {
        margin-right: -.25rem !important;
    }
    .mb-sm-n1, .my-sm-n1 {
        margin-bottom: -.25rem !important;
    }
    .ml-sm-n1, .mx-sm-n1 {
        margin-left: -.25rem !important;
    }
    .m-sm-n2 {
        margin: -.5rem !important;
    }
    .mt-sm-n2, .my-sm-n2 {
        margin-top: -.5rem !important;
    }
    .mr-sm-n2, .mx-sm-n2 {
        margin-right: -.5rem !important;
    }
    .mb-sm-n2, .my-sm-n2 {
        margin-bottom: -.5rem !important;
    }
    .ml-sm-n2, .mx-sm-n2 {
        margin-left: -.5rem !important;
    }
    .m-sm-n3 {
        margin: -1rem !important;
    }
    .mt-sm-n3, .my-sm-n3 {
        margin-top: -1rem !important;
    }
    .mr-sm-n3, .mx-sm-n3 {
        margin-right: -1rem !important;
    }
    .mb-sm-n3, .my-sm-n3 {
        margin-bottom: -1rem !important;
    }
    .ml-sm-n3, .mx-sm-n3 {
        margin-left: -1rem !important;
    }
    .m-sm-n4 {
        margin: -1.5rem !important;
    }
    .mt-sm-n4, .my-sm-n4 {
        margin-top: -1.5rem !important;
    }
    .mr-sm-n4, .mx-sm-n4 {
        margin-right: -1.5rem !important;
    }
    .mb-sm-n4, .my-sm-n4 {
        margin-bottom: -1.5rem !important;
    }
    .ml-sm-n4, .mx-sm-n4 {
        margin-left: -1.5rem !important;
    }
    .m-sm-n5 {
        margin: -3rem !important;
    }
    .mt-sm-n5, .my-sm-n5 {
        margin-top: -3rem !important;
    }
    .mr-sm-n5, .mx-sm-n5 {
        margin-right: -3rem !important;
    }
    .mb-sm-n5, .my-sm-n5 {
        margin-bottom: -3rem !important;
    }
    .ml-sm-n5, .mx-sm-n5 {
        margin-left: -3rem !important;
    }
    .m-sm-auto {
        margin: auto !important;
    }
    .mt-sm-auto, .my-sm-auto {
        margin-top: auto !important;
    }
    .mr-sm-auto, .mx-sm-auto {
        margin-right: auto !important;
    }
    .mb-sm-auto, .my-sm-auto {
        margin-bottom: auto !important;
    }
    .ml-sm-auto, .mx-sm-auto {
        margin-left: auto !important;
    }
}

@media (min-width: 768px) {
    .m-md-0 {
        margin: 0 !important;
    }
    .mt-md-0, .my-md-0 {
        margin-top: 0 !important;
    }
    .mr-md-0, .mx-md-0 {
        margin-right: 0 !important;
    }
    .mb-md-0, .my-md-0 {
        margin-bottom: 0 !important;
    }
    .ml-md-0, .mx-md-0 {
        margin-left: 0 !important;
    }
    .m-md-1 {
        margin: .25rem !important;
    }
    .mt-md-1, .my-md-1 {
        margin-top: .25rem !important;
    }
    .mr-md-1, .mx-md-1 {
        margin-right: .25rem !important;
    }
    .mb-md-1, .my-md-1 {
        margin-bottom: .25rem !important;
    }
    .ml-md-1, .mx-md-1 {
        margin-left: .25rem !important;
    }
    .m-md-2 {
        margin: .5rem !important;
    }
    .mt-md-2, .my-md-2 {
        margin-top: .5rem !important;
    }
    .mr-md-2, .mx-md-2 {
        margin-right: .5rem !important;
    }
    .mb-md-2, .my-md-2 {
        margin-bottom: .5rem !important;
    }
    .ml-md-2, .mx-md-2 {
        margin-left: .5rem !important;
    }
    .m-md-3 {
        margin: 1rem !important;
    }
    .mt-md-3, .my-md-3 {
        margin-top: 1rem !important;
    }
    .mr-md-3, .mx-md-3 {
        margin-right: 1rem !important;
    }
    .mb-md-3, .my-md-3 {
        margin-bottom: 1rem !important;
    }
    .ml-md-3, .mx-md-3 {
        margin-left: 1rem !important;
    }
    .m-md-4 {
        margin: 1.5rem !important;
    }
    .mt-md-4, .my-md-4 {
        margin-top: 1.5rem !important;
    }
    .mr-md-4, .mx-md-4 {
        margin-right: 1.5rem !important;
    }
    .mb-md-4, .my-md-4 {
        margin-bottom: 1.5rem !important;
    }
    .ml-md-4, .mx-md-4 {
        margin-left: 1.5rem !important;
    }
    .m-md-5 {
        margin: 3rem !important;
    }
    .mt-md-5, .my-md-5 {
        margin-top: 3rem !important;
    }
    .mr-md-5, .mx-md-5 {
        margin-right: 3rem !important;
    }
    .mb-md-5, .my-md-5 {
        margin-bottom: 3rem !important;
    }
    .ml-md-5, .mx-md-5 {
        margin-left: 3rem !important;
    }
    .p-md-0 {
        padding: 0 !important;
    }
    .pt-md-0, .py-md-0 {
        padding-top: 0 !important;
    }
    .pr-md-0, .px-md-0 {
        padding-right: 0 !important;
    }
    .pb-md-0, .py-md-0 {
        padding-bottom: 0 !important;
    }
    .pl-md-0, .px-md-0 {
        padding-left: 0 !important;
    }
    .p-md-1 {
        padding: .25rem !important;
    }
    .pt-md-1, .py-md-1 {
        padding-top: .25rem !important;
    }
    .pr-md-1, .px-md-1 {
        padding-right: .25rem !important;
    }
    .pb-md-1, .py-md-1 {
        padding-bottom: .25rem !important;
    }
    .pl-md-1, .px-md-1 {
        padding-left: .25rem !important;
    }
    .p-md-2 {
        padding: .5rem !important;
    }
    .pt-md-2, .py-md-2 {
        padding-top: .5rem !important;
    }
    .pr-md-2, .px-md-2 {
        padding-right: .5rem !important;
    }
    .pb-md-2, .py-md-2 {
        padding-bottom: .5rem !important;
    }
    .pl-md-2, .px-md-2 {
        padding-left: .5rem !important;
    }
    .p-md-3 {
        padding: 1rem !important;
    }
    .pt-md-3, .py-md-3 {
        padding-top: 1rem !important;
    }
    .pr-md-3, .px-md-3 {
        padding-right: 1rem !important;
    }
    .pb-md-3, .py-md-3 {
        padding-bottom: 1rem !important;
    }
    .pl-md-3, .px-md-3 {
        padding-left: 1rem !important;
    }
    .p-md-4 {
        padding: 1.5rem !important;
    }
    .pt-md-4, .py-md-4 {
        padding-top: 1.5rem !important;
    }
    .pr-md-4, .px-md-4 {
        padding-right: 1.5rem !important;
    }
    .pb-md-4, .py-md-4 {
        padding-bottom: 1.5rem !important;
    }
    .pl-md-4, .px-md-4 {
        padding-left: 1.5rem !important;
    }
    .p-md-5 {
        padding: 3rem !important;
    }
    .pt-md-5, .py-md-5 {
        padding-top: 3rem !important;
    }
    .pr-md-5, .px-md-5 {
        padding-right: 3rem !important;
    }
    .pb-md-5, .py-md-5 {
        padding-bottom: 3rem !important;
    }
    .pl-md-5, .px-md-5 {
        padding-left: 3rem !important;
    }
    .m-md-n1 {
        margin: -.25rem !important;
    }
    .mt-md-n1, .my-md-n1 {
        margin-top: -.25rem !important;
    }
    .mr-md-n1, .mx-md-n1 {
        margin-right: -.25rem !important;
    }
    .mb-md-n1, .my-md-n1 {
        margin-bottom: -.25rem !important;
    }
    .ml-md-n1, .mx-md-n1 {
        margin-left: -.25rem !important;
    }
    .m-md-n2 {
        margin: -.5rem !important;
    }
    .mt-md-n2, .my-md-n2 {
        margin-top: -.5rem !important;
    }
    .mr-md-n2, .mx-md-n2 {
        margin-right: -.5rem !important;
    }
    .mb-md-n2, .my-md-n2 {
        margin-bottom: -.5rem !important;
    }
    .ml-md-n2, .mx-md-n2 {
        margin-left: -.5rem !important;
    }
    .m-md-n3 {
        margin: -1rem !important;
    }
    .mt-md-n3, .my-md-n3 {
        margin-top: -1rem !important;
    }
    .mr-md-n3, .mx-md-n3 {
        margin-right: -1rem !important;
    }
    .mb-md-n3, .my-md-n3 {
        margin-bottom: -1rem !important;
    }
    .ml-md-n3, .mx-md-n3 {
        margin-left: -1rem !important;
    }
    .m-md-n4 {
        margin: -1.5rem !important;
    }
    .mt-md-n4, .my-md-n4 {
        margin-top: -1.5rem !important;
    }
    .mr-md-n4, .mx-md-n4 {
        margin-right: -1.5rem !important;
    }
    .mb-md-n4, .my-md-n4 {
        margin-bottom: -1.5rem !important;
    }
    .ml-md-n4, .mx-md-n4 {
        margin-left: -1.5rem !important;
    }
    .m-md-n5 {
        margin: -3rem !important;
    }
    .mt-md-n5, .my-md-n5 {
        margin-top: -3rem !important;
    }
    .mr-md-n5, .mx-md-n5 {
        margin-right: -3rem !important;
    }
    .mb-md-n5, .my-md-n5 {
        margin-bottom: -3rem !important;
    }
    .ml-md-n5, .mx-md-n5 {
        margin-left: -3rem !important;
    }
    .m-md-auto {
        margin: auto !important;
    }
    .mt-md-auto, .my-md-auto {
        margin-top: auto !important;
    }
    .mr-md-auto, .mx-md-auto {
        margin-right: auto !important;
    }
    .mb-md-auto, .my-md-auto {
        margin-bottom: auto !important;
    }
    .ml-md-auto, .mx-md-auto {
        margin-left: auto !important;
    }
}

@media (min-width: 992px) {
    .m-lg-0 {
        margin: 0 !important;
    }
    .mt-lg-0, .my-lg-0 {
        margin-top: 0 !important;
    }
    .mr-lg-0, .mx-lg-0 {
        margin-right: 0 !important;
    }
    .mb-lg-0, .my-lg-0 {
        margin-bottom: 0 !important;
    }
    .ml-lg-0, .mx-lg-0 {
        margin-left: 0 !important;
    }
    .m-lg-1 {
        margin: .25rem !important;
    }
    .mt-lg-1, .my-lg-1 {
        margin-top: .25rem !important;
    }
    .mr-lg-1, .mx-lg-1 {
        margin-right: .25rem !important;
    }
    .mb-lg-1, .my-lg-1 {
        margin-bottom: .25rem !important;
    }
    .ml-lg-1, .mx-lg-1 {
        margin-left: .25rem !important;
    }
    .m-lg-2 {
        margin: .5rem !important;
    }
    .mt-lg-2, .my-lg-2 {
        margin-top: .5rem !important;
    }
    .mr-lg-2, .mx-lg-2 {
        margin-right: .5rem !important;
    }
    .mb-lg-2, .my-lg-2 {
        margin-bottom: .5rem !important;
    }
    .ml-lg-2, .mx-lg-2 {
        margin-left: .5rem !important;
    }
    .m-lg-3 {
        margin: 1rem !important;
    }
    .mt-lg-3, .my-lg-3 {
        margin-top: 1rem !important;
    }
    .mr-lg-3, .mx-lg-3 {
        margin-right: 1rem !important;
    }
    .mb-lg-3, .my-lg-3 {
        margin-bottom: 1rem !important;
    }
    .ml-lg-3, .mx-lg-3 {
        margin-left: 1rem !important;
    }
    .m-lg-4 {
        margin: 1.5rem !important;
    }
    .mt-lg-4, .my-lg-4 {
        margin-top: 1.5rem !important;
    }
    .mr-lg-4, .mx-lg-4 {
        margin-right: 1.5rem !important;
    }
    .mb-lg-4, .my-lg-4 {
        margin-bottom: 1.5rem !important;
    }
    .ml-lg-4, .mx-lg-4 {
        margin-left: 1.5rem !important;
    }
    .m-lg-5 {
        margin: 3rem !important;
    }
    .mt-lg-5, .my-lg-5 {
        margin-top: 3rem !important;
    }
    .mr-lg-5, .mx-lg-5 {
        margin-right: 3rem !important;
    }
    .mb-lg-5, .my-lg-5 {
        margin-bottom: 3rem !important;
    }
    .ml-lg-5, .mx-lg-5 {
        margin-left: 3rem !important;
    }
    .p-lg-0 {
        padding: 0 !important;
    }
    .pt-lg-0, .py-lg-0 {
        padding-top: 0 !important;
    }
    .pr-lg-0, .px-lg-0 {
        padding-right: 0 !important;
    }
    .pb-lg-0, .py-lg-0 {
        padding-bottom: 0 !important;
    }
    .pl-lg-0, .px-lg-0 {
        padding-left: 0 !important;
    }
    .p-lg-1 {
        padding: .25rem !important;
    }
    .pt-lg-1, .py-lg-1 {
        padding-top: .25rem !important;
    }
    .pr-lg-1, .px-lg-1 {
        padding-right: .25rem !important;
    }
    .pb-lg-1, .py-lg-1 {
        padding-bottom: .25rem !important;
    }
    .pl-lg-1, .px-lg-1 {
        padding-left: .25rem !important;
    }
    .p-lg-2 {
        padding: .5rem !important;
    }
    .pt-lg-2, .py-lg-2 {
        padding-top: .5rem !important;
    }
    .pr-lg-2, .px-lg-2 {
        padding-right: .5rem !important;
    }
    .pb-lg-2, .py-lg-2 {
        padding-bottom: .5rem !important;
    }
    .pl-lg-2, .px-lg-2 {
        padding-left: .5rem !important;
    }
    .p-lg-3 {
        padding: 1rem !important;
    }
    .pt-lg-3, .py-lg-3 {
        padding-top: 1rem !important;
    }
    .pr-lg-3, .px-lg-3 {
        padding-right: 1rem !important;
    }
    .pb-lg-3, .py-lg-3 {
        padding-bottom: 1rem !important;
    }
    .pl-lg-3, .px-lg-3 {
        padding-left: 1rem !important;
    }
    .p-lg-4 {
        padding: 1.5rem !important;
    }
    .pt-lg-4, .py-lg-4 {
        padding-top: 1.5rem !important;
    }
    .pr-lg-4, .px-lg-4 {
        padding-right: 1.5rem !important;
    }
    .pb-lg-4, .py-lg-4 {
        padding-bottom: 1.5rem !important;
    }
    .pl-lg-4, .px-lg-4 {
        padding-left: 1.5rem !important;
    }
    .p-lg-5 {
        padding: 3rem !important;
    }
    .pt-lg-5, .py-lg-5 {
        padding-top: 3rem !important;
    }
    .pr-lg-5, .px-lg-5 {
        padding-right: 3rem !important;
    }
    .pb-lg-5, .py-lg-5 {
        padding-bottom: 3rem !important;
    }
    .pl-lg-5, .px-lg-5 {
        padding-left: 3rem !important;
    }
    .m-lg-n1 {
        margin: -.25rem !important;
    }
    .mt-lg-n1, .my-lg-n1 {
        margin-top: -.25rem !important;
    }
    .mr-lg-n1, .mx-lg-n1 {
        margin-right: -.25rem !important;
    }
    .mb-lg-n1, .my-lg-n1 {
        margin-bottom: -.25rem !important;
    }
    .ml-lg-n1, .mx-lg-n1 {
        margin-left: -.25rem !important;
    }
    .m-lg-n2 {
        margin: -.5rem !important;
    }
    .mt-lg-n2, .my-lg-n2 {
        margin-top: -.5rem !important;
    }
    .mr-lg-n2, .mx-lg-n2 {
        margin-right: -.5rem !important;
    }
    .mb-lg-n2, .my-lg-n2 {
        margin-bottom: -.5rem !important;
    }
    .ml-lg-n2, .mx-lg-n2 {
        margin-left: -.5rem !important;
    }
    .m-lg-n3 {
        margin: -1rem !important;
    }
    .mt-lg-n3, .my-lg-n3 {
        margin-top: -1rem !important;
    }
    .mr-lg-n3, .mx-lg-n3 {
        margin-right: -1rem !important;
    }
    .mb-lg-n3, .my-lg-n3 {
        margin-bottom: -1rem !important;
    }
    .ml-lg-n3, .mx-lg-n3 {
        margin-left: -1rem !important;
    }
    .m-lg-n4 {
        margin: -1.5rem !important;
    }
    .mt-lg-n4, .my-lg-n4 {
        margin-top: -1.5rem !important;
    }
    .mr-lg-n4, .mx-lg-n4 {
        margin-right: -1.5rem !important;
    }
    .mb-lg-n4, .my-lg-n4 {
        margin-bottom: -1.5rem !important;
    }
    .ml-lg-n4, .mx-lg-n4 {
        margin-left: -1.5rem !important;
    }
    .m-lg-n5 {
        margin: -3rem !important;
    }
    .mt-lg-n5, .my-lg-n5 {
        margin-top: -3rem !important;
    }
    .mr-lg-n5, .mx-lg-n5 {
        margin-right: -3rem !important;
    }
    .mb-lg-n5, .my-lg-n5 {
        margin-bottom: -3rem !important;
    }
    .ml-lg-n5, .mx-lg-n5 {
        margin-left: -3rem !important;
    }
    .m-lg-auto {
        margin: auto !important;
    }
    .mt-lg-auto, .my-lg-auto {
        margin-top: auto !important;
    }
    .mr-lg-auto, .mx-lg-auto {
        margin-right: auto !important;
    }
    .mb-lg-auto, .my-lg-auto {
        margin-bottom: auto !important;
    }
    .ml-lg-auto, .mx-lg-auto {
        margin-left: auto !important;
    }
}

@media (min-width: 1200px) {
    .m-xl-0 {
        margin: 0 !important;
    }
    .mt-xl-0, .my-xl-0 {
        margin-top: 0 !important;
    }
    .mr-xl-0, .mx-xl-0 {
        margin-right: 0 !important;
    }
    .mb-xl-0, .my-xl-0 {
        margin-bottom: 0 !important;
    }
    .ml-xl-0, .mx-xl-0 {
        margin-left: 0 !important;
    }
    .m-xl-1 {
        margin: .25rem !important;
    }
    .mt-xl-1, .my-xl-1 {
        margin-top: .25rem !important;
    }
    .mr-xl-1, .mx-xl-1 {
        margin-right: .25rem !important;
    }
    .mb-xl-1, .my-xl-1 {
        margin-bottom: .25rem !important;
    }
    .ml-xl-1, .mx-xl-1 {
        margin-left: .25rem !important;
    }
    .m-xl-2 {
        margin: .5rem !important;
    }
    .mt-xl-2, .my-xl-2 {
        margin-top: .5rem !important;
    }
    .mr-xl-2, .mx-xl-2 {
        margin-right: .5rem !important;
    }
    .mb-xl-2, .my-xl-2 {
        margin-bottom: .5rem !important;
    }
    .ml-xl-2, .mx-xl-2 {
        margin-left: .5rem !important;
    }
    .m-xl-3 {
        margin: 1rem !important;
    }
    .mt-xl-3, .my-xl-3 {
        margin-top: 1rem !important;
    }
    .mr-xl-3, .mx-xl-3 {
        margin-right: 1rem !important;
    }
    .mb-xl-3, .my-xl-3 {
        margin-bottom: 1rem !important;
    }
    .ml-xl-3, .mx-xl-3 {
        margin-left: 1rem !important;
    }
    .m-xl-4 {
        margin: 1.5rem !important;
    }
    .mt-xl-4, .my-xl-4 {
        margin-top: 1.5rem !important;
    }
    .mr-xl-4, .mx-xl-4 {
        margin-right: 1.5rem !important;
    }
    .mb-xl-4, .my-xl-4 {
        margin-bottom: 1.5rem !important;
    }
    .ml-xl-4, .mx-xl-4 {
        margin-left: 1.5rem !important;
    }
    .m-xl-5 {
        margin: 3rem !important;
    }
    .mt-xl-5, .my-xl-5 {
        margin-top: 3rem !important;
    }
    .mr-xl-5, .mx-xl-5 {
        margin-right: 3rem !important;
    }
    .mb-xl-5, .my-xl-5 {
        margin-bottom: 3rem !important;
    }
    .ml-xl-5, .mx-xl-5 {
        margin-left: 3rem !important;
    }
    .p-xl-0 {
        padding: 0 !important;
    }
    .pt-xl-0, .py-xl-0 {
        padding-top: 0 !important;
    }
    .pr-xl-0, .px-xl-0 {
        padding-right: 0 !important;
    }
    .pb-xl-0, .py-xl-0 {
        padding-bottom: 0 !important;
    }
    .pl-xl-0, .px-xl-0 {
        padding-left: 0 !important;
    }
    .p-xl-1 {
        padding: .25rem !important;
    }
    .pt-xl-1, .py-xl-1 {
        padding-top: .25rem !important;
    }
    .pr-xl-1, .px-xl-1 {
        padding-right: .25rem !important;
    }
    .pb-xl-1, .py-xl-1 {
        padding-bottom: .25rem !important;
    }
    .pl-xl-1, .px-xl-1 {
        padding-left: .25rem !important;
    }
    .p-xl-2 {
        padding: .5rem !important;
    }
    .pt-xl-2, .py-xl-2 {
        padding-top: .5rem !important;
    }
    .pr-xl-2, .px-xl-2 {
        padding-right: .5rem !important;
    }
    .pb-xl-2, .py-xl-2 {
        padding-bottom: .5rem !important;
    }
    .pl-xl-2, .px-xl-2 {
        padding-left: .5rem !important;
    }
    .p-xl-3 {
        padding: 1rem !important;
    }
    .pt-xl-3, .py-xl-3 {
        padding-top: 1rem !important;
    }
    .pr-xl-3, .px-xl-3 {
        padding-right: 1rem !important;
    }
    .pb-xl-3, .py-xl-3 {
        padding-bottom: 1rem !important;
    }
    .pl-xl-3, .px-xl-3 {
        padding-left: 1rem !important;
    }
    .p-xl-4 {
        padding: 1.5rem !important;
    }
    .pt-xl-4, .py-xl-4 {
        padding-top: 1.5rem !important;
    }
    .pr-xl-4, .px-xl-4 {
        padding-right: 1.5rem !important;
    }
    .pb-xl-4, .py-xl-4 {
        padding-bottom: 1.5rem !important;
    }
    .pl-xl-4, .px-xl-4 {
        padding-left: 1.5rem !important;
    }
    .p-xl-5 {
        padding: 3rem !important;
    }
    .pt-xl-5, .py-xl-5 {
        padding-top: 3rem !important;
    }
    .pr-xl-5, .px-xl-5 {
        padding-right: 3rem !important;
    }
    .pb-xl-5, .py-xl-5 {
        padding-bottom: 3rem !important;
    }
    .pl-xl-5, .px-xl-5 {
        padding-left: 3rem !important;
    }
    .m-xl-n1 {
        margin: -.25rem !important;
    }
    .mt-xl-n1, .my-xl-n1 {
        margin-top: -.25rem !important;
    }
    .mr-xl-n1, .mx-xl-n1 {
        margin-right: -.25rem !important;
    }
    .mb-xl-n1, .my-xl-n1 {
        margin-bottom: -.25rem !important;
    }
    .ml-xl-n1, .mx-xl-n1 {
        margin-left: -.25rem !important;
    }
    .m-xl-n2 {
        margin: -.5rem !important;
    }
    .mt-xl-n2, .my-xl-n2 {
        margin-top: -.5rem !important;
    }
    .mr-xl-n2, .mx-xl-n2 {
        margin-right: -.5rem !important;
    }
    .mb-xl-n2, .my-xl-n2 {
        margin-bottom: -.5rem !important;
    }
    .ml-xl-n2, .mx-xl-n2 {
        margin-left: -.5rem !important;
    }
    .m-xl-n3 {
        margin: -1rem !important;
    }
    .mt-xl-n3, .my-xl-n3 {
        margin-top: -1rem !important;
    }
    .mr-xl-n3, .mx-xl-n3 {
        margin-right: -1rem !important;
    }
    .mb-xl-n3, .my-xl-n3 {
        margin-bottom: -1rem !important;
    }
    .ml-xl-n3, .mx-xl-n3 {
        margin-left: -1rem !important;
    }
    .m-xl-n4 {
        margin: -1.5rem !important;
    }
    .mt-xl-n4, .my-xl-n4 {
        margin-top: -1.5rem !important;
    }
    .mr-xl-n4, .mx-xl-n4 {
        margin-right: -1.5rem !important;
    }
    .mb-xl-n4, .my-xl-n4 {
        margin-bottom: -1.5rem !important;
    }
    .ml-xl-n4, .mx-xl-n4 {
        margin-left: -1.5rem !important;
    }
    .m-xl-n5 {
        margin: -3rem !important;
    }
    .mt-xl-n5, .my-xl-n5 {
        margin-top: -3rem !important;
    }
    .mr-xl-n5, .mx-xl-n5 {
        margin-right: -3rem !important;
    }
    .mb-xl-n5, .my-xl-n5 {
        margin-bottom: -3rem !important;
    }
    .ml-xl-n5, .mx-xl-n5 {
        margin-left: -3rem !important;
    }
    .m-xl-auto {
        margin: auto !important;
    }
    .mt-xl-auto, .my-xl-auto {
        margin-top: auto !important;
    }
    .mr-xl-auto, .mx-xl-auto {
        margin-right: auto !important;
    }
    .mb-xl-auto, .my-xl-auto {
        margin-bottom: auto !important;
    }
    .ml-xl-auto, .mx-xl-auto {
        margin-left: auto !important;
    }
}

.form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #ffffff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .form-control {
        transition: none;
    }
}

.form-control::-ms-expand {
    background-color: transparent;
    border: 0;
}

.form-control:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #495057;
}

.form-control:focus {
    color: #495057;
    background-color: #ffffff;
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25);
}

.form-wrap input::-webkit-input-placeholder {
    color: #6c757d;
    opacity: 1;
}

.form-wrap input::-moz-placeholder {
    color: #6c757d;
    opacity: 1;
}

.form-wrap input:-ms-input-placeholder {
    color: #6c757d;
    opacity: 1;
}

.form-wrap input::-ms-input-placeholder {
    color: #6c757d;
    opacity: 1;
}

.form-wrap input::placeholder {
    color: #6c757d;
    opacity: 1;
}

.form-control:disabled, .form-control[readonly] {
    background-color: #e9ecef;
    opacity: 1;
}

select.form-control:focus::-ms-value {
    color: #495057;
    background-color: #ffffff;
}

.form-control-file, .form-control-range {
    display: block;
    width: 100%;
}

.col-form-label {
    padding-top: calc(.375rem + 1px);
    padding-bottom: calc(.375rem + 1px);
    margin-bottom: 0;
    font-size: inherit;
    line-height: 1.5;
}

.col-form-label-lg {
    padding-top: calc(.5rem + 1px);
    padding-bottom: calc(.5rem + 1px);
    font-size: 1.25rem;
    line-height: 1.5;
}

.col-form-label-sm {
    padding-top: calc(.25rem + 1px);
    padding-bottom: calc(.25rem + 1px);
    font-size: .875rem;
    line-height: 1.5;
}

.form-control-plaintext {
    display: block;
    width: 100%;
    padding: .375rem 0;
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.5;
    color: #212529;
    background-color: transparent;
    border: solid transparent;
    border-width: 1px 0;
}

.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
    padding-right: 0;
    padding-left: 0;
}

.form-control-sm {
    height: calc(1.5em + .5rem + 2px);
    padding: .25rem .5rem;
    font-size: .875rem;
    line-height: 1.5;
    border-radius: .2rem;
}

.form-control-lg {
    height: calc(1.5em + 1rem + 2px);
    padding: .5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: .3rem;
}

select.form-control[size], select.form-control[multiple] {
    height: auto;
}

textarea.form-control {
    height: auto;
}

.form-group {
    margin-bottom: 1rem;
}

.form-text {
    display: block;
    margin-top: .25rem;
}

.form-row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -5px;
    margin-left: -5px;
}

.form-row > .col, .form-row > [class*="col-"] {
    padding-right: 5px;
    padding-left: 5px;
}

.form-check {
    position: relative;
    display: block;
    padding-left: 1.25rem;
}

.form-check-input {
    position: absolute;
    margin-top: .3rem;
    margin-left: -1.25rem;
}

.form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
    color: #6c757d;
}

.form-check-label {
    margin-bottom: 0;
}

.form-check-inline {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 0;
    margin-right: .75rem;
}

.form-check-inline .form-check-input {
    position: static;
    margin-top: 0;
    margin-right: .3125rem;
    margin-left: 0;
}

.valid-feedback {
    display: none;
    width: 100%;
    margin-top: .25rem;
    font-size: 80%;
    color: #28a745;
}

.valid-tooltip {
    position: absolute;
    top: 100%;
    z-index: 5;
    display: none;
    max-width: 100%;
    padding: .25rem .5rem;
    margin-top: .1rem;
    font-size: .875rem;
    line-height: 1.5;
    color: #ffffff;
    background-color: rgba(40, 167, 69, .9);
    border-radius: .25rem;
}

.was-validated :valid ~ .valid-feedback, .was-validated :valid ~ .valid-tooltip, .is-valid ~ .valid-feedback, .is-valid ~ .valid-tooltip {
    display: block;
}

.was-validated .form-control:valid, .form-control.is-valid {
    border-color: #28a745;
    padding-right: calc(1.5em + .75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(.375em + .1875rem) center;
    background-size: calc(.75em + .375rem) calc(.75em + .375rem);
}

.was-validated .form-control:valid:focus, .form-control.is-valid:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .25);
}

.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
    padding-right: calc(1.5em + .75rem);
    background-position: top calc(.375em + .1875rem) right calc(.375em + .1875rem);
}

.was-validated .custom-select:valid, .custom-select.is-valid {
    border-color: #28a745;
    padding-right: calc(.75em + 2.3125rem);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") #ffffff no-repeat center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem);
}

.was-validated .custom-select:valid:focus, .custom-select.is-valid:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .25);
}

.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
    color: #28a745;
}

.was-validated .form-check-input:valid ~ .valid-feedback, .was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback, .form-check-input.is-valid ~ .valid-tooltip {
    display: block;
}

.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label {
    color: #28a745;
}

.was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before {
    border-color: #28a745;
}

.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before {
    border-color: #34ce57;
    background-color: #34ce57;
}

.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before {
    box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .25);
}

.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before {
    border-color: #28a745;
}

.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label {
    border-color: #28a745;
}

.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label {
    border-color: #28a745;
    box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .25);
}

.invalid-feedback {
    display: none;
    width: 100%;
    margin-top: .25rem;
    font-size: 80%;
    color: #dc3545;
}

.invalid-tooltip {
    position: absolute;
    top: 100%;
    z-index: 5;
    display: none;
    max-width: 100%;
    padding: .25rem .5rem;
    margin-top: .1rem;
    font-size: .875rem;
    line-height: 1.5;
    color: #ffffff;
    background-color: rgba(220, 53, 69, .9);
    border-radius: .25rem;
}

.was-validated :invalid ~ .invalid-feedback, .was-validated :invalid ~ .invalid-tooltip, .is-invalid ~ .invalid-feedback, .is-invalid ~ .invalid-tooltip {
    display: block;
}

.was-validated .form-control:invalid, .form-control.is-invalid {
    border-color: #dc3545;
    padding-right: calc(1.5em + .75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(.375em + .1875rem) center;
    background-size: calc(.75em + .375rem) calc(.75em + .375rem);
}

.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .25);
}

.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
    padding-right: calc(1.5em + .75rem);
    background-position: top calc(.375em + .1875rem) right calc(.375em + .1875rem);
}

.was-validated .custom-select:invalid, .custom-select.is-invalid {
    border-color: #dc3545;
    padding-right: calc(.75em + 2.3125rem);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e") #ffffff no-repeat center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem);
}

.was-validated .custom-select:invalid:focus, .custom-select.is-invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .25);
}

.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
    color: #dc3545;
}

.was-validated .form-check-input:invalid ~ .invalid-feedback, .was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback, .form-check-input.is-invalid ~ .invalid-tooltip {
    display: block;
}

.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label {
    color: #dc3545;
}

.was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before {
    border-color: #dc3545;
}

.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before {
    border-color: #e4606d;
    background-color: #e4606d;
}

.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before {
    box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .25);
}

.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before {
    border-color: #dc3545;
}

.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label {
    border-color: #dc3545;
}

.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label {
    border-color: #dc3545;
    box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .25);
}

.form-inline {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -ms-flex-align: center;
    align-items: center;
}

.form-inline .form-check {
    width: 100%;
}

@media (min-width: 576px) {
    .form-inline label {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-bottom: 0;
    }
    .form-inline .form-group {
        display: -ms-flexbox;
        display: flex;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
        -ms-flex-align: center;
        align-items: center;
        margin-bottom: 0;
    }
    .form-inline .form-control {
        display: inline-block;
        width: auto;
        vertical-align: middle;
    }
    .form-inline .form-control-plaintext {
        display: inline-block;
    }
    .form-inline .input-group, .form-inline .custom-select {
        width: auto;
    }
    .form-inline .form-check {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: auto;
        padding-left: 0;
    }
    .form-inline .form-check-input {
        position: relative;
        -ms-flex-negative: 0;
        flex-shrink: 0;
        margin-top: 0;
        margin-right: .25rem;
        margin-left: 0;
    }
    .form-inline .custom-control {
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .form-inline .custom-control-label {
        margin-bottom: 0;
    }
}

.btn, .pageNext, .currentForm input[type=submit] {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .btn, .pageNext, .currentForm input[type=submit] {
        transition: none;
    }
}

.btn:hover, .pageNext:hover, .currentForm input[type=submit]:hover {
    color: #212529;
    text-decoration: none;
}

.btn:focus, .btn.focus, .pageNext:focus, .currentForm input[type=submit]:focus {
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25);
    color: #ffffff;
}

.btn.disabled, .btn:disabled {
    opacity: .65;
}

a.btn.disabled, fieldset:disabled a.btn {
    pointer-events: none;
}

.btn-primary {
    color: #ffffff;
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:hover {
    color: #ffffff;
    background-color: #0069d9;
    border-color: #0062cc;
}

.btn-primary:focus, .btn-primary.focus {
    color: #ffffff;
    background-color: #0069d9;
    border-color: #0062cc;
    box-shadow: 0 0 0 .2rem rgba(38, 143, 255, .5);
}

.btn-primary.disabled, .btn-primary:disabled {
    color: #ffffff;
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle {
    color: #ffffff;
    background-color: #0062cc;
    border-color: #005cbf;
}

.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(38, 143, 255, .5);
}

.btn-secondary {
    color: #ffffff;
    background-color: #6c757d;
    border-color: #6c757d;
}

.btn-secondary:hover {
    color: #ffffff;
    background-color: #5a6268;
    border-color: #545b62;
}

.btn-secondary:focus, .btn-secondary.focus {
    color: #ffffff;
    background-color: #5a6268;
    border-color: #545b62;
    box-shadow: 0 0 0 .2rem rgba(130, 138, 145, .5);
}

.btn-secondary.disabled, .btn-secondary:disabled {
    color: #ffffff;
    background-color: #6c757d;
    border-color: #6c757d;
}

.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, .show > .btn-secondary.dropdown-toggle {
    color: #ffffff;
    background-color: #545b62;
    border-color: #4e555b;
}

.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-secondary.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(130, 138, 145, .5);
}

.btn-success {
    color: #ffffff;
    background-color: #28a745;
    border-color: #28a745;
}

.btn-success:hover {
    color: #ffffff;
    background-color: #218838;
    border-color: #1e7e34;
}

.btn-success:focus, .btn-success.focus {
    color: #ffffff;
    background-color: #218838;
    border-color: #1e7e34;
    box-shadow: 0 0 0 .2rem rgba(72, 180, 97, .5);
}

.btn-success.disabled, .btn-success:disabled {
    color: #ffffff;
    background-color: #28a745;
    border-color: #28a745;
}

.btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active, .show > .btn-success.dropdown-toggle {
    color: #ffffff;
    background-color: #1e7e34;
    border-color: #1c7430;
}

.btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus, .show > .btn-success.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(72, 180, 97, .5);
}

.btn-info {
    color: #ffffff;
    background-color: #17a2b8;
    border-color: #17a2b8;
}

.btn-info:hover {
    color: #ffffff;
    background-color: #138496;
    border-color: #117a8b;
}

.btn-info:focus, .btn-info.focus {
    color: #ffffff;
    background-color: #138496;
    border-color: #117a8b;
    box-shadow: 0 0 0 .2rem rgba(58, 176, 195, .5);
}

.btn-info.disabled, .btn-info:disabled {
    color: #ffffff;
    background-color: #17a2b8;
    border-color: #17a2b8;
}

.btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active, .show > .btn-info.dropdown-toggle {
    color: #ffffff;
    background-color: #117a8b;
    border-color: #10707f;
}

.btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus, .show > .btn-info.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(58, 176, 195, .5);
}

.btn-warning {
    color: #212529;
    background-color: #ffc107;
    border-color: #ffc107;
}

.btn-warning:hover {
    color: #212529;
    background-color: #e0a800;
    border-color: #d39e00;
}

.btn-warning:focus, .btn-warning.focus {
    color: #212529;
    background-color: #e0a800;
    border-color: #d39e00;
    box-shadow: 0 0 0 .2rem rgba(222, 170, 12, .5);
}

.btn-warning.disabled, .btn-warning:disabled {
    color: #212529;
    background-color: #ffc107;
    border-color: #ffc107;
}

.btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active, .show > .btn-warning.dropdown-toggle {
    color: #212529;
    background-color: #d39e00;
    border-color: #c69500;
}

.btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-warning.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(222, 170, 12, .5);
}

.btn-danger {
    color: #ffffff;
    background-color: #dc3545;
    border-color: #dc3545;
}

.btn-danger:hover {
    color: #ffffff;
    background-color: #c82333;
    border-color: #bd2130;
}

.btn-danger:focus, .btn-danger.focus {
    color: #ffffff;
    background-color: #c82333;
    border-color: #bd2130;
    box-shadow: 0 0 0 .2rem rgba(225, 83, 97, .5);
}

.btn-danger.disabled, .btn-danger:disabled {
    color: #ffffff;
    background-color: #dc3545;
    border-color: #dc3545;
}

.btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active, .show > .btn-danger.dropdown-toggle {
    color: #ffffff;
    background-color: #bd2130;
    border-color: #b21f2d;
}

.btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-danger.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(225, 83, 97, .5);
}

.btn-light {
    color: #212529;
    background-color: #f8f9fa;
    border-color: #f8f9fa;
}

.btn-light:hover {
    color: #212529;
    background-color: #e2e6ea;
    border-color: #dae0e5;
}

.btn-light:focus, .btn-light.focus {
    color: #212529;
    background-color: #e2e6ea;
    border-color: #dae0e5;
    box-shadow: 0 0 0 .2rem rgba(216, 217, 219, .5);
}

.btn-light.disabled, .btn-light:disabled {
    color: #212529;
    background-color: #f8f9fa;
    border-color: #f8f9fa;
}

.btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active, .show > .btn-light.dropdown-toggle {
    color: #212529;
    background-color: #dae0e5;
    border-color: #d3d9df;
}

.btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus, .show > .btn-light.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(216, 217, 219, .5);
}

.btn-dark {
    color: #ffffff;
    background-color: #343a40;
    border-color: #343a40;
}

.btn-dark:hover {
    color: #ffffff;
    background-color: #23272b;
    border-color: #1d2124;
}

.btn-dark:focus, .btn-dark.focus {
    color: #ffffff;
    background-color: #23272b;
    border-color: #1d2124;
    box-shadow: 0 0 0 .2rem rgba(82, 88, 93, .5);
}

.btn-dark.disabled, .btn-dark:disabled {
    color: #ffffff;
    background-color: #343a40;
    border-color: #343a40;
}

.btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active, .show > .btn-dark.dropdown-toggle {
    color: #ffffff;
    background-color: #1d2124;
    border-color: #171a1d;
}

.btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-dark.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(82, 88, 93, .5);
}

.btn-outline-primary {
    color: #007bff;
    border-color: #007bff;
}

.btn-outline-primary:hover {
    color: #ffffff;
    background-color: #007bff;
    border-color: #007bff;
}

.btn-outline-primary:focus, .btn-outline-primary.focus {
    box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .5);
}

.btn-outline-primary.disabled, .btn-outline-primary:disabled {
    color: #007bff;
    background-color: transparent;
}

.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active, .show > .btn-outline-primary.dropdown-toggle {
    color: #ffffff;
    background-color: #007bff;
    border-color: #007bff;
}

.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .5);
}

.btn-outline-secondary {
    color: #6c757d;
    border-color: #6c757d;
}

.btn-outline-secondary:hover {
    color: #ffffff;
    background-color: #6c757d;
    border-color: #6c757d;
}

.btn-outline-secondary:focus, .btn-outline-secondary.focus {
    box-shadow: 0 0 0 .2rem rgba(108, 117, 125, .5);
}

.btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
    color: #6c757d;
    background-color: transparent;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active, .show > .btn-outline-secondary.dropdown-toggle {
    color: #ffffff;
    background-color: #6c757d;
    border-color: #6c757d;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-secondary.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(108, 117, 125, .5);
}

.btn-outline-success {
    color: #28a745;
    border-color: #28a745;
}

.btn-outline-success:hover {
    color: #ffffff;
    background-color: #28a745;
    border-color: #28a745;
}

.btn-outline-success:focus, .btn-outline-success.focus {
    box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .5);
}

.btn-outline-success.disabled, .btn-outline-success:disabled {
    color: #28a745;
    background-color: transparent;
}

.btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active, .show > .btn-outline-success.dropdown-toggle {
    color: #ffffff;
    background-color: #28a745;
    border-color: #28a745;
}

.btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-success.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .5);
}

.btn-outline-info {
    color: #17a2b8;
    border-color: #17a2b8;
}

.btn-outline-info:hover {
    color: #ffffff;
    background-color: #17a2b8;
    border-color: #17a2b8;
}

.btn-outline-info:focus, .btn-outline-info.focus {
    box-shadow: 0 0 0 .2rem rgba(23, 162, 184, .5);
}

.btn-outline-info.disabled, .btn-outline-info:disabled {
    color: #17a2b8;
    background-color: transparent;
}

.btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active, .show > .btn-outline-info.dropdown-toggle {
    color: #ffffff;
    background-color: #17a2b8;
    border-color: #17a2b8;
}

.btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-info.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(23, 162, 184, .5);
}

.btn-outline-warning {
    color: #ffc107;
    border-color: #ffc107;
}

.btn-outline-warning:hover {
    color: #212529;
    background-color: #ffc107;
    border-color: #ffc107;
}

.btn-outline-warning:focus, .btn-outline-warning.focus {
    box-shadow: 0 0 0 .2rem rgba(255, 193, 7, .5);
}

.btn-outline-warning.disabled, .btn-outline-warning:disabled {
    color: #ffc107;
    background-color: transparent;
}

.btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active, .show > .btn-outline-warning.dropdown-toggle {
    color: #212529;
    background-color: #ffc107;
    border-color: #ffc107;
}

.btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-warning.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(255, 193, 7, .5);
}

.btn-outline-danger {
    color: #dc3545;
    border-color: #dc3545;
}

.btn-outline-danger:hover {
    color: #ffffff;
    background-color: #dc3545;
    border-color: #dc3545;
}

.btn-outline-danger:focus, .btn-outline-danger.focus {
    box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .5);
}

.btn-outline-danger.disabled, .btn-outline-danger:disabled {
    color: #dc3545;
    background-color: transparent;
}

.btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active, .show > .btn-outline-danger.dropdown-toggle {
    color: #ffffff;
    background-color: #dc3545;
    border-color: #dc3545;
}

.btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-danger.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .5);
}

.btn-outline-light {
    color: #f8f9fa;
    border-color: #f8f9fa;
}

.btn-outline-light:hover {
    color: #212529;
    background-color: #f8f9fa;
    border-color: #f8f9fa;
}

.btn-outline-light:focus, .btn-outline-light.focus {
    box-shadow: 0 0 0 .2rem rgba(248, 249, 250, .5);
}

.btn-outline-light.disabled, .btn-outline-light:disabled {
    color: #f8f9fa;
    background-color: transparent;
}

.btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active, .show > .btn-outline-light.dropdown-toggle {
    color: #212529;
    background-color: #f8f9fa;
    border-color: #f8f9fa;
}

.btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-light.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(248, 249, 250, .5);
}

.btn-outline-dark {
    color: #343a40;
    border-color: #343a40;
}

.btn-outline-dark:hover {
    color: #ffffff;
    background-color: #343a40;
    border-color: #343a40;
}

.btn-outline-dark:focus, .btn-outline-dark.focus {
    box-shadow: 0 0 0 .2rem rgba(52, 58, 64, .5);
}

.btn-outline-dark.disabled, .btn-outline-dark:disabled {
    color: #343a40;
    background-color: transparent;
}

.btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active, .show > .btn-outline-dark.dropdown-toggle {
    color: #ffffff;
    background-color: #343a40;
    border-color: #343a40;
}

.btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-dark.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(52, 58, 64, .5);
}

.btn-link {
    font-weight: 400;
    color: #007bff;
    text-decoration: none;
}

.btn-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

.btn-link:focus, .btn-link.focus {
    text-decoration: underline;
    box-shadow: none;
}

.btn-link:disabled, .btn-link.disabled {
    color: #6c757d;
    pointer-events: none;
}

.btn-lg, .btn-group-lg > .btn {
    padding: .5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: .3rem;
}

.btn-sm, .btn-group-sm > .btn {
    padding: .25rem .5rem;
    font-size: .875rem;
    line-height: 1.5;
    border-radius: .2rem;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-block + .btn-block {
    margin-top: .5rem;
}

input[type="submit"].btn-block, input[type="reset"].btn-block, input[type="button"].btn-block {
    width: 100%;
}

.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;
    }
}

.container-fluid, .container-sm, .container-md, .container-lg, .container-xl {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container, .container-sm {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container, .container-sm, .container-md {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container, .container-sm, .container-md, .container-lg {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container, .container-sm, .container-md, .container-lg, .container-xl {
        max-width: 1140px;
    }
}

.flex-wrap {
    -ms-flex-wrap: wrap!important;
    flex-wrap: wrap!important;
}

.flex-wrap-reverse {
    -ms-flex-wrap: wrap-reverse!important;
    flex-wrap: wrap-reverse!important;
}

@media (min-width: 768px) {
    .medium-flex-wrap {
        -ms-flex-wrap: wrap!important;
        flex-wrap: wrap!important;
    }

    .medium-flex-wrap-reverse {
        -ms-flex-wrap: wrap-reverse!important;
        flex-wrap: wrap-reverse!important;
    }

    .rounded-lg {
        border-radius: .3rem !important;
    }
    
    .hero__container {
        border-radius: .3rem;
        position: relative;
        overflow: hidden;
    }
}



/* Foundation overrides to make things fit better */
.index .row {
    max-width: 72.5rem;
}

.index .footer .row {
    max-width: 75rem;
}

@media (min-width: 1160px) {
    .column, .columns {
        padding-left: 15px;
        padding-right: 15px;
    }
}

[type=color], [type=date], [type=datetime-local], [type=datetime], [type=email], [type=month], [type=number], [type=password], [type=search], [type=tel], [type=text], [type=time], [type=url], [type=week], textarea {
    color: #000000;
}

/* style.css */
.section, h1, h2, h3, h4, h5, h6 {
    font-family: 'Catamaran', sans-serif;
}
#hero_section {
    padding: 2rem 0;
    background-color: #45718e;
}
.hero__container {
    background-color: #9f092d;
    margin-bottom: 20px;
}
.hero__container h3.hero__location {
    color: #ffffff;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 0;
    padding-top: .5em;
    padding-bottom: .5em;
}
.section img {
    max-width: 100%;
}
.form-step-list, .form-wrap .formElements {
    /* min-height: 540px; */
    min-height: 480px;
    max-width: 435px;
    margin-left: auto;
    padding: 30px;
}

.form-step-list {    
    background-color: #eae8e5;
    border-radius: 9px;
}

.form-wrap .formElements {
    max-width: 100%;
    /* border-radius: 9px 9px 0 0; */
}

.form-wrap .currentForm {
    background-color: #eae8e5;
    border-radius: 9px;
    /* min-height: 540px; */
    max-width: 435px;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (min-width: 1024px) {
    .form-wrap .currentForm {
        margin-right: 0;
    }
}

.form-wrap .formElements .row > ul > li, .form-wrap .formElements .formRow > ul > li {
    float: none;
}
.form-wrap form {
    margin-bottom: 0;
}
.form-wrap .form-message {
    font-size: 28px;
    color: #222222;
    line-height: 1.3em;
    text-align: center;
    margin-top: 8px;
    font-weight: 500;
    margin-bottom: 1.5rem;
}
.color-text--dark-red {
    color: #9f092d;
}

.form-wrap .form-group input, .form-wrap .input-wrapper input {
    width: 100%;
    border-radius: 4px;
    background-color: #ffffff;
    border: 1px solid #aaaaaa;
    padding: 15px;
    height: auto;
}
.form-wrap .form-group input:focus, .form-wrap .form-group input:active {
    outline: none;
}
.form-wrap .action-row {
    margin: 0 -30px;
}
#intro_section {
    padding-top: 90px;
    padding-bottom: 45px;
}
.form-submit-button, .pageNext, .currentForm input[type=submit] {
    height: 70px;
    background-color: #9f092d;
    text-transform: uppercase;
    font-size: 28px;
    color: #ffffff;
    font-weight: 400;
    text-align: center;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
    /* width: 100%; */
    margin-top: 24px;
    margin-bottom: -30px;
}
.pageNext, .currentForm input[type=submit] {
    margin-bottom: 0;
    margin-top: 0;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}
.pageBack {
    padding-left: 1rem;
}
.input-wrapper label {
    display: none;
}
.cmForm .hidden {
    display: none;
}
.form-submit-button:hover {
    color: #ffffff;
}
#help_section {
    padding-top: 45px;
    padding-bottom: 45px;
    margin-bottom: 45px;
}
.dark-blue-card {
    max-width: 530px;
    border-radius: 8px;
    filter: drop-shadow(0px 2px 10px rgba(75,118,122,.2));
    background-color: #45718e;
    border: 0;
    max-width: 530px;
    color: #ffffff;
}
.dark-blue-card .card-title {
    text-align: center;
    font-size: 36px;
    letter-spacing: 1px;
    line-height: 40px;
    color: #ffffff;
    font-weight: 700;
    margin-left: auto;
    margin-right: auto;
    max-width: 415px;
    margin-bottom: 30px;
    margin-top: 8px;
}
.dark-blue-card .card-body {
    padding: 30px;
}
.dark-blue-card .card-list {
    max-width: 370px;
    font-size: 18px;
    line-height: 30px;
    color: #ffffff;
    font-weight: 100;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    list-style-type: "•    ";
}
.text-align-center {
    text-align: center;
}
.section h2 {
    font-size: 34px;
    letter-spacing: 2px;
    color: #222222;
    font-weight: 400;
    width: 100%;
    text-align: center;
    margin-bottom: 28px;
}
.section h3 {
    font-size: 30px;
    line-height: 44px;
    color: #9f092c;
    font-weight: 400;
}
.section h4 {
    font-size: 26px;
    line-height: 44px;
    color: #000000;
    font-weight: 100;
}
.section p {
    font-size: 18px;
}
#footer {
    padding-top: 30px;
    padding-bottom: 90px;
}
.footer {
    background-color: #394044;
    color: #ffffff;
    /* padding-bottom: 9rem; */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
/* @media all and (min-width: 576px) {
    .footer {
        padding-bottom: 5rem;
    }
} */

#get-help_section {
    padding-top: 90px;
    padding-bottom: 45px;
}
#get-help_section h2 {
    text-align: left;
}
#get-help_section p {
    font-size: 18px;
    line-height: 30px;
    font-weight: 200;
}
#get-help_section ul {
    font-size: 18px;
    line-height: 34px;
    font-weight: 200;
    color: #000000;
    list-style-type: "•    ";
    padding-left: 22px;
}
#cta_section {
    background-color: #45718e;
    margin-top: 110px;
}
#cta_section .cta-image {
    width: 220px;
    margin-top: -110px;
}
.inputs-wrap .checkboxes-title, .form-wrap .checkboxes-title {
    font-size: 32px;
    /* color: #54b8c0; */
    color: #9F092D;
    font-weight: 300;
    /* font-family: "Roboto", sans-serif; */
    text-align: center;
    line-height: 1.3;
}
@media screen and (min-width:768px) {
    .inputs-wrap .checkboxes-title, .form-wrap .checkboxes-title {
        margin-top: 30px;
        line-height: 1.6;
    }
}
.inputs-wrap .fieldset-title, .form-wrap .fieldset-title, .form-wrap .formElements fieldset legend{
    /* font-size: 16px; */
    font-size: 22px;
    color: #111111;
    font-weight: 500;
    text-align: center;
    margin-bottom: 26px;
    /* font-family: "Roboto", sans-serif; */
}
.inputs-wrap .checkboxes-subtitle, .form-wrap .checkboxes-subtitle {
    font-size: 20px;
    color: #111111;
    font-weight: 300;
    /* font-family: "Roboto", sans-serif; */
    text-align: center;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    /* flex-direction: column; */
    flex-direction: row;
    flex-wrap: wrap;
    position: relative;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    margin-bottom: 0;
    width: 100%;
}
.inputs-wrap .checkboxes-subtitle::after, .form-wrap .checkboxes-subtitle::after {
    content: '';
    display: block;
    width: 57px;
    height: 2px;
    background-color: #9F092D;
    margin-top: 26px;
    margin-bottom: 26px;
}
.fieldset-wrap {
    display: flex;
    align-items: center;
    min-height: 320px;
    margin-bottom: -40px;
}
.fieldset-box {
    width: 100%;
}
.fieldset-box fieldset > span, .form-wrap .formElements .row > ul > li > span, .form-wrap .formElements .formRow > ul > li span {
    /* width: 32%; */
    width: 100%;
    display: inline-block;
    box-sizing: border-box;
    text-align: center;
    margin-top: 0;
    margin-bottom: 1rem;
}

.fieldset-box #radio-54852 fieldset > span, .form-wrap .formElements .row > ul > li#radio-54852 > span, .form-wrap .formElements .formRow > ul > li#radio-54852 span, .fieldset-box #radio-55197 fieldset > span, .form-wrap .formElements .row > ul > li#radio-55197 > span, .form-wrap .formElements .formRow > ul > li#radio-55197 span {
    width: 50%;
    text-align: center;
    margin-bottom: 20px;
}

/* .fieldset-box fieldset span label, .form-wrap .formElements span label {
    font-size: 14px;
    color: #aaaaaa;
    font-weight: 400;
    font-family: "Roboto", sans-serif;
    text-align: center;
    cursor: pointer;
} */
.fieldset-box fieldset span label, .form-wrap .formElements span label {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    height: 44px;
    /* width: 128px; */
    width: 200px;
    background-color: #24587A;
    margin-left: auto;
    margin-right: auto;
    font-size: 18px;
    color: #ffffff;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    border-radius: 7px;
    margin-top: 0;
}
.fieldset-box #radio-54852 fieldset span label, .form-wrap .formElements  #radio-54852 span label, .fieldset-box #radio-55197 fieldset span label, .form-wrap .formElements #radio-55197 span label {
    width: 128px;
}
.fieldset-box fieldset span label:hover, .form-wrap .formElements span label:hover, .fieldset-box fieldset span label:focus, .form-wrap .formElements span label:focus {
    background-color: #5FA9C3;
}
/* .fieldset-box fieldset span label::before, .form-wrap .formElements span label::before {
    content: " ";
    width: 65px;
    height: 65px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    background-size: contain;
    background-repeat: no-repeat;
    clear: both;
    margin-bottom: 7px;
    background-position: center;
} */
.fieldset-box fieldset span input:checked + label, .form-wrap .formElements span input:checked + label {
    color: #54b8c0;
}
#checkboxO-25047 + label::before, #checkboxO-92154 + label::before {
    background-image: url('../images/homepage-images/check-1-1.svg');
}
#checkboxO-25047:checked + label::before, #checkboxO-92154:checked + label::before {
    background-image: url('../images/homepage-images/check-1-1-hover.svg');
}
#checkboxO-25048 + label::before, #checkboxO-92155 + label::before {
    background-image: url('../images/homepage-images/check-1-2.svg');
}
#checkboxO-25048:checked + label::before, #checkboxO-92155:checked + label::before {
    background-image: url('../images/homepage-images/check-1-2-hover.svg');
}
#checkboxO-25049 + label::before, #checkboxO-92156 + label::before {
    background-image: url('../images/homepage-images/check-1-3.svg');
}
#checkboxO-25049:checked + label::before, #checkboxO-92156:checked + label::before {
    background-image: url('../images/homepage-images/check-1-3-hover.svg');
}
#checkboxO-25051 + label::before, #checkboxO-92157 + label::before {
    background-image: url('../images/homepage-images/check-1-4.svg');
}
#checkboxO-25051:checked + label::before, #checkboxO-92157:checked + label::before {
    background-image: url('../images/homepage-images/check-1-4-hover.svg');
}
#checkboxO-25050 + label::before, #checkboxO-92158 + label::before {
    background-image: url('../images/homepage-images/check-1-5.svg');
}
#checkboxO-25050:checked + label::before, #checkboxO-92158:checked + label::before {
    background-image: url('../images/homepage-images/check-1-5-hover.svg');
}
#checkboxO-39684 + label::before, #checkboxO-92159 + label::before {
    background-image: url('../images/homepage-images/check-1-6.svg');
}
#checkboxO-39684:checked + label::before, #checkboxO-92159:checked + label::before {
    background-image: url('../images/homepage-images/check-1-6-hover.svg');
}

#checkboxO-25052 + label::before, #checkboxO-92160 + label::before {
    background-image: url('../images/homepage-images/check-2-1.svg');
}
#checkboxO-25052:checked + label::before, #checkboxO-92160:checked + label::before {
    background-image: url('../images/homepage-images/check-2-1-hover.svg');
}
#checkboxO-25053 + label::before, #checkboxO-92161 + label::before {
    background-image: url('../images/homepage-images/check-2-2.svg');
}
#checkboxO-25053:checked + label::before, #checkboxO-92161:checked + label::before {
    background-image: url('../images/homepage-images/check-2-2-hover.svg');
}
#checkboxO-25054 + label::before, #checkboxO-92162 + label::before {
    background-image: url('../images/homepage-images/check-2-3.svg');
}
#checkboxO-25054:checked + label::before, #checkboxO-92162:checked + label::before {
    background-image: url('../images/homepage-images/check-2-3-hover.svg');
}

#checkboxO-39685 + label::before, #checkboxO-92163 + label::before {
    background-image: url('../images/homepage-images/check-3-1.svg');
}
#checkboxO-39685:checked + label::before, #checkboxO-92163:checked + label::before {
    background-image: url('../images/homepage-images/check-3-1-hover.svg');
}
#checkboxO-39686 + label::before, #checkboxO-92164 + label::before {
    background-image: url('../images/homepage-images/check-3-2.svg');
}
#checkboxO-39686:checked + label::before, #checkboxO-92164:checked + label::before {
    background-image: url('../images/homepage-images/check-3-2-hover.svg');
}
#checkboxO-39687 + label::before, #checkboxO-92165 + label::before {
    background-image: url('../images/homepage-images/check-3-3.svg');
}
#checkboxO-39687:checked + label::before, #checkboxO-92165:checked + label::before {
    background-image: url('../images/homepage-images/check-3-3-hover.svg');
}
#checkboxO-39688 + label::before, #checkboxO-92166 + label::before {
    background-image: url('../images/homepage-images/check-3-4.svg');
}
#checkboxO-39688:checked + label::before, #checkboxO-92166:checked + label::before {
    background-image: url('../images/homepage-images/check-3-4-hover.svg');
}
/* .fieldset-box input[type="checkbox"], .form-wrap input[type="checkbox"] {
    display: none;
}  */
.fieldset-box input[type="radio"], .form-wrap input[type="radio"] {
    opacity: 0;
    position: absolute;
    visibility: hidden;
} 
.form-wrap .formElements .row > ul > li, .form-wrap .formElements .formRow > ul > li {
    padding: 0;
}
#submit4416 {
    visibility: hidden;
    display: none!important;
}
#cta_section .cta-title {
    font-size: 28px;
    line-height: 32px;
    color: #ffffff;
    font-weight: 400;
    margin-bottom: 0;
}
#cta_section .btn {
    width: auto;
    height: 70px;
    font-size: 28px;
    color: #ffffff;
    font-weight: 400;
    padding-top: 16px;
}
.icons-item img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.icons-item .title {
    display: block;
    text-align: center;
    font-size: 24px;
    line-height: 32px;
    color: #000000;
    font-weight: 400;
    margin-bottom: 12px;
}
.icons-item .text {
    display: block;
    text-align: center;
    font-size: 17px;
    line-height: 24px;
    color: #000000;
    font-weight: 200;
}
.icons-item .image {
    min-height: 60px;
    margin-bottom: 16px;
}
.card-list {
    padding-top: 30px;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.card-list .card {
    border-radius: 8px;
    filter: drop-shadow(0px 2px 10px rgba(75,118,122,.2));
    border: 0;
}
#icons_section {
    padding-top: 45px;
    padding-bottom: 45px;
}
.card-list .card h3 {
    text-align: center;
    margin-bottom: 20px;
    line-height: 40px;
}
.btn__dark-red {
    border-radius: 8px;
    background-color: #9f092d;
    color: #ffffff;
    text-transform: uppercase;
}
.btn__dark-red:hover {
    color: #ffffff;
}
.btn-lg.btn__dark-red {
    min-width: 250px;
    text-align: center;
    height: 70px;
    font-size: 28px;
    padding: 16px 30px;
}
.card-list .card-image {
    margin-left: -20px;
    margin-right: -20px;
    height: 270px;
    margin-bottom: 15px;
}
.card-list .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.card-list .card p {
    font-size: 18px;
    line-height: 26px;
    color: #000000;
    font-weight: 100;
    text-align: center;
    margin-bottom: 0;
    min-height: 130px;
}
#stories_section {
    background-color: #45718e;
    color: #ffffff;
    padding-top: 90px;
    padding-bottom: 45px;
}
#stories_section h2 {
    color: #ffffff;
}
.story_item {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 35px;
}
.story_preview img {
    width: 100%;
}
.story_preview {
    position: relative;
    cursor: pointer;
}
.story_preview .play-button {
    position: absolute;
    width: 20%;
    padding-top: 20%;
    background-image: url('../images/homepage-images/play.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}
.story_title {
    margin-top: 5px;
    font-size: 18px;
    line-height: 40px;
    color: #ffffff;
    font-weight: 400;
    text-align: center;
}
/* @media screen and (min-width: 992px) {
    .social {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        margin: 0;
        margin-bottom: 1rem;
    }
} */
@media screen and (max-width: 1200px) {
    #cta_section .cta-title {
        font-size: 24px;
    }
    #cta_section .btn {
        font-size: 24px;
        height: 60px;
        padding-top: 14px;
    }
    #cta_section .cta-image {
        width: 160px;
        margin-top: -70px;
    }
}
@media screen and (max-width: 992px) {
    #cta_section .cta-title {
        font-size: 18px;
    }
    #cta_section .btn {
        font-size: 18px;
        height: 50px;
        padding-top: 12px;
    }
    #cta_section .cta-image {
        width: 110px;
        margin-top: -30px;
    }
    #hero_section img {
        /* margin-bottom: 20px; */
    }
    .form-step-list {
        margin-right: auto;
    }
    .dark-blue-card {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 20px;
    }
    .card-list .card {
        margin-bottom: 20px;
    }
}
@media screen and (max-width: 768px) {
    #cta_section .cta-image {
        margin-top: 0;
    }
    #cta_section .btn {
        margin-bottom: 20px;
    }
    #cta_section .cta-title {
        margin-bottom: 20px;
        text-align: center;
    }
    #hero_section img {
        /* margin-bottom: 20px; */
    }
    #help_section .card {
        margin-bottom: 20px;
    }
    .story_item {
        padding-left: 0;
        padding-right: 0;
    }
    #hero_section {
        padding-top: 25px;
    }
    #intro_section {
        padding-top: 40px;
    }
    #intro_section .dark-blue-card {
        margin-bottom: 30px;
    }
    #help_section .card {
        padding-top: 10px;
    }
    .card-list .card p {
        min-height: auto;
    }
}
@media screen and (min-width: 576px) {
    #mobile-bottom-bar {
        display: none;
    }
}
@media screen and (max-width: 576px) {
    #cta_section .cta-image {
        margin-top: -10px;
        margin-bottom: 20px;
    }

    .dark-blue-card .card-title {
        font-size: 28px;
    }

    #mobile-bottom-bar {
        background-color: #45718e;
        padding: 10px 15px;
        color: #ffffff;
        position: fixed;
        width: 100%;
        bottom: 0;
        z-index: 10;
        box-shadow: 0 -1px 5px #0000007a;
    }
    #mobile-bottom-bar .btn.btn__dark-red {
        color: #ffffff;
        font-size: 20px;
    }
    #mobile-bottom-bar p {
        font-weight: 600;
    }
    #mobile-bottom-bar .cta-image {
        width: 80px;
    }
    #cta_section {
        display: none;
    }
    #cta_section .d-flex {
        flex-direction: column-reverse;
    }
    .btn-lg.btn__dark-red {
        font-size: 24px;
        height: 62px;
    }
}

@media screen and (max-width: 425px) {
    #mobile-bottom-bar .btn.btn__dark-red {
        font-size: 16px;
    }
    .btn-lg.btn__dark-red {
        font-size: 20px;
        height: 58px;
    }
}

/* Form Thank You Styles */
.form-thank-you {
    color: #ffffff;
}
.form-thank-you a {
    color: #ffffff;
    text-decoration: underline;
}

section .form-thank-you h2 {
    color: #ffffff;
}


@media (max-width: 411px) {
    .form-wrap .formElements .formRow>ul>li#radio-55197 fieldset span:nth-child(2) {
        margin-right: 2%;
        width: 48% !important;
    }
    .form-wrap .formElements .formRow>ul>li#radio-55197 fieldset span:nth-child(3) {
        margin-left: 2%;
        width: 48% !important;
    }
    .form-wrap .formElements .formRow>ul>li#radio-55197 fieldset span:nth-child(4) {
        margin-right: 2%;
        width: 48% !important;
    }
    .form-wrap .formElements .formRow>ul>li#radio-55197 fieldset span:nth-child(5) {
        margin-left: 2%;
        width: 48% !important;
    }
    .form-wrap .formElements .formRow>ul>li#radio-55197 fieldset span:nth-child(6) {
        margin-right: 2%;
        width: 48% !important;
    }
    .form-wrap .formElements .formRow>ul>li#radio-55197 fieldset span:nth-child(7) {
        margin-left: 2%;
        width: 48% !important;
    }
    .form-wrap .formElements #radio-55197 span label {
        width: 100%;
    }
}

/* TEXT OPT IN */
.form-wrap .formElements .checkbox fieldset legend {
    font-size: 1.125rem;
    font-weight: 400;
    text-align: left;
    margin: 0;
    padding-bottom: .5rem;
}
.form-wrap .formElements .formRow > ul > li.checkbox span {
    display: flex;
}
.form-wrap .formElements .checkbox span label {
    height: auto;
    width: auto;
    background: transparent;
    text-align: left;
    color: #111111;
    font-weight: 400;
    border: none;
    display: block;
    font-size: 1rem;
    padding-left: .5rem;
}

/* NEW NAVIGATION CODE */

.header__topbar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 75rem;
    width: 100%;
    position: relative;
    margin-top: auto;
    margin-bottom: 0;
    padding: 1rem;
    z-index: 100;
}
.header__container {
    max-width: 75rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    padding-right: 0.625rem;
    padding-left: 0.625rem;
}
.header__logo {
    position: absolute;
    top: -6.75rem;
    left: -3rem;
}
.header__menu {
    margin-left: 10.5rem;
}
.header__phone {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    margin: 0 2rem;
    line-height: 1;
}
.header__phone__toll {
    font-size: 1rem;
    color: #ffffff;
    display: none;
}
.header__phone__number {
    font-size: 1.875rem;
    color: #ffffff;
    line-height: 1;
    display: none;
}
.header__phone__icon {
    fill: #ffffff;
}
.header__search__trigger {
    margin-right: 0.5rem;
    display: block;
    line-height: 1;
    cursor: pointer;
}
.header__search__icon {
    fill: #ffffff;
}
.mega-menu__trigger__icon {
    color: #24587a;
}
.nav {
    position: absolute;
    top: calc(100% + 4.5rem);
    left: 0;
    height: auto;
    width: 100%;
    background: #ffffff;
}

@media only screen and (min-width: 64rem) {
    .header__topbar {
        padding: 0 1rem;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
        margin: 0;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 1.5rem;
        z-index: 0;
    }
    .header__logo {
        top: -3.15rem;
        left: 0;
    }
    .header__phone {
        margin: 0;
    }
    .header__phone__toll {
        display: inherit;
    }
    .header__phone__number {
        display: inherit;
    }
    .header__phone__icon {
        display: none;
    }
    .nav {
        top: auto;
        left: auto;
        width: auto;
        position: relative;
        background: transparent;
    }
}

#header {
    background-color: #45718e;
}

@media screen and (max-width: 1024px) {
    #header {
        min-height: 70px;
        height: auto;
        clear: both;
    }
    .header {
        padding-top: .5rem;
        flex-direction: row-reverse;
        align-items: center;
        flex-wrap: wrap;
    }
    .header__menu {
        flex: 1 0 100%;
        margin-left: 0;
        position: relative;
    }
    .header__logo {
        position: relative;
        top: auto;
        left: auto;
    }
    .header__container {
        padding: 0;
        width: auto;
        flex: 1 1 auto;
    }
    .header__topbar {
        width: auto;
        flex: 1 1 auto;
    }
    .header__phone {
        margin: 0 auto;
    }
    .menu-button {
        height: 30px;
        padding-left: 1rem;
    }
    .mega-menu.is-open {
        width: 100%;
    }
    .header .bottom-header {
        display: flex;
        flex-grow: 1;
        justify-content: space-between;
    }
    .top-header .logo {
        width: 200px;
        padding-right: .5rem;
    }
}

@media screen and (max-width: 1023px) {
    .nav {
        top: 3.8rem;
        z-index: 5;
    }
    #header .navbar {
        width: 80%;
        float: left;
    }
    .header .row .columns {
        display: flex;
        justify-content: space-between;
    }
    .mega-menu__item>a {
        color: #24587a;
    }
    #header .bottom-header {
        float: right;
        width: auto;
    }
}
@media screen and (min-width: 1024px) {
    .header__menu {
        width: 100%;
        max-width: 75rem;
        margin-left: auto;
        margin-right: auto;
        padding-left: 10.5rem;
    }
    .nav {
        display: block;
    }
}