:root {
    scroll-behavior: auto;
}

@keyframes spin {
    100% {
        transform: rotate( 360deg );
    }
}

.loading {
    position: relative;
    height: 34px;
}

.blockOverlay {
    border: none;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: transparent;
    opacity: 0.6;
    cursor: wait;
    z-index: 10 !important;
}
.blockOverlay::before {
    height: 34px !important;
    width: 34px !important;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -17px;
    margin-top: -17px;
    content: '';
    -webkit-animation: spin 1s ease-in-out infinite;
    animation: spin 1s ease-in-out infinite;
    background: url(../img/loader.svg) center center;
    background-size: cover;
    line-height: 1;
    text-align: center;
    font-size: 2em;
    color: rgba(80, 61, 50, 0.75);
    z-index: 10 !important;
}

p + .txt-box {
    margin-top: 25px;
}

.map-desk, .map-mobile {
    cursor: pointer;
}

.trophies-count span {
    cursor: pointer;
}

.last-trophies .athlete-name {
    text-decoration: none;
    cursor: auto;
}

.athlete-modal-name .athlete-name {
    cursor: auto;
}

.athlete-modal-content .trophies-count span {
    text-decoration: none;
    cursor: auto;
}

.routes-table .height-cell {
    text-transform: none;
}

.routes-box .filter-wrapper {
    margin-top: 50px;
}

@media only screen and (max-width: 992px) {
    .routes-box .filter-wrapper {
        margin-top: 30px;
    }
}

.routes-table .table-row .comments-count {
    left: 80%;
}