/* tr.cancelled { text-decoration:line-through; } */

/* Menu */
.pure-menu-item.menu-item-divided-large {
    margin-top: 2.25em;
}

/* Empty Table Cell Line-through: https://stackoverflow.com/questions/4619542/linethrough-strikethrough-a-whole-html-table-row#19670807 */
tr.cancelled td {
    position: relative;
}

tr.cancelled td:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    border-bottom: 1px solid #111;
    width: 100%;
}

/* screen */
.nextrace {
    font-size: 150%;
}

section.nextrace {
    margin-bottom: 1em;
}

tr.thead {
    background-color: #cbcbcb;
}

.pure-table {
    width: 100%;
}
.header h1 {
    margin: 0.2em 0;
    font-size: 2.5em;
    font-weight: 300;
}




/* [Object] Modal
 * =============================== */
.modal {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    text-align: left;
    background: rgba(0, 0, 0, .9);
    transition: opacity .25s ease;
}

.modal__bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    cursor: pointer;
}

.modal-state {
    display: none;
}

.modal-state:checked + .modal {
    opacity: 1;
    visibility: visible;
}

.modal-state:checked + .modal .modal__inner {
    top: 0;
}

.modal__inner {
    transition: top .25s ease;
    position: absolute;
    top: -20%;
    right: 0;
    bottom: 0;
    left: 0;
    width: 50%;
    margin: auto;
    overflow: auto;
    background: #fff;
    border-radius: 5px;
    padding: 1em 2em;
    height: 50%;
}

.modal__close {
    position: absolute;
    right: 1em;
    top: 1em;
    width: 1.1em;
    height: 1.1em;
    cursor: pointer;
}

.modal__close:after,
.modal__close:before {
    content: '';
    position: absolute;
    width: 2px;
    height: 1.5em;
    background: #ccc;
    display: block;
    transform: rotate(45deg);
    left: 50%;
    margin: -3px 0 0 -1px;
    top: 0;
}

.modal__close:hover:after,
.modal__close:hover:before {
    background: #aaa;
}

.modal__close:before {
    transform: rotate(-45deg);
}

@media screen and (max-width: 768px) {

    .modal__inner {
        width: 90%;
        height: 90%;
        box-sizing: border-box;
    }
}

.button-success,
.button-error,
.button-warning,
.button-secondary {
    color: white;
    border-radius: 4px;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

.button-success {
    background: rgb(28, 184, 65);
    /* this is a green */
}

.button-error {
    background: rgb(202, 60, 60);
    /* this is a maroon */
}

.button-warning {
    background: rgb(223, 117, 20);
    /* this is an orange */
}

.button-secondary {
    background: #1f8dd6;
    /* this is a light blue */
}
fieldset {
    margin: 10px 0;
}



.info{
    font-size: .7rem;
    margin: .3rem;
    background: grey;
    border-radius: 3px;
    color: white;
    padding: .2rem;
}

