/* Move down content because we have a fixed navbar that is 50px tall */

body {
    padding-top: 50px;
}

.hidden {
    display: none;
}

.splash {
    padding: 20px;
    position: absolute;
    top: 20%;
    text-align: center;
    font-family: DIN, Helvetica, Roboto, Arial, sans-serif;
}

.splash h1 {
    font-size: 3.5rem;
}


/*
 * Top navigation
 * Hide default border to remove 1px line.
 */

.navbar-fixed-top {
    border: 0;
}

.list-left .card-block .list-group,
.list-right .card-block .list-group {
    max-height: 12em;
    overflow: auto;
}


/*
 * Sidebar
 */

@media (min-width: 544px) {
    .sidebar {
        position: fixed;
        top: 51px;
        bottom: 0;
        left: 0;
        z-index: 1000;
        display: block;
        padding: 20px;
        overflow-x: hidden;
        overflow-y: auto;
        /* Scrollable contents if viewport is shorter than content. */
        background-color: #f5f5f5;
        border-right: 1px solid #eee;
    }
}

.fast-spin {
    -webkit-animation: fa-spin .2s infinite linear;
    animation: fa-spin .2s infinite linear;
}


/* 

 Login Account Dropdown

*/

.custom-combobox {
    position: relative;
    display: block;
}

.custom-combobox-toggle {
    position: absolute;
    top: 0;
    bottom: 10px;
    margin-left: -1px;
    padding: 0;
}

.custom-combobox-input {
    margin: 0;
    width: 90%;
    padding: 5px 10px;
    margin-bottom: 20px;
}

.ui-autocomplete {
    max-height: 400px;
    overflow-y: auto;
    /* prevent horizontal scrollbar */
    overflow-x: hidden;
}


/*
 * Main content
 */

.main {
    padding: 20px;
}

td {
    font-size: .6rem
}

.signin-box {
    max-width: 400px;
    padding: 50px;
    margin: 0 auto;
    background-color: #eee;
    border-radius: 15px;
}

.signin-box img {
    margin-bottom: 20px;
}

.signin-box > input {
    margin-bottom: 20px;
}

.custom-combobox-toggle{
    bottom: 20px !important;
}

.ui-datepicker {
    z-index: 9999 !important;
}

.content-container {
    padding-bottom: 75px;
    /* left gets cut off by the footer if it runs too long*/
}


/*
 * Schedule Timeline
 */

.legend-labels {
    margin: 0;
    padding: 0px 0px 5px 0px;
    list-style: none;
    display: inline-block;
}

.legend-labels li {
    margin: 1px 0px 0px 0px;
    display: block;
    font-size: 12px;
    line-height: 2em;
}

.legend-labels li span {
    display: inline-block;
    margin: 0px 5px 0px 0px;
    height: 12px;
    width: 12px;
    border-radius: 100%;
    border: solid 1px #667178;
}

#scheduleLegendTitle {
    padding: 10px 0px;
    margin-bottom: 10px;
}

#scheduleLegendTitle h6::after {
    display: table;
    content: " ";
    border-bottom: .12rem solid black;
    width: 100px;
}

.vis-timeline {
    font-size: 80%;
    background-color: white;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.vis-item {
    background-color: #e8eefd;
    border-color: #b9cbff;
    color: #275972;
    padding-top: 7px;
    padding-bottom: 7px;
}

.vis-item a {
    font-weight: 400;
}

.vis-item.vis-readonly {
    border-radius: 0px;
}

.vis-item.vis-selected {
    background-color: #faffeb;
    border-color: #253300;
}

.popover-content {
    max-height: 300px;
    overflow-y: auto;
}

.popover {
    max-width: 50%;
}

#executeNowModal {
    z-index: 1061; 
    /* z-index is set to 1061 since popover's default values are 1060 */
}


/*
 * Timeline Green
 */

.vis-item.green,
.timelineGreen {
    background-color: #edfde8;
    border-color: #b8ffb8;
    color: #3a7227;
}


/*
 * Timeline Orange
 */

.vis-item.orange,
.timelineOrange {
    background-color: #f8ce73;
    border-color: #f8ce73;
    color: #ffae00;
}


