/*
 * RIDE UI layer
 * Small modern polish over the legacy layout. Keep selectors broad enough
 * to catch old forms, but scoped away from CKEditor/CKFinder internals.
 */

:root {
    --ride-bg: #fafafa;
    --ride-surface: #ffffff;
    --ride-border: #d8e0e8;
    --ride-border-strong: #bac8d6;
    --ride-text: #7b7b7b;
    --ride-muted: #647284;
    --ride-accent: #a7221e;
    --ride-accent-dark: #691512;
    --ride-accent-soft: #ad3430;
    --ride-danger: #c93535;
    --ride-danger-soft: #fdeaea;
    --ride-radius: 0px;
    --ride-shadow: 0 10px 24px rgba(28, 44, 64, 0.08);
    --ride-page-width: min(90vw, 1200px);
    --ride-menu-width: 70vw;
}

body {
    color: var(--ride-text);
}

a {
    color: var(--ride-accent);
}

a:hover {
    color: var(--ride-accent-dark);
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="number"],
input[type="search"],
input[type="file"],
select,
textarea {
    box-sizing: border-box;
    max-width: 100%;
    min-height: 34px;
    padding: 7px 9px;
    border: 1px solid var(--ride-border-strong);
    border-radius: var(--ride-radius);
    background: var(--ride-surface);
    color: var(--ride-text);
    font: inherit;
    outline: none;
}

textarea {
    min-height: 120px;
}

select {
    padding-right: 28px;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
select:focus,
textarea:focus {
    border-color: var(--ride-accent);
    box-shadow: 0 0 0 3px rgba(0, 111, 184, 0.16);
}

input[type="submit"],
input[type="button"],
button,
.button,
a.button {
    display: inline-block;
    min-height: 34px;
    padding: 8px 13px;
    border: 1px solid var(--ride-accent-dark);
    border-radius: var(--ride-radius);
    background: var(--ride-accent);
    color: #fff !important;
    font-family: "Roboto", "Open Sans", sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
}

.activate, .delete {
display: flex;
    justify-content: center;
    min-height: 0px !important;
    padding: 4px !important;
    border: 1px solid #16803d !important;
    border-radius: var(--ride-radius) !important;
    background: #16803d !important;
    color: #fff !important;
    font-family: "Roboto", "Open Sans", sans-serif;
    font-size: 14px !important;
    font-weight: 300 !important;
    line-height: 1.2 !important;
    text-align: center !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
}

input[type="submit"]:hover,
input[type="button"]:hover,
button:hover,
.button:hover,
a.button:hover {
    background: var(--ride-accent-dark);
    color: #fff !important;
    text-decoration: none;
}

.activate:hover {
    border-color: #16803d !important;
    background: transparent !important;
    color: #16803d !important;
    text-decoration: none !important;
}

.delete,
.delete:visited {
    border-color: #c62828 !important;
    background: #c62828 !important;
    color: #fff !important;
}

.delete:hover {
    border-color: #c62828 !important;
    background: transparent !important;
    color: #c62828 !important;
    text-decoration: none !important;
}

label {
    cursor: pointer;
}

table {
    border-collapse: collapse;
}

table tr {
    padding: 5px 0;
}

table tr > th,
table tr > td {
    padding-top: 5px;
    padding-bottom: 5px;
}

table tr:nth-child(odd) {
    background-color: #eeeeee;
}

div#header .ride-header-slider {
    width: 100%;
    height: auto;
    overflow: hidden;
    background: #111;
}

div#header .ride-page-header-image {
 width: 100%;
    height: auto;
    overflow: hidden;
    background: #111;
}

body:not(.home-page) div#header .ride-page-header-image {
    height: 15vh;
}

div#header .ride-page-header-image a,
div#header .ride-page-header-image img {
    display: block;
    width: 100%;
    height: 100%;
}

div#header .ride-page-header-image img {
    max-width: none;
    object-fit: cover;
    object-position: center;
    border: 0;
}

div#header .ride-header-slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    white-space: normal;
    transition: margin-left 900ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

div#header .ride-header-slide {
    display: block;
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
}

div#header .ride-header-slide img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
    border: 0;
}

.ride-header-popup {
    display: none;
    position: fixed;
    z-index: 10020;
    inset: 0;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0,0,0,.72);
}

.ride-header-popup.is-visible {
    display: flex;
}

.ride-header-popup-panel {
    position: relative;
    width: min(1000px, 94vw);
    background: #111;
    box-shadow: 0 18px 46px rgba(0,0,0,.45);
}

.ride-header-popup .ride-header-slider {
    height: auto;
}

.ride-header-popup .ride-header-slide img {
   height: auto;
    width: 100%;
    border: 4px solid #444444;
}

.ride-header-popup-close {
    position: absolute;
    right: 8px;
    top: 8px;
    z-index: 2;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,.5);
    background: rgba(0,0,0,.75);
    color: #fff;
    font-size: 28px;
    line-height: 30px;
    cursor: pointer;
}

.ride-header-popup-close:hover {
    background: #d71920;
}

div#content #data h1 {
    color: var(--ride-text);
    font-size: 24px;
    line-height: 1.25;
}

.ride-page-title,
div#content #data h1.ride-page-title {
display: block;
    margin: 0px 0px 20px 0px;
    padding: 5px 10px;
    /* color: #fafafa; */
    font-size: 28px;
    line-height: 1;
    font-weight: 300;
    /* background: #a31d25; */
    border: 1px solid #44444426;
}

/*div#content #data .news h2 {
    padding: 0;
    padding-top: 0;
    margin-top: 0;
    font-size: 18px;
    margin-bottom: 1px;
    line-height: 1.5;
    font-weight: 300;
    text-transform: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}*/

div#content #data .news > a:hover h2,
div#content #data .news > a h2:hover,
div#content #data .news h2 a:hover {
    color: #09F !important;
}

div#content #data .news {
    overflow: hidden;
}

div#content #data .news .article-title {
    display: block;
    margin: 0 0 6px;
    padding: 0;
    color: var(--ride-heading);
    font-size: 24px;
    line-height: 1.25;
    font-weight: 300;
    text-transform: none;
}

div#content #data .news .article-meta {
    float: none !important;
    display: block;
    margin: 0 0 16px;
    color: #7e8994 !important;
    font-size: 12px !important;
    line-height: 1.4;
}

#ride_infinite_items .news {
    display: flow-root;
    padding-bottom: 12px;
}

#ride_infinite_items .news > a:not(.ride-feed-thumb) {
    display: block;
    overflow: hidden;
}

#ride_infinite_items .news h2 {
    display: block;
    margin: 0 0 8px;
    padding: 0;
    font-size: 18px;
    line-height: 1.25;
}

#ride_infinite_items .news #auth {
    float: right;
    margin-left: 14px;
    padding-top: 4px;
    line-height: 1.2;
    white-space: nowrap;
}

div#content #data .news .article-body {
    margin-top: 14px;
    color: #3f4a56;
    font-size: 15px;
    line-height: 1.6;
}

div#content #data .news .article-body p {
       margin: 20px 0px;
}

div#content #data .news .article-body img {
    display: inline-block;
    max-width: 100%;
    width: auto !important;
    height: 250px !important;
    object-fit: contain;
    vertical-align: middle;
    background: #fff;
}

div#content #data .news .article-body .ride-article-image-link {
    display: inline-block;
    max-width: 100%;
    line-height: 0;
}

div#content #data .news .article-body .ride-article-image-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    align-items: flex-start;
    justify-content: center;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
}

div#content #data .news .article-body .ride-article-image-row .ride-article-image-link {
    flex: 0 0 auto;
    max-width: 100%;
}

div#content #data .news .article-body .ride-article-image-row img {
    display: block;
    width: auto !important;
    max-width: none;
    height: 250px !important;
    object-fit: contain;
}

@media (max-width: 640px) {
    div#content #data .news .article-body .ride-article-image-row {
        flex-wrap: wrap;
    }

    div#content #data .news .article-body .ride-article-image-row .ride-article-image-link {
        max-width: 100%;
    }
}

div#content #data .news .article-body big {
    font-size: 16px;
}

div#content #data .news .article-body table {
    width: auto;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    table-layout: auto;
}

