/* Bootstrap Overrides */
.container-fluid, .row {
    margin-right: 0;
    margin-left: 0;
}

.container-fluid {
    padding-right: 0;
    padding-left: 0;
}

/* Basic Elements */
*, *:before, *:after, *:focus, *:hover {
    outline: none !important;
}

ul, ul li {
    list-style-type: none;
}

a, a:hover, a:focus {
    text-decoration: none;
    cursor: pointer;
}

a {
    color: #607184;
}

a:focus, a:hover {
    color: #014c8c;
}

small {
    font-size: 70%;
    font-weight: inherit;
}

.rounded {
    border-radius: 0.5rem !important;
}

/* Navigation */
.dropdown-item:focus, .dropdown-item:hover {
    color: #fff;
    text-decoration: none;
    background-color: #25aae1;
    font-weight: 400;
}

/* Pre-Scrollable */
.pre-scrollable {
    max-height: 75vh;
    overflow-y: auto;
}

/* Form Elements */
.btn {
    font-family: 'Poppins', sans-serif;
    -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16), 0 2px 4px 0 rgba(0, 0, 0, 0.16);
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16), 0 2px 4px 0 rgba(0, 0, 0, 0.16);
    -webkit-transition: 0.05s ease-out;
    transition: 0.05s ease-out;
}

.btn:hover, .btn:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

select.form-control option {
    color: #000;
}

