body.cLoginScreen {
    background: linear-gradient(90deg, #990000, #000099);
}

/* LOADER */
div#loading {
    position: fixed;
    display: none;
    overflow :hidden;
    height: 100vh;
    width: 100vw;
    z-index: 9999;
    left: 0;
    top: 0;
    /* background: rgba(255, 255, 255, 0.85); */
}

/* CENTER ALIGNMENT IN SCREEN */
.outerContainer {
	display: table;
	height: 100%;
	width: 100%;
	text-align: center;
}

.innerContainer {
	display: table-cell;
	height: 100%;
	width: 100%;
	vertical-align: middle;
}

textarea {
    min-width: 100%;
    max-width: 100%;
    min-height: 120px;
}

a.jsLink {
    cursor: pointer;
}

.form-control.error {
    border-color: #F44336;
}

span.help_block {
    font-size: 0.8rem;
    font-style: italic;
    opacity: 0.6;
}

a.btn.cDisabled {
    opacity: 0.1;
    pointer-events: initial;
    cursor: not-allowed !important;
}

/* Rules for sizing the icon. */
.material-icons.md-18 { font-size: 18px; }
.material-icons.md-24 { font-size: 24px; }
.material-icons.md-36 { font-size: 36px; }
.material-icons.md-48 { font-size: 48px; }

/* Rules for using icons as black on a light background. */
.material-icons.md-dark { color: rgba(0, 0, 0, 0.54); }
.material-icons.md-dark.md-inactive { color: rgba(0, 0, 0, 0.26); }

/* Rules for using icons as white on a dark background. */
.material-icons.md-light { color: rgba(255, 255, 255, 1); }
.material-icons.md-light.md-inactive { color: rgba(255, 255, 255, 0.3); }



.cToggleBtn {
    width: 75px;
    height: 27px;
    position: relative;
    display: inline-block;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
    border-radius: 30px;
    cursor: pointer;
}

.cToggleBtn input {
    display: none;
}

.cToggleBtn .cSlider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    background-color: #ccc;
    transition: all 0.4s ease-in-out;
}

.cToggleBtn .cSlider::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    border-radius: 15px;
    background-color: #fff;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease-in-out;
}

.cToggleBtn input:checked+.cSlider {
    background-color: #2196F3;
}

.cToggleBtn input:checked+.cSlider::before {
    transform: translateX(48px);
}

.cToggleBtn .cLabels {
    position: absolute;
    width: 100%;
    height: 100%;
    transition: all 0.4s ease-in-out;
}

.cToggleBtn .cLabels::after {
    content: attr(data-off);
    position: absolute;
    right: 6px;
    color: #4d4d4d;
    opacity: 1;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease-in-out;
}

.cToggleBtn .cLabels::before {
    content: attr(data-on);
    position: absolute;
    left: 6px;
    color: #ffffff;
    opacity: 0;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.4);
    transition: all 0.4s ease-in-out;
}

.cToggleBtn input:checked~.cLabels::after {
    opacity: 0;
}

.cToggleBtn input:checked~.cLabels::before {
    opacity: 1;
}

.mapOuts .card {
    -webkit-transition: transform 0.2s linear;
    -moz-transition: transform 0.2s linear;
    transition: transform 0.2s linear;
}

.cBtnMapOutput {
    cursor: pointer;
}

.mapOuts .card.cActive {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    transform: scale(1.1);
}


.loginFormWrapper {
    max-width: 360px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    box-shadow: 0px 0px 18px 1px rgb(255 255 255 / 60%);
    border-radius: 10px;
    background: #FFFFFF;
}

.userHeaderSection {
    height: 48px;
    line-height: 48px;
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    border-bottom: 1px solid rgba(199, 181, 181, 0);
    background: #ffffff;
    -webkit-box-shadow: 0px 2px 6px rgba(136, 136, 136, 0.42);
    box-shadow: 0px 2px 6px rgba(136, 136, 136, 0.42);
    z-index: 999;
}

.userHeaderSection i.material-icons {
    line-height: 48px;
}

.cHeaderDropDown {
    position: relative;
}

.cHeaderDropDown .dropdown-toggle {
    background: #FFFFFF;
    border: 1px solid #007BFF;
    height: 36px;
    line-height: 1;
    -webkit-border-radius: 18px;
    -moz-border-radius: 18px;
    border-radius: 18px;
    font-size: 0.8rem;
    padding: 0 1rem;
}

.cHeaderDropDown .dropdown-toggle:focus {
    outline: none;
}

