﻿/* General styles */

.section-title {
    padding: 20px;
    margin: 20px 0;
    border: 1px solid #fff;
    border-left-width: 5px;
    border-radius: 3px;
}

.strong-text {
    color: #0a1c5c;
    font-size: 12px;
    font-weight: bold !important;
}

.centered-right-arrow {
    background-image: url(../Images/transparent_arrow_30x60px.png);
    background-position: center;
    background-repeat: no-repeat;
}

.validation-msg {
    color: red;
}

.form-control.input-validation-error {
    border-color: red;
}

.wait {
    cursor: wait;
}

/* Used by SingleChoiceSelection, MultiChoiceSelection and YesNoSelection Editor Templates */

.selection-item label,
.selection-item input[type="radio"],
.selection-item span {
    vertical-align: middle;
}

/* Timetable Summary */

table.timetable_summary {
    width: 100%;
    border: 1px solid #DDD;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 13.3333px;
}

    table.timetable_summary td {
        vertical-align: top;
    }

    table.timetable_summary thead {
        background-color: #F5F5F5;
        font-weight: bold;
    }

    table.timetable_summary tr:not(.heading) {
        color: black;
        border-top: 1px solid #DDD;
    }

    table.timetable_summary td.label_cell {
        width: 25%;
        font-weight: 700;
    }

    table.timetable_summary td.warning_cell {
        font-size: 12px;
        color: red;
    }

    table.timetable_summary td.content_cell {
        padding-right: 8px;
    }

    table.timetable_summary a:hover {
        text-decoration: underline;
    }

    table.timetable_summary td.download_cell a:hover {
        text-decoration: none;
    }

        table.timetable_summary td.download_cell a:hover .file_name {
            text-decoration: underline;
        }

    table.timetable_summary tr.inner {
        border: none;
    }

    table.timetable_summary td.icon_cell {
        vertical-align: middle;
    }

        table.timetable_summary td.icon_cell i {
            font-size: 24px;
            padding-left: 0.5em;
        }

@media all and (max-width: 768px) {
    table.timetable_summary td.icon_cell {
        padding-right: 1em;
    }
}

table.timetable_download {
    width: 100%;
    border: 8px solid transparent;
    border-radius: 8px;
    margin: 4px 0;
    background-color: #b7c7e3;
}

    table.timetable_download.service_change {
        background-color: #f7f0b5;
    }

/* Adds a focus indicator to elements with this class */
.indicate_focus:focus {
    transform: scale(1.03);
    border: black solid 1px !important;
}

/* Adds an underline to anchor tags*/
span a:hover {
    text-decoration: underline !important;
}

/* Adds an underline to anchor tags on focus*/
a:focus {
    outline: 2px transparent solid;
    box-shadow: inset 0 0 0 1px #0a1c5c, 0 0 0 1px #CACACA, 0 0 1px 2px #0a1c5c;
    text-decoration: underline;
}

.nav-link:hover {
    text-decoration: none !important;
}

/*Makes the cookie banner accessible*/

#qc-cmp2-persistent-link {
    background-color: #1E7BC0;
}

/*Makes the horizontal bars fit the screen*/
.ck-content hr.sectionBreak {
    width: 100% !important;
}

button:focus,
.btn:focus,
.form-control:focus {
    outline: 2px transparent solid;
    box-shadow: inset 0 0 0 1px #0a1c5c, 0 0 0 1px #CACACA, 0 0 1px 2px #0a1c5c;
}

/*Add the focus specifically to the disruption number circle on the home page*/
a:focus .disruption-circle {
    outline: 2px solid #0a1c5c;
    box-shadow: 0 0 0 3px #CACACA, 0 0 4px 6px #0a1c5c;
}