﻿:root {
    --primary: #491f7d;
    --primary80: rgba(73, 31, 125, .8);
    --primary30: rgba(73, 31, 125, .3);
    --primary20: rgba(73, 31, 125, .2);
    --primary15: rgba(73, 31, 125, .15);
    --primary10: rgba(73, 31, 125, .1);
    --secondary: #ea1c2d;
    --secondary80: rgba(234, 28, 45, .8);
    --tertiary: #8dc63f;
    --tertiary80: rgba(141, 198, 63, .8);
    --warningyellow: #d2b901;
}

body {
    padding-top: 50px;
    padding-bottom: 20px;
}

/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    /*max-width: 100%;
    width: 100%;*/
}

a {
    color: var(--primary);
}

a:hover,
a:active,
a:focus {
    text-decoration: underline;
    color: var(--primary80);
}

/***************************************
             Nav Bar
****************************************/

.navbar-default {
    background-color: white;
    /*border-color: var(--primary);*/
    border-bottom: 2px solid var(--primary);
}

    .navbar-default .navbar-collapse,
    .navbar-default .navbar-form {
        border-color: var(--primary);
        border-width: 2px;
    }

.navbar-default .navbar-brand {
    color: black;
}

.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus {
    color: #555;
}

.navbar-default .navbar-nav > li > a {
    color: black;
}

.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
    background-color: #e7e7e7;
    color: black;
}

.navbar-default .navbar-toggle .icon-bar {
    background-color: black;
}

@media (max-width: 767px) {
    .navbar-default .navbar-nav .open .dropdown-menu > li > a {
        color: black;
    }

    .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
    .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
        color: #555;
    }
}

/***************************************
             Home Page
****************************************/
.index {
    width: 100%;
    margin: auto;
    overflow: hidden;
    text-align: center;
}

.index-grid .panel {
    border: none;
    border-radius: 0;
    box-shadow: none;
    background-color: var(--primary15);
    margin: auto;
    width: 350px;
}

.index-grid h4 {
    color: #000;
    text-transform: uppercase;
    font-size: 28px;
    font-weight: bold;
}

.index-grid i {
    color: var(--primary);
}

.home-title {
    background-color: var(--primary15);
    padding: 10px 10px 120px 10px;
    margin: 10px 0;
    width: 100%;
    text-align: center;
}

.home-title h1 {
    font-weight: bold;
}

.home-nav-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin-top: -100px;
    margin-bottom: 25px;
}

.home-nav-box {
    border: 2px solid var(--primary);
    border-radius: 15px;
    background-color: #fff;
    padding: 15px;
    width: 275px;
    height: 175px;
    display: flex;
    text-align: center;
    justify-content: center;
    align-content: center;
    flex-direction: column;
    filter: drop-shadow(var(--primary15) 0.5px 1px 1px) drop-shadow(var(--primary15) 1px 2px 2px) drop-shadow(var(--primary15) 2px 4px 4px) drop-shadow(var(--primary15) 4px 8px 8px) drop-shadow(var(--primary15) 8px 16px 16px);
    transition: all .2s ease-in-out;
    margin: 0 10px 20px 10px;
}

    .home-nav-box:hover,
    .home-nav-box:focus,
    .home-nav-box:active {
        text-decoration: none;
        transform: scale(1.1);
    }

    .home-nav-box .home-nav-text,
    .home-nav-box .home-nav-icon {
        display: block;
        margin: 10px 0;
    }

.home-nav-text {
    font-size: 32px;
    font-weight: bold;
}

.home-toggle-section {
    margin-top: 50px;
    margin-left: 30px;
}

.home-toggle-section .k-switch {
    width: 180px;
    font-size: 16px;
    font-weight: bold;
}

.home-toggle-section .k-switch-label-on {
    color: var(--secondary);
}

