@charset "utf-8";
/*********************************************************
RESETS
**********************************************************/
:root {
    --PFLblue: #052383;
    --PFLred: #ff0404;
    --mediumGrey: #545b62;
    --lightGrey: #eaeaea;
    --formColor: #ff0404;
}
::-webkit-scrollbar {
    width: 12px;
}
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(7, 72, 128, 0.3);
    -webkit-border-radius: 10px;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: rgba(7, 72, 128, 1);
    -webkit-box-shadow: inset 0 0 6px rgba(7, 72, 128, 0.5);
}
::-webkit-scrollbar-thumb:window-inactive {
    background: rgba(7, 72, 128, 0.1);
}
html {
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
}
body {
    color: #333;
    font-family: 'Roboto', sans-serif;
    width: 100%;
    min-height: 100%;
    background-color: #333;
    background-image: url('https://pflmma-prod.s3.us-east-1.amazonaws.com/assets/img/base/texture-lockscreen.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}
p,
h1,
h2,
h3,
h4 {
    margin: 0;
    padding: 0;
}
.row {
    margin-left: 0;
    margin-right: 0;
}
.container {
    padding: 0;
}
img {
    max-width: 100%;
}
.no-padding {
    padding: 0;
}
.no-padding-left {
    padding-left: 0;
}
.no-padding-right {
    padding-right: 0;
}
.alert-unavailable {
    background-color: #ce0000;
    color: #fff;
    padding: .5rem 2rem;
    font-weight: bold;
}
/*********************************************************
DEFAULTS
**********************************************************/
p {}
a {
    color: var(--PFLblue);
}
a:hover {
    color: var(--PFLred);
    text-decoration: none;
}
h1 {
    font-family: 'Teko', sans-serif;
    font-size: 2rem;
    padding: 1rem 2.5rem;
    margin: 1rem 0;
    -webkit-clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
    clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
    text-align: center;
    color: #fff;
    font-weight: 700;
    background: var(--PFLblue);
    transition: .3s;
    text-transform: uppercase;
}
h2 {
    font-family: 'Teko', sans-serif;
    font-size: 1.2rem;
    padding: 10px 30px 10px 50px;
    margin: 0 0 1rem 0;
    -webkit-clip-path: polygon(7% 0%, 100% 0%, 93% 100%, 0% 100%);
    clip-path: polygon(7% 0%, 100% 0%, 93% 100%, 0% 100%);
    width: 600px;
    max-width: 100%;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    background: var(--mediumGrey);
    transition: .3s;
    text-align: center;
}
h3 {
    font-family: 'Teko', sans-serif;
    font-size: 1.2rem;
    margin: 1rem 0;
    padding: 10px 30px 10px 50px;
    width: 400px;
    max-width: 100%;
    -webkit-clip-path: polygon(9% 0%, 100% 0%, 91% 100%, 0% 100%);
    clip-path: polygon(9% 0%, 100% 0%, 91% 100%, 0% 100%);
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    background: var(--PFLblue);
    transition: .3s;
    text-align: center;
}
h3.alt {
    background: var(--PFLred);
}
h4 {
    font-family: 'Teko', sans-serif;
    font-size: 1.1rem;
    margin: 0 0 .5rem 0;
    padding: 0;
    text-align: center;
    text-transform: uppercase;
    color: var(--PFLblue);
    font-weight: bold;
}
.main-container {
    padding: 2rem 2rem 10rem 2rem;
    background: #fff;
}
.dataTable {
    width: 100% !important;
}
.panel {
    margin-top: 2.5rem;
    box-shadow: 0px 0px 10px 2px rgba(7, 72, 128, 0.09);
}
.pfl-red {
    color: var(--PFLred);
}
.pfl-blue {
    color: var(--PFLblue);
}
.pfl-link {
    color: #5166a9;
    font-weight: 600;
}
.pfl-link:hover {
    color: #af0e0e;
}
.tableActionsColumn {
    width: 0px;
    white-space: nowrap;
}
/* Flatpickr */
.flatpickr-input {
    background: #fff !important;
    height: 46px;
}
.flatpickr {
    background: #fff;
}
.flatpickr input {
    background: #fff !important;
    height: auto;
}
.flatpickr a.input-button {
    text-decoration: none;
    border: 1px solid #bbb;
    padding: 4px 10px;
    border-left: 0;
    cursor: pointer;
    align-self: center;
    justify-content: center;
    line-height: 1;
}
.border-black {
    border: 2px solid black !important;
}
/*********************************************************
BUTTONS
**********************************************************/
.btn {
    font-family: 'Teko', sans-serif;
    text-transform: uppercase;
    position: relative;
    padding: .4rem 1rem;
    margin-right: .3rem;
    transition: .3s;
    letter-spacing: 1px;
    font-weight: 600;
}
.btn .fas {
    /*margin-right: 5px;*/
}
.btn-primary {
    color: #fff;
    background: var(--PFLblue);
    border-color: var(--PFLblue);
}
.btn-secondary {
    color: #fff;
    background: var(--PFLred);
    border-color: var(--PFLred);
}
.btn-slim {
    font-size: .9rem;
    padding: .3rem .5rem;
    margin-left: .5rem;
}
.btn-slim:hover {
    border-color: var(--PFLred);
}
.btn-form {
    border: 3px solid #690b0b;
    color: #fff;
    background-color: #af0e0e;
    cursor: pointer;
    padding: 8px 60px;
    display: inline-block;
    margin: 15px 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    outline: none;
    position: relative;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    z-index: 1;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.2rem;
    font-weight: 900;
    border-radius: 8px;
    letter-spacing: -.03em
}
.btn-form:after {
    content: '';
    position: absolute;
    z-index: -1;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}
.btn-form-primary {
    overflow: hidden;
}
.btn-form-primary:after {
    width: 100%;
    height: 0;
    top: 50%;
    left: 50%;
    background: var(--PFLred);
    opacity: 0;
    -webkit-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
    -moz-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
    -ms-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
.btn-form-primary:hover,
.btn-form-primary:active {
    color: #fff;
    background-color: #af0e0e;
}
.btn-form-primary:hover:after {
    height: 260%;
    opacity: 1;
}
.btn-form-primary:active:after {
    height: 400%;
    opacity: 1;
}
/*********************************************************
FORM INPUT
**********************************************************/
.form-group.input-underline .form-control {
    width: 100%;
    border-radius: 0;
    border: none;
    border-bottom: 2px solid darkgrey;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    font-size: 1.5rem;
    margin: 4px 0 0 0;
    padding: 0;
}
.form-group.input-underline textarea.form-control {
    border: 1px solid #dee2e6 !important;
    margin-top: 1rem !important;
    padding: 8px 12px;
}
.form-group.input-underline .underline {
    height: 4px;
    width: 0px;
    position: relative;
    margin-top: -4px;
    background: var(--formColor);
    transition: .3s width ease-in-out;
}
.form-group.input-underline .form-control:focus+.underline {
    width: 100%;
    background: var(--formColor);
}
.form-group.input-underline label {
    margin: 0 0 -10px 0;
    padding: 0;
    display: block;
}
/*********************************************************
FORM RADIO
**********************************************************/
.radio {
    margin: 0.5rem;
}
.radio input[type=radio] {
    position: absolute;
    opacity: 0;
}
.radio input[type=radio]+.radio-label:before {
    content: "";
    background: #f4f4f4;
    border-radius: 100%;
    border: 1px solid #b4b4b4;
    display: inline-block;
    width: 1.4rem;
    height: 1.4rem;
    position: relative;
    margin-right: 1rem;
    vertical-align: top;
    cursor: pointer;
    text-align: center;
    transition: all 250ms ease;
}
.radio input[type=radio]:checked+.radio-label:before {
    background-color: var(--formColor);
    box-shadow: inset 0 0 0 4px #f4f4f4;
}
.radio input[type=radio]:focus+.radio-label:before {
    outline: none;
    border-color: var(--formColor);
}
.radio input[type=radio]:disabled+.radio-label:before {
    box-shadow: inset 0 0 0 4px #f4f4f4;
    border-color: #b4b4b4;
    background: #b4b4b4;
}
.radio input[type=radio]+.radio-label:empty:before {
    margin-right: 0;
}
/*********************************************************
FORM CHECKBOX
**********************************************************/
.checkbox {
    margin: 0.5rem;
}
.checkbox input[type=checkbox] {
    opacity: 100;
    position: relative;
}
.checkbox input[type=checkbox]+.checkbox-label:before {
    content: "";
    background: #f4f4f4;
    border: 1px solid #b4b4b4;
    display: inline-block;
    width: 1.4rem;
    height: 1.4rem;
    position: relative;
    margin-right: 1rem;
    vertical-align: top;
    cursor: pointer;
    text-align: center;
    transition: all 250ms ease;
}
.checkbox input[type=checkbox]:checked+.checkbox-label:before {
    background-color: var(--formColor);
    box-shadow: inset 0 0 0 4px #f4f4f4;
}
.checkbox input[type=checkbox]:focus+.checkbox-label:before {
    outline: none;
    border-color: var(--formColor);
}
.checkbox input[type=checkbox]:disabled+.checkbox-label:before {
    box-shadow: inset 0 0 0 4px #f4f4f4;
    border-color: #b4b4b4;
    background: #b4b4b4;
}
.checkbox input[type=checkbox]+.checkbox-label:empty:before {
    margin-right: 0;
}
/*********************************************************
FORM SEARCH INPUT
**********************************************************/
.search__input {
    width: 100%;
    padding: 14px 24px 12px 24px;
    background-color: var(--formColor);
    transition: transform 250ms ease-in-out;
    font-size: 20px;
    font-weight: 500;
    font-family: "Roboto Condensed", sans-serif;
    line-height: 18px;
    color: #fff;
    background-color: var(--formColor);
    background-image: url("data:image/svg+xml;charset=utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='white' viewBox='0 0 24 24'><path d='M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z'/></svg>");
    background-repeat: no-repeat;
    background-size: 24px 24px;
    background-position: 95% center;
    border-radius: 5px;
    border: 1px solid #575756;
    transition: all 250ms ease-in-out;
    backface-visibility: hidden;
    transform-style: preserve-3d;
}
.search__input::placeholder {
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.search__input:focus::placeholder {
    color: grey;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.search__input:focus {
    padding: 14px 0 12px 0;
    outline: 0;
    color: grey;
    border: 1px solid transparent;
    border-bottom: 1px solid #575756;
    border-radius: 0;
    background-color: transparent;
    background-image: url("data:image/svg+xml;charset=utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='grey' viewBox='0 0 24 24'><path d='M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z'/></svg>");
    background-position: 100% center;
}
/*********************************************************
FORM DATEPICKER/FLATPICKR
**********************************************************/
.flatpickr-input {
    background: #fff !important;
    height: 46px;
}
.flatpickr {
    background: #fff;
}
.flatpickr input {
    background: #fff !important;
    height: auto;
}
.flatpickr a.input-button {
    text-decoration: none;
    border: 1px solid #bbb;
    padding: 4px 10px;
    border-left: 0;
    cursor: pointer;
    align-self: center;
    justify-content: center;
    line-height: 1;
}
/*********************************************************
NAV
**********************************************************/
nav.navbar {
    border-bottom: 5px solid var(--PFLred);
    margin-bottom: 0;
    padding: 0;
}
.navbar-brand img {
    width: 120px;
}
.navbar-light .navbar-nav .nav-link {
    color: var(--PFLblue);
    padding: 1.5rem;
    transition: .3s;
    -webkit-clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%);
    clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%);
}
.navbar-light .navbar-nav .nav-link:hover,
.nav-item.dropdown:hover>a,
.dropdown-item:focus,
.dropdown-item:hover {
    color: #fff;
    background: var(--PFLblue);
}
.dropdown-menu {
    margin: 0;
    border-radius: 0;
}
.dropdown:hover>.dropdown-menu {
    display: block;
}
.dropdown>.dropdown-toggle:active {
    pointer-events: none;
}
/*********************************************************
BREADCRUMB NAV
**********************************************************/
.breadcrumb-arrow {
    height: 36px;
    padding: 0;
    line-height: 36px;
    list-style: none;
    background-color: #f7f7f7;
    margin-bottom: 2rem;
}
.breadcrumb-arrow li:first-child a {
    border-radius: 4px 0 0 4px;
    -webkit-border-radius: 4px 0 0 4px;
    -moz-border-radius: 4px 0 0 4px;
}
.breadcrumb-arrow li,
.breadcrumb-arrow li a,
.breadcrumb-arrow li span {
    display: inline-block;
    vertical-align: top;
}
.breadcrumb-arrow li+li:before {
    padding: 0;
    content: "";
}
.breadcrumb-arrow li span {
    padding: 0 10px;
}
.breadcrumb-arrow li a,
.breadcrumb-arrow li:not(:first-child) span {
    height: 36px;
    padding: 0 10px 0 25px;
    line-height: 36px;
}
.breadcrumb-arrow li:first-child a {
    padding: 0 10px;
}
.breadcrumb-arrow li a {
    position: relative;
    color: #fff;
    text-decoration: none;
    background-color: var(--PFLred);
    border: 1px solid var(--PFLred);
}
.breadcrumb-arrow li:first-child a {
    padding-left: 10px;
}
.breadcrumb-arrow li a:after,
.breadcrumb-arrow li a:before {
    position: absolute;
    top: -1px;
    width: 0;
    height: 0;
    content: '';
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
}
.breadcrumb-arrow li a:before {
    right: -10px;
    z-index: 3;
    border-left-color: var(--PFLred);
    border-left-style: solid;
    border-left-width: 11px;
}
.breadcrumb-arrow li a:after {
    right: -11px;
    z-index: 2;
    border-left: 11px solid var(--PFLblue);
}
.breadcrumb-arrow li a:focus,
.breadcrumb-arrow li a:hover {
    background-color: var(--PFLblue);
    border: 1px solid var(--PFLblue);
}
.breadcrumb-arrow li a:focus:before,
.breadcrumb-arrow li a:hover:before {
    border-left-color: var(--PFLblue);
}
.breadcrumb-arrow li a:active {
    background-color: var(--PFLblue);
    border: 1px solid var(--PFLblue);
}
.breadcrumb-arrow li a:active:after,
.breadcrumb-arrow li a:active:before {
    border-left-color: var(--PFLblue);
}
.breadcrumb-arrow li span {
    color: var(--PFLblue);
}
/*********************************************************
FOOTER
**********************************************************/
footer {
    font-size: .8em;
    padding: 1em;
    margin: 0 0 0 0;
    text-align: center;
    background: var(--PFLblue);
    color: #fff;
}
/*********************************************************
DASHBOARDS
**********************************************************/
.columnsContainer {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    z-index: 1;
}
.columnsContainer .item {
    display: grid;
    margin: auto;
    position: relative;
    flex: 1;
    text-align: center;
    color: white;
    transition: .3s;
    max-width: 25%;
    height: 40vh;
    min-width: 10%;
    z-index: 1;
}
.columnsContainer .item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-size: cover;
    z-index: -1;
}
.columnsContainer .item:nth-of-type(odd):before {
    background-image: url("https://pflmma-prod.s3.us-east-1.amazonaws.com/assets/img/backend/columnbg-events.jpg");
}
.columnsContainer .item:nth-of-type(even):before {
    background-image: url("https://pflmma-prod.s3.us-east-1.amazonaws.com/assets/img/backend/columnbg-media.jpg");
}
.columnsContainer .item:hover {
    max-width: 40% !important;
    flex-grow: 2;
    cursor: pointer;
    color: #fff;
}
.columnsContainer .item .columnbg {
    background: rgba(0, 0, 0, 0.3);
    transition: .3s;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}
.columnsContainer .item:hover .columnbg {
    background: rgba(0, 0, 255, 0.3);
}
.columnsContainer .item h4 {
    color: #fff;
    font-size: 3rem;
    z-index: 4;
}
.columnsContainer .content {
    margin: auto;
    font-size: 2em;
}
.page-item.active .page-link {
    z-index: 1;
    color: #fff;
    background-color: var(--PFLred);
    border-color: var(--PFLred);
}
.page-link {
    color: var(--PFLred);
}
.modal-title {
    margin: 0;
}
.notificationCounter {
    position: absolute;
    top: -5px;
    right: -5px;
    display: block;
    background: #e00000;
    border-radius: 100%;
    height: 20px;
    width: 20px;
    line-height: 1;
    padding-top: 2px;
}
.quickStats {
    background: #e4780f;
    padding: 1rem 2rem;
    font-size: 1rem;
    color: #fff;
    margin: 1rem auto 0 auto;
    display: block;
    text-align: center;
}
.quickStats span {
    display: inline-block;
    margin-right: 1rem;
}
.quickStats hr {
    border-top: 1px solid rgba(255, 255, 255, 1);
}
/*********************************************************
FORMS
**********************************************************/
label {
    font-size: 1rem;
    margin: 0 .5rem 1rem .5rem;
    color: #696969;
    font-weight: bold;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
    top: 80%;
}
.select2-container .select2-selection--single {
    height: auto;
    padding: .5rem;
}
.select {
    padding: .7rem;
    background-color: #fff;
    border: 1px solid #aaa;
    border-radius: 4px;
    width: 100%;
}
.custom-select {
    display: inline-block;
    width: auto;
}
#status_filter {
    display: inline-block;
    float: right;
    margin-top: -43px !important;
}
#status_filter label {
    font-weight: normal;
}
.dataTables_paginate {
    margin-top: -30px !important;
}
.select2-wrapper {
    width: 300px;
}
.select2-results .fa {
    float: right;
    position: relative;
    line-height: 20px;
}
#articleDataTable_length {
    display: inline-block;
    margin-right: 1.5rem;
}
/*********************************************************
AUTOCOMPLETE
**********************************************************/
.autocompleteMenuContainer {
    width: 400px;
    margin: 0;
    padding: 0;
    position: relative;
}
.ui-menu {
    list-style: none;
    position: absolute;
    top: 0;
    left: 0;
    padding: 0;
    max-height: 250px;
    overflow-y: scroll;
    border: none;
}
.ui-widget.ui-widget-content {
    border: none;
}
.ui-menu-item {
    font-size: 1.3em;
    background-color: var(--PFLred);
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .8);
    color: #fff;
    font-weight: normal;
    width: 100%;
    transition: .3s;
}
.ui-menu-item:hover {
    background-color: var(--PFLblue);
    cursor: pointer;
}
.ui-menu .ui-menu-item-wrapper {
    padding: .3em .8em;
}
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
    border: none;
    background: var(--PFLblue);
    font-weight: normal;
    color: #ffffff;
    margin: 0;
    transition: .3s;
}
/*********************************************************
CUSTOM CHECKS AND RADIOS
**********************************************************/
/* Radio and checkmark container */
.form-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 1rem;
    margin-right: 1rem;
    cursor: pointer;
    font-size: 1.2rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    float: left;
}
/* Hide the browser's default radio button */
.form-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
/* Create a custom radio button */
.form-radio {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 50%;
}
/* Create a custom checkbox */
.form-checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
}
/* On mouse-over, add a grey background color */
.form-container:hover input~.form-checkmark,
.form-container:hover input~.form-radio {
    background-color: #ccc;
}
/* When the radio button is checked, add a blue background */
.form-container input:checked~.form-checkmark,
.form-container input:checked~.form-radio {
    background-color: var(--PFLred);
}
/* Create the indicator (the dot/circle - hidden when not checked) */
.form-checkmark:after,
.form-radio:after {
    content: "";
    position: absolute;
    display: none;
}
/* Show the indicator (dot/circle) when checked */
.form-container input:checked~.form-checkmark:after,
.form-container input:checked~.form-radio:after {
    display: block;
}
/* Style the indicator (dot/circle) */
.form-container .form-radio:after {
    top: 9px;
    left: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}