div#content #data .news .article-body table col {
    width: auto;
}

div#content #data .news .article-body table td,
div#content #data .news .article-body table th {
    min-width: 48px;
    padding-left: 8px;
    padding-right: 8px;
    box-sizing: border-box;
}

div#content #data .news .article-body table td:first-child,
div#content #data .news .article-body table th:first-child {
    min-width: 150px;
}

div#content #data .news.article-championship-standings .article-body table {
    margin-left: 0;
    margin-right: auto;
}

div#content #data .news.article-championship-standings .article-body table td,
div#content #data .news.article-championship-standings .article-body table th {
    text-align: left;
}

div#content #data .news.article-championship-standings .article-body table td:first-child,
div#content #data .news.article-championship-standings .article-body table th:first-child {
    min-width: 40px;
    width: 40px;
}

div#content #data .news.article-championship-standings .article-body table td:nth-child(2),
div#content #data .news.article-championship-standings .article-body table th:nth-child(2) {
    min-width: 170px;
}

.ride-align-left {
    text-align: left;
}

.ride-align-center {
    text-align: center;
}

.ride-align-right {
    text-align: right;
}

.ride-align-justify {
    text-align: justify;
}

.ride-float-left {
    float: left;
}

.ride-float-right {
    float: right;
}

.ride-centered-video {
    display: block;
    margin: 0 auto;
}

.ride-compact-title {
    margin-top: 5px;
    margin-bottom: 5px;
}

.ride-live-video {
    width: 100%;
    max-width: 600px;
    margin: 10px 0;
    background: #111;
}

.ride-video-frame {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}

.ride-video-frame iframe,
.ride-live-placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.ride-live-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111;
    color: #fff;
    text-align: center;
}

.halloffame-card {
    height: 250px !important;
}

.halloffame-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
}

.spot-map-frame {
    border: 0;
}

.spot-map iframe {
    border: 0;
}

.spot-map {
    width: 100%;
    margin: 0 0 18px;
}

.spot-map-frame {
    display: block;
    box-sizing: border-box;
    width: 100%;
    min-height: 360px;
    border: 0;
}

div#content #data .spot-map-frame {
    height: 420px;
    min-height: 420px;
}

.ride-social-share {
    width: 500px;
    height: 30px;
    margin-top: 5px;
}

.ride-social-plusone {
    float: left;
    width: 60px;
}

.ride-social-facebook {
    float: left;
    width: 100px;
    height: 30px;
    margin-right: 5px;
    overflow: hidden;
    border: 0;
}

.ride-ad-item {
    margin-top: 1px;
    margin-bottom: 1px;
    border: 0;
    overflow: hidden;
}

.ride-ad-first-row {
    margin-top: 2px;
}

.ride-side-comments {
    box-sizing: border-box;
    width: 100%;
    padding: 12px;
}

div#content #side .ride-side-comments {
    box-sizing: border-box;
    width: 100%;
    padding: 14px;
}

.ride-side-comment {
    margin-bottom: 10px;
}

.ride-side-comment p {
    margin: 0 0 6px;
}

.ride-side-social-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    margin: 0 0 10px;
    box-sizing: border-box;
}

.ride-side-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-width: 0;
    padding: 10px 8px;
    background: #111;
    border: 1px solid rgba(0, 0, 0, 0.18);
    color: #fff !important;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    box-sizing: border-box;
}

.ride-side-social-icon {
    flex: 0 0 16px;
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.ride-side-social-link:hover,
.ride-side-social-link:focus {
    background: var(--ride-accent);
    color: #fff !important;
    text-decoration: none;
}

.ride-side-social-instagram {
    background: var(--ride-accent);
}

.ride-side-social-instagram:hover,
.ride-side-social-instagram:focus {
    background: var(--ride-accent-dark);
}

.ride-ad-left {
    margin-right: 1px;
}

.ride-ad-right {
    margin-left: 1px;
}

.ride-ads-slider {
    position: relative;
    box-sizing: border-box;
    width: 350px;
    margin: 0 0 12px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--ride-border);
    transition: height 180ms ease;
}

.ride-ads-viewport {
    width: 100%;
    overflow: hidden;
}

.ride-ads-track {
    display: flex;
    width: 100%;
    transition: transform 360ms ease;
    will-change: transform;
}

.ride-ad-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 100%;
    width: 100%;
    min-height: 60px;
    line-height: 0;
    text-align: center;
}

.ride-ad-slide img,
.ride-ad-slide video {
    display: block;
    max-width: 100%;
    height: 100%;
    width: 100%;
    margin: 0 auto;
    border: 0;
    object-fit: cover;
}

#ads_box + div > div {
border-bottom: 1px solid #d9d9d9;
    padding: 4px 4px 0px 4px;
}

.ride-save-loader {
    width: 250px;
    height: 200px;
    margin: 20% auto 0;
    text-align: center;
}

.ride-blue-option {
    color: #0066ff;
}

.shop-main-image {
    float: left;
    max-width: 500px;
    height: 400px;
    margin-right: 10px;
}

.shop-item-title {
    margin-top: 5px;
    margin-bottom: 2px;
    font-size: 20px;
}

.shop-item-meta {
    margin-top: 14px;
    margin-bottom: 2px;
    line-height: 25px;
}

.shop-extra-images-title {
    padding-top: 15px;
    border-top: 1px solid #ddd;
}

.shop-extra-images {
    padding-top: 5px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

.shop-thumb-image,
.gallery-thumb-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
}

.shop-item-highlight {
    background-color: #fadcb4;
}

.user-profile-image {
    max-width: 200px;
    height: auto;
}

.user-profile-page .user-profile-details p {
    line-height: 0;
}

.bio-dialog-image {
    max-width: 400px;
}

.bio-lightbox-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.72);
}

.bio-lightbox-panel {
    position: relative;
    max-width: min(90vw, 720px);
    max-height: 90vh;
}

.bio-lightbox-panel .bio-dialog-image {
    display: block;
    max-width: min(90vw, 720px);
    max-height: 90vh;
    background: #fff;
}

.bio-lightbox-close {
    position: absolute;
    top: -14px;
    right: -14px;
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 50%;
    background: #111;
    color: #fff;
    font-size: 22px;
    line-height: 32px;
    cursor: pointer;
}

.bio-lightbox-prev,
.bio-lightbox-next {
    position: absolute;
    top: 50%;
    width: 44px;
    height: 64px;
    margin-top: -32px;
    border: 0;
    background: rgba(0, 0, 0, 0.62);
    color: #fff;
    font-size: 42px;
    line-height: 64px;
    cursor: pointer;
}

.bio-lightbox-prev {
    left: 0;
}

.bio-lightbox-next {
    right: 0;
}

.bio-lightbox-meta {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 8px 10px;
    background: #111;
    color: #fff;
    font-size: 14px;
}

.bio-lightbox-counter {
    white-space: nowrap;
}

.bio-thumb-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
}

.bio-image-box {
    margin-bottom: 10px;
}

div#content #data #bio_header {
display: flex;
    gap: 15px;
    flex-direction: column;
    width: 100%;
    height: auto;
    min-height: 0;
    padding-bottom: 16px;
    margin-bottom: 18px;
}

div#content #data #bio_header #imgbox {
grid-column: 1;
    display: flex;
    flex-direction: column;
    width: auto;
    float: none;
    gap: 5px;
}

div#content #data #bio_header #imgbox #biopic {
    float: none;
    width: 100%;
    max-width: 210px;
    margin: 0;
    border: 1px solid #44444426;
    box-shadow: 1px 1px 10px #44444426;
}

div#content #data #bio_header #imgbox .bio-action-icon {
    float: none;
    margin: 0;
}

div#content #data #bio_header .ride-page-title {
    grid-column: 2;
    margin-bottom: 10px;
    line-height: 1.4;
}

div#content #data #bio_header #databox {
    grid-column: 2;
}

.bio-action-icon {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.bio-action-icon-disabled {
    opacity: 0.35;
}

.bio-pictures {
    clear: both;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
    margin-top: 18px;
}

.article-related-gallery {
    clear: both;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
    margin-top: 18px;
}

.article-related-gallery .article-gallery-figure {
    display: block;
    flex: 0 0 250px;
    max-width: 100%;
    margin: 0;
    align-self: flex-start;
    box-shadow: 1px 1px 10px #44444450;
}

div#content #data .article-related-gallery .article-gallery-figure-hidden {
    display: none !important;
}

