﻿/*GENERAL*/
html, body {
    height: 100%;
}

@font-face {
    font-family: "Roboto";
    src: url('../fonts/Roboto-Regular.ttf') format('truetype');
}

@media (max-width: 768px) {
    .schedule-map {
        height: 250px !important;
    }
}

@media (max-width: 768px) {
    .schedules-schedule-info {
        grid-template-columns: 1fr !important;
    }
}

body {
    font-family: "Roboto" !important;
    /*padding-bottom: 20px;*/
}

.footer {
    position: absolute;
    height: 30px;
    padding-left: 5px;
    left: 50px;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 100;
}

    .footer p {
        font-size: 13px;
        vertical-align: middle;
        margin: 5px 0 0 0;
    }


::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 5px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: #555;
    }

.list-group-item:nth-of-type(odd) {
    background-color: #f8f8f8;
}

.list-group-item:nth-of-type(even) {
    background-color: white;
}

.list-group-item:nth-of-type(odd):active {
    transition: background-color linear 0.25s;
    background-color: #ededed;
}

.list-group-item:nth-of-type(even):active {
    transition: background-color linear 0.25s;
    background-color: #f8f8f8;
}

.schedules-schedule-stop-info div:nth-of-type(odd) {
    transition: background-color linear 0.25s;
    background-color: #f4f4f4;
}

.schedules-schedule-stop-info div:nth-of-type(even) {
    transition: background-color linear 0.25s;
    background-color: white;
}

.schedules-schedule-passing-info-list div:nth-of-type(odd) {
    transition: background-color linear 0.25s;
    background-color: #f4f4f4;
}

.schedules-schedule-passing-info-list div:nth-of-type(even) {
    transition: background-color linear 0.25s;
    background-color: white;
}

.schedules-schedule-passing-info-list div.schedules-trip-passing-list-value {
    font-style: italic;
}

.schedules-schedule-passing-info-list div.schedules-trip-passing-list-value.first-passing {
    font-style: normal;
    font-weight: bold;
}
/*-------------------------------*/

/*COMPONENT SPECIFIC*/
.layout-content {
    transition: padding-left linear 0.1s;
    width: 100%;
    padding-left: 50px;
}

    .layout-content.menu-open {
        padding-left: 250px;
    }

.recenter-button, .switch-direction-button {
    background: white;
    border: 2px solid #ffd138;
    border-radius: 50px;
    height: 40px;
    width: 40px;
    color: #000;
}

div.next-departures-view, div.plan-route-view {
    overflow: hidden;
    color: #000;
}

.stop-passing-info, .plan-route-info {
    position: relative;
    height: 100%;
    width: 100%;
}

.stop-passing-info-panel {
    position: absolute;
    display: flex;
    right: 100px;
    left: 100px;
    top: 100px;
    height: 0px;
    z-index: 25;
}

.passings-list-passing-info-row {
    --bs-gutter-x: 0 !important;
}

.passings-list-destination-info-col {
    max-width: 55% !important;
}


.stop-passing-info-search-bar-panel {
    flex: 1 1 auto;
}

.stop-passing-info-search-bar, .plan-route-info-search-bar {
    pointer-events: none;
    position: relative;
}

.plan-route-info-panel {
    position: absolute;
    flex-direction: column;
    flex-wrap: wrap;
    right: 100px;
    left: 100px;
    top: 100px;
    height: 0px;
    z-index: 25;
}

.plan-route-form-panel {
    display: flex;
    flex-wrap: wrap;
    height: 90px;
    flex: 1 1 auto;
}

.plan-route-form-panel-img {
    display: flex;
    height: inherit;
    align-items: center;
}

.plan-route-stop-selection-panel {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    justify-content: space-between;
    height: inherit;
}

.plan-route-filters-panel {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    margin-left: 5px;
    margin-right: 5px;
    z-index: 30;
}

.plan-route-filters-panel-dropdowns {
    height: 90px;
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    justify-content: space-between;
}

.plan-route-filters-select-date-panel {
    margin-top: 10px;
    align-self: center;
}

    .plan-route-filters-select-date-panel .DatePicker input.DatePicker__input {
        display: none;
    }