.home-toggle-section .k-switch-on .k-switch-thumb,
.home-toggle-section .k-switch-on.k-focus .k-switch-thumb,
.home-toggle-section .k-switch-on.k-state-focused .k-switch-thumb,
.home-toggle-section .k-switch-on:focus .k-switch-thumb,
.home-toggle-section .k-switch-on.k-hover .k-switch-thumb,
.home-toggle-section .k-switch-on.k-state-hover .k-switch-thumb,
.home-toggle-section .k-switch-on:hover .k-switch-thumb {
    border-color: var(--secondary);
    color: var(--secondary);
    background-color: var(--secondary);
}

.home-toggle-section .k-switch-label-off {
    color: var(--primary);
}

.home-toggle-section .k-switch-off .k-switch-thumb,
.home-toggle-section .k-switch-off.k-focus .k-switch-thumb,
.home-toggle-section .k-switch-off.k-state-focused .k-switch-thumb,
.home-toggle-section .k-switch-off:focus .k-switch-thumb,
.home-toggle-section .k-switch-off.k-hover .k-switch-thumb,
.home-toggle-section .k-switch-off.k-state-hover .k-switch-thumb,
.home-toggle-section .k-switch-off:hover .k-switch-thumb {
    border-color: var(--primary);
    color: var(--primary);
    background-color: var(--primary);
}

.home-current-container {
    display: flex;
    justify-content: space-evenly;
    margin-top: 25px
}

.home-current-box {
    border: 1px solid #e6e6e6;
    border-radius: 15px;
    background-color: #fff;
    padding: 15px;
    width: 30%;
    height: auto;
}

.home-current-title {
    font-weight: bold;
    text-decoration: underline;
    margin-bottom: 5px;
    font-size: 16px;
}

.home-alert,
.home-alert-date {
    display: block;
}

.home-alert-date {
    font-size: 10px;
    text-align: right;
    margin-bottom: 10px;
}

.home-station-elevator,
.home-elevator-note {
    display: block;
}

.home-station-elevator {
    font-weight: bold;
}
.home-elevator-note {
    margin-bottom: 10px;
}

/***************************************
              Headings
****************************************/
.instructions,
.alerts-instructions,
.admin-instructions {
    padding: 5px 10px;
    margin-left: -10px;
    margin-right: -10px;
    margin-bottom: 10px;
}

.alerts-instructions {
    border-bottom: 5px solid var(--secondary);
}

.admin-instructions {
    border-bottom: 5px solid var(--tertiary);
}

.instructions h2,
.alerts-instructions h2,
.admin-instructions h2 {
    font-weight: bold;
}

.information {
    padding: 5px 10px;
    margin-left: -15px;
}

.information p {
    font-size: 1.3em;
}

/***************************************
              Sections
****************************************/

.section-header {
    background-color: var(--primary10);
    border-radius: 15px 15px 0 0;
    border-bottom: 3px solid var(--primary);
    padding: 10px;
    margin: 5px -20px 0 -20px;
}

.section-header h3 {
    margin: 0;
    font-weight: bold;
    font-size: 16px;
}

.section {
    border-radius: 0 0 15px 15px;
    border-right: 1px solid var(--primary30);
    border-left: 1px solid var(--primary30);
    border-bottom: 1px solid var(--primary30);
    padding: 10px;
    margin: 0 -20px 15px -20px;
}

/***************************************
                Forms
****************************************/

.form-horizontal {
    margin-left: 25px;
    margin-right: 25px;
}

.form-horizontal .form-group {
    margin-left: 0;
    margin-right: 0;
}

/* Chosen Fields Responsiveness */

.chosen-container {
    width: 100% !important;
    font-size: 14px;
    color: #555;
}

.chosen-container .chosen-search input[type='text'] {
    padding: 2px 4% !important;
    width: 90% !important;
    margin: 5px 2%;
}

.chosen-container .chosen-single {
    padding: 10px 1%;
}

.chosen-container .chosen-drop {
    width: 100% !important;
}