.article-related-gallery .article-gallery-lightbox-picture {
    display: block;
    color: var(--ride-text);
    text-decoration: none;
    transition: transform 160ms ease;
}

.article-related-gallery .article-gallery-lightbox-picture:hover {
    transform: translateY(-3px);
}

.article-related-gallery img {
    display: block;
    width: 100%;
    height: 250px !important;
    object-fit: cover;
    border: 1px solid var(--ride-border);
    background: #fff;
}

.bio-results-list {
    clear: both;
    display: none;
    width: 100%;
    margin: 0 0 18px;
    padding: 14px 0 16px;
    border-top: 1px solid #d8d8d8;
    border-bottom: 1px solid #d8d8d8;
    color: var(--ride-text);
}

.bio-results-list.is-visible,
.bio-results-list:target {
    display: block;
}

.bio-result-row {
    margin: 0;
    padding: 3px 0;
    line-height: 1.35;
}

.bio-result-date {
    font-weight: 700;
    color: #5d6774;
}

.bio-results-list a {
    color: var(--ride-accent);
    text-decoration: none;
}

.bio-results-list a:hover {
    text-decoration: underline;
}

.competition-article-results .competition-rider-link {
    text-decoration: none;
}

.competition-article-results .competition-rider-link-bio {
    color: var(--ride-accent);
}

.competition-article-results .competition-rider-link-bio:hover,
.competition-article-results .competition-rider-link-bio:focus {
    color: var(--ride-text);
    text-decoration: none;
}

.competition-article-results .competition-rider-link-user {
    color: inherit;
}

.competition-article-results .competition-rider-link-user:hover,
.competition-article-results .competition-rider-link-user:focus {
    color: #07f;
    text-decoration: none;
}

.bio-picture-thumb {
    display: block;
    flex: 0 0 180px;
    align-self: flex-start;
    color: var(--ride-text);
    text-decoration: none;
    transition: transform 160ms ease;
    box-shadow: 1px 1px 10px #44444450;
}

.bio-picture-thumb:hover {
    transform: translateY(-3px);
}

.bio-picture-thumb img {
    display: block;
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border: 1px solid var(--ride-border);
    background: #fff;
}

.bio-picture-thumb span {
    display: block;
    margin-top: 4px;
    font-size: 14px;
    line-height: 1.25;
}

.bio-fan-page-link {
    display: inline-block;
    margin-top: 5px;
    padding: 5px;
    border-radius: 5px;
    background: #07f;
    color: #f0f0f0 !important;
}

.ride-content-pager {
    clear: both;
    display: flex;
    justify-content: space-between;
    gap: 14px;
    width: 100%;
    margin: 26px 0 8px;
    padding-top: 14px;
    border-top: 1px solid var(--ride-border);
}

.ride-content-pager-link,
.ride-content-pager-placeholder {
    flex: 1 1 0;
    min-width: 0;
}

.ride-content-pager-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border: 1px solid var(--ride-border);
    color: var(--ride-text);
    text-decoration: none;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,.06);
    transition: border-color 160ms ease, transform 160ms ease;
}

.ride-content-pager-link:hover {
    border-color: var(--ride-accent);
    transform: translateY(-2px);
    text-decoration: none;
}

.ride-content-pager-next {
    justify-content: flex-end;
    text-align: right;
}

.ride-content-pager-arrow {
    flex: 0 0 auto;
    font-size: 24px;
    line-height: 1;
    color: var(--ride-accent);
}

.ride-content-pager-text {
    display: block;
    min-width: 0;
}

.ride-content-pager-text small,
.ride-content-pager-text strong {
    display: block;
}

.ride-content-pager-text small {
    margin-bottom: 3px;
    color: #77808c;
    font-size: 12px;
    text-transform: uppercase;
}

.ride-content-pager-text strong {
    overflow-wrap: anywhere;
    color: var(--ride-text);
    font-size: 15px;
    line-height: 1.25;
}

.news-filter-form {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin: 0 0 18px;
    padding: 12px;
    border: 1px solid var(--ride-border);
    background: #fff;
}

.news-filter-form label {
    color: #77808c;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.news-filter-form select {
    min-width: 130px;
    height: 34px;
    padding: 4px 8px;
    border: 1px solid var(--ride-border);
    background: #fff;
    color: var(--ride-text);
}

.news-filter-form select:disabled {
    opacity: .55;
}

.section-filter-reset {
    margin-left: auto;
    color: var(--ride-accent);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
}

.section-filter-reset:hover {
    color: var(--ride-text);
    text-decoration: none;
}

.section-pagination {
    clear: both;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    margin: 24px 0 8px;
    padding-top: 16px;
    border-top: 1px solid var(--ride-border);
}

.section-pagination-link,
.section-pagination-current,
.section-pagination-placeholder {
    min-height: 42px;
}

.section-pagination-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border: 1px solid var(--ride-border);
    background: #fff;
    color: var(--ride-text);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    transition: border-color 160ms ease, color 160ms ease;
}

.section-pagination-link:hover {
    border-color: var(--ride-accent);
    color: var(--ride-accent);
    text-decoration: none;
}

.section-pagination-prev {
    justify-self: start;
}

.section-pagination-next {
    justify-self: end;
}

.section-pagination-current {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #77808c;
    font-size: 13px;
    text-transform: uppercase;
}

.ride-admin-page #autocomp_find_list {
    z-index: 10000;
}

.ride-admin-page .competition-member-results {
    display: none;
    position: absolute;
    z-index: 10050;
    width: 260px;
    margin: 2px 0 0 5px;
    background: #333;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.ride-admin-page .competition-member-results .autocompul {
    width: 260px;
    margin: 0;
}

.ride-admin-page .autocompul {
    position: relative;
    z-index: 10001;
}

.ride-admin-page .autocompitem {
    min-height: 32px;
    height: auto;
    padding: 6px 8px;
    cursor: pointer;
}

.ride-admin-page .autocompusername {
    display: block;
    color: #fff;
    font-weight: 600;
}

.ride-admin-page .autocompmeta {
    display: block;
    margin-top: 2px;
    color: #b8c0ca;
    font-size: 11px;
    line-height: 1.2;
}

.ride-admin-page .autocompitem:hover .autocompusername,
.ride-admin-page .autocompitem:hover .autocompmeta {
    color: #333;
}

.bio-list-card {
    height: 190px !important;
}

.bio-list-image {
    width: 150px;
    height: 150px;
}

.users-list-page .users-list-grid {
    gap: 16px;
}

.users-list-page .user-list-card {
    min-height: 190px;
}

.users-list-page .user-list-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    background: #f2f4f6;
}

.users-list-page .user-list-card figcaption {
    line-height: 1.25;
    min-height: 42px;
    display: flex;
    align-items: center;
}

.ride-comment-author {
    float: left;
}

.ride-comment-actions {
    float: right;
}

.shop-price-slider-output {
    border: 0;
    color: #f6931f;
    font-weight: 700;
}

.aszf-title {
    margin-top: 0;
    padding-bottom: 5px;
}

.ride-feed-thumb {
    position: relative;
    display: block;
    float: left;
    width: 120px;
    height: 120px;
    margin: 0 14px 10px 0;
    overflow: hidden;
    background: #e7ecf2;
    border: 1px solid var(--ride-border);
    border-radius: 0;
    box-sizing: border-box;
}

.ride-feed-thumb img {
    display: block;
    float: none !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    border: 0 !important;
    box-shadow: none !important;
    object-fit: cover;
}

.ride-feed-thumb.no-photo-wide {
    width: 160px;
    height: 90px;
}

.ride-feed-thumb.no-photo-square {
    width: 120px;
    height: 120px;
}

.ride-feed-thumb.is-fallback img {
    display: none;
}