.plan-route-plan-route-button-panel {
    flex: 2 1 auto;
    display: flex;
    height: inherit;
    align-items: end;
}

    .plan-route-plan-route-button-panel .btn {
        background: #00ab4c;
        border-radius: 25px;
        border: 1px solid #3167a4;
    }

        .plan-route-plan-route-button-panel .btn:hover,
        .plan-route-plan-route-button-panel .btn:focus,
        .plan-route-plan-route-button-panel .btn:active {
            background: #00642d;
            box-shadow: none;
        }

.plan-route-info-search-bar-panel {
    flex: 1 1 auto;
}

    .plan-route-info-search-bar-panel .search-bar-results-panel {
        position: absolute;
        z-index: 31;
    }

.plan-route-filter-button, .schedules-provider-button, .schedules-line-button, .schedules-direction-button, .schedules-daytype-button {
    background: white !important;
    color: #000 !important;
    border-radius: 25px !important;
    border: 2px solid #4877FF;
    width: 100%;
}

    .plan-route-filter-button.btn, .schedules-provider-button.btn, .schedules-line-button.btn, .schedules-direction-button.btn, .schedules-daytype-button.btn {
        display: flex;
        justify-content: space-between;
        align-items: center;
        box-shadow: none !important;
    }

.plan-route-time-picker-done-button {
    text-align: center;
    padding: 10px 0;
}

.plan-route-trips-list-trip-header-route-info, .plan-route-trips-list-trip-header-duration-info {
    display: flex;
    flex-direction: column;
}

.plan-route-trips-list-trip-header-changes-info {
    display: flex;
    align-items: center;
    overflow-x: auto;
}

.plan-route-trips-list-trip-header-duration-info {
    align-items: start;
}

.plan-route-detailed-view-trip-info {
    margin-top: 20px;
    margin-left: 61px;
    overflow-y: auto;
}

.search-bar {
    pointer-events: all;
    border-radius: 25px;
    border: 2px solid #ffd138;
    height: 40px;
    width: 100%;
    text-indent: 12px;
    padding-right: 40px;
    color: #000;
}

input.search-bar:focus-visible {
    outline: none;
}

.search-bar-cancel-icon {
    pointer-events: all;
    position: absolute;
    right: 10px;
    top: 7px;
    background: transparent;
    border: 0px;
}

.next-departures-search-bar-results-list, .plan-route-search-bar-results-list {
    pointer-events: all;
    overflow-y: auto;
    width: 50%;
    max-width: 500px;
    max-height: 150px;
    cursor: pointer;
}

.plan-route-search-bar-results-list {
    min-width: 100%;
}

.search-bar-result-info {
    min-height: 24px;
    display: flex;
}

    .search-bar-result-info img {
        margin-right: 5px;
        align-self: center;
    }

.map-container {
    height: calc(100vh);
    width: 100%;
    z-index: 20;
    cursor: grab !important;
}

.passing-info-panel, .plan-route-trips-panel {
    margin-top: 42px;
    width: 50%;
    max-width: 500px;
    color: #000;
}

.passing-info-panel-header, .plan-route-trips-panel-header {
    background-color: #fff;
    height: 42px;
    padding: 8px 16px;
}

.passing-info-panel-header-provider-info,
.trip-info-panel-header-provider-info,
.line-info-panel-header-provider-info,
.more-schedules-panel-header-provider-info {
    display: flex;
}

    .passing-info-panel-header-provider-info img {
        margin-right: 5px;
    }


    .trip-info-panel-header-provider-info img,
    .line-info-panel-header-provider-info img,
    .more-schedules-panel-header-provider-info img {
        margin-right: 5px;
        align-self: center;
    }

.trip-info-panel-header-trip-info,
.line-info-panel-header-trip-info,
.more-schedules-panel-header-trip-info {
    display: flex;
    flex-direction: column;
}

.line-info-panel-header-trip-delay {
    display: flex;
    flex-direction: column;
    color: red;
}

.passings-list, .trips-list {
    overflow-y: auto;
    max-height: 300px;
    cursor: pointer;
    border-radius: 0px !important;
}

.rt-passing-info {
    color: #a4c43a;
}