/* Chosen Fields Styling */

select.form-control + .chosen-container-multi .chosen-choices li.search-choice {
    background-image: none;
    background-color: white;
    padding: 3px 24px 3px 5px;
    margin: 0 6px 0 0;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.428571429;
    cursor: pointer;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
    -webkit-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}

select.form-control + .chosen-container .chosen-drop {
    background-color: #FFF;
    border: 1px solid #CCC;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    background-clip: padding-box;
    margin: 2px 0 0;
}

select.form-control + .chosen-container .chosen-search input[type=text] {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.428571429;
    color: #555;
    vertical-align: middle;
    background-color: #FFF;
    border: 1px solid #CCC;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    background-image: none;
}

select.form-control + .chosen-container .chosen-results {
    margin: 2px 0 0;
    padding: 5px 0;
    font-size: 14px;
    list-style: none;
    background-color: #fff;
    margin-bottom: 5px;
}

    select.form-control + .chosen-container .chosen-results li,
    select.form-control + .chosen-container .chosen-results li.active-result {
        display: block;
        padding: 3px 20px;
        clear: both;
        font-weight: normal;
        line-height: 1.428571429;
        color: #333;
        white-space: nowrap;
        background-image: none;
    }

        select.form-control + .chosen-container .chosen-results li:hover,
        select.form-control + .chosen-container .chosen-results li.active-result:hover,
        select.form-control + .chosen-container .chosen-results li.highlighted {
            color: #FFF;
            text-decoration: none;
            background-color: #428BCA;
            background-image: none;
        }

select.form-control + .chosen-container-multi .chosen-choices {
    display: block;
    width: 100%;
    min-height: 34px;
    padding: 6px;
    font-size: 14px;
    line-height: 1.428571429;
    color: #555;
    vertical-align: middle;
    background-color: #FFF;
    border: 1px solid #CCC;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    background-image: none;
}

    select.form-control + .chosen-container-multi .chosen-choices li.search-field input[type="text"] {
        height: auto;
        padding: 5px 0;
        color: #555;
        margin: 1px 12px;
    }

    select.form-control + .chosen-container-multi .chosen-choices li.search-choice {
        background-image: none;
        padding: 3px 24px 3px 5px;
        margin: 0 6px 0 0;
        font-size: 14px;
        font-weight: normal;
        line-height: 1.428571429;
        text-align: center;
        white-space: nowrap;
        vertical-align: middle;
        cursor: pointer;
        border: 1px solid #ccc;
        border-radius: 4px;
        color: #333;
        background-color: #FFF;
        border-color: #CCC;
    }

        select.form-control + .chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
            top: 8px;
            right: 6px;
        }

select.form-control + .chosen-container-multi.chosen-container-active .chosen-choices,
select.form-control + .chosen-container.chosen-container-single.chosen-container-active .chosen-single,
select.form-control + .chosen-container .chosen-search input[type=text]:focus {
    border-color: #66AFE9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 8px rgba(102, 175, 233, 0.6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 8px rgba(102, 175, 233, 0.6);
}

select.form-control + .chosen-container-multi .chosen-results li.result-selected {
    display: list-item;
    color: #ccc;
    cursor: default;
    background-color: white;
}

select.form-control + .chosen-container-multi.chosen-disabled,
select.form-control + .chosen-container-multi.chosen-disabled .chosen-choices {
    background-color: #eee;
    opacity: 1 !important;
    cursor: not-allowed;
    color: #555;
}

.chosen-container .search-field input{
    width: 100% !important;
}

/***************************************
             Telerik Grids
****************************************/

.k-grid .k-column-title {
    white-space: normal !important;
}

.k-grid-header .k-header {
    overflow: visible !important;
    white-space: normal !important;
}