/*
 * Timeline Blue
 */

.vis-item.blue,
.timelineBlue {
    background-color: #e8eefd;
    border-color: #b9cbff;
    color: #275972;
}


/*
 * Timeline light green
 */
.vis-item.lightgreen,
.timelineLightgreen {
    background-color: #ebf1b0;
    border-color:#ebf1b0;
    color: #ebf1b0;
}


/*
 * Timeline Purple
 */

.vis-item.purple,
.timelinePurple {
    background-color: #D9BCFF;
    border-color: #8d5fa0;
    color: #969696;
}

.vis-item.purple a {
    color: #050505;
    text-decoration: none;
}

.vis-item.purple a:visited {
    color: #0275d8
}

.vis-item.purple a:hover {
    color: #0275d8
}

.vis-item.purple a:active {
    color: #0275d8
}


/*
 * Timeline Teal
 */

.vis-item.teal,
.timelineTeal {
    background-color: #92FFE6;
    border-color: #35A691;
    color: #050505;
}

.vis-item.teal a {
    color: #050505;
    text-decoration: none;
}

.vis-item.teal a:visited {
    color: #0275d8
}

.vis-item.teal a:hover {
    color: #0275d8
}

.vis-item.teal a:active {
    color: #0275d8
}


/*
 * Timeline Red
 */

.vis-item.red,
.timelineRed {
    background-color: #E83925;
    border-color: #691A11;
}

.vis-item.red a {
    color: #050505;
    text-decoration: none;
}

.vis-item.red a:visited {
    color: #FAD38A
}

.vis-item.red a:hover {
    color: #FAD38A
}

.vis-item.red a:active {
    color: #425361
}


/*
 * Timeline Brown
 */

.vis-item.brown,
.timelineBrown {
    background-color: #A96636;
    border-color: #784122;
}

.vis-item.brown a {
    color: #FAD38A;
    text-decoration: none;
}

.vis-item.brown a:visited {
    color: #FAD38A
}

.vis-item.brown a:hover {
    color: #FAD38A
}

.vis-item.brown a:active {
    color: #f0bc5c
}


/*
 * Timeline Gray
 */

.vis-item.gray,
.timelineGray {
    background-color: #667178;
    border-color: #3B515E;
}

.vis-item.gray a {
    color: #FAD38A;
    text-decoration: none;
}

.vis-item.gray a:visited {
    color: #FAD38A
}

.vis-item.gray a:hover {
    color: #FAD38A
}

.vis-item.gray a:active {
    color: #f0bc5c
}


/*
 * Timeline Background hash
 */

.vis-item.hash,
.timelineHash {
    background-image: url("/assets/img/lrm-background-stripes-dark.png");
    background-repeat: repeat;
    background-size: auto;
}


/*
 * Distribution
 */

.distroStatus td {
    font-size: 4rem;
}


/*
  * Not found
  */

.notfound {
    padding-top: 40px;
}

.dataTables {
    font-size: .9rem
}

.dataTables_paginate {
    font-size: .8rem
}

.dataTables_length {
    font-size: .8rem
}

.dataTables_filter {
    font-size: .8rem
}

.dataTables_info {
    font-size: .8rem
}

button.dt-button.buttons-collection {
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: 0.7rem;
    margin-right: 1rem;
    border: 2px solid black;
}

button.dt-button.buttons-collection:hover {
    border: 2px solid black;
}

div.dt-button-collection .dt-button {
    line-height: 1rem;
}

div.dt-buttons {
    position: relative;
    float: right;
}


/*
* Dual list
*/

.dual-list .list-group {
    margin-top: 8px;
}

.list-left li,
.list-right li,
.dual-list .selector {
    cursor: pointer;
}

@media (min-width: 768px) {
    .list-arrows {
        padding-top: 50px;
    }
    .list-arrows button {
        margin-bottom: 20px;
    }
}

.dual-list.container {
    padding-top: 20px;
}

.dual-list.card {
    margin-top: 40px;
    padding-bottom: 20px;
}

.dual-list ul li {
    padding: 0px;
}


/*
* Timezone
*/