.cHeaderDropDown .dropdown-menu a.dropdown-item {
    cursor: pointer;
    line-height: 1;
    padding: 0.5rem 1.5rem;
    font-size: 0.85rem;
}

.cHeaderDropDown .dropdown-menu a.dropdown-item.disabled {
    opacity: 0.5;
}



.userSidebarSection {
    position: fixed;
    left: 0;
    top: 48px;
    width: 180px;
    height: -webkit-calc(100% - 48px);
    height: -moz-calc(100% - 48px);
    height: calc(100% - 48px);
    border-top: 1px solid rgba(199, 181, 181, 0);
    -webkit-box-shadow: 2px 4px 6px rgba(136, 136, 136, 0.42);
    box-shadow: 2px 4px 6px rgba(136, 136, 136, 0.42);
    z-index: 10;
}

.sidebarWrapper {
    position: relative;
    height: 100%;
    background: #FFFFFF;
    overflow-x: hidden;
}

.sidebarWrapper ul.sidebarList {
    position: relative;
    padding: 0;
    margin: 0 auto;
    list-style-type: none;
    height: 100%;
    overflow-y: auto;
    margin-right: -18px;
}

.sidebarWrapper ul.sidebarList li.sidebarLiItem {
    height: 45px;
    line-height: 45px;
}

.sidebarWrapper ul.sidebarList li.sidebarLiItem a {
    display: block;
    padding: 0 15px;
    border-bottom: 1px solid #dddddd;
    color: #888888;
}

.sidebarWrapper ul.sidebarList li.sidebarLiItem a:hover,
.sidebarWrapper ul.sidebarList li.sidebarLiItem a:focus {
    text-decoration: none;
    color: #000000;
}

.sidebarWrapper ul.sidebarList li.sidebarLiItem.active a {
    color: #000000;
    font-weight: 600;
}

.sidebarWrapper ul.sidebarList li.sidebarLiItem a i {
    margin-right: 10px;
    vertical-align: middle;
    font-size: 1.4rem;
    line-height: 1.4rem;
}

.sidebarWrapper ul.sidebarList li.sidebarLiItem a span {
    display: inline-block;
    vertical-align: middle;
    font-size: 0.85rem;
}



.userContentSection {
    margin-left: 180px;
    margin-top: 48px;
    padding: 15px;
}



/* CARD UI */
.card-deck {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.card-deck .card {
    display: -ms-flexbox;
    display: flex;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-right: 15px;
    margin-bottom: 0;
    margin-left: 15px;
    min-width: 0;
    word-wrap: break-word;
    background-clip: border-box;
    border: 0px solid rgba(221, 221, 221, 0);
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    -webkit-box-shadow: 0px 2px 6px 0px rgba(136, 136, 136, 0.6);
    -moz-box-shadow: 0px 2px 6px 0px rgba(136, 136, 136, 0.6);
    box-shadow: 0px 2px 6px 0px rgba(136, 136, 136, 0.6);
}

.card-deck .card .card-head {
    position: relative;
}

.card-deck .card .card-head h2.card-title {
    margin: 0 auto;
    font-size: 14px;
    padding: 10px 15px;
    border-bottom: 1px solid #f5f5f5;
    color: #555555;
    font-weight: 600;
}

.card-deck .card .card-body {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 10px 15px;
}

.dashboardCardDeck {
    margin-top: 20px;
}



/* FORM WRAPPER */
.formWrapper .form-group {
    margin-bottom: 0.5rem;
}

.formWrapper .form-group label:not(.cToggleBtn) {
    font-weight: 600;
    font-size: 0.85rem;
}

.formWrapper .form-group .form-control {
    font-size: 0.85rem;
}


.actionDropdown {
    font-size: 0.75rem;
    line-height: 1;
}

.actionDropdown ~ .dropdown-menu .dropdown-item {
    font-size: 0.85rem;
    padding: 0.25rem 0.5rem;
}

.actionDropdown ~ .dropdown-menu {
    min-width: 8rem;
    padding: 0.25rem 0;
}

.actionDropdown ~ .dropdown-menu .dropdown-divider {
    margin: 0.25rem 0;
}


/* CONFIRM BOX MODAL */
.cModalConfirmWrapper {
    position: relative;
    text-align: center;
}

.cModalConfirmWrapper .cModalConfirmHeader {
    position: relative;
    padding: 1.25rem 0 0;
}

.cModalConfirmWrapper .cModalConfirmHeader .cModalConfirmIcon {
    position: relative;
}

.cModalConfirmWrapper .cModalConfirmHeader .cModalConfirmIcon i {
    font-size: 4rem;
}

.cModalConfirmWrapper.warning .cModalConfirmHeader .cModalConfirmIcon i {
    color: #FF9800;
}

.cModalConfirmWrapper.info .cModalConfirmHeader .cModalConfirmIcon i {
    color: #2196F3;
}

.cModalConfirmWrapper.danger .cModalConfirmHeader .cModalConfirmIcon i {
    color: #f44336;
}


.cModalConfirmWrapper .cModalConfirmHeader .cModalConfirmTitle {
    position: relative;
}

.cModalConfirmWrapper .cModalConfirmHeader .cModalConfirmTitle h3 {
    font-size: 1.25rem;
    font-weight: normal;
}

.cModalConfirmWrapper.warning .cModalConfirmHeader .cModalConfirmTitle h3 {
    color: #FF9800;
    margin-bottom: 0;
}

.cModalConfirmWrapper.info .cModalConfirmHeader .cModalConfirmTitle h3 {
    color: #2196F3;
}

.cModalConfirmWrapper.danger .cModalConfirmHeader .cModalConfirmTitle h3 {
    color: #f44336;
}

.cModalConfirmWrapper .cModalConfirmBody {
    position: relative;
}

.cModalConfirmWrapper .cModalConfirmBody p {
    font-size: 0.8rem;
}

.cModalConfirmWrapper .cModalConfirmFooter {
    position: relative;
    padding-bottom: 1.25rem;
}


/* UPLOAD FILES PROGRESS */
div#fileProgressContainer ~ button {
    margin-bottom: 20px;
}