.k-block, .k-content, .k-dropzone-active, .k-editor-dialog .k-tabstrip-items, .k-filter-row > th, .k-footer-template td, .k-grid td, .k-grid td.k-selected, .k-grid td.k-state-selected, .k-grid-content-locked, .k-grid-footer, .k-grid-footer-locked, .k-grid-footer-wrap, .k-grid-header, .k-grid-header-locked, .k-grid-header-wrap, .k-group, .k-group-footer td, .k-grouping-header, .k-grouping-header .k-group-indicator, .k-panel > .k-item > .k-link, .k-separator, .k-splitbar, .k-state-default, .k-state-disabled, .k-toolbar, .k-treemap-tile, .k-upload .k-action-buttons, .k-upload-files, .k-widget {
    font-size: 11px;
    line-height: 15px;
}

/***************************************
             Announcements
****************************************/
/* Highlight Failed Cells */
.redCell {
    background-color: #ffb2b2;
}
/*alert banner style*/
.notifybar {
    background-color: rgba(168, 7, 27, 0.83);
    color: white;
    /*font-weight: bold;*/
    position: absolute;
    width: 100%;
    top: 50px;
    left: 0px;
    text-align: center;
    border-bottom-width: 2px;
    border-bottom-color: #666666;
    border-bottom-style: solid;
    text-align: center;
    padding: 10px;
}

#warningbtn {
    background-color: white;
    color: black;
    border: none;
    font-weight: bold;
}

#warningbtn:hover {
    background-color: black;
    color: white;
    border: none;
}

.help-icon {
    color: var(--primary);
}
/* Buttons */

.btn-file {
    position: relative;
    overflow: hidden;
}

    .btn-file input[type=file] {
        position: absolute;
        top: 0;
        right: 0;
        min-width: 100%;
        min-height: 100%;
        font-size: 100px;
        text-align: right;
        filter: alpha(opacity=0);
        opacity: 0;
        outline: none;
        background: white;
        cursor: inherit;
        display: block;
    }



.btn {
    width: 175px !important;
    padding-left: 0px !important;
    padding-right: 0px !important;
}

.search-btn {
    width: 50px !important;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
}

    .btn-primary:hover,
    .btn-primary:active,
    .btn-primary:focus {
        background-color: var(--primary80);
        color: white;
        border-color: var(--primary80);
    }

.btn-secondary {
    background-color: var(--tertiary);
    color: white;
    border-color: var(--tertiary);
}

    .btn-secondary:hover,
    .btn-secondary:active,
    .btn-secondary:focus {
        background-color: var(--tertiary80);
        color: white;
        border-color: var(--tertiary80);
    }

.btn-sle {
    background: var(--secondary);
    color: white;
    border-color: var(--secondary);
}
    .btn-sle:hover,
    .btn-sle:active,
    .btn-sle:focus {
        background-color: var(--secondary80);
        color: white;
        border-color: var(--secondary80);
    }

.btn-link {
    color: var(--primary);
    width: auto !important;
    padding: 0;
}

    .btn-link:hover,
    .btn-link:active,
    .btn-link:focus {
        text-decoration: underline;
        color: var(--primary80);
    }

.announcement-link {
    color: var(--primary);
    font-size: 11px;
}

    .announcement-link:hover,
    .announcement-link:active,
    .announcement-link:focus {
        text-decoration: underline;
        color: var(--primary80);
        cursor: pointer;
    }

.by-train {
    background-color: var(--primary10);
}

.by-station {
    background-color: var(--primary20);
}

.system {
    background-color: var(--primary);
    color: white;
}

.instant {
    background-color: var(--primary30);
}

/***************************************
             Alerts
****************************************/

#modal-website {
    margin-left: 10px;
}

#modal-text {
    list-style-type: none;
    margin-left: -30px;
}

@media (min-width: 768px) {
    .modal-dialog {
        width: 700px;
    }
}

.modal-title {
    font-weight: bold;
    font-size: 1.2em;
    border-bottom: 2px solid var(--primary);
    margin-bottom: 10px;
}

.modal-body {
    margin-bottom: 10px;
    padding-top: 0;
}

