﻿
/* Style the buttons that are used to open and close the accordion panel */
.accordionMain {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
    font-weight: bold;
}

.accordionRoutes {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 12px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
}

.accordionParadasList {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 8px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
}

    /* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
    .active, .accordionMain:hover, .accordionRoutes:hover, .accordionParadasList:hover {
        background-color: #ccc;
    }

/* Style the accordion panel. Note: hidden by default */
.panel {
    padding: 0 18px;
    background-color: white;
    display: none;
    overflow: hidden;
}

.accordionMain:after, .accordionRoutes:after, .accordionParadasList:after {
    content: '\02795'; /* Unicode character for "plus" sign (+) */
    font-size: 13px;
    color: #777;
    float: right;
    margin-left: 5px;
}

.active:after {
    content: "\2796"; /* Unicode character for "minus" sign (-) */
}

/* -------------------------- STYLE SCHEDULE ROUTE START -------------------------- */

.scheduleCircleStart {
    height: 20px;
    width: 20px;
    background-color: #f00;
    border-radius: 50%;
    margin-top: 10px;
    margin-left: 5px;
}

.scheduleCircleEnd {
    height: 20px;
    width: 20px;
    background-color: #f00;
    border-radius: 50%;
    margin-top: -10px;
    margin-left: 5px;
}

.scheduleLineStart {
    height: 40px;
    width: 8px;
    background-color: #f00;
    display: block;
    margin-left: 11px;
    margin-top: -10px;
}

.scheduleLineEnd {
    height: 20px;
    width: 8px;
    background-color: #f00;
    display: block;
    margin-top: -30px;
    margin-left: 11px;
}

.scheduleLine {
    height: 60px;
    width: 8px;
    background-color: #f00;
    display: block;
    margin-left: 11px;
    margin-top: -25px;
}

.scheduleLineHorizontal {
    height: 10px;
    width: 10px;
    background-color: #f00;
    display: block;
    margin-left: 15px;
    margin-top: 10px;
}

.scheduleTable table, td {
    border: none !important;
    padding: 0px !important;
    border-right: none !important;
    border-bottom: none !important;
}

/* -------------------------- STYLE SCHEDULE ROUTE END -------------------------- */

.scheduleStations {
    font-weight: bold;
    font-size: small;
}

    .scheduleStations:hover {
        cursor: pointer;
        text-decoration: underline;
    }


.ui-autocomplete {
    max-height: 200px;
    overflow-y: auto;
    /* prevent horizontal scrollbar */
    overflow-x: hidden;
    /* add padding to account for vertical scrollbar */
    padding-right: 20px;
}