/* Style the checkmark/indicator */
.form-container .form-checkmark:after {
    left: 10px;
    top: 6px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
/*********************************************************
CUSTOM SEARCH AND TEXT INPUTS
**********************************************************/
.input {
    position: relative;
    z-index: 1;
    display: inline-block;
    margin: 1rem .5rem;
    max-width: 100%;
    width: calc(100% - 2em);
    vertical-align: top;
    font-size: 1.5rem;
}
.input__field {
    position: relative;
    display: block;
    float: right;
    padding: 0.8em;
    width: 60%;
    border: none;
    border-radius: 0;
    background: #f0f0f0;
    color: #aaa;
    font-weight: 400;
    -webkit-appearance: none;
    /* for box shadows to show on iOS */
}
.input__field:focus {
    outline: none;
}
.input__label {
    display: inline-block;
    float: right;
    margin: 0;
    padding: 0 1em;
    width: 40%;
    color: #696969;
    font-weight: bold;
    font-size: 1rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.input__label-content {
    position: relative;
    display: block;
    padding: .3em 0 1.6em;
    width: 100%;
    margin-top: 5px;
}
.input__label-content span {
    font-weight: normal;
}
.graphic {
    position: absolute;
    top: 0;
    left: 0;
    fill: none;
}
.icon {
    color: #ddd;
    font-size: 150%;
}
/* Hoshi */
.input--hoshi {
    overflow: hidden;
}
.input__field--hoshi {
    margin-top: 1em;
    padding: 0.85em 0.15em;
    width: 100%;
    background: transparent;
    color: #595F6E;
}
.input__label--hoshi {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 0 0.25em;
    width: 100%;
    height: calc(100% - 1em);
    text-align: left;
    pointer-events: none;
}
.input__label-content--hoshi {
    position: absolute;
}
.input__label--hoshi::before,
.input__label--hoshi::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 10px);
    border-bottom: 1px solid #B9C1CA;
}
.input__label--hoshi::after {
    margin-top: 2px;
    border-bottom: 4px solid red;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    -webkit-transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
}
.input__label--hoshi-color-1::after {
    border-color: var(--PFLred);
}
.input__label--hoshi-color-2::after {
    border-color: hsl(160, 100%, 50%);
}
.input__label--hoshi-color-3::after {
    border-color: hsl(20, 100%, 50%);
}
.input__field--hoshi:focus+.input__label--hoshi::after,
.input--filled .input__label--hoshi::after {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.input__field--hoshi:focus+.input__label--hoshi .input__label-content--hoshi,
.input--filled .input__label-content--hoshi {
    -webkit-animation: anim-1 0.3s forwards;
    animation: anim-1 0.3s forwards;
}
@-webkit-keyframes anim-1 {
    50% {
        opacity: 0;
        -webkit-transform: translate3d(1em, 0, 0);
        transform: translate3d(1em, 0, 0);
    }
    51% {
        opacity: 0;
        -webkit-transform: translate3d(-1em, -40%, 0);
        transform: translate3d(-1em, -40%, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: translate3d(0, -40%, 0);
        transform: translate3d(0, -40%, 0);
    }
}
@keyframes anim-1 {
    50% {
        opacity: 0;
        -webkit-transform: translate3d(1em, 0, 0);
        transform: translate3d(1em, 0, 0);
    }
    51% {
        opacity: 0;
        -webkit-transform: translate3d(-1em, -40%, 0);
        transform: translate3d(-1em, -40%, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: translate3d(0, -40%, 0);
        transform: translate3d(0, -40%, 0);
    }
}
/*********************************************************
CHECKIN
**********************************************************/
#addMemberModal .input__label-content {
    padding: .5em 0;
}
.member-edit .input__label-content {
    padding: .5em 0;
}
.location-update .input__label-content {
    padding: .5em 0;
}
#addLocationModal .input__label-content {
    padding: .5em 0;
}
#addLocationGroupModal .input__label-content {
    padding: .5em 0;
}
/*********************************************************
INTERNAL
**********************************************************/
.noteBox {
    max-height: 430px;
    overflow-y: scroll;
}
.note {
    margin: 0 0 1rem 0;
    padding: 1rem;
    background-color: #f2f2f2;
}
.noteName {
    font-weight: bold;
}
.noteName small {
    font-weight: normal;
}
.noteBox .note:nth-child(even) {
    background-color: #fff;
}
.modal-body .noteBox {
    font-size: .9rem;
}
.modal-body .card-body {
    padding: .9rem .5rem;
}
.created_by {
    font-size: .8rem;
    margin-top: 1.5rem;
    text-align: center;
    color: var(--mediumGrey);
}
@media (min-width: 1450px) {
    .container {
        width: 1300px;
        max-width: 1300px;
    }
}
@media (max-width: 1900px) {}
@media (max-width: 1600px) {}
@media (max-width: 1450px) {}
@media (max-width: 1200px) {
    .container {
        width: 100%;
        max-width: 100%;
    }
}
@media (max-width: 992px) {}
@media (max-width: 768px) {
    h1,
    h2,
    h3,
    .navbar-light .navbar-nav .nav-link {
        webkit-clip-path: unset;
        clip-path: unset;
    }
}
.red-corner {
    color: #FF0000;
    font-weight: 800 !important;
}
.blue-corner {
    color: #0000FF;
    font-weight: 800 !important;
}
.help-block {
    color: #C00;
    font-weight: 600;
    font-size: 1.15em;
}
/*********************************************************
GALLERY
**********************************************************/
.delete_item {
    cursor: pointer;
    position: absolute;
    top: -10px;
    left: 55%;
}
.delete_item i {
    background: radial-gradient(white 50%, transparent 50%);
    color: #000;
    height: 1.1rem;
    width: 1.1rem;
    font-size: 1.2rem;
}
/*********************************************************
GLOBAL Image Hover/Delete
**********************************************************/
.remove_item {
    position: relative;
    cursor: pointer;
}
.remove_item img {
    width: 100%;
}
.remove_item .overlay {
    display: flex;
    position: absolute;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    transition: .5s ease;
    opacity: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
}
.remove_item .overlay:hover {
    opacity: 1;
}
.remove_item .overlay i {
    font-size: 5rem;
    color: #fff;
    margin: auto;
}
.popover.confirmation .popover-header {
    background: var(--PFLblue);
}
/** PFL Addon Colors and links **/
.text-pfl {
    color: var(--PFLred);
}
.link-pfl {
    font-weight: 600;
    font-size: 1.0rem;
    text-transform: uppercase;
}
/** Dropzone **/
.dropzone {
    border: 2px dotted rgba(0, 0, 0, 0.3) !important;
}
.dropzone .dz-preview {
    width: 100% !important;
    margin: 0 !important;
}
.dropzone .dz-image {
    width: 100% !important;
    background: #D2D2D2 !important;
}
.dropzone .dz-details {
    margin-top: 6px !important;
}
.dropzone .dz-filename {
    padding-top: 15px !important;
    font-size: 1rem !important;
}
.dropzone .dz-filename span {
    background: #fff !important;
    line-height: 2.5rem !important;
    padding: 4px !important;
}
.dropzone .dz-filename span:hover {
    border: none !important;
}
.dropzone .dz-size {
    margin-top: -0.70em !important;
}
.dropzone .dz-size span {
    background: #fff !important;
    padding: 4px !important;
}
.dropzone .dz-progress {
    width: 90% !important;
    margin-left: 5% !important;
    margin-right: 5% !important;
    left: 0% !important;
}
.dropzone .dz-upload {
    background: #28a745 !important;
}
.dropzone .dz-button {
    font-weight: 500 !important;
    font-size: 1.6rem !important;
    padding-top: 5px !important;
}
/** Resumable.js **/
#resumable-drop {
    border: 2px dotted rgba(0, 0, 0, 0.3) !important;
    cursor: pointer;
    height: 200px;
    text-align: center;
    background: none;
    color: inherit;
    border: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
    outline: inherit;
    display: flex;
    align-items: center;
}
#resumable-browse {
    font-weight: bold !important;
    font-size: 1.6rem !important;
    padding-top: 5px !important;
    width: 100%;
}
.resumable-file-progress {
    background-color: #28a745;
    padding: 10px;
    color: #fff;
    font-weight: bold;
}
.resumable-file-name {
    font-size: 1.2rem;
}
.resumable-file-status {
    font-weight: bold !important;
    font-size: 1.6rem !important;
}
.w3-container-wrapper {
    border-radius: 10px !important;
    word-wrap: normal !important;
    margin: 10px;
}
.w3-container {
    padding: 2px 16px !important;
    border-radius: 10px !important;
    font-weight: bold !important;
}
.w3-dark-grey {
    color: #fff !important;
    background-color: #616161 !important;
}
.w3-green {
    color: #fff !important;
    background-color: #4caf50 !important;
}
/** jQuery Uploader **/
.ajax-upload-dragdrop,
.ajax-file-upload-statusbar {
    width: 100% !important;
}
.dragdrop tr {
    cursor: move;
}
#settings-nav .nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
    background: var(--PFLblue);
    color: #fff;
    font-weight: bold;
}
.select2-container {
    width: 100% !important;
}
h3.settings-header {
    -webkit-clip-path: unset;
    clip-path: unset;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    width: 100%;
}
.tableFilter {
    display: inline-block;
}