.rt-passing-info-gif {
    max-height: 24px;
}

.justify-content-right {
    justify-content: right;
}

.refresh-button {
    float: right;
    cursor: pointer;
}

    .refresh-button:hover {
        background-color: #bebcbc;
    }


.trip-info-container,
.line-info-container,
.more-schedules-container,
.route-detailed-view-container {
    padding: 0px !important;
}

    .trip-info-container .row,
    .line-info-container .row,
    .more-schedules-container .row,
    .route-detailed-view-container .row {
        margin: 0px;
    }

div.trip-info-container-trip-col,
div.line-info-container-trip-col,
div.more-schedules-container-passings-col,
div.route-detailed-view-container-passings-col {
    display: flex;
    flex-direction: column;
    padding: 40px 0 0 0;
    height: calc(100vh - 20px);
}

    div.trip-info-container-trip-col div.trip-info-header,
    div.line-info-container-trip-col div.line-info-header,
    div.more-schedules-container-passings-col div.more-schedules-header {
        width: 100%;
    }

        div.trip-info-container-trip-col div.trip-info-header div.trip-info-header-toolbar,
        div.trip-info-container-map-col div.trip-info-header div.trip-info-header-toolbar {
            display: flex;
        }

            div.trip-info-container-trip-col div.trip-info-header div.trip-info-header-toolbar div.trip-info-small-screen-tabs,
            div.trip-info-container-map-col div.trip-info-header div.trip-info-header-toolbar div.trip-info-small-screen-tabs {
                flex: 1 1 auto;
                display: flex;
                justify-content: end;
                align-items: center;
            }

    div.trip-info-container-trip-col div.trip-info-panel,
    div.line-info-container-trip-col div.line-info-panel,
    div.more-schedules-container-passings-col div.more-schedules-panel {
        flex: 1 1 auto;
        display: flex;
        flex-direction: column;
        width: 100%;
        padding-top: 20px;
    }

    div.trip-info-container-trip-col div.trip-info-panel-header,
    div.trip-info-container-map-col div.trip-info-panel-header,
    div.line-info-container-trip-col div.line-info-panel-header,
    div.line-info-container-map-col div.line-info-panel-header,
    div.more-schedules-container-passings-col div.more-schedules-panel-header,
    div.more-schedules-container-map-col div.more-schedules-panel-header {
        flex: 1 1 auto;
        width: 100%;
        padding-top: 20px;
        padding-left: 20px;
        padding-right: 20px;
        color: #000;
    }

    div.trip-info-container-trip-col div.trip-info-panel div.trip-info-passings-list,
    div.line-info-container-trip-col div.line-info-panel div.line-info-passings-list,
    div.more-schedules-container-passings-col div.more-schedules-panel div.more-schedules-passings-list {
        flex: 1 1 auto;
        margin-top: 20px;
        padding-left: 20px;
        padding-right: 20px;
        line-height: 30px;
    }

.trip-info-panel,
.line-info-panel,
.more-schedules-panel {
    overflow: hidden;
}

.trip-info-back-button,
.line-info-back-button,
.more-schedules-back-button,
.plan-route-detailed-view-back-button {
    margin-left: 20px;
}

.trip-info-stops-title,
.line-info-stops-title,
.more-schedules-title {
    padding-left: 20px;
    color: #000;
}

.trip-info-passings-list,
.line-info-passings-list {
    overflow-y: auto;
    cursor: pointer;
    color: #000;
}

    .trip-info-passings-list div.trip-info-passing-row:nth-of-type(odd),
    .line-info-passings-list div.row:nth-of-type(odd),
    .more-schedules-passings-list div.row:nth-of-type(odd) {
        background-color: #f8f8f8;
    }

    .trip-info-passings-list div.trip-info-passing-row:nth-of-type(even),
    .line-info-passings-list div.row:nth-of-type(even),
    .more-schedules-passings-list div.row:nth-of-type(even) {
        background-color: white;
    }

    .trip-info-passings-list div.trip-info-passing-row:nth-of-type(odd):active,
    .line-info-passings-list div.row:nth-of-type(odd):active {
        transition: background-color linear 0.25s;
        background-color: #ededed;
    }

    .trip-info-passings-list div.trip-info-passing-row:nth-of-type(even):active,
    .line-info-passings-list div.row:nth-of-type(even):active {
        transition: background-color linear 0.25s;
        background-color: #f8f8f8;
    }