.dd-form-group select {
    margin: 0 !Important;
    padding: 0.5rem 0.875rem;
    display: inline-block;
    width: 200px;
    height: auto;
    background-image: linear-gradient(45deg, transparent 50%, gray 50%),
    linear-gradient(135deg, gray 50%, transparent 50%),
    linear-gradient(to right, #ccc, #ccc);
    background-position: calc(100% - 20px) calc(1rem + 2px),
    calc(100% - 15px) calc(1rem + 2px),
    calc(100% - 2.5rem) 0.5rem;
    background-size: 5px 5px,
    5px 5px,
    1px 1.5rem;
    background-repeat: no-repeat;
    border: 1px solid #25aae1;
    font-size: 1rem;
    -webkit-appearance: none;
    appearance: none;
    outline: 0;
}

.dd-form-group select:focus {
    background-image: linear-gradient(45deg, #25aae1 50%, transparent 50%),
    linear-gradient(135deg, transparent 50%, #25aae1 50%),
    linear-gradient(to right, #ccc, #ccc);
    background-position: calc(100% - 15px) 1rem,
    calc(100% - 20px) 1rem,
    calc(100% - 2.5rem) 0.5rem;
    background-size: 5px 5px,
    5px 5px,
    1px 1.5rem;
    background-repeat: no-repeat;
    outline: 0;
}

.dd-form-group button {
    margin: 0 0 0 -4px;
    padding: 0.5rem 0.875rem;
    border: 1px solid #25aae1;
    background-color: #25aae1;
    color: #fff;
    font-size: 1rem;
    -webkit-appearance: none;
    appearance: none;
    outline: 0;
    cursor: pointer;
}

.btn-circle {
    display: inline-block;
    margin-left: 1rem;
    color: #fff;
    font-size: 1.5rem;
    line-height: 1.25;
    text-align: center;
    background: #25aae1;
    border: none;
    border-radius: 100%;
    width: 36px;
    height: 36px;
    cursor: pointer;
}

.btn-circle:hover, .btn-circle:focus {
    background-color: #2c3e50;
    color: #fff;
}

.btn-circle i, .btn-circle svg {
    margin-left: -2px;
}

.btn-circle svg {
    margin-left: -2px;
    vertical-align: -0.25rem;
}

/* Border Color */
.border-blue {
    border-color: #25aae1 !important;
}

/* Font Color */
.green-text {
    color: #1abc9c;
}

.blue-text {
    color: #25aae1 !important;
}

.blue2-text {
    color: #465d74 !important;
}

.lightblue-text {
    color: #5bc8f3 !important;
}

.blue-grey-text {
    color: #607184 !important;
}

.med-bluegrey-text {
    color: #778ca3 !important;
}

.light-bluegrey-text {
    color: #8a9db1 !important;
}

.white-text {
    color: #fff !important;
}

/* Backgrounds */
.course-bg {
    box-shadow: 0 5px 4px -4px rgba(0, 0, 0, 0.38);
    margin-bottom: 1rem;
}

.blue-bg {
    background: #25aae1;
}

.blue2-bg {
    background: #465d74;
}

.blue3-bg {
    background: #59728e;
}

.light-blue-bg {
    background: #dff2fb;
}

.white-bg {
    background: #fff;
}

/* State Selector */
.state-list {
    background-color: inherit;
    -webkit-box-shadow: 5px 5px 4px -4px rgba(0, 0, 0, 0.16);
    box-shadow: 5px 5px 4px -4px rgba(0, 0, 0, 0.16);
    border-color: transparent;
}
.state-list .card-header {
    color: inherit;
    font-family: "Poppins", sans-serif;
    font-size: 1.25rem;
    text-align: center;
    text-transform: uppercase;
    background-color: inherit;
    border: 0;
    border-radius: 0.5rem 0.5rem 0 0;
}

.state-list .card-body {
    border-radius: 0 0 0.5rem 0.5rem;
}

.state-list .card-body .list-group li {
    padding: 0.375rem 0.5rem;
    color: inherit;
    font-family: "Poppins", sans-serif;
    text-align: center;
    background-color: transparent;
    border: 0;
    width: 100%;
}

/* YOUR CUSTOM STYLES */
::-moz-selection {
    background: #4285F4;
    color: #FFFFFF;
    text-shadow: none;
}

::selection {
    background: #4285F4;
    color: #FFFFFF;
    text-shadow: none;
}

.success {
    color: #087461;
    background: #A3D9CA;
    border: 2px solid #0CA289;
    font-size: 12px;
    font-weight: 700;
    padding: 15px;
    width: auto;
    float: none;
    margin: 0 0 10px;
}

.hidden {
    display: none;
}

.underline {
    text-decoration-line: underline;
}

.dotted-bar {
    border-top: 2px dashed rgba(204, 204, 204, 1);
    margin: 0;
}

.cursor-pointer {
    cursor: pointer;
}

.pa-left {
    position: absolute;
    right: 70px;

}

.pa-right {
    position: absolute;
    right: 10px;

}

textarea {
    background-color: #FFFFFF;
    height: 115px;
}

#big-textarea {
    height: 500px;
    border: 2px solid #8094aa;
    border-radius: 10px;
    color: #778ca3;
    padding: 10px;
}

.big-textarea {
    height: 300px;
    border: 2px solid #8094aa;
    border-radius: 10px;
    color: #778ca3;
    padding: 10px;
}

.danger-color, .btn-danger {
    background: #c0392b !important;
}

.black-color, .btn-black {
    background: #333333 !important;
}

.success-color, .bg-success, .btn-success {
    background: #27AE60 !important;
}

.btn-success:hover {
    background: #50C982 !important;
}

.lightblue-bg {
    background: #5bc8f3;
}

.lightblue-bg2 {
    background: #39d5ff;
}

.lightblue-bg3 {
    background: #6cc4ee;
}

.light-gray-bg {
    background: #eeeeee;
}

.blue-grey.lighten-5 {
    background-color: #eceff1 !important;
}

.blue-grey-text.text-lighten-5 {
    color: #eceff1 !important;
}

.blue-grey.lighten-4 {
    background-color: #cfd8dc !important;
}

.blue-grey-text.text-lighten-4 {
    color: #cfd8dc !important;
}

.blue-grey.lighten-3 {
    background-color: #b0bec5 !important;
}

.blue-grey-text.text-lighten-3 {
    color: #b0bec5 !important;
}

.blue-grey.lighten-2 {
    background-color: #90a4ae !important;
}

.blue-grey-text.text-lighten-2 {
    color: #90a4ae !important;
}

.blue-grey.lighten-1 {
    background-color: #78909c !important;
}

.blue-grey-text.text-lighten-1 {
    color: #78909c !important;
}

.blue-grey {
    background-color: #607d8b !important;
}

.blue-grey-text {
    color: #607184 !important;
}

.blue-grey.darken-1 {
    background-color: #546e7a !important;
}

.blue-grey-text.text-darken-1 {
    color: #546e7a !important;
}

.blue-grey.darken-2 {
    background-color: #455a64 !important;
}

.blue-grey-text.text-darken-2 {
    color: #455a64 !important;
}

.blue-grey.darken-3 {
    background-color: #37474f !important;
}

.blue-grey-text.text-darken-3 {
    color: #37474f !important;
}

.blue-grey.darken-4 {
    background-color: #263238 !important;
}

.blue-grey-text.text-darken-4 {
    color: #263238 !important;
}

.darkblue-text {
    color: #3455a5;
}

.darkblue-bg {
    background: #465d74;
}

.darkestblue-text {
    color: #2c3e50;
}

.darkestblue-bg {
    background: #2c3e50;
}

.darkestblue2-text {
    color: #21a0dd;
}

.darkestblue2-bg {
    background: #21a0dd;
}

.chat {
    background: #637b96;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    text-transform: none;
    font-size: .8rem;
    margin-left: 150px;
    margin-top: 70px;
    padding: .85rem 2.13rem;
    border-radius: 2px;
    border: 0;
    -webkit-transition: .2s ease-out;
    transition: .2s ease-out;
    color: #fff !important;
    white-space: normal !important;
    word-wrap: break-word;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    -webkit-user-select: none;
}

.email {
    background: #637b96;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    text-transform: none;
    font-size: .8rem;
    margin-left: 15px;
    margin-top: 70px;
    padding: .85rem 2.13rem;
    border-radius: 2px;
    border: 0;
    -webkit-transition: .2s ease-out;
    transition: .2s ease-out;
    color: #fff !important;
    white-space: normal !important;
    word-wrap: break-word;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    -webkit-user-select: none;
}

.phone {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: #2c3e50;
    margin-left: 15px;
}

.btn-outline-lightblue {
    color: #5bc8f3 !important;
    border: 2px solid #5bc8f3;
    background-color: transparent;
}

.btn-outline-blue {
    color: #21a0dd !important;
    border: 2px solid #21a0dd;
    background-color: transparent
}

.btn-outline-darkbluer {
    color: #3455a5 !important;
    border: 2px solid #3455a5;
    background-color: transparent
}

.btn-outline-darkestblue {
    color: #2c3e50 !important;
    border: 2px solid #2c3e50;
    background-color: transparent
}

.btn.small {
    padding: .85rem 1.13rem;
}

body {
    background: #f0f0f0;
}

input {
    font-family: 'Montserrat', sans-serif;
}

.invalid ~ label {
    color: #F44336 !important;
    font-weight: bold;
}

.select-wrapper.invalid input.select-dropdown {
    border-bottom: 1px solid #F44336;
    -webkit-box-shadow: 0 1px 0 0 #F44336;
    box-shadow: 0 1px 0 0 #F44336;
    color: #F44336;
}

.select-wrapper.invalid span.caret {
    color: #F44336;
}

.required.valid, .select-wrapper input.select-dropdown.valid {
    border-bottom: 1px solid #CCC !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.shift-left {
    float: left;
}

.shift-right {
    float: right;
}

.onoffswitch {
    position: relative;
    width: 90px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.onoffswitch-checkbox {
    display: none;
}

.onoffswitch-label {
    display: block;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid #FFF;
    border-radius: 20px;
}

.onoffswitch-inner {
    display: block;
    width: 200%;
    margin-left: -100%;
    transition: margin 0.3s ease-in 0s;
}

.onoffswitch-inner:before, .onoffswitch-inner:after {
    display: block;
    float: left;
    width: 50%;
    height: 30px;
    padding: 0;
    line-height: 30px;
    font-size: 11px;
    color: white;
    font-family: Trebuchet, Arial, sans-serif;
    font-weight: bold;
    box-sizing: border-box;
}

.onoffswitch-inner:before {
    content: "ON";
    padding-left: 10px;
    background-color: #27AE60;
    color: #FFFFFF;
}

.onoffswitch-inner:after {
    content: "OFF";
    padding-right: 10px;
    background-color: #EEEEEE;
    color: #999999;
    text-align: right;
}

.onoffswitch-inner.check:before {
    content: "\2713";
    padding-left: 30px;
    background-color: #27AE60;
    color: #155430;
}

.onoffswitch-inner.check:after {
    content: "NONE";
    padding-right: 10px;
    background-color: #EEEEEE;
    color: #999999;
    text-align: right;
}

.onoffswitch-inner.filed:before {
    content: "ON FILE";
}

.onoffswitch-inner.filed:after {
    content: "SENT";
}

.onoffswitch-inner.yes:before {
    content: "YES";
}

.onoffswitch-inner.yes:after {
    content: "NO";
}

.onoffswitch-switch {
    display: block;
    width: 18px;
    height: 18px;
    margin: 8px;
    background: #999999;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 56px;
    border: 2px solid #999999;
    border-radius: 20px;
    transition: all 0.3s ease-in 0s;
}

.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {
    margin-left: 0;
}

.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch {
    right: 0px;
    background: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.bottom-line-white {
    border-bottom: 1px solid #ffffff;
}

.w-40 {
    width: 40% !important;
}

.home .row {
    margin-top: 15%;
}

.home .card img {
    display: block;
    margin: 0 auto;
}

.md-form .prefix {
    font-size: 1.5rem;
    margin-top: 12px;
    color: #8F9FA4;
}

.small-container {
    height: 300px;
    overflow: scroll;
}

#wrapper {
    padding-top: 80px;
}

#dashboard header {
    height: 80px;
    width: 100%;
    background: #f2f5f8;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    box-shadow: 0 0 6px 3px rgba(0, 0, 0, 0.16);
}

#dashboard header #logo {
    width: 250px;
    height: 80px;
    padding: 0.75rem;
    background-color: #FFF;
    text-align: center;
    box-shadow: 0 0 6px 3px rgba(0, 0, 0, 0.16);
    overflow-y: hidden;
}

#dashboard header img {
    max-height: 60px;
}

.md-form .view-pass {
    position: absolute;
    top: 0.75rem;
    right: 0.5rem;
    z-index: 1;
    background-color: #fff;
    font-size: 1rem;
}

#contact_nav {
    margin-top: 28px;
}