.modal-header {
    padding-bottom: 0;
}

.modal-header,
.modal-footer {
    border: none;
}

.btn-alerts {
    background-color: var(--primary);
    color: white;
}

    .btn-alerts:hover,
    .btn-alerts:active,
    .btn-alerts:focus {
        background-color: var(--primary80);
        color: white;
    }

.alerts-link {
    color: var(--primary);
    font-size: 11px;
}

    .alerts-link:hover,
    .alerts-link:active,
    .alerts-link:focus {
        text-decoration: underline;
        color: var(--primary80);
        cursor: pointer;
    }

.alerts-link .fa {
    font-size: 14px !important;
}

#url-warning {
    display: none;
    font-size: 14px;
    color: red;
}

@media (min-width: 992px) {
    .export-btn {
        margin-left: 11.25rem;      
    }
}

@media (min-width: 1199px) {
    .export-btn {
        margin-left: 18rem; 
    }
}

/***************************************
             Admin
****************************************/

.admin-tab a {
    color: var(--primary);
}

    .admin-tab a:hover,
    .admin-tab a:active,
    .admin-tab a:focus {
        text-decoration: underline;
        color: var(--primary80);
    }

.admin-search i {
    color: var(--primary);
}

.panel-default {
    border-color: var(--primary);
}

    .panel-default > .panel-heading {
        color: white;
        background-color: var(--primary);
        border-color: var(--primary);
    }

/***************************************
             Table Styles
****************************************/
.table > tbody > tr > td,
.table > tbody > tr > th {
    border-top: none;
    border-bottom: 1px solid #eeeeee;
    padding: 10px;
}

.table > tbody > tr > th {
    border-bottom: 2px solid #aaaaaa;
}

.table {
    margin-top: 30px;
}
/*********** jqxgrid styles ***********/
.sortable-table {
    border: none !important;
}

#jqx-grid {
    z-index: 0;
    position: relative;
}

#jqxWidget {
    margin-top: 50px;
}

    #jqxWidget .jqx-widget {
        color: #777777 !important;
    }

    #jqxWidget .jqx-grid-cell,
    #jqxWidget .jqx-grid-column-header,
    #jqxWidget .jqx-grid-group-cell {
        border-right: none !important;
        border-left: none !important;
        border-top: none !important;
        border-bottom: 1px solid #eeeeee;
    }

    #jqxWidget .jqx-grid-column-header {
        font-weight: bold;
        padding-bottom: 5px;
        border-bottom: none !important;
    }

    .jqx-widget .jqx-grid-column-header {
        font-weight: bold;
    }
    

    #jqxWidget .jqx-widget-header {
        background: none !important;
        border-bottom-width: 2px !important;
        top: -15px;
    }

#jqxWidget .jqx-button,
#jqxWidget .jqx-fill-state-normal,
#jqxWidget input[type=text].jqx-input {
    border-radius: 0;
}

#jqxWidget .jqx-scrollbar-state-normal {
    background: none;
    border: none !important;
}

#jqxWidget .jqx-grid-pager {
    border-top: none;
}

.jqx-widget-content {
    font-size: 11px !important;
    font-family: Arial !important;
}

.jqx-grid-cell-left-align {
    margin-left: 2px;
    padding: 0 5px;
}

.jqx-menu {
    height:auto !important;
}


.gridlink {
    font-size: 11px;
    margin-top: 12px;
}

.full-width {
    width: 100%;
}

.half-width {
    width: 49%;
}

.center {
    /*margin: 0 auto;*/
    text-align: center;
}

.jqx-grid-column-header > div > div.iconscontainer {
    margin-top: 0 !important;
}

.jqx-grid-column-header > div > div {
    margin-top: 0px !important;
    line-height: 20px !important;
}

.jqx-widget .jqx-grid-column-header {
    white-space: normal !important;
}

    .jqx-widget .jqx-grid-column-header > div > div > span {
        line-height: 20px !important;
    }