@media (max-width: 820px) {
    .news-filter-form {
        align-items: stretch;
    }

    .news-filter-form label {
        width: 100%;
    }

    .news-filter-form select,
    .section-filter-reset {
        width: 100%;
        margin-left: 0;
    }

    .section-pagination {
        grid-template-columns: 1fr;
    }

    .section-pagination-prev,
    .section-pagination-next,
    .section-pagination-link {
        justify-self: stretch;
    }

    .ride-content-pager {
        flex-direction: column;
    }

    .ride-content-pager-link,
    .ride-content-pager-placeholder {
        flex-basis: auto;
    }

    .ride-content-pager-next {
        text-align: left;
    }

    div#header .ride-header-slider {
        height: 190px;
    }
}

div#content .border_h4 {
    margin: 0px;
    padding: 7px;
    border-bottom:none;
    color: var(--ride-text);
    font-size: 22px;
}

.admin-filter-form {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 12px 0 16px;
    padding: 12px;
    background: var(--ride-bg);
    border: 1px solid var(--ride-border);
    border-radius: var(--ride-radius);
}

.admin-filter-form select,
.admin-filter-form input[type="submit"] {
    margin: 0;
}

.admin-list-table {
    width: 100%;
    margin-top: 10px;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    background: var(--ride-surface);
    border: 0px solid var(--ride-border);
    border-radius: var(--ride-radius);
}

.admin-list-table td {
    padding: 9px 10px;
    border-bottom: 1px solid var(--ride-border);
    vertical-align: top;
}

.admin-list-table tr:first-child td {
    background: var(--ride-bg);
    color: var(--ride-muted);
    font-size: 14px;
    text-transform: uppercase;
	width:110px!important;
}

.admin-list-table tr:last-child td {
    border-bottom: 0;
}

.admin-list-table tr:hover td {
    background: #fbfdff;
}

.admin-row-actions {
    white-space: nowrap;
}

.admin-row-actions a {
    display: inline-block;
    margin-left: 8px;
    padding: 8px 13px;
    border: 1px solid #16803d;
    border-radius: var(--ride-radius);
    background: #16803d;
    color: #fff;
    font-family: "Roboto", "Open Sans", sans-serif;
    font-size: 14px;
    font-weight: 300;
    text-transform: uppercase;
    text-decoration: none;
}

.admin-row-actions a:hover {
    background: transparent;
    color: #16803d;
    text-decoration: none;
}

.admin-row-actions .admin-danger-link {
    border-color: #c62828;
    background: #c62828;
    color: #fff;
}

.admin-row-actions .admin-danger-link:hover {
    background: transparent;
    color: #c62828;
}

.admin-disabled-action {
    display: inline-block;
    padding: 8px 13px;
    border: 1px solid var(--ride-border-strong);
    border-radius: var(--ride-radius);
    color: var(--ride-muted);
    background: var(--ride-bg);
    font-family: "Roboto", "Open Sans", sans-serif;
    font-size: 14px;
    font-weight: 300;
    text-transform: uppercase;
}

.admin-row-actions a:nth-child(2) {
    border-color: #c62828;
    background: #c62828;
    color: #fff;
}

.admin-row-actions a:nth-child(2):hover {
    background: transparent;
    color: #c62828;
}

.admin-side-menu {
    margin-top: 0px;
}

.admin-menu-list {
    margin: 0px;
    padding: 0;
}

.admin-menu-list li {
    margin: 0 0 6px;
}

.admin-menu-list a {
    display: block;
    padding: 9px 11px;
    background: var(--ride-surface);
    border: 1px solid var(--ride-border);
    border-radius: var(--ride-radius);
    color: var(--ride-text);
    text-decoration: none;
}

.admin-menu-list a:hover {
    background: var(--ride-accent-soft);
    border-color: #acd1eb;
    color: var(--ride-accent-dark);
}

.admin-menu-list .admin-menu-featured a {
    border-color: var(--ride-accent);
    background: #d71920;
    color: #fff;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(215, 25, 32, 0.22);
}

.admin-menu-list .admin-menu-featured a:hover,
.admin-menu-list .admin-menu-featured a:focus {
    border-color: #a81419;
    background: #a81419;
    color: #fff;
}

.admin-message {
    margin: 10px 0 14px;
    padding: 10px 12px;
    background: var(--ride-danger-soft);
    border: 1px solid #f1b5b5;
    border-radius: var(--ride-radius);
    color: var(--ride-danger);
}

.admin-calendar-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 12px 0;
    padding: 10px;
    background: var(--ride-bg);
    border: 1px solid var(--ride-border);
    border-radius: var(--ride-radius);
}

.admin-calendar-toolbar a {
    padding: 7px 10px;
    background: var(--ride-accent);
    border-radius: var(--ride-radius);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}

.admin-event-calendar {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    margin: 12px 0 24px;
    border: 1px solid var(--ride-border);
    border-radius: var(--ride-radius);
    overflow: hidden;
}

.admin-calendar-head,
.admin-calendar-day {
    min-height: 82px;
    padding: 8px;
    border-right: 1px solid var(--ride-border);
    border-bottom: 1px solid var(--ride-border);
    background: #fff;
}

.admin-calendar-head {
    min-height: auto;
    background: #111;
    color: #fff;
    font-weight: 700;
    text-align: center;
}

.admin-calendar-day.is-empty {
    background: var(--ride-bg);
}

.admin-calendar-day.has-event {
    background: var(--ride-accent-soft);
}

.admin-calendar-day strong {
    display: block;
    margin-bottom: 6px;
}

.admin-calendar-day a {
    display: block;
    margin: 3px 0;
    font-size: 14px;
    line-height: 1.25;
    font-weight: 700;
}

.admin-event-form {
    display: grid;
    gap: 8px;
    margin: 0 0 20px;
    padding: 14px;
    background: var(--ride-bg);
    border: 1px solid var(--ride-border);
    border-radius: var(--ride-radius);
}

.admin-event-form label {
    font-weight: 700;
}

.admin-event-form input[type="text"],
.admin-event-form select {
    box-sizing: border-box;
    width: 100%;
    padding: 8px 10px;
    border: 1px solid var(--ride-border-strong);
}

.ride-admin-page .admin-competition-form h4 {
    margin: 8px 0 2px;
}

.ride-admin-page .admin-category-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 12px;
}

.ride-admin-page .admin-category-grid label {
    display: grid;
    gap: 5px;
}

.ride-admin-page .admin-category-list {
    display: grid;
    gap: 10px;
}

.ride-admin-page .admin-category-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 12px;
    padding: 10px;
    background: #fff;
    border: 1px solid var(--ride-border);
}

.ride-admin-page .admin-category-row.is-hidden {
    display: none;
}

.ride-admin-page .admin-secondary-button {
    width: auto;
    padding: 8px 12px;
    border: 1px solid var(--ride-border-strong);
    background: #fff;
    color: var(--ride-text);
    cursor: pointer;
}

.ride-admin-page .admin-secondary-button:hover,
.ride-admin-page .admin-secondary-button:focus {
    background: var(--ride-bg);
}

.ride-admin-page .admin-form-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-start;
    margin-top: 6px;
}

.ride-admin-page .admin-event-form input[type="submit"],
.ride-admin-page .admin-form-actions input[type="submit"] {
    width: auto;
    padding: 9px 16px;
    border: 0;
    background: var(--ride-accent);
    color: #fff;
    cursor: pointer;
}

.ride-admin-page .admin-event-form input[type="submit"]:hover,
.ride-admin-page .admin-event-form input[type="submit"]:focus,
.ride-admin-page .admin-form-actions input[type="submit"]:hover,
.ride-admin-page .admin-form-actions input[type="submit"]:focus {
    background: var(--ride-accent-dark);
}

.ride-admin-page .admin-danger-link {
    padding: 9px 12px;
    background: var(--ride-danger);
    color: #fff;
    text-decoration: none;
}

.ride-admin-page .admin-danger-link:hover,
.ride-admin-page .admin-danger-link:focus {
    background: #9e2525;
    color: #fff;
}

.ride-admin-page .admin-danger-button {
    padding: 9px 12px;
    border: 0;
    background: var(--ride-danger);
    color: #fff;
    cursor: pointer;
}

.ride-admin-page .admin-danger-button:hover,
.ride-admin-page .admin-danger-button:focus {
    background: #9e2525;
}

.admin-checkbox-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.admin-event-actions {
    margin-top: 8px;
}