#dashboard header #search {
    background: #F0F2F5;
    width: 320px;
    height: 80px;
    position: absolute;
    top: 0;
    left: 120px;
    z-index: 3;
}

#dashboard header #search .placeholder {
    line-height: 80px;
    position: absolute;
    top: 0;
    z-index: 2;
    -webkit-transition: all 600ms linear;
    -moz-transition: all 600ms linear;
    -o-transition: all 600ms linear;
    transition: all 600ms linear;
    color: #AAAAAA;
    width: 100%
}

#dashboard header #search .placeholder span {
    font-size: 12px;
    margin-left: 10px;
}

#dashboard header #search .placeholder.active {
    color: #333333;
}

#dashboard header #search .placeholder i {
    -webkit-transition: all 600ms linear;
    -moz-transition: all 600ms linear;
    -ms-transition: all 600ms linear;
    -o-transition: all 600ms linear;
    transition: all 600ms linear;
    position: relative;
    left: 10px;
    font-size: 20px;
}

#dashboard header #search .placeholder.active i {
    left: 280px;
}

#dashboard header #search form {
    position: absolute;
    top: 0;
    z-index: 3;
    font-size: 12px;
    width: 320px;
    background: #FFFFFF;
}

#dashboard header #search form select {
    display: block;
    background: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    height: 30px;
    width: 70px;
    -webkit-border-radius: 0;
    border-radius: 0;
    border: none;
    border-right: 1px solid #CCCCCC;
    margin: 25px 0 0 10px;
    float: left;
    font-family: 'Montserrat', sans-serif;
}

#dashboard header #search form .md-form {
    float: left;
    width: 180px;
    margin-left: 10px;
    margin-top: 12px;
    margin-bottom: 0;
}

#dashboard header #search form .md-form input {
    border: none !important;
    font-size: 12px;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 14px;
}

#dashboard header #search form input:focus + .placeholder {
    opacity: 0;
}

