/* Utils */
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Main */
.main-wrapper {
    overflow-x: hidden;
}

/* Home intro */
.intro_item {
    transition: all 50ms ease;

    @media (prefers-reduced-motion: reduce) {
        animation-duration: 0.001s !important;
        transition-duration: 0.001s !important;
    }
}

/* Instagram */
.instagram {
    padding-bottom: 0;
}

.instagram__main {
    padding-right: 5vw;
    padding-left: 5vw;
    text-align: center;
}

.instagram__logo {
    display: block;
    width: 200px;
    height: auto;
    margin: 0 auto 20px;
}

.instagram__subheading {
    margin-bottom: 5px;
}

.instagram__widget {
    margin-top: 40px;
}

.instagram__widget iframe {
    display: block;
}

/* Entries table */
.entries-table {
    height: 56.5vh;
    overflow-y: auto;
    overscroll-behavior: none;
    border: 1px solid #212343;
    color: #282b63;
    white-space: nowrap;
}

.entries-table__table {
    width: 100%;
    border-collapse: collapse;
}

.entries-table__table tbody {
    font-weight: 300;
}

.entries-table thead th {
    position: sticky;
    top: 0px;
    z-index: 1;
}

.entries-table th {
    padding: 1rem 1.5rem;
    text-align: left;
    background: #212343;
    color: #fff;
}

.entries-table td {
    padding: 1rem 1.5rem;
    background: #edecec;
    text-align: left;
}

.entries-table tr.is-declared td {
    background: #bacee8;
}

.entries-table__cell-inner {
    position: relative;
}

.entries-table th + th .entries-table__cell-inner::after,
.entries-table td + td .entries-table__cell-inner::after {
    content: "";
    position: absolute;
    top: 0;
    left: -1.5rem;
    bottom: 0;
    width: 1px;
    background: #fff;
}

.entries-table__non-runner-tag {
    position: absolute;
    top: -1rem;
    left: -1.5rem;
    padding: 1px 4px;
    color: #000;
    background: #f1aeb5;
    font-size: 0.63rem;
    font-weight: bold;
}