.admin-editor-page div#page {
    width: min(1240px, 94vw);
}

.admin-editor-page div#content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 270px;
    gap: 22px;
    align-items: start;
    margin-top: 18px;
}

.admin-editor-page div#content #data {
    box-sizing: border-box;
    width: 100% !important;
    min-width: 0;
    max-width: none;
}

.admin-editor-page div#content #side {
    width: 270px !important;
    min-width: 0;
}

.admin-editor-page form#editor {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
}

.admin-editor-page #editor1,
.admin-editor-page #cke_editor1,
.admin-editor-page .cke {
    box-sizing: border-box;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
}

.admin-editor-page #cke_contents_editor1 {
    min-height: 400px;
}

.admin-editor-page .cke_resizer {
    display: block !important;
    opacity: 1 !important;
    cursor: ns-resize !important;
}

.admin-editor-page div#content .border_h4 {
    margin: 18px 0 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--ride-border);
}

.ride-admin-page .admin-panel {
    margin-bottom: 18px;
    padding: 14px;
    background: #fff;
    border: 1px solid var(--ride-border);
}

.ride-admin-page .admin-panel-titlebar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.ride-admin-page .admin-inline-form {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.ride-admin-page .admin-inline-form input[type="text"],
.ride-admin-page .admin-inline-form input[type="url"],
.ride-admin-page .admin-inline-form input[type="file"],
.ride-admin-page .admin-panel-titlebar input[type="search"] {
    box-sizing: border-box;
    min-width: 240px;
    padding: 8px 10px;
    border: 1px solid var(--ride-border-strong);
}

.ride-admin-page .admin-inline-form input[type="submit"] {
    padding: 8px 14px;
    border: 0;
    background: var(--ride-accent);
    color: #fff;
    cursor: pointer;
}

.ride-admin-page .admin-inline-form input[type="submit"]:hover,
.ride-admin-page .admin-inline-form input[type="submit"]:focus {
    background: var(--ride-accent-dark);
}

.ride-admin-page .admin-secondary-link {
    color: var(--ride-muted);
}

.ride-admin-page .admin-message {
    margin: 0 0 12px;
    padding: 10px 12px;
    border: 1px solid var(--ride-border);
    background: #f7f7f7;
}

.ride-admin-page .admin-message-success {
    border-color: #8bc58b;
    background: #eff9ef;
}

.ride-admin-page .admin-message-error {
    border-color: #e49a9a;
    background: #fff1f1;
}

.ride-admin-page .admin-brand-table {
    width: 100%;
}

.ride-admin-page .admin-sponsor-table {
    table-layout: fixed;
}

.ride-admin-page .admin-sponsor-table td:first-child {
    width: 42%;
}

.ride-admin-page .admin-sponsor-table td:nth-child(2) {
    width: 32%;
}

.ride-admin-page .admin-sponsor-table td:nth-child(3) {
    width: 26%;
}

.ride-admin-page .admin-sponsor-table .admin-row-actions {
    white-space: normal;
}

.ride-admin-page .admin-sponsor-table .admin-row-actions a {
    display: block;
    box-sizing: border-box;
    width: 100%;
    margin: 0 0 6px;
    padding: 7px 8px;
    text-align: center;
    font-size: 12px;
}

.ride-admin-page .admin-sponsor-info strong {
    display: block;
    margin-bottom: 5px;
}

.ride-admin-page .admin-sponsor-info a {
    display: block;
    max-width: 100%;
    color: var(--ride-danger);
    overflow-wrap: anywhere;
    word-break: break-word;
    line-height: 1.35;
}

.ride-admin-page .admin-sponsor-table .ride-brand-display {
    max-width: 150px;
    max-height: 58px;
}

.ride-admin-page .admin-user-table {
    table-layout: fixed;
}

.ride-admin-page .admin-user-table td:first-child {
    width: 44px;
}

.ride-admin-page .admin-user-table td:last-child {
    width: 210px;
}

.ride-admin-page .admin-user-avatar {
    display: block;
    width: 34px;
    height: 34px;
    object-fit: cover;
    background: #f1f1f1;
    border: 1px solid var(--ride-border);
}

.ride-admin-page .admin-user-table .admin-row-actions {
    white-space: normal;
}

.ride-admin-page .admin-user-table .admin-row-actions a {
    margin-bottom: 6px;
}

.ride-brand-display {
    display: inline-block;
    max-width: 200px;
    max-height: 80px;
    vertical-align: middle;
}

img.ride-brand-display {
    width: auto;
    height: auto;
    object-fit: contain;
}

.ride-brand-display.is-grayscale {
    filter: grayscale(1);
}

.ride-admin-page .admin-brand-logo-preview {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 4px 8px;
    border: 1px solid var(--ride-border);
    background: #fafafa;
}

.ride-admin-page .admin-check-label {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.ride-admin-page .admin-empty-state {
    padding: 16px;
    background: #fff;
    border: 1px solid var(--ride-border);
    color: var(--ride-muted);
}

.ride-admin-page .admin-report-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ride-admin-page .admin-report-card {
    background: #fff;
    border: 1px solid var(--ride-border);
}

.ride-admin-page .admin-report-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px;
    border-bottom: 1px solid var(--ride-border);
    background: #f7f8fa;
    color: var(--ride-muted);
}

.ride-admin-page .admin-report-header strong {
    color: var(--ride-text);
}

.ride-admin-page .admin-report-header span {
    font-size: 13px;
}

.ride-admin-page .admin-report-target {
    display: flex;
    gap: 12px;
    padding: 12px;
    border-bottom: 1px solid var(--ride-border);
}

.ride-admin-page .admin-report-thumb,
.ride-admin-page .admin-report-avatar {
    flex: 0 0 auto;
    width: 96px;
    height: 72px;
    object-fit: cover;
    background: #f1f1f1;
}

.ride-admin-page .admin-report-avatar {
    width: 58px;
    height: 58px;
}

.ride-admin-page .admin-report-body {
    min-width: 0;
}

.ride-admin-page .admin-report-body h4 {
    margin: 0 0 6px;
    font-size: 16px;
}

.ride-admin-page .admin-report-body p {
    margin: 0 0 6px;
    line-height: 1.45;
}

.ride-admin-page .admin-report-missing {
    padding: 10px;
    background: #fff8e8;
    border: 1px solid #efd08e;
    color: #7b5a13;
}

.ride-admin-page .admin-report-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    padding: 10px 12px;
    border-bottom: 1px solid var(--ride-border);
    background: #fbfbfb;
}

.ride-admin-page .admin-report-form {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding: 12px;
}

.ride-admin-page .admin-report-form select {
    min-width: 180px;
    padding: 7px 9px;
    border: 1px solid var(--ride-border-strong);
}

.ride-admin-page .admin-report-form input[type="submit"] {
    padding: 8px 14px;
    border: 0;
    background: var(--ride-accent);
    color: #fff;
    cursor: pointer;
}

.ride-admin-page .admin-report-form input[type="submit"]:hover,
.ride-admin-page .admin-report-form input[type="submit"]:focus {
    background: var(--ride-accent-dark);
}

.ride-admin-page .admin-report-response {
    color: var(--ride-muted);
}

.ride-admin-page .admin-ad-form,
.ride-admin-page .admin-ad-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.ride-admin-page .admin-ad-form label,
.ride-admin-page .admin-ad-fields label {
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: var(--ride-muted);
    font-size: 12px;
    text-transform: uppercase;
}

.ride-admin-page .admin-ad-form input[type="text"],
.ride-admin-page .admin-ad-form input[type="file"],
.ride-admin-page .admin-ad-form select,
.ride-admin-page .admin-ad-form textarea,
.ride-admin-page .admin-ad-fields input[type="text"],
.ride-admin-page .admin-ad-fields input[type="file"],
.ride-admin-page .admin-ad-fields select,
.ride-admin-page .admin-ad-fields textarea {
    box-sizing: border-box;
    width: 100%;
    min-height: 34px;
    padding: 8px 10px;
    border: 1px solid var(--ride-border-strong);
    background: #fff;
    color: var(--ride-text);
}