#dashboard header #search form .btn {
    box-shadow: none;
    color: #383841 !important;
    padding: 22px 5px;
}

#dashboard header #search #results {
    display: block;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    transition: height .6s ease-in-out, width .6s ease-in-out;
    height: 0;
    width: 0;
    overflow: hidden;
}

#dashboard header #search #results.active {
    height: 100%;
    width: 100%;
    background: rgba(55, 56, 66, .8);
}

#dashboard header #search #results .return {
    background: #F0F2F5;
    position: fixed;
    left: 120px;
    top: 80px;
    width: 320px;
    display: none;
}

.return a:hover .work-order {
    background: #FFFFFF;
}

#dashboard header #search #results.active .return {
    display: block;
}

#dashboard header .work-order {
    padding-bottom: 4px;
    padding-top: 4px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: background .25s ease-in-out;
    min-height: 90px;
}

#dashboard header .work-order .name {
    font-size: 14px;
    font-weight: 400;
}

#dashboard header .work-order .ssn {
    font-size: 13px;
    font-weight: 300;
    color: #383841;
}

#dashboard header .work-order .ssn span {
    font-size: 11px;
}

#dashboard header .work-order .phone,
#dashboard header .work-order .skill {
    font-weight: 300;
}

#dashboard header hr {
    margin-bottom: 0;
}

#dashboard header #userinfo {
    background: #637b96;
    width: auto;
}

#dashboard header #userinfo .btn-group {
    float: right;
}

#dashboard header #userinfo .btn-group .dropdown-toggle {
    height: 80px;
    width: 40px;
    border: none;
    background: none;
    color: #FFF;
    cursor: pointer;
}

#dashboard header #userinfo .btn-group .dropdown-toggle:hover {
    background: #dddfe1;
}

#dashboard header #userinfo .btn-group .dropdown-toggle.active ~ .dropdown-menu {
    display: block;
}

#dashboard header #userinfo .btn-group .dropdown-toggle::after {
    margin: 0;
    padding: 0;
    content: '';
    width: 0;
    height: 0;
    border: none;
}

#dashboard header #userinfo .btn-group .dropdown-toggle:hover {
    color: #637b96;
}

#dashboard header #userinfo .btn-group .dropdown-menu {
    left: auto;
    right: 0;
}

#dashboard nav {
    background: #637b96;
    width: 250px;
    height: 100vh;
    position: fixed;
    top: 80px;
    left: 0;
    text-align: center;
    text-transform: uppercase;
    z-index: 100;
}

#dashboard nav ul {
    margin-top: 0;
    padding: 0;
}

#dashboard nav li {
    margin-bottom: 0.5rem;
}

#dashboard nav li:first-of-type {
    margin-top: 1rem;
}

#dashboard nav li a {
    display: block;
    padding: 0.5rem 1rem;
    width: 100%;
    color: #fff;
    font-size: 0.7675rem;
    text-align: left;
}

#dashboard nav li.active a {
    color: #fff;
}

#dashboard nav li .img-icon img, #dashboard nav li .img-icon svg {
    display: inline-block;
    max-width: 32px;
    max-height: 32px;
}

#dashboard nav li a:hover, #dashboard nav li a:focus {
    color: #fff;
    background: #002c5c;
}

.page-banner {
    padding: 1.5rem 1rem 1.5rem 250px;
    background: inherit;
    position: relative;
    z-index: 1;
}

.page-banner h2 {
    font-size: 30px;
    color: #8F9FA4;
    line-height: 1.2;
    margin: 0;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
}

.page-banner h2 small {
    color: #2c3e50;
    font-size: 60%;
    font-weight: 700;
}

.page-banner h2 i {
    font-size: 0.7em;
    color: #8F9FA4;
    transition: color .3s ease;
}

.page-banner h2 i:hover {
    color: #242424;
}

.page-banner p {
    font-size: 12px;
    position: absolute;
    bottom: 10px;
    left: 62%;
    color: #8F9FA4;
    text-decoration-line: underline;
    text-transform: uppercase;
}

.page-banner .actions {
    float: right;
    margin-top: 12px;
    margin-right: 30px;
}

.page-banner .actions .btn {
    padding: .85rem 1.13rem;
}

#dropdownr {
    position: absolute;
    top: 70px;
    left: 61%;
    background-color: #FFFFFF;

}

.course-selection .checklist-button {
    height: 165px;
    width: 165px;
    background-color: #73879e;
    background-position: center;
    background-repeat: no-repeat;
    /*border-radius: 50%;*/
    display: inline-block;
}

.ethics-course {
    background-image: url("../images/ethics-logo.png");
}

.laws-course {
    background-image: url("../images/laws-logo.png");
}

.general-course {
    background-image: url("../images/general-course-logo.png");
}

.course-selection input {
    display: none;
}

.course-selection input:checked ~ .checklist-button {
    background-color: #455260;
    border: 2px solid #455260;
}

.course-selection label {
    cursor: pointer;
    color: #000;
    font-size: 1rem;
    line-height: 1.4;
}

.course-subtitle {
    top: 70%;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 13px;
    width: 100%;
    font-weight: 600;
}


.white-gradient {
    background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
}

#dashboard #content,
#dashboard #content-small {
    margin: 0 0 0 250px;
    padding: 2rem 1rem;
    background: #f0f0f0;
}

