.temporarilyHighlightPathClass {
    color: grey;
    font-size: 8px;
    width: 150px;
}

#logo {
    color:  white;
    background-color: rgb(68, 138, 255);
    position: fixed;
    left: -50px;
    top: 10%;
    height:  25px;
    z-index: 9;
    opacity: 1;
    border: thin solid white;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    vertical-align: middle;
    padding-left:  10px;
    padding-right: 10px;
    font-size: 18px;
    z-index: 999;
}


/* Star rating ---------------------------------------------------------------- */
.starRating:not(old){
    display        : inline-block;
    width          : 7.5em;
    height         : 1.5em;
    overflow       : hidden;
    vertical-align : bottom;
}

.starRating:not(old) > input{
    margin-right : -100%;
    opacity      : 0;
}

.starRating:not(old) > label{
    display         : block;
    float           : right;
    position        : relative;
    background      : url('../img/box.svg');
    background-size : contain;
}

.starRating:not(old) > label:before{
    content         : '';
    display         : block;
    width           : 1.5em;
    height          : 1.5em;
    background      : url('../img/box-filled.svg');
    background-size : contain;
    opacity         : 0;
    transition      : opacity 0.2s linear;
}

.starRating:not(old) > label:hover:before,
.starRating:not(old) > label:hover ~ label:before,
.starRating:not(:hover) > :checked ~ label:before{
    opacity : 1;
}
/* END Star rating ---------------------------------------------------------------- */

.fadeToClear {
  opacity: 0;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}


/* Slideout menu ------------------------------------------------------------------ */
#slideout {
    position: fixed;
    top: 60%;
    right: 0;
    width: 30px;
    height: 55px;
    padding: 12px 0;
    text-align: center;
    background: #bdbdbd;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-border-radius: 5px 0 0 5px;
    -moz-border-radius: 5px 0 0 5px;
    border-radius: 5px 0 0 5px;

    visibility: hidden;
    z-index: 9999;
}
#slideout_inner {
    position: fixed;
    top: 60%;
    right: -256px;
    background: #efefef;
    border: 3px solid #bdbdbd;
    color: #666 ;
    width: 200px;
    padding: 25px;
    height: 150px;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
    text-align: left;
    -webkit-border-radius: 0 0 0 5px;
    -moz-border-radius: 0 0 0 5px;
    border-radius: 0 0 0 5px;
}
#slideout_inner textarea {
    width: 190px;
    height: 100px;
    margin-bottom: 6px;
}
#slideout:hover {
    right: 250px;
}
#slideout:hover #slideout_inner {
    right: 0;
}

#title {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    background-color: #bdbdbd;
    color: white;
    font-weight: bold;
}

/* Slide in for initial menu tab-------------------------------------------------------------- */
.slide-in-right {
    -webkit-animation: slide-in-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
            animation: slide-in-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
@-webkit-keyframes slide-in-right{0%{-webkit-transform:translateX(1000px);transform:translateX(1000px);opacity:0}100%{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}}@keyframes slide-in-right{0%{-webkit-transform:translateX(1000px);transform:translateX(1000px);opacity:0}100%{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}}
/* END Slideout menu ------------------------------------------------------------------ */



/* Matching routes table */ 

.matchingRoutes th {
    background-color: #ddd;
    padding-left: 5px;
    padding-right: 5px;
    line-height: 2;
}

.matchingRoutes tr {
    line-height: 0.7;
}

.matchingRoutes tbody tr:hover {
    background-color: #ddd !important;
}

.matchingRoutes tbody tr:nth-child(even) {
    background-color: #f3f3f3; /* Light gray background for even rows */
}

.matchingRoutes tbody tr:nth-child(odd) {
    background-color: #fff; /* Light gray background for even rows */
}





/* Non matching routes for debugging */
.nonMatchingRoutes {
    border: 2px solid #2390FF;
    border-radius: 3px;
    background-color: #fff;
    font-size: 12px;
}

.nonMatchingRoutes th {
    background-color: #2390FF;
    color: rgba(255,255,255,0.66);
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.nonMatchingRoutes td {
    background-color: #f9f9f9;
}

.nonMatchingRoutes th, td {
    /*min-width: 120px;*/
    padding: 10px 20px;
}

.nonMatchingRoutes th.active {
    color: #fff;
}

.nonMatchingRoutes th.active .arrow {
    opacity: 1;
}

.arrow {
    display: inline-block;
    vertical-align: middle;
    width: 0;
    height: 0;
    margin-left: 5px;
    opacity: 0.66;
}

.arrow.asc {
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 4px solid #fff;
}

.arrow.dsc {
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #fff;
}



.routeLabel {
    color: white;
    font-size: 10px;
    padding: 5px;
    margin: 2px;
    opacity: 0.75;
}

.routeSummaryLine:hover {
    background-color: #efefef;
}