.ride-admin-page .admin-ad-form textarea,
.ride-admin-page .admin-ad-fields textarea {
    min-height: 88px;
    resize: vertical;
}

.ride-admin-page .admin-ad-form input[type="submit"] {
    align-self: end;
    width: fit-content;
    padding: 9px 16px;
    border: 0;
    background: var(--ride-accent);
    color: #fff;
    cursor: pointer;
}

.ride-admin-page .admin-ad-list {
    display: grid;
    gap: 14px;
}

.ride-admin-page .admin-ad-card {
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 16px;
    padding: 12px;
    border: 1px solid var(--ride-border);
    background: #f7f7f7;
}

.ride-admin-page .admin-ad-preview {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    min-height: 130px;
    padding: 10px;
    background: #fff;
    border: 1px solid var(--ride-border);
}

.ride-admin-page .admin-ad-preview img,
.ride-admin-page .admin-ad-preview video {
    display: block;
    max-width: 100%;
    max-height: 180px;
    object-fit: contain;
}

.ride-admin-page .admin-ad-current-label {
    width: 100%;
    color: var(--ride-muted);
    font-size: 11px;
    text-align: left;
    text-transform: uppercase;
}

.ride-admin-page .admin-ad-media-link {
    display: block;
    width: 100%;
    overflow-wrap: anywhere;
    color: var(--ride-accent);
    font-size: 11px;
    line-height: 1.35;
    text-align: left;
}

.ride-admin-page .admin-ad-iframe-preview {
    width: 100%;
    min-height: 170px;
    border: 1px solid var(--ride-border);
    background: #fff;
}

.ride-admin-page .admin-ad-iframe-label {
    color: var(--ride-muted);
    text-align: center;
}

.ride-admin-page .admin-check-label {
    justify-content: center;
}

@media (max-width: 760px) {
    .ride-admin-page .admin-report-target,
    .ride-admin-page .admin-report-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .ride-admin-page .admin-report-meta {
        grid-template-columns: 1fr;
    }

    .ride-admin-page .admin-category-grid {
        grid-template-columns: 1fr;
    }

    .ride-admin-page .admin-category-row {
        grid-template-columns: 1fr;
    }

    .ride-admin-page .admin-ad-form,
    .ride-admin-page .admin-ad-fields,
    .ride-admin-page .admin-ad-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 980px) {
    .admin-editor-page div#content {
        grid-template-columns: 1fr;
    }

    .admin-editor-page div#content #data,
    .admin-editor-page div#content #side {
        width: 100% !important;
        max-width: none;
    }
}

.admin-editor-page input[type="text"],
.admin-editor-page input[type="password"],
.admin-editor-page select,
.admin-editor-page textarea {
    max-width: 100%;
}

.admin-editor-page input[type="text"],
.admin-editor-page select {
    min-height: 28px;
}

.admin-editor-page .cke {
    max-width: 100%;
}

.admin-editor-page .del_member {
    display: inline-block;
    margin-left: 8px;
    padding: 4px 8px;
    background: #d71920;
    color: #fff;
    font-family: "Roboto", "Open Sans", sans-serif;
    font-weight: 300;
    text-transform: uppercase;
}

.admin-editor-page .del_member:hover {
    background: transparent;
    color: #d71920;
    box-shadow: inset 0 0 0 1px #d71920;
}

.admin-editor-page div#footer {
    clear: both;
    float: none;
    width: 100%;
    margin-top: 28px;
    text-align: center;
}

#shop_empty,
.radius_all {
    border-radius: var(--ride-radius);
}

div#content #side #login,
div#content #side #search {
    border-radius: 0 0 var(--ride-radius) var(--ride-radius);
}

div#content #side #to_login {
    display: none;
}

div#content #side #search_box {
    float: none;
    box-sizing: border-box;
    width: 100%;
    height: auto;
    margin: 0 0 0;
    padding: 12px 12px 8px;
    background: var(--ride-accent);
    color: #fff;
    text-align: left;
    border-radius: var(--ride-radius) var(--ride-radius) 0 0;
}

div#content #side #search_box h3 {
    margin: 0;
    color: #fff;
    font-size: 16px;
}

div#content #side #side_search,
div#content #side .ride-side-search {
display: block;
    float: none;
    box-sizing: border-box;
    width: 100%;
    height: auto;
    /* margin-bottom: 12px; */
    padding: 12px;
    background: var(--ride-surface);
    border: 0px solid var(--ride-border);
    border-top: 0;
    color: var(--ride-text);
}

div#content #side #search_fields {
    display: flex;
    gap: 8px;
    width: auto;
    margin: 0;
    padding: 0;
}

div#content #side #search_fields #search_ {
    flex: 1;
    min-width: 0;
    width: auto;
}

div#content #side #search_fields #go_search {
    display: block;
    flex: 0 0 92px;
    width: 92px;
    min-height: 34px;
    margin: 0;
    padding: 8px 10px;
    border: 1px solid var(--ride-accent-dark);
    background: var(--ride-accent);
    color: #fff !important;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}

div#content #side #search_fields #go_search:hover {
    background: var(--ride-accent-dark);
}

.search-page-form {
    display: flex;
    gap: 8px;
    margin: 0 0 16px;
}

.search-page-form input[type="search"] {
    flex: 1;
}

.search-count {
    color: var(--ride-muted);
}

.search-result {
    padding: 12px 0;
    border-bottom: 1px solid var(--ride-border);
}

.search-result h2 {
    margin: 0 0 4px;
    font-size: 18px;
}

.search-result p {
    margin: 5px 0 0;
}

.search-meta {
    color: var(--ride-muted);
    font-size: 14px;
}

div#menu ul li.menu-auth {
    float: none;
    position: relative;
}

div#menu > ul {
    width: var(--ride-menu-width);
    max-width: calc(100% - 24px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    padding: 0;
    list-style: none;
}

div#menu > ul > li {
    float: none;
    position: relative;
}

div#menu ul li.menu-auth a,
div#menu ul li.menu-auth a:visited {
    margin-top: 0;
    margin-left: 0;
    padding: 7px 10px;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: var(--ride-radius);
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-size: 14px;
    line-height: 1.2;
}

div#menu ul li.menu-auth a:hover,
div#menu ul li.menu-auth a.active {
    background: var(--ride-accent);
    border-color: var(--ride-accent);
    color: #fff;
}

div#menu ul li.menu-auth + li.menu-auth a {
    border-left: 1px solid rgba(255,255,255,0.18);
}

div#menu ul li.menu-settings .menu-settings-list {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    z-index: 12000;
    min-width: 160px;
    margin: 0;
    padding: 6px;
    list-style: none;
    border: 1px solid rgba(255,255,255,0.14);
    background: #111111;
    box-shadow: 0 12px 28px rgba(0,0,0,0.28);
}

div#menu ul li.menu-settings:hover .menu-settings-list,
div#menu ul li.menu-settings:focus-within .menu-settings-list {
    display: block;
}

div#menu ul li.menu-settings .menu-settings-list li {
    float: none;
    display: block;
}

div#menu ul li.menu-settings .menu-settings-list a,
div#menu ul li.menu-settings .menu-settings-list a:visited {
    display: block;
    margin: 0;
    padding: 9px 10px;
    border: 0;
    border-radius: 0;
    background: transparent;
    white-space: nowrap;
}

div#menu ul li.menu-settings .menu-settings-list a:hover {
    background: var(--ride-accent);
}

.ride-modal {
    display: none;
    position: fixed;
    z-index: 20000;
    inset: 0;
}

.ride-modal.is-open {
    display: block;
}

.ride-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 15, 24, 0.68);
}

.ride-modal-panel {
    position: absolute;
    left: 50%;
    top: 50%;
    box-sizing: border-box;
    width: 420px;
    max-width: calc(100% - 30px);
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    padding: 22px;
    transform: translate(-50%, -50%);
    background: var(--ride-surface);
    border-radius: 8px;
    box-shadow: var(--ride-shadow);
}

#register_popup .ride-modal-panel {
    width: 620px;
}

.ride-login-panel {
    width: 430px;
}

.ride-modal-panel h2 {
    margin: 0 0 8px;
    color: var(--ride-text);
    font-size: 20px;
}