.timezonePickerBlock {
    overflow: hidden;
}


/*
* Map
*/

#map {
    height: 400px;
    /*height: 100%;*/
}

#clear:hover,
#clear:active,
#clear:visited,
#clear:link,
#clear:focus {
    text-decoration: none;
    outline: none;
}

.btn:focus {
    outline: none;
}


/*a[href^="https://maps.google.com/maps"]{display:none !important}
.gmnoprint a, .gmnoprint span, .gm-style-cc {
    display:none;
}
.gmnoprint div {
    background:none !important;
}*/


/*
* File Upload
*/

.file-virtical-align {
    margin: .5em 0 0;
    display: block;
}

.filename-virtical-align {
    margin: .5em 0 0;
    display: inline;
}

.fileuploadContain {
    margin: 35px 0 20px;
}


/* Hide scrollbar */

::-webkit-scrollbar {
    width: 0px;
}

.danger,
.danger:hover,
.danger:visited,
.danger:focus,
.danger:active,
.danger:active:focus {
    color: #AE2424;
    text-decoration: none;
    /* outline:0; */
    border: 0;
    outline: none;
}

.btn:active:focus,
.btn-link:active:focus,
.btn:focus,
.btn:active,
.btn:hover,
.btn:visited {
    outline: none;
    text-decoration: none;
}

.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn:active:focus,
.btn:focus,
.btn:visited,
.btn:hover {
    outline: none;
    text-decoration: none;
}

.fa-stack[data-count]:after {
    position: absolute;
    right: 0%;
    top: 1%;
    content: attr(data-count);
    font-size: 30%;
    padding: .6em;
    border-radius: 999px;
    line-height: .75em;
    color: white;
    background: rgba(255, 0, 0, .85);
    text-align: center;
    min-width: 2em;
    font-weight: bold;
}

.badge {
    background: #26aa5a;
    color: #fff;
    font-size: 11px;
    padding: 3px 6px;
    border-radius: 3px;
    margin-right: 5px;
    font-weight: 400
}

.badge-notify {
    background: #d94c4c;
    position: relative;
    top: -12px;
    left: -16px;
}

#filelist-watch, #filelist-fail, #filelist-success {
    font-size: 150%;
    background-color: white;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    display: table;
    width: 100%;
    height: .2em;
    padding: 5px;
    margin-top: 20px;
    margin-bottom: 10px;
    background: rgba(0, 0, 0, 0.22);
}


/*
* Messaging
*/

#xmlobjbtn {
    text-decoration: none
}

a.disabled {
    /* Make the disabled links grayish*/
    color: gray;
    /* And disable the pointer events */
    pointer-events: none;
}

.plusbutton {
    position: relative;
    min-height: 1px;
    float: right;
    margin-right: 15px;
}

.minusbutton {
    position: relative;
    min-height: 1px;
    float: right;
    margin-right: 15px;
}

.separator {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.hline {
    width: 40%;
    background-color: #bab8b8;
}

.sign-in-widget-form img, .signin-box h2, .sign-in-widget-form h2 {
    margin-bottom: 20px;
}

.sign-in-widget-form #okta-sign-in {
    margin-top: 25px;
    background: none !important;
    border: none;
    box-shadow: none !important;
    width: 300px !important;
}

.auth-content{
    padding: 0 !important;
}

#idp-discovery-submit {
    background: #0275d8 !important;
    font-size: 1.25rem !important;
    border-color: #0275d8 !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
}

.o-form-button-bar{
    padding: 0 !important;
}

.auth-footer , .okta-sign-in-header, .okta-form-title, .okta-form-label {
    display: none;
}

.o-form-fieldset{
    margin-bottom: 10px !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
}


.track-current-time{
    display: inline-block;
    width: 255px;
    white-space: nowrap;
    vertical-align: top;
    line-height: 1.25;
    padding: 2px 10px;
}

.current-time-radio-label {
    float: left;
}

.current-time-radio-btn{
    padding-top: 0.5rem;
}

.timezone {
    color: white;
    font-size: .875rem;
    padding: 0.4rem .5rem;
}

table.dataTable td {
    font-size: 0.8rem;
  }