.card {
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

.card .row.no-gutters p {
    margin-bottom: 0.5rem;
}

.card.stat {
    padding-bottom: 35px;
}

.card.stat p {
    color: #8F9FA4;
    text-transform: uppercase;
    margin: 20px auto 0;
    text-align: center;
    font-size: 12px;
}

.card.details {
    padding: 30px 30px 20px 20px;
}

.company.card {
    min-height: 108px;
}

.employee.card {
    min-height: 90px;
}

#content .sidebar .card {
    text-align: center !important;
}

#content .sidebar .card-title {
    font-weight: 700;
    font-size: 3.5em;
}

#content .sidebar .card p {
    font-size: 12px;
}

.work-order {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.work-order:hover {
    background: #EEEEEE;
}

/*** NOTIFICATION ALERTS ***/
#notifications {
    padding: 15px;
}

#notifications .alert {
    -webkit-border-radius: 3px;
    border-radius: 3px;
    position: relative;
    padding: .4rem .75rem;
    margin-bottom: 0.5rem;
}

#notifications .alert .close {
    position: absolute;
    top: 4px;
    bottom: 0;
    right: 10px;
    width: 24px;
    height: 24px;
    opacity: .3;
    -webkit-border-radius: 2px;
    border-radius: 2px;
}

#notifications .alert .close:before {
    position: absolute;
    content: '';
    top: 14px;
    bottom: 0;
    left: -4px;
    right: 0;
    height: 2px;
    width: 130%;
    background: #000000;
    transform: rotate(45deg);
}

#notifications .alert .close:after {
    position: absolute;
    content: '';
    top: 14px;
    bottom: 0;
    left: auto;
    right: -4px;
    height: 2px;
    width: 130%;
    background: #000000;
    transform: rotate(-45deg);
}

#notifications .alert .close:hover {
    opacity: .5;
}

.logo {
    max-height: 120px;
    margin: 0 auto;
}

.filters {
    float: left;
    width: 100%;
    padding: 0 15px 15px;
    color: #8F9FA4;
}

.filters .active {
    font-weight: bold;
}

.filters li {
    display: inline-block;
    margin-right: 32px;
    font-weight: 300;
    padding-bottom: 6px;
    cursor: pointer;
    border-bottom: 1px solid transparent;
}

.filters li:hover {
    border-bottom: 1px solid #8F9FA4;
}

.filters li:hover ul {
    display: block;
}

.statusesFilter ul {
    position: absolute;
    display: none;
    margin-top: 6px;
    background: #F2F2F2;
    padding: 10px;
    z-index: 1;
    box-shadow: -1px 3px 15px 2px rgba(0, 0, 0, 0.2);
}

.statusesFilter li {
    display: block;
    line-height: 1;
    font-size: 16px;
    width: auto;
    margin: 0 0 4px;
    position: relative;
    padding-bottom: 3px;
    border-bottom: none;
}

.statusesFilter li:hover {
    border-bottom: none;
    color: #4E4E4E;
}

.gauge {
    width: 150px;
    height: 150px;
    position: relative;
    margin: 20px auto;
}

.gauge svg {
    width: 150px;
    height: 150px;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    background: #eceff1;
    border-radius: 50%;
}

.gauge circle {
    fill: #eceff1;
    stroke: #904CAC;
    stroke-width: 32;
    -webkit-transition: all 1s ease-out;
    -moz-transition: all 1s ease-out;
    -ms-transition: all 1s ease-out;
    -o-transition: all 1s ease-out;
    transition: all 1s ease-out;
}

.gauge .amount {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    background: #FFFFFF;
    border-radius: 50%;
    z-index: 2;
    text-align: center;
}

.gauge .amount span {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: auto;
    height: auto;
    z-index: 3;
    text-align: center;
    font-size: 2em;
    color: #8F9FA4;
    line-height: 1em;
}

.card.stat.worker.today {
    background: #29C5FF;
}

.card.stat.worker.tomorrow {
    background: #3794CD;
}

.card.stat.worker.week {
    background: #0077C0;
}

.card.stat img {
    margin: 30px auto 0;
    display: block;
    width: 60px;
    opacity: .7;
}

.card.stat.worker h2 {
    text-align: center;
    font-weight: 700;
    color: #FFFFFF;
    font-size: 3.5em;
    margin: 20px 0 0;
}

.card.stat.worker p {
    color: #FFFFFF;
}

/*** EMPLOYEES ROW ***/
.active-icon {
    width: 10px;
    height: 10px;
    background: #eceff1;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 20%;
    transform: translate(0, -50%);
}

.user-pic {
    width: 50px;
    height: 50px;
    background: transparent;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -40%);
    overflow: hidden;
}

div#profileImage {
    width: 100%;
    height: 100%;
    z-index: 99999;
    cursor: pointer;
    position: relative;
}

.user-pic img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-height: 50px;
    min-width: 50px;
    max-width: none;
    max-height: 50px;
    background: #383841;
    object-fit: cover;
}

.user-pic i {
    color: #eceff1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.user-info {
    padding-bottom: 6px;
}

.user-info strong {
    color: #333333;
}

.user-info h4, .user-info h5 {
    font-weight: 700;
    color: #383841;
    margin-top: 12px;
    margin-bottom: 2px;
}

.user-info p {
    color: #8F9FA4;
    font-size: 12px;
    margin: 0;
}

.card .error-text {
    text-align: right;
    font-size: 12px;
    line-height: 90px;
}

.card .error-text p {
    margin: 0;
    margin-right: 20px;
}

.card .active-work {
    color: #62626E;
    text-align: center;
}

.card .active-work a {
    color: #62626E;
}

.card .active-work a:hover {
    color: #40404C;
}