div.trip-info-passing-row {
    display: flex;
}

    div.trip-info-passing-row div.trip-info-passing-icon {
        flex: 0 0 25px;
    }

    div.trip-info-passing-row div.trip-info-passing-stop {
        flex: 1 1 auto;
        display: flex;
        justify-content: space-between;
        min-width: 0;
    }

    div.trip-info-passing-row div.trip-info-passing-time {
        flex: 0 0 50px;
        display: flex;
        justify-content: end;
        white-space: nowrap;
        font-style: italic;
    }

    div.trip-info-passing-row:first-child div.trip-info-passing-time {
        font-style: normal;
        font-weight: bold;
    }

div.trip-info-container-map-col,
div.line-info-container-map-col,
div.more-schedules-container-map-col,
div.route-detailed-view-container-map-col {
    padding-right: 0;
    padding-left: 0;
    height: calc(100vh - 20px);
}

.trip-info-small-screen-tabs,
.line-info-small-screen-tabs,
.more-schedules-small-screen-tabs,
.route-detailed-view-small-screen-tabs {
    float: right;
    display: none;
    visibility: hidden;
}

.trip-info-small-screen-tabs-link-button,
.line-info-small-screen-tabs-link-button,
.more-schedules-small-screen-tabs-link-button,
.route-detailed-view-small-screen-tabs-link-button {
    color: gray !important;
    text-decoration: none !important;
}

    .trip-info-small-screen-tabs-link-button:hover,
    .trip-info-small-screen-tabs-link-button:focus,
    .trip-info-small-screen-tabs-link-button:active,
    .line-info-small-screen-tabs-link-button:hover,
    .line-info-small-screen-tabs-link-button:focus,
    .line-info-small-screen-tabs-link-button:active,
    .more-schedules-small-screen-tabs-link-button:hover,
    .more-schedules-small-screen-tabs-link-button:focus,
    .more-schedules-small-screen-tabs-link-button:active,
    .route-detailed-view-small-screen-tabs-link-button:hover,
    .route-detailed-view-small-screen-tabs-link-button:focus,
    .route-detailed-view-small-screen-tabs-link-button:active {
        box-shadow: none !important;
    }

.more-schedules-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 100%;
    padding: 15px 20px 0px 20px;
}

    .more-schedules-filters > div {
        margin-top: 5px;
    }

.more-schedules-passings-list {
    overflow-y: auto;
    color: #000;
}

.more-schedules-date-picker-input, .more-schedules-time-filter, .plan-route-date-picker-input {
    border-radius: 25px;
    border: 2px solid #ffd138 !important;
    cursor: pointer;
    width: 200px;
    height: 40px;
}

    .more-schedules-date-picker-input:focus-visible, .plan-route-date-picker-input:focus-visible {
        outline: none;
    }


    .more-schedules-time-filter .btn {
        color: #979797;
        background-color: white !important;
        border-radius: 25px;
        border: none;
        font-size: 12px;
        height: 35px;
        width: 100%
    }

        .more-schedules-time-filter .btn:hover, .more-schedules-time-filter .btn:active, .more-schedules-time-filter .btn:focus {
            color: #979797 !important;
            background-color: white !important;
            border: none !important;
            outline: none !important;
            box-shadow: none !important;
        }

.more-schedules-time-filter-panel {
    border-radius: 25px;
    margin-top: 20px;
    margin-left: -50px;
    padding: 20px;
    position: absolute;
    box-shadow: 0 1em 4em rgb(0 0 0 / 7%);
    width: 300px;
    z-index: 25;
    background: white;
}

.more-schedules-time-filter-panel-time-pickers {
    display: flex;
    justify-content: space-around;
}

    .more-schedules-time-filter-panel-time-pickers div.show.dropdown button {
        background-color: transparent;
        color: #979797;
    }

.more-schedules-time-filter-panel-buttons {
    margin-top: 5px;
    text-align: end;
}