.cFileProgress {
    text-align: left;
    margin-bottom: 20px;
    border-bottom: 1px solid #BDBDBD;
}

.cFileProgress span.pFileName {
    font-size: 15px;
    font-weight: bold;
    width: calc(100% - 100px);
    width: -webkit-calc(100% - 100px);
    width: -moz-calc(100% - 100px);
    padding-left: 0;
}

.cFileProgress span.pFilePercentage {
    width: 100px;
    padding-right: 0;
    text-align: right;
    font-size: 15px;
    color: #fc5529;
    font-weight: bold;
}

.cFileProgress span {
    display: inline-block;
    vertical-align: middle;
    padding: 10px;
}



/* ENTRY LIST TABLE */
.entryListTableWrapper {
    position: relative;
}

.entryListTableWrapper h4.entryListTitle {
    color: #607D8B;
    margin-bottom: 0.5rem;
    font-size: 0;
}

.entryListTableWrapper h4.entryListTitle i {
    margin-right: 5px;
    color: #607D8B;
}

.entryListTableWrapper h4.entryListTitle span {
    display: inline-block;
    font-size: 21px;
}

.cTableWrapper {
    -webkit-box-shadow: 0px 2px 2px 0px rgba(136, 136, 136, 0.5);
    -moz-box-shadow: 0px 2px 2px 0px rgba(136, 136, 136, 0.5);
    box-shadow: 0px 2px 2px 0px rgba(136, 136, 136, 0.5);
    border-top: 1px solid #e6e6e6;
}

.cTable {
    position: relative;
}

.cTable thead th {
    border-top-width: 0;
    border-bottom-width: 1px;
    color: #2196F3;
    font-weight: 600;
}

.cTable thead th, .cTable tbody td {
    font-size: 0.85rem;
    padding: 0.5rem 0.75rem;
}

.cTable tbody tr.adminUser td:first-child {
    position: relative;
}

.cTable tbody tr.adminUser td:first-child:after {
    content: attr(data-tag);
    /* position: absolute; */
    background: #f44336;
    color: #FFF;
    font-size: 0.6rem;
    padding: 0px 5px;
    border-radius: 10px;
}


img.mapIcon {
    height: 18px;
    width: 18px;
    position: absolute;
    left: 20px;
    top: 3px;
}

.leaflet-tooltip-top {
  line-height: 1;
  margin-top: 0px;
}
.leaflet-tooltip-top::before {
  display: none
}
.leaflet-tooltip {
  padding-top: 1px;
  padding-bottom: 0px;
  padding-left: 4px;
  padding-right: 4px;
}


.cTimelineWrapper {
    display: none;
}

.cTriggerFullscreen {
    float: right;
    position: absolute;
    right: 40px;
    top: 13px;
}


/* RESPONSIVE CSS CODE */
@media only screen and (max-width: 767px) {
    .userSidebarSection {
        width: 48px;
    }
    
    .sidebarWrapper ul.sidebarList li.sidebarLiItem a {
        text-wrap: nowrap;
    }
    
    .userContentSection {
        margin-left: 48px;
    }
}