.card .active-work h3 {
    font-weight: 700;
    font-size: 3em;
    margin: 10px 0 0;
}

.card .active-work p {
    color: #62626E;
    font-size: 12px;
    margin: 0 0 10px;
}

.statusbar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 10px;
    z-index: 2;
}

.assigned-employee {
    /* padding : 5px 0 20px; */
    width: 100%;
}

.assignmentDetails span {
    float: left;
    width: 50%;
    font-size: 11px;
    line-height: 1.4;
}

.assigned-employee .user-pic {
    margin-top: 10px;
    position: relative;
    top: 0;
    left: 0;
    transform: translate(0, 0);
}

.user-info .assigned-employee h5 {
    margin-top: 12px;
}

.card .active-status {
    color: #62626E;
    text-align: center;
}

.card .active-status h3 {
    font-weight: 700;
    font-size: 2.5em;
    margin: 10px 0 0;
    padding-bottom: 20px;
}

.card .active-status p {
    color: #62626E;
    font-size: 12px;
    margin: 0;
    padding-top: 20px;
}

.close-out, .closed {
    padding: 10px 0;
    display: block;
    cursor: pointer;
}

/*** DETAILS SIDE BAR ***/
.card .heading {
    background: #eceff1;
    color: #8F9FA4;
    text-align: left;
    font-weight: 700;
    font-size: 24px;
    padding: 20px;
    margin-bottom: 0;
    -webkit-border-radius: 2px 2px 0 0;
    border-radius: 2px 2px 0 0;
}

.course-red {
    border-left: 10px solid #dd665a;
}

.course-yellow {
    border-left: 10px solid #ecc062;
}

.course-green {
    border-left: 10px solid #1abc9c;
}

.sidebar .work-order {
    color: #8F9FA4;
    text-align: left;
    padding: .4rem 1rem;
}

.sidebar .work-order.completed {
    opacity: .7;
}

.sidebar .work-order h4 {
    font-size: 18px;
    font-weight: 700;
}

.sidebar .work-order p {
    font-size: 12px;
    margin: 0;
}

.sidebar .work-order hr {
    margin-bottom: 0;
}

.card .card-data {
    display: flex;
}

.card-data ul.pagination {
    margin: 0 auto;
}

.card.pagination-card {
    box-shadow: none;
    background: transparent;
}

.pagination-card .card-data {
    background: #fff;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .16), 0 2px 10px 0 rgba(0, 0, 0, .12);
}

.card-data .page-link {
    color: #3E4551 !important;
}

.card-data .page-item.active .page-link {
    z-index: 2;
    color: #FFFFFF !important;
    background-color: #3E4551;
    border-color: #3E4551;
}

.paginate-page {
    display: none;
}

.paginate-page.activePage {
    display: block;
}

.completedOverlay {
    position: absolute;
    background: rgba(0, 0, 0, 0.2);
    width: calc(100% + 15px);
    height: 100%;
    float: left;
    z-index: 1;
    pointer-events: none;
}

.workorders .workorder .user-info {
    min-height: 156px;
}

.workorderMissingInfo {
    margin-top: 30px;
    font-size: 14px;
    color: #D9534F;
}

.workorder .location .icon {
    color: #D9534F;
    font-size: 28px;
    position: absolute;
    left: -8px;
    top: -8px;
}

.workorder .location address {
    font-size: 12px;
    line-height: 1.3;
    color: #8F9FA4;
}

.workorder-employee {
    width: 100%;
    padding-top: 5px;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    margin: 0;
    min-height: 100px;
    position: relative;
}

.active.assign {
    margin-top: 11px;
    padding-bottom: 0;
    color: #959595;
    border-bottom: 1px solid;
    cursor: pointer;
    float: right;
}

.active.assign:hover {
    color: #D9534F;
    border-bottom-color: #D9534F;
}

#side-image {
    background: url('../images/provider-application-bg.png');
    background-position: top;
    box-shadow: 0 0 black;
    background-size: cover;
    background-repeat: no-repeat;
}

.showAll {
    position: absolute;
    right: 0;
    bottom: 20px;
    font-size: 12px;
    border-bottom: 1px solid;
    padding-bottom: 1px;
    line-height: 1;
    cursor: pointer;
}

#client_rates {
    /* font-size   : 12px; */
    line-height: 1.2;
}

.assign-button {
    position: absolute;
    right: -20px;
    bottom: 30px;
}

.assign-button .btn {
    width: 70px;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
}

.btn.active, .btn.inactive {
    /*width   : 120px;*/
    display: block;
}

.btn.active {
    background: #74d3fa;
    color: #155430;
}

div .package.active {
    background: #74d3fa;
}

#map {
    background: #383841;
    height: 400px;
}

.mapOverlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #383841;
}

/*** SELECT FORMATTING ***/
.dropdown-content li > a,
.dropdown-content li > span {
    font-size: 16px;
    color: #333333;
    display: block;
    padding: .5rem;
}

.dropdown-content {
    top: 10px !important;
}

/*** EMPLOYEES DETAILS ***/
.details label.active {
    font-size: .7em;
}

.details .user-pic {
    width: 150px;
    height: 150px;
    margin: 0 auto;
    position: relative;
    transform: translate(0, 0);
    top: auto;
    left: auto;
    background-color: transparent;
    border: 3px solid #eceff1;
}

.details .user-pic img {
    min-height: 150px;
    min-width: 150px;
    max-height: 150px;
    object-fit: cover;
}