.more-schedules-time-filter-panel .dropdown-menu.show {
    overflow-y: auto;
    max-height: 150px;
}

.schedules-panel {
    padding: 2rem 20px 10px 20px;
    display: flex;
    flex-direction: column;
    height: calc(100vh - 30px);
}

.schedules-provider-dropdown-list, .schedules-line-dropdown-list, .schedules-direction-dropdown-list, .schedules-daytype-dropdown-list {
    padding: 2px !important;
    overflow: auto;
    max-height: 200px;
    width: 100%;
    cursor: pointer;
}

.schedules-provider-dropdown-list-option {
    height: 100%;
    vertical-align: middle;
}

.schedules-schedule-info {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    align-items: stretch;
}

.schedules-schedule-trip-info {
    display: flex;
    overflow: auto;
    line-height: 36px;
}

.schedules-schedule-stop-info {
    left: 0;
    position: sticky;
    font-weight: bold;
}

    .schedules-schedule-stop-info div {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        border-right: 1px solid #c2d2df;
        border-bottom: 1px solid #c2d2df;
        padding-left: 5px;
        padding-right: 5px;
        color: #000;
    }

.schedules-schedule-passing-info {
    display: flex;
    height: fit-content;
}

.schedules-schedule-passing-info-list {
    cursor: pointer;
}

    .schedules-schedule-passing-info-list div {
        padding-left: 12px;
        padding-right: 12px;
        border-bottom: 1px solid #c2d2df;
        border-left: 1px solid #c2d2df;
        text-align: center;
        color: #000;
    }

    .schedules-schedule-passing-info-list:hover div {
        background-color: #dfdfdf;
    }

    .schedules-schedule-passing-info-list:first-child div {
        border-left: 0px;
    }

.schedules-schedule-exception-info {
    max-height: 100px;
}

.schedules-schedule-exception-info-list {
    max-height: 80px;
    overflow-y: auto;
    color: #000;
}

div.schedules-lines-form {
    display: flex;
}

    div.schedules-lines-form div.dropdown {
        flex: 1 1 auto;
        min-width: 0;
    }

    div.schedules-lines-form div.download-button {
        flex: 0 0 150px;
        display: flex;
        justify-content: end;
    }

        div.schedules-lines-form div.download-button button.btn.disabled,
        div.schedules-lines-form div.download-button button.btn:disabled {
            cursor: not-allowed;
        }

.not-found-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: calc(100vh - 30px);
    background: #dadada;
}

.not-found-image {
    margin-left: 90px;
}

.page-not-found-text {
    color: #000;
    font-weight: bold;
    text-transform: uppercase;
    font-size: x-large;
}

/*REACT MODERN DATE PICKER*/
.DatePicker {
    z-index: 10 !important;
}

.DatePicker__calendarArrow {
    display: none;
}

.Calendar {
    /*Highlight weekends color*/
    --cl-color-error: #a4c43a !important;
}

/*-------------------------------*/

/*STYLE*/
.margin-top-0 {
    margin-top: 0px;
}

.margin-right-5 {
    margin-right: 5px;
}

.margin-left-5 {
    margin-left: 5px !important;
}

.margin-bottom-10 {
    margin-bottom: 10px;
}

.no-padding {
    padding: 0px !important;
}

.padding-right-5 {
    padding-right: 5px;
}

.padding-left-5 {
    padding-left: 5px;
}

.padding-top-10 {
    padding-top: 10px;
}

.padding-bottom-10 {
    padding-bottom: 10px;
}

.white-space-no-wrap {
    white-space: nowrap;
}

.text-align-center {
    text-align: center;
}

.text-align-end {
    text-align: end;
}

.text-color-placeholder {
    color: #a4a4a4;
}

.orange-text {
    color: #a4c43a !important;
}

.yellow-text {
    color: #ffd138 !important;
}

.rotate-90 {
    transform: rotate(90deg);
}

.display-contents {
    display: contents;
}

.width-100 {
    width: 100%;
}

.width-95 {
    width: 95%;
}

.overflow-x-clip {
    overflow-x: clip;
}
/*-------------------------------*/

/*MEDIA*/
@media(max-width: 367px) {
    .schedules-schedule-info {
        font-size: 12px;
    }
}

