@charset "UTF-8";
/**
 * Custom CSS for Archlogix Admin dashboard
 * Includes override for foundation.css defaults
 * Last edited: 2018-08-31
 * Erica Martin, Stealth Creative
 */
.TEST { border: 1px solid red; }

/* MISC OVERRIDES */

html {
    font-family: 'Raleway', Helvetica, Roboto, Arial, sans-serif;
    height: 100%;
    box-sizing: border-box;
    font-size: 100%;
}
body {
    font-size: 16px;
    font-family: 'Raleway', Helvetica, Roboto, Arial, sans-serif;
    color: #0a0a0a;
    background-color: #E6EAEC;
}
.margin-x-y { margin: 10px; }
.padding-top { padding-top: 15px; }
.padding-x { padding: 0 10px; }
.filename { font-size: 0.8em; }
.note {
    display: block;
    color: #9B9B9B;
    font-weight: 800;
    font-size: .7em;
}

/* DASHBOARD LOGIN */

body.login {
    background: linear-gradient( rgba(22, 89, 133, 0.89), rgba(141, 216, 248, 0.89) ), url("../img/admin_bkg_image.jpg") no-repeat center center fixed;  
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
.login form {
    margin-top: 55px;
}
.modal-login {
    position: absolute;
    top: 25%;
    margin: auto;
    background-color: #fff;
    border-top: 15px solid #4A90E2;
    border-radius: 5px;
    box-shadow: 0 2px 10px 0 rgba(0,0,0,0.5);
}
.modal-oval {
    position: absolute;
    top: -90px;
    height: 150px;
    width: 150px;
    border: 4px solid #4A90E2;
    border-radius: 50%;
    background-color: #fff;
}
.modal-title {
    position: relative;
    margin-top: 50px;
    text-align: center;
    color: #165985;
    font-size: 0.8em;
    line-height: 1.4em;
    text-transform: uppercase;
    letter-spacing: 2.36px;
}

/* FORM FIELDS, LABELS & INPUTS */

.button.new {
    padding: 6px;
    color: #4A90E2;
    font-size: 1.5em;
    background-color: #fff;
    border-radius: 40px;
    box-shadow: 0 0 8px 0 rgba(0,0,0,0.5);	
}
.button.new:hover, .button.new:focus { background-color: #F3F3F3; }
.button.selected { border: 1px solid #fff; }
.button.grid {
    margin-top: 25px;
    min-width: 100px;
    width: 100%;
}
.button-account { margin: 15px 0; }
label {
    color: #9B9B9B;
    font-size: 0.7em;
    letter-spacing: 0.56px;
    line-height: 28px;
}
.label-tip {
    color: #9B9B9B;
    font-size: .8em;
    text-decoration: none;
}
input[type="text"],
input[type="email"],
input[type="search"],
input[type="tel"],
input[type="password"]{
    padding: 15px;
    color: #4A4A4A;
    font-size: 0.8em;
    font-weight: bold;
    border-radius: 5px;
    border: 1px solid #D8D8D8;
}

input[type="text"].tags {
    margin: 20px 0 0 0;
    background-image: url("../img/icons/icon_add_tags.png");
    background-position: bottom 10px right 10px;
    background-repeat: no-repeat;
}
input[type="email"] {
    padding-left: 50px;
    background-image: url("../img/icons/icon_email.png");
    background-position: 15px;
    background-repeat: no-repeat;
}
input[type="password"] {
    padding-left: 50px;
    background-image: url("../img/icons/icon_password.png");
    background-position: 15px;
    background-repeat: no-repeat;
}
input[type="search"] {
    padding-left: 40px;
    border-radius: 40px;
    background-image: url("../img/icons/icon_search.png");
    background-position: 15px 10px;
    background-repeat: no-repeat;
}
textarea { border-radius: 4px; }
/* Customize the label (the container) */
.checkbbox-container {
    position: relative;
    display: inline-block;
    padding-left: 20px;
    cursor: pointer;
    user-select: none;
}
/* Hide the browser's default checkbox */
.checkbbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
/* Create a custom checkbox */
.checkbbox-container .checkmark {
    position: absolute;
    top: 5px;
    left: 0;
    height: 15px;
    width: 15px;
    border: 1px solid #D8D8D8;
}
/* On mouse-over, add a grey background color */
.checkbbox-container:hover input ~ .checkmark {
    background-color: #ccc;
}
/* When the checkbox is checked, add a blue background */
.checkbbox-container input:checked ~ .checkmark {
    background-color: #4A90E2;
}
/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.checkbbox-container input:checked ~ .checkmark:after {
    display: block;
}
/* Style the checkmark/indicator */
.checkbbox-container .checkmark:after {
    background-color: #4A90E2;
}
/* Customize the label (the container) */
.tagbox-container {
    position: relative;
    margin: 5px;
    display: inline-block;
    cursor: pointer;
    user-select: none;
}
/* Hide the browser's default checkbox */
.tagbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
/* Create a custom checkbox */
.tagbox-container .checkmark {
    padding: 5px 10px;
    width: auto;
    height: auto;
    color: #9B9B9B;
    border-radius: 30px;
    border: 1px solid #9B9B9B;
}
/* On mouse-over, add a grey background color */
.tagbox-container:hover input ~ .checkmark {
    color: #fff;
    background-color: rgba(74,144,226,.5);
}
/* When the checkbox is checked, add a blue background */
.tagbox-container input:checked ~ .checkmark {
    color: #165985;
    font-weight: 800;
    background-color: rgba(74,144,226,.5);
    border: 1px solid #4A90E2;
}
.form-subhead {
    display: block;
    margin-top: 15px;
    color: #4A90E2;
    text-align: left;
}

/* NAVIGATION PANEL */

#nav-panel {
    color: #7C8495;
    text-align: center;
    background: linear-gradient(270deg, #091A24 0%, #142E3C 26.48%, #142E3C 100%);
}
#nav-panel i { font-size: 1.5em; }
.nav-pack { display: block; margin: 10px 0; }
.nav-pack, .nav-pack:hover,  .nav-pack:visited {
    color: #7C8495;
    text-decoration: none;
}
.nav-pack:active, .nav-pack.is-active { color: #fff; }
.nav-logo {    
    padding-top: 19px;
    padding-left: 55px;
    padding-right: 0px;
    padding-bottom: 19px;
    margin-right: -2px;
    margin-top: -15px;
    background: linear-gradient(0deg, #165A85 0%, #8DD8F8 100%);
}
.nav-img, .nav-text {
    display: block;
    margin: 0 auto;
}
.nav-text { font-size: .6em; }

/* USER PANEL */

#user-panel {
    position: relative;
    padding: 15px 15px 0 0;
    font-family: 'Raleway', Helvetica, Roboto, Arial, sans-serif;
    background-color: #fff;
    z-index: 100;
}
#user-panel i { font-size: 1.5em; }
.user-name {
    color: #4A90E2;
    font-size: 1.2em;
    text-align: right;
}
.user-company {
    color: #A2A2A3;
    font-size: 0.8em;
    text-align: right;
}
.user-badge {
    position: relative;
    float: right;
    margin-right: 5px;
    text-decoration: none;
    display: inline-block;
}
@media print, screen and (max-width: 40em) {
    #user-panel .user-info { display: none; }
    .user-badge { margin: -65px 0 15px 0; }
}
@media print, screen and (max-width: 30em) {
    .user-badge { margin: 10px 0 15px 0; float: left; }
}
.profile-img { max-width: 200px; border-radius: 50%; }
.profile-img-small { max-width: 50px; border-radius: 50%; }
.badge-status {
    position: absolute;
    bottom: -5px;
    right: -15px;
}
.user-options {
    position: relative;
    top: 5px;
    display: inline-block;
    cursor: pointer;
    z-index: 1000;
}
.user-options-menu {
    /*    position: absolute;
        top: 20px;
        right: 10px;*/
    position: fixed;        
    padding-top: 5px;    
    margin-top: -14px;
    margin-left: -150px;
    display: none;

}
.user-options-menu ul {
    width: 150px;
    padding: 10px;
    font-size: 0.8em;
    list-style-type: none;
    background-color: #fff;
    border: 1px solid #9b9b9b;
    border-radius: 4px;
}
.user-options-menu ul li { padding: 5px 0; }
.user-options-menu ul li a { color: #0a0a0a; }
.user-options:hover .user-options-menu {
    display: block;
}
.user-alias {
    display: block;
    margin: 0 auto;
}
.user-group { text-align: center; }
.user-group .user-badge { float: none; margin: 0;}
.user-group-name {
    display: block;
    clear: both;
    width: 100%;
    font-size: 0.8em;
}
.user-list {
    padding-right: 10px;
    font-size: .8em;
    list-style-type: none;
}
.user-list li {
    margin: 10px 0;
}
.user-list li:before {
    display: inline-block;
    padding-right: 10px;
    font-family: "Font Awesome 5 Free";
    content: "\f111";
    color: #979797;
    font-weight: 400;
}
.user-list li.online:before { color: #7ED321; font-weight: 800; }
.user-list li.warning:before { content: '\f071'; color: #f6921e; font-weight: 800; }
.user-alert { font-weight: 800; }

/* CONTENT PANEL */

#content-panel {
    /*margin-top: 10px;*/
}
.content-panel-head {
    padding: 5px;
    border-bottom: 1px solid #B4BAC6;
}
.panel-subhead {
    margin-bottom: 10px;
    padding: 5px 10px;
    color: #9B9B9B;
    font-size: .8em;
    font-weight: 800;
    text-transform: uppercase;
    background-color: rgba(231,233,235,0.6);
}
.panel-subhead i { font-size: 1.4em; line-height: 1.1; }
.panel-title {
    margin: 0;
    padding: 5px 10px;
    color: #9B9B9B;
    font-size: .8em;
    font-weight: 800;
}
.panel-search { padding: 0 10px; }

/* TABLE PANEL */

.panel-table { border-right: 1px solid #B4BAC6; }
.show-items { color: #AAB2C0; font-size: 0.8em; }

/* CHAT PANEL */

.panel-messages {
    position: relative;
    min-height: 500px;
}
.chat-name { font-weight: 800; }
.chat-time { color: #7C8495; }

.chat-message { 
    display: block; 
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    width: 100px;
}
.message-area {
    /* positioning absolute doesn't work when the chat has messages */
    /*	position: absolute; */
    width: 100%;
    bottom: 0px;
}
.close-icon { margin: 0 10px; }
.chat-detail {
    /*padding-left: 10px;*/ 
    font-size: .8em;
}
ul.user-list li.user-alert {
    position: relative;
    cursor: pointer;
}
.user-list-modal {
    position: absolute;
    top: -75px;
    left: 0;
    padding: 10px;
    height: auto;
    width: 200px;
    font-size: 1.3em;
    background-color: #fff;
    border: 1px solid #979797;	
    border-radius: 4px;
    display: none;
}
ul.user-list li.user-alert:hover .user-list-modal {
    display: block;    
}

/* LOCATION PANEL */
#location-map {
    width: 100%;
    height: 100%;
    height: 250px;
    border-radius: 4px;
}
.location-border { border-top: 5px solid #4A90E2; }
.location-cell-border {
    margin: 10px 0;
    border-bottom: 1px solid #9B9B9B;
}
@media print, screen and (min-width: 40em) {	
    .location-cell-border {
        margin: 0;
        border-bottom: none;
        border-right: 1px solid #9B9B9B;
    }
}
.location-subhead {
    color: #4A90E2;
    font-weight:  800;
    font-size: .8em;
    text-transform: uppercase;
}
.location-subhead i { font-size: 1.4em; line-height: 1.1; color: #979797; }
.locations-list { margin-bottom: 5px; font-size: .8em; }
.locations-icon .fa-check-circle { color: #7ED321; }
.location-group { font-size: .8em; }

/* CARDS */

.card.full-length {
    height: 75vh;    
    overflow-y: scroll;
    margin-bottom: 0px !important;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
}
.card-headline {
    padding: 5px 0;
    color: #4A90E2;
    font-size: 1em;
    font-weight: 800;
}
.card-title {
    padding: 10px 0;
    color: #4A90E2;
    font-size: 0.8em;
    font-weight: 800;
    text-align: center;
    border-bottom: 1px solid #CECECE;
}
.card-timeline {
    padding: 10px 0;
    width: 100%;
    height: auto;
    color: #fff;
    text-align: center;
    background-color: #4A90E2;
}
.card-select {
    /* reset */
    margin: 0;  
    padding: 0 0 0 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    /* style */	
    cursor: pointer;
    display: inline-block;
    color: #9B9B9B;
    border: 1px solid #D8D8D8;
    border-radius: 5px;
    background-image:
        linear-gradient(45deg, transparent 50%, white 50%),
        linear-gradient(135deg, white 50%, transparent 50%),
        linear-gradient(to right, #D8D8D8, #D8D8D8);
    background-position:
        calc(100% - 20px) calc(1em + 2px),
        calc(100% - 15px) calc(1em + 2px),
        100% 0;
    background-size:
        5px 5px,
        5px 5px,
        2.5em 2.5em;
    background-repeat: no-repeat;
}
.card-stat {
    color: #4A90E2;	
    font-weight: 800;
    font-size: 4em;
    text-align: center;
}
.card-unit {
    color: #CECECE;
    font-weight: 800;
    font-size: 0.8em;
    text-align: center;
}
.card-tabs {
    background-color: #F1F2F3;
}

.tabs {
    min-height: 75px;
}

.tabs-content { position: relative; }

.tabs-title {
    text-align: center;    
}

.tabs-title span { font-size: 0.8em; }

.tabs-title.is-active {	
    background-color: #fff;
    border-top: 5px solid #4A90E2;
}
.tabs-title i { margin-bottom: 5px; }


/*.tabs-title:hover { border-top: 5px solid #fff; }
.tabs-title a, .tabs-title a:hover, .tabs-title a:focus { color: #A2A2A3; }
.tabs-title.is-active a, .tabs-title.is-active i { color: #4A90E2; }

*/
.card-tabs .tabs-panel { padding: 0; }

/* REPORTS & GRAPHS */
.graph {
    position: relative; 
    height: 425px;
    margin: 0;
    padding: 0;
}
.bar-graph, .bar-graph-labels {
    padding: 0;
    width: 100%;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    height: 200px;
    margin: 0;
}
.bar-graph li, .bar-graph-labels li {
    display: block;
    padding: 1.5625rem 0;
    position: relative;
    text-align: center;
    vertical-align: bottom;
    border-radius: 4px 4px 0 0;
    max-width: 20%;
    height: 100%;
    margin: 0 1.8%;
    -webkit-flex: 1 1 15%;
    -ms-flex: 1 1 15%;
    flex: 1 1 15%;
}
.bar-graph-labels li { padding: 0; }
.bar-graph-labels {
    padding-bottom: 25px;
    height: auto;
    border-top:1px solid #4A90E2;
}
.bar-graph-labels .description {
    width: 100%;
    color: #9B9B9B;
    font-size: .8em;
    bottom: 10px;
    text-transform: uppercase;
}
.bar-graph .bar.primary {	
    border: 1px solid #4A90E2;
    background-color: #4A90E2;
}

.bar-graph .bar.secondary {
    border: 1px solid #CECECE;
    background-color: #CECECE;
}

.bar-graph .bar.tertiary {
    border: 1px solid #F3F3F3;
    background-color: #F3F3F3;
}

/* EXPANDING INPUTS */

.animated-search, .animated-add-new {
    position: relative;
    float: left;
    display: inline;
}
.animated-search-form {
    position: relative;
    overflow: hidden;
    width: 40px;	
    height: 49px;	
    margin-left: 10px;
    box-shadow: 0 0 8px 0 rgba(0,0,0,0.5);
    transition: width 0.4s ease-in-out;
}
@media print, screen and (max-width: 30em) {
    .animated-search, .animated-add-new { clear: both; }
    .animated-search-form { margin: 10px 0 0 0; }
}
input[type="search"].animated-search-form {
    padding: 0 6px 0 45px;
    background-image: url("../img/icons/icon_magnifying_glass_main_blue.png");
    background-position: 15px 10px;
}
.animated-add-new:hover, .animated-search-form:hover, .animated-search-form:focus {
    width: 250px;
}
.animated-add-new {
    position: relative;
    overflow: hidden;
    width: 50px;	
    padding: 10px 0;
    color: #4a90e2;
    background: transparent;
    border-radius: 30px;
    box-shadow: 0 0 8px 0 rgba(0,0,0,0.5);
    transition: all 0.4s ease-in-out;
}
.animated-add-new .add-new-options {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);  
    right: -200px;
    transition: 0.4s right ease-in-out;
}
.add-new-options i { padding: 0 12px; color: #979797; }
.animated-add-new span { margin: 2px 0 0 12.5px; }
.animated-add-new:hover span {
    margin-right: 200px;
    color: #4a90e2;
}
.animated-add-new:hover .add-new-options { right: 10px; }
/* CUSTOM ICONS */

.card .fa, .card .fas, .card .far {	font-size: 1em; }
.fa-file-image, .fa-folder.icon-bold, .location-border .fa-plus-circle { color: #4A90E2; }
.fa-paperclip, .fa-folder, .fa-caret-down { color: #979797; }
.chat-icon .fa-user-plus, .chat-icon .fa-file-medical,
.chat-icon .fa-phone-volume, .chat-icon .fa-video,
.chat-icon .fa-exclamation-triangle { color: #979797; }
.chat-icon { margin: 0 5px; }
.fa-file-pdf { color: #d0021b; }
.icon-open {
    text-align: right;
    border-left: 1px solid #CECECE;
}
.icon-open i {
    position: relative;
    top: 5px;
    color: #4A90E2;
}

/* GOOGLE MAPS */

.map-overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0,0.5);
}
#google-maps { 
    /*  position: absolute; 
      height: 100%; 
      width: 100%; 
      top: 0; 
      left: 0; 
      z-index: 0;  Set z-index to 0 as it will be on a layer below the contact form */
    height: 100%;  /* The height is 400 pixels */
    width: 100%;  /* The width is the width of the web page */
}
@media print, screen and (max-width: 1024px) {
    #google-maps { display: none; }
}

a.user-full-name {
    text-decoration: none;
    color: #0a0a0a;
}

.tabs-panel.is-active {
    margin-top: 0px !important; 
}

.tabs-title{
    width: 50%;
}

.user-options-menu>ul>li:hover{
    background-color: #F1F2F3;
}

.chat-list{
    height: 600px;
    overflow-y: auto;
    overflow-x: hidden;
}

.image-preview{
    width: 60px;
    height: 60px;
    padding: 5px;
}

button.toastr-notification{
    min-width: 0px !important;
}

textarea.autosize{
    height: 30px;
    border-radius: 5px;
    width: 100%;
    resize: none;
    padding: 5px;
    padding-right: 60px;
    margin-bottom: 0px !important;
}

.buttons-textarea{
    text-align: right;
    position: relative;
    top: 26px;
    margin-top: -26px;
    float: right;
}

button.btn-send-message{
    padding: 15px;
    height: 51px;
    display: inline-block;
    vertical-align: top;
    border-top-left-radius: 0;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 0;
    cursor: pointer;
    transition: .2s color linear;
    color: #FFF;
    background-color: #4A90E2 !important;
    position: absolute;
    left: -69px;
}

button:disabled{
    cursor: not-allowed;
    background-color: #CECECE !important;
    color:#000;
}
.card.message-area{
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
}

.chat-history{
    padding-top: 15px;
}

.pulse {
    margin:10px;
    display: block;
    width: 128px;
    height: 128px;
    border-radius: 50%;
    background: #4A90E2;
    cursor: pointer;
    box-shadow: 0 0 0 rgba(74,144,226, 0.4);
    animation: pulse 2s infinite;
}
.pulse:hover {
    animation: none;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(74,144,226, 0.4);
    }
    70% {
        -webkit-box-shadow: 0 0 0 10px rgba(204,169,44, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(204,169,44, 0);
    }
}
@keyframes pulse {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(74,144,226, 0.4);
        box-shadow: 0 0 0 0 rgba(74,144,226, 0.4);
    }
    70% {
        -moz-box-shadow: 0 0 0 10px rgba(204,169,44, 0);
        box-shadow: 0 0 0 10px rgba(204,169,44, 0);
    }
    100% {
        -moz-box-shadow: 0 0 0 0 rgba(204,169,44, 0);
        box-shadow: 0 0 0 0 rgba(204,169,44, 0);
    }
}

.center {
    margin: 0 auto;      
    padding: 10px;
    text-align: center;
}

a.chat-icon.disabled{
    cursor: not-allowed !important;    
}