.ride-modal-lead {
    margin: 0 0 16px;
    color: var(--ride-muted);
    line-height: 1.45;
}

.ride-modal-note {
    margin: 0 0 16px;
    padding: 10px;
    background: var(--ride-accent-soft);
    border: 1px solid #c8e0f2;
    border-radius: var(--ride-radius);
    color: #fafafa;
    line-height: 1.45;
}

.ride-modal-panel h3 {
    margin: 14px 0 8px;
    font-size: 16px;
}

.ride-modal-close {
    position: absolute;
    right: 10px;
    top: 10px;
    min-height: 28px;
    width: 28px;
    padding: 0;
    border-radius: 50%;
}

.ride-modal-panel label {
    display: block;
    margin: 10px 0 4px;
    color: var(--ride-text);
    font-weight: 700;
}

.ride-modal-panel label small {
    display: block;
    margin-top: 2px;
    color: var(--ride-muted);
    font-weight: 400;
}

.ride-modal-panel input[type="text"],
.ride-modal-panel input[type="password"] {
    width: 100%;
}

.ride-modal-actions {
    margin-top: 16px;
}

.ride-inline-fields {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ride-inline-fields input {
    width: 96px;
}

.ride-check-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 4px;
}

.ride-check-grid label {
    margin: 0;
    padding: 8px;
    background: var(--ride-bg);
    border: 1px solid var(--ride-border);
    border-radius: var(--ride-radius);
    font-weight: 700;
}

.ride-help-box {
    margin-top: 14px;
    padding: 12px;
    background: #fbfdff;
    border: 1px solid var(--ride-border);
    border-radius: var(--ride-radius);
}

.ride-help-box p {
    margin: 8px 0 0;
    color: var(--ride-muted);
    line-height: 1.4;
}

#register_message {
    display: block;
    margin-top: 10px;
    color: var(--ride-muted);
}

#message {
    display: block;
    margin-top: 10px;
    color: var(--ride-muted);
}

body.home-page {
    background: #fafafa;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.home-page div#page {
    width: 100%;
    max-width: 100%;
    margin: 0;
    overflow-x: hidden;
    box-sizing: border-box;
}

.home-page #footer {
    display: flex;
    max-width: 100%;
    margin: 0 auto;
    float: none;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 7000;
}

.home-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
	width: 100%;
    z-index: 0;
    background-position: center;
    background-size: cover;
    background-image: url("../images/headers/ride.hu-eredeti-bmx-background-hatterkep.jpg");
    background-color: #111;
    color: #fff;
    will-change: transform;
}

.home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0,0,0,0.18), rgba(0,0,0,0.72));
}

.home-hero-content {
    position: relative;
    z-index: 2;
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto 80px;
    transform: translateY(0);
    transition: transform 0.7s ease, opacity 0.7s ease;
}

.home-hero h1 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 74px;
    line-height: 0.95;
}

.home-hero p {
    max-width: 620px;
    margin: 0;
    font-size: 22px;
    line-height: 1.35;
}

.home-section-inner {
    width: min(76vw, 1200px);
    max-width: calc(100% - 32px);
    margin: 0 auto;
    padding: 10px;
    box-sizing: border-box;
}
.home-section-inner-jobb {
    width: 50%;
    max-width: 100%;
    margin: 0 auto;
	padding:10px;
    box-sizing: border-box;
}
.home-section-inner-jobb img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
}

.home-intro-banner {
    flex: 0 0 280px;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #111;
    color: #fff;
    border-left: 4px solid #e0002a;
    padding: 22px;
    box-sizing: border-box;
}

.home-intro-banner a {
    color: #39f;
}

.home-intro-banner img {
    max-width: 100%;
    height: auto;
}

.home-intro-banner :first-child {
    margin-top: 0;
}

.home-intro-banner :last-child {
    margin-bottom: 0;
}

.home-intro,
.home-menu-row,
.home-news-section,
.home-calendar-section {
    position: relative;
    z-index: 2;
    padding: 74px 0;
    max-width: 100%;
    box-sizing: border-box;
}

.home-intro {
	background: #fafafb;
    display: flex;
    flex-direction: row;
    width: min(76vw, 1280px);
    max-width: 100%;
    align-items: center;
    align-content: center;
    justify-content: center;
    gap: 20px;
	min-height: 40vh;
    padding: 0%;

}

.home-intro > .home-section-inner {
 flex: 0 0 50%;
    width: auto;
    min-width: 0;
}

.home-intro > .home-section-inner-jobb {
   flex: 0 1 50%;
    width: auto;
}

.home-menu-row {
    z-index: 9000;
    padding: 0;
    background: #111;
    width: 100%;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.16);
}

.home-intro h2,
.home-news-section h2,
.home-calendar-section h2 {

}

.home-intro p {
	text-align: justify;

}

.home-menu-row div#menu {
    position: relative;
    top: 0;
    display: flex;
    justify-items: center;
    align-items: center;
    align-content: center;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    transition: opacity 0.45s ease, transform 0.45s ease, box-shadow 0.45s ease;
    will-change: opacity, transform;
}

.home-page.home-menu-visible .home-menu-row div#menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.home-page.home-menu-visible div#menu {
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.16);
}

.home-page div#menu ul {
    width: var(--ride-menu-width);
    max-width: calc(100% - 24px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
}

.home-news-section {
background: #fafafa;
    width: 100%;
}

.home-news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.home-news-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--ride-border);
    border-radius: 0;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.home-news-card:hover {
    transform: translateY(-2px);
    border-color: rgba(210, 31, 38, 0.28);
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.13);
}

.home-news-card-media {
    display: block;
    aspect-ratio: 16 / 9;
    background: #d8dee8;
    border-radius: 0;
    overflow: hidden;
}

.home-news-card-media img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 0;
    object-fit: cover;
    transition: transform 0.22s ease;
}

.home-news-card-media.is-fallback {
    position: relative;
    background: #e7ecf2;
}

.home-news-card-media.is-fallback img {
    display: none;
}

.home-news-card-media.is-fallback::before,
.ride-feed-thumb.is-fallback::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 72px;
    height: 72px;
    transform: translate(-50%, -50%);
    border: 5px solid rgba(0, 111, 184, 0.48);
    border-radius: 50%;
    background:
        linear-gradient(90deg, transparent 45%, rgba(0, 111, 184, 0.48) 45%, rgba(0, 111, 184, 0.48) 55%, transparent 55%),
        linear-gradient(0deg, transparent 45%, rgba(0, 111, 184, 0.48) 45%, rgba(0, 111, 184, 0.48) 55%, transparent 55%);
}

.home-news-card-media.is-fallback::after,
.ride-feed-thumb.is-fallback::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 42px;
    height: 72px;
    transform: translate(-50%, -50%);
    border-left: 4px solid rgba(0, 111, 184, 0.38);
    border-right: 4px solid rgba(0, 111, 184, 0.38);
    border-radius: 50%;
}

.home-news-card-media.fallback-video::before,
.ride-feed-thumb.fallback-video::before {
    width: 82px;
    height: 54px;
    border: 5px solid rgba(0, 111, 184, 0.48);
    border-radius: 12px;
    background: none;
}

.home-news-card-media.fallback-video::after,
.ride-feed-thumb.fallback-video::after {
    left: calc(50% + 46px);
    width: 0;
    height: 0;
    border: 18px solid transparent;
    border-left-color: rgba(0, 111, 184, 0.48);
    border-right: 0;
    border-radius: 0;
}

.home-news-card-media.fallback-competition::before,
.ride-feed-thumb.fallback-competition::before {
    width: 62px;
    height: 54px;
    border: 5px solid rgba(0, 111, 184, 0.48);
    border-top: 0;
    border-radius: 0 0 18px 18px;
    background: none;
}

.home-news-card-media.fallback-competition::after,
.ride-feed-thumb.fallback-competition::after {
    width: 96px;
    height: 82px;
    border: 5px solid rgba(0, 111, 184, 0.38);
    border-top: 0;
    border-bottom: 5px solid rgba(0, 111, 184, 0.48);
    border-radius: 0 0 28px 28px;
    background:
        linear-gradient(rgba(0, 111, 184, 0.48), rgba(0, 111, 184, 0.48)) center 62px / 36px 5px no-repeat,
        linear-gradient(rgba(0, 111, 184, 0.48), rgba(0, 111, 184, 0.48)) center 70px / 58px 5px no-repeat;
}