.jqx-grid-column-header > div > div > span[style] { 
    white-space: normal;
}



/************Circles************/

.circleBase {
    border-radius: 50%;
    behavior: url(PIE.htc); /* remove if you don't care about IE8 */
    width: 50px;
    height: 50px;
    font-size: 15px;
    font-family: helvetica;
    font-weight: bolder;
    text-align: center;
    padding-top: 10px;
}

.typeYellow {
    background: #ffeb3b;
    border: 3px solid #ffeb3b;
    color: black;
}

.typeRed {
    background: #FF4238;
    border: 3px solid #FF4238;
    color: white;
}

.typePurple {
    background: #9c27b0;
    border: 3px solid #9c27b0;
    color: white
}

.typeBlue {
    background: #3f51b5;
    border: 3px solid #3f51b5;
    color: white;
}

.typeLightBlue {
    background: #2196f3;
    border: 3px solid #2196f3;
    color: white;
}

.typeTeal {
    background: #009688;
    border: 3px solid #009688;
    color: white;
}

.typeGreen {
    background: #8bc34a;
    border: 3px solid #8bc34a;
    color: black;
}

.typeOrange {
    background: #ff9800;
    border: 3px solid #ff9800;
    color: black;
}

.alert-info {
    color: white;
    background-color: #0081c6;
    border-color: #0081c6;
}

.circleBase2 {
    border-radius: 50%;
    behavior: url(PIE.htc); /* remove if you don't care about IE8 */
    width: 60px;
    height: 60px;
    font-size: 25px;
    font-family: helvetica;
    font-weight: bolder;
    text-align: center;
    padding-top: 10px;
}







/* Dropdowns */

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    z-index: 999;
    /*min-width: 175px;*/
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

    .dropdown-content a {
        color: black;
        background-color: #fff;
        border: 1px solid #aaaaaa;
        border-top: none;
        padding: 10px 10px;
        text-decoration: none;
        display: block;
        z-index: 10;
    }

        .dropdown-content a:hover,
        .dropdown-content a:focus,
        .dropdown-content a:active {
            background-color: #ddd;
        }

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-menu > li > a {
    padding: 10px 20px !important;
}

i:hover {
    cursor: pointer;
}

/* Countdown */

#countdown {
    text-align: center;
    font-size: 2.5em;
    margin-top: 15px;
    font-weight: bold;
    color: var(--tertiary);
}

/****** Real Time Predictions ******/
#predictionTable {
    border: 1px solid rgba(178,175,187,.6);
    margin: 10px 50px;
}

    #predictionTable th {
        text-align: left;
        border-left: 0;
        border-right: 0;
        font-weight: bold;
        background-color: #ffffff;
        border-bottom: 1px solid rgba(178, 175, 187, .6) !important;
        border-collapse: collapse;
        white-space: normal;
        text-transform: none;
        vertical-align: bottom;
    }

    #predictionTable th, #predictionTable td {
        padding: 10px 8px;
        border: 1px solid rgba(178,175,187,.6)
    }

    #predictionTable tr:nth-child(odd) {
        background: #F5F5F5;
    }

    #predictionTable td:not(:last-child) {
        border-right: 1px solid rgba(178, 175, 187, .6);
    }
.severely-delayed {
    color: var(--secondary);
}

.delayed {
    color: var(--warningyellow);
}

.early {
    color: var(--tertiary);
}

.timestamp {
    margin-bottom: 8px;
    margin-left: 20px;
    color: #545361;
    font-size: 13px;
    position: relative;
}

    .timestamp .refresh-icon {
        top: 1px;
        display: none;
        height: 20px;
        position: absolute;
        left: 250px;
        width: 20px;
    }

.refresh-icon.visible {
    visibility: visible;
    animation: rotate 2s linear infinite;
}

.refresh-icon.hidden {
    visibility: hidden;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}