.details .remove-pic {
    display: block;
    text-align: center;
    font-size: 12px;
    color: #8F9FA4 !important;
    margin: 10px 0 30px;
}

.details label {
    color: #8F9FA4;
    font-size: 0.7rem;
}

.input-group-addon.dollar {
    background: transparent;
    color: #CCCCCC;
    font-size: .8rem;
    padding: 0;
    position: absolute;
    bottom: 10px;
}

label.dollar {
    left: 16px;
    top: 1.65rem;
}

label.dollar.active {
    left: 0;
    top: .8rem;
}

.details label.textarea {
    top: .1rem;
}

.notes-section {
    margin-top: 40px;
}

.log {
    padding-top: 26px;
}

.log .list-group {
    box-shadow: none;
}

.notes-log-wrapper {
    max-height: 94px;
    overflow-y: scroll;
}

.log .list-group-item {
    padding: 3px 6px;
    cursor: pointer;
    font-size: 13px;
}

.log .list-group-item small {
    font-size: 10px;
}

.log .list-group-item.active,
.log .list-group-item:hover {
    background: #4B515D;
    border-color: #4B515D;
    color: #FFFFFF;
    border-radius: 0;
}

.details textarea.form-control {
    min-height: 60px;
    height: auto;
    margin-top: .5rem;
    font-size: 14px;
    line-height: 1.4;
}

.log label {
    top: -.8rem;
    font-size: .7em;
}

.details h4 {
    font-size: 18px;
    font-weight: 700;
    color: #8F9FA4;
}

.details .btn.shift-right {
    margin-top: -10px;
}

.details .skill p {
    font-size: 10px;
    font-weight: 700;
    color: #8F9FA4;
    margin-top: 20px;
}

.details .skill .remove-skill {
    font-size: 20px;
    color: #8F9FA4;
    margin-top: 15px;
    display: block;
}

.remove-skill:hover i.fa {
    color: #D9534F;
}

.skill-item {
    display: none;
    position: absolute;
    top: 42px;
    background: #EAEAEA;
    color: #777777;
    width: 100%;
    padding: 6px;
    z-index: 10000;
    box-shadow: 4px 4px 10px 2px rgba(0, 0, 0, 0.12), -4px -4px 10px 2px rgba(0, 0, 0, 0.12);
}

.details h6 {
    font-weight: 700;
    color: #8F9FA4;
    margin-top: 10px;
    font-size: 14px;
}

.employeeInfo {
    width: 100%;
    float: left;
    margin-bottom: 2px;
}

.employeeImage {
    height: 35px;
    width: 35px;
    border-radius: 50%;
    overflow: hidden;
    float: left;
    margin-right: 6px;
}

.employeeImage img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.employeeInfoWindow h5 {
    float: left;
    line-height: 35px;
}

.employeeInfoWindow address {
    margin-bottom: 5px;
    font-size: 11px;
    line-height: 1;
    font-style: italic;
}

.employeeInfoWindow .rank {
    font-size: 11px;
    float: left;
}

.employeeInfoWindow .rank strong {
    color: #4B515D;
    font-weight: bold;
}

.employeeAssign {
    position: absolute;
    font-size: 11px;
    right: 0;
    border-bottom: 1px dotted #4B515D;
    transition: border .4s ease-in-out;
}

.employeeAssign:hover {
    border-bottom-style: solid;
}

.matchedSkill {
    color: #4B515D;
    font-weight: bold;
    border-bottom: 1px solid #4B515D;
}

.border-left-1 {
    border-left: 1px solid #ccc;
}

.border-right-1 {
    border-right: 1px solid #ccc;
}

.border-top-1 {
    border-top: 1px solid #ccc;
}

.border-bottom-1 {
    border-bottom: 1px solid #ccc;
}

pre {
    display: block;
    margin-top: 0;
    font-size: 90%;
    color: #292B2C;
    z-index: 1000000;
    position: absolute;
    background: #FFFFFF;
}

/*=========================================*/

#employee_save_changes {
    min-width: 136px;
}

.loading {
    animation: rotate linear 1s infinite;
}

.filterLoading {
    position: absolute;
    left: 50%;
    top: 20vh;
    margin-left: -12.5vh;
    display: block;
    width: 25vh;
    height: 25vh;
    text-align: center;
    -webkit-filter: contrast(1.2);
    filter: contrast(1.2);
}

.filterLoading span {
    mix-blend-mode: screen;
    display: block;
    position: absolute;
    border-radius: 50%;
    -webkit-animation: wave 3s infinite linear;
    animation: wave 3s infinite linear;
}

.filterLoading span:nth-child(0) {
    left: -11%;
    right: -2%;
    top: -12%;
    bottom: -5%;
    -webkit-transform-origin: 46% 53%;
    transform-origin: 46% 53%;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    background-color: #F1592A;
}

.filterLoading span:nth-child(1) {
    left: -4%;
    right: -4%;
    top: -9%;
    bottom: -2%;
    -webkit-transform-origin: 47% 50%;
    transform-origin: 47% 50%;
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
    background-color: #42A5F5;
}

.filterLoading span:nth-child(2) {
    left: -11%;
    right: -4%;
    top: -10%;
    bottom: -11%;
    -webkit-transform-origin: 49% 53%;
    transform-origin: 49% 53%;
    -webkit-animation-delay: -1.5s;
    animation-delay: -1.5s;
    background-color: #2BBBAD;
}