.ride-feed-thumb.is-fallback::before {
    width: 42px;
    height: 42px;
    border-width: 4px;
}

.ride-feed-thumb.is-fallback::after {
    width: 25px;
    height: 42px;
    border-left-width: 3px;
    border-right-width: 3px;
}

.ride-feed-thumb.fallback-video::before {
    width: 48px;
    height: 32px;
    border-width: 4px;
    border-radius: 9px;
}

.ride-feed-thumb.fallback-video::after {
    left: calc(50% + 28px);
    border-width: 12px;
    border-right: 0;
}

.ride-feed-thumb.fallback-competition::before {
    width: 38px;
    height: 32px;
    border-width: 4px;
    border-top: 0;
    border-radius: 0 0 12px 12px;
}

.ride-feed-thumb.fallback-competition::after {
    width: 58px;
    height: 48px;
    border-width: 4px;
    border-top: 0;
    border-bottom-width: 4px;
    border-radius: 0 0 18px 18px;
    background:
        linear-gradient(rgba(0, 111, 184, 0.48), rgba(0, 111, 184, 0.48)) center 36px / 24px 4px no-repeat,
        linear-gradient(rgba(0, 111, 184, 0.48), rgba(0, 111, 184, 0.48)) center 43px / 38px 4px no-repeat;
}

.home-news-card:hover .home-news-card-media img {
    transform: scale(1.035);
}

.home-news-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: space-between;
    padding: 16px;
}

.home-news-card-featured .home-news-card-body {
    padding: 26px;
}

.home-side-articles {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.home-side-articles .home-news-card {
    display: flex;
    flex-direction: column;
}

.home-side-articles .home-news-card-media {
    aspect-ratio: 16 / 9;
    width: 100%;
    height: auto;
}

.home-side-articles .home-news-card-body {
    padding: 16px;
}








.home-kicker {
    margin: 0 0 10px;
    color: var(--ride-muted) !important;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.home-read-more {
    display: inline-block;
    margin-top: 12px;
    padding: 9px 13px;
    background: var(--ride-accent);
    border-radius: 6px;
    color: #fff !important;
    font-weight: 700;
    text-decoration: none;
}

.home-calendar-section {
    background: #fff;
	width: 100%;
}

.home-calendar-section.is-loading {
    opacity: 0.72;
    pointer-events: none;
}

.home-calendar-titlebar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
}

.home-calendar-titlebar h2 {
    margin-bottom: 0;
}

.home-calendar-picker {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px;
    background: #f5f7fa;
    border: 1px solid var(--ride-border);
    border-radius: 8px;
}

.home-calendar-picker label {
    margin: 0;
    color: var(--ride-muted);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.home-calendar-picker select {
    min-width: 104px;
}

.home-calendar-picker input[type="submit"] {
    min-height: 38px;
}

.home-year-calendar {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.home-calendar-month {
    min-width: 0;
}

.home-calendar-month h3 {
    margin: 0 0 8px;
    color: var(--ride-text);
    font-size: 16px;
    font-weight: 700;
}

.home-calendar {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    border: 1px solid var(--ride-border);
    border-radius: 8px;
    overflow: hidden;
    background: #fafafa;
    box-shadow: 1px 1px 10px #44444426;
}

.home-calendar-head,
.home-calendar-day {
    position: relative;
    aspect-ratio: 1 / 1;
    min-height: 0;
    padding: 5px;
    border-right: 1px solid var(--ride-border);
    border-bottom: 1px solid var(--ride-border);
    background: #fff;
    box-sizing: border-box;
    font-size: 12px;
}

.home-calendar-head {
    background: #111;
    color: #fff;
    font-weight: 700;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-calendar-day:nth-child(7n) {
    border-right: 0;
}

.home-calendar-day.is-empty {
    background: #f5f7fa;
}

.home-calendar-day.has-event {
    background: var(--ride-accent);
}

.home-calendar-day.is-today {
    outline: 3px solid var(--ride-accent);
    outline-offset: -3px;
    background: #fff7e6;
}

.home-calendar-day strong {
    display: block;
    margin-bottom: 3px;
    font-size: 12px;
}

.home-calendar-day.is-today strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    background: var(--ride-accent);
    border-radius: 50%;
    color: #fff;
}

.home-calendar-events {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 3px;
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.home-calendar-event {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    margin: 0 auto;
    border-radius: 4px;
    background: transparent;
    color: #fff;
    fill: rgb(255 255 255);
    line-height: 1;
    pointer-events: auto;
}

.home-calendar-event:hover {
    background: transparent;
    color: #fefefe;
}

.home-calendar-event svg {
    display: block;
    width: 16px;
    height: 16px;
fill: #ffffff;
}

.home-calendar-empty {
    color: var(--ride-muted);
}

@media (max-width: 1180px) {
    .home-year-calendar {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .home-year-calendar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .home-hero h1 {
        font-size: 46px;
    }

    .home-hero p,
    .home-intro p {
        font-size: 16px;
    }

    .home-intro {
        flex-direction: column;
        width: auto;
    }

    .home-intro > .home-section-inner,
    .home-intro > .home-section-inner-jobb,
    .home-intro-banner {
        width: 100%;
        flex-basis: auto;
    }

    .home-news-grid {
        grid-template-columns: 1fr;
    }

    .home-side-articles {
        grid-template-columns: 1fr;
    }

    .home-calendar-titlebar,
    .home-calendar-picker {
        align-items: stretch;
        flex-direction: column;
    }

    .home-calendar-picker select,
    .home-calendar-picker input[type="submit"] {
        width: 100%;
    }

    .home-side-articles .home-news-card-media {
        aspect-ratio: 16 / 9;
        height: auto;
    }

    .home-calendar {
        overflow-x: auto;
        grid-template-columns: repeat(7, 130px);
    }

    .home-calendar-month .home-calendar {
        overflow: hidden;
        grid-template-columns: repeat(7, minmax(38px, 1fr));
    }

    .home-page div#menu ul li.menu-auth {
        float: none;
    }
}

@media (max-width: 560px) {
    .home-year-calendar {
        grid-template-columns: 1fr;
    }
}
table {
    width: 100%;
}

body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
    text-transform: none !important;
}

body h1::first-letter,
body h2::first-letter,
body h3::first-letter,
body h4::first-letter,
body h5::first-letter,
body h6::first-letter {
    text-transform: uppercase;
}

.ride-breadcrumb {
    position: relative;
    z-index: 30;
    width: var(--ride-page-width);
    max-width: calc(100% - 32px);
    margin: 22px auto -54px;
    color: var(--ride-muted);
    font-size: 13px;
    line-height: 1.4;
}

.ride-breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ride-breadcrumb li {
    display: flex;
    align-items: center;
    gap: 6px;
}

.ride-breadcrumb li + li::before {
    content: "/";
    color: var(--ride-border-strong);
}

.ride-breadcrumb a {
    color: var(--ride-accent);
    text-decoration: none;
}

.ride-breadcrumb a:hover,
.ride-breadcrumb a:focus {
    text-decoration: underline;
}

.ride-breadcrumb [aria-current="page"] {
    color: var(--ride-muted);
}

.ride-scroll-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: #000;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 160ms ease, transform 160ms ease;
}

.ride-scroll-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.ride-scroll-top:hover,
.ride-scroll-top:focus {
    background: #000;
    color: #fff;
    outline: 2px solid #fff;
    outline-offset: -5px;
}

@media (max-width: 640px) {
    .ride-breadcrumb {
        margin: 16px auto -48px;
    }

    .ride-scroll-top {
        right: 14px;
        bottom: 52px;
        width: 42px;
        height: 42px;
        font-size: 25px;
    }
}

.gallery-participants {
    margin-top: 6px;
    color: #6d7782;
    font-size: 12px;
    line-height: 1.35;
}

.gallery-participants span {
    color: #3f4a56;
    font-weight: 600;
}

.gallery-participants a {
    color: var(--ride-accent);
    text-decoration: none;
}

.gallery-participants a:hover {
    color: #252b31;
}