@media(max-width: 575px) {
    .stop-passing-info-panel {
        left: 10px;
        right: 10px;
    }

    .passing-info-panel {
        max-width: 310px;
    }

    .passing-info-panel-header {
        padding-left: 2px;
        padding-right: 2px;
    }

    .passing-info-panel-header-provider-info {
        max-width: 280px;
    }

    .more-schedules-filters {
        flex-direction: unset !important;
        justify-content: center !important;
    }

    .plan-route-stop-selection-panel {
        width: 90% !important;
    }

    .plan-route-filters-panel {
        width: 100%;
        height: 50px;
    }

    .plan-route-plan-route-button-panel {
        margin-left: 20px;
    }

    .plan-route-trips-panel {
        margin-top: 112px !important;
    }

    div.schedules-lines-form div.download-button {
        flex: 0 0 60px;
    }

        div.schedules-lines-form div.download-button button span.text {
            display: none;
        }

    .page-not-found-text {
        font-size: large;
    }

    .not-found-image {
        height: 250px !important;
        margin-left: 45px !important;
    }
}

@media(max-width: 767px) {
    .trip-info-container-map-col {
        display: flex;
        flex-direction: column;
    }

        .trip-info-container-map-col .map-container,
        .line-info-container-map-col .map-container,
        .more-schedules-container-map-col .map-container,
        .route-detailed-view-container-map-col .map-container {
            flex: 1 1 auto;
            position: relative !important;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            height: unset;
        }

    .trip-info-container-map-col,
    .line-info-container-map-col,
    .more-schedules-container-map-col,
    .route-detailed-view-container-map-col {
        padding: 40px 0 0 0;
    }

    .trip-info-container-trip-col,
    .line-info-container-trip-col,
    .more-schedules-container-passings-col,
    .route-detailed-view-container-passings-col {
        width: 100% !important;
    }

    .trip-info-small-screen-tabs,
    .line-info-small-screen-tabs,
    .more-schedules-small-screen-tabs,
    .route-detailed-view-small-screen-tabs {
        display: block;
        visibility: visible;
    }

    .route-detailed-view-small-screen-tabs {
        padding-right: 20px;
    }

    .more-schedules-filters {
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        height: 100px;
    }

    .more-schedules-time-filter-panel {
        align-self: center;
    }

    .plan-route-info-panel {
        left: 10px;
        right: 10px;
    }

    .not-found-image {
        height: 375px;
        margin-left: 67.5px;
    }
}

@media(max-width: 1023px) {
    .next-departures-search-bar-results-list {
        width: 100%;
    }

    .passing-info-panel {
        width: 100%;
    }

    .plan-route-stop-selection-panel {
        width: 95%;
    }

    .plan-route-filters-panel {
        margin-left: 20px;
    }

    .plan-route-filters-panel-dropdowns {
        justify-content: start !important;
        margin-top: 10px;
    }

    .plan-route-plan-route-button-panel {
        flex: none;
        align-items: start;
        margin-top: 10px;
    }

    .plan-route-trips-panel {
        width: 100%;
        margin-top: 62px;
    }
}

/*-------------------------------*/

/*GUIMABUS*/

.contact-input {
    border-radius: 25px !important;
    border: 2px solid #ffd138 !important;
}

.btn-primary {
    color: #fff;
    background-color: #ffd138 !important;
    border-color: #aab627 !important;
}

.dropdown-item {
    color: #000 !important;
}

.list-group-item {
    color: #000 !important;
}

.ticket-office-description {
    white-space: pre-wrap;
    background-color: #f8f8f8;
    border: 1px solid rgba(0, 0, 0, 0.125);
    line-height: 28px;
    padding: 8px 14px;
    cursor: auto !important;
}

.opt-brand {
    padding: 0 5px;
    position: fixed;
    left: 0;
    bottom: 0;
    color: #333;
    background: rgba(255, 255, 255, 0.7);
    z-index: 1000;
    font-size: 11px;
}

    .opt-brand a {
        color: #0078A8;
        text-decoration: none;
    }

.schedule-map {
    height: 100%;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    border: 1px solid #e0e0e0;
}