.filterLoading span:nth-child(3) {
    left: -7%;
    right: -9%;
    top: -11%;
    bottom: -4%;
    -webkit-transform-origin: 47% 52%;
    transform-origin: 47% 52%;
    -webkit-animation-delay: -2s;
    animation-delay: -2s;
    background-color: #AA66CC;
}

.filterLoading span:nth-child(4) {
    left: -8%;
    right: -3%;
    top: -5%;
    bottom: -11%;
    -webkit-transform-origin: 47% 52%;
    transform-origin: 47% 52%;
    -webkit-animation-delay: -2.5s;
    animation-delay: -2.5s;
    background-color: #00AAFF;
}

.filterLoading span:nth-child(5) {
    left: -10%;
    right: -8%;
    top: -4%;
    bottom: -9%;
    -webkit-transform-origin: 48% 51%;
    transform-origin: 48% 51%;
    -webkit-animation-delay: -3s;
    animation-delay: -3s;
    background-color: #2B00FF;
}

.filterLoading span:nth-child(6) {
    left: -9%;
    right: -11%;
    top: -5%;
    bottom: -8%;
    -webkit-transform-origin: 47% 50%;
    transform-origin: 47% 50%;
    -webkit-animation-delay: -3.5s;
    animation-delay: -3.5s;
    background-color: #F1592A;
}

.progress, .progress .progress-bar {
    height: 20px;
    margin-bottom: 1rem;
}

.progress .progress-bar {
    background: linear-gradient(90deg, #2cbae7, #1a91d8)
}

.registration {
    background-color: #00458a;
    background-size: cover;
    min-height: 100vh;
}

.absolute-center {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translatex(-50%);
}

.btn-full-width {
    width: 100%;

}

.bordered-card {
    border-radius: 5px;
}

.right-border {
    border-right: 2px solid #000000;
}

#step-1 {
    display: block;
}

#step-2 {
    display: none;
}

#step-3 {
    display: none;
}

#step-4 {
    display: none;
}

#step-5, #step-6, #step-7, #step-8, #step-9, #step-10, #step-11, #step-12, #step-13, #step-14, #step-15, #step-16, #step-17 {
    display: none;
}

.white-transparency {
    background-color: rgba(255, 255, 255, 0.6);
    height: 350px;
    width: 100%;
}

.light-blue-back {
    background-color: #c4ecff;
}

.light-grey-bg {
    background-color: #d5d9de;
}

.border-grey {
    border: 1px solid #73879e;
}

.numbers {
    padding-left: 47px;
}

#step-number-2, #step-number-3, #step-number-4, #step-number-5, #step-number-6, #step-number-7, #step-number-8, #step-number-9, #step-number-10, #step-number-11, #step-number-12, #step-number-13 {
    color: #FFFFFF;
}

span#step-number-2, span#step-number-3, span#step-number-4, span#step-number-5, span#step-number-6, span#step-number-7, span#step-number-8, span#step-number-9, span#step-number-10, span#step-number-11, span#step-number-12, span#step-number-13 {
    padding-left: 6%;
}

.doc-img {
    font-size: 7em;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #0275d8;
}

.dz-remove {
    color: #0275d8 !important;
    text-decoration: none;
    font-weight: 600;

}

.darkerblue-text {
    color: #2c3e50 !important;
}

.darkergrey-text {
    color: #778ca3;
}

.lightblue-bg4 {
    background-color: #dff2fb;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes -rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(-360deg);
    }
}

@-webkit-keyframes -rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(-360deg);
    }
}

@-webkit-keyframes wave {
    from {
        -webkit-transform: rotateZ(0deg);
        transform: rotateZ(0deg);
    }
    to {
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg);
    }
}

@keyframes wave {
    from {
        -webkit-transform: rotateZ(0deg);
        transform: rotateZ(0deg);
    }
    to {
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg);
    }
}

@media print {
    #dashboard header, #left-nav, .page-banner {
        display: none;
    }

    .offset-md-2, .offset-lg-2, #content {
        margin: 0 !important;
        padding: 0 !important;
    }
}

#mobile {
    display: none;
}

@media screen and (max-width: 1024px) {
    #mobile {
        display: inline-block;
        width: 40px;
    }

    #dashboard header #logo {
        width: 140px;
    }

    #dashboard header #search {
        width: 80px;
        left: 140px;
    }

    #dashboard header #search form .md-form {
        margin-bottom: 10px;
    }

    #dashboard header #search .placeholder span {
        display: none;
    }

    #dashboard header #search .placeholder i {
        left: 40%;
    }

    #left-nav {
        width: 100%;
        margin-top: 0;
        float: none;
        position: fixed;
        top: 80px;
        left: -100%;
        height: 100%;
        overflow: hidden;
        transition: ease-in .5s;
        -webkit-transition: ease-in .5s;
        -moz-transition: ease-in .5s;
        z-index: 999;
        overflow-y: scroll;
    }

    #left-nav.open {
        left: 0
    }

    .page-banner {
        padding-left: 0;
    }

    #content {
        margin: 0;
        padding: 0 20px;
    }

    .select-wrapper input.select-dropdown {
        font-size: 0.7rem
    }

    .top-label {
        font-size: 0.7rem;
    }
}

@media screen and (max-width: 768px) {
    .main-container {
        display: flex;
        /*flex-flow: column;*/
    }

    .main-container .license-instructions {
        order: 4;
    }

    .main-container .user-info {
        order: 1;
    }

    .main-container .license-courses {
        order: 3;
    }

    .main-container .license-button {
        order: 2;
    }

    .side-section {
        background-color: #FFFFFF;
    }
}