html,
body {
    /* Disabling text selection */
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select:   none; /* Chrome/Safari/Opera */
    -khtml-user-select:    none; /* Konqueror */
    -moz-user-select:      none; /* Firefox */
    -ms-user-select:       none; /* IE/Edge */
    user-select:           none; /* non-prefixed version, currently not supported by any browser */
    height: 100%;
    background-color: white;
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: 300;
}

body.loading {
    cursor: wait;
}

body,
a {
    color: black;
}

a {
    text-decoration: none;
}

a img {
    border: 0;
}

input:focus,
textarea:focus{
    outline:            none;
    outline-style:      none;
    -webkit-box-shadow: none;
    box-shadow:         none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

.desktop {
    display: block !important;
}
img.desktop,
a.desktop,
span.desktop {
    display: inline-block !important;
}

.mobile {
    display: none !important;
}

.bg-overlay {
    display: none;
    z-index: 3;
    position: fixed;
    top:  0;
    left: 0;
    width:  100%;
    height: 100%;
    background-image: url(/img/bg-overlay.png);
}

.navigation-top {
    pointer-events: none;
    z-index: 2;
    position: fixed;
    top:  0;
    left: 0;
    width: 100%;
    height: 65px;
    padding-top: 10px;
    background-image: url(/img/navigation-top-bg.png);
    background-repeat: repeat-x;
    font-family: 'steilefuturabqbold', Arial, sans-serif;
    text-align: center;
}

.navigation-top,
.navigation-top a {
    color: white;
}

.navigation-top a {
    pointer-events: all;
}

.navigation-top .inside-container {
    width: 500px;
    margin: auto;
}

.navigation-top .last-page-url {
    float: left;
    margin-top: -8px;
}

.navigation-top .items .logo {
    display: inline-block;
    margin-top:   -8px;
    margin-right: -8px;
}

.navigation-top .burger-menu {
    float: right;
    margin-top:   -14px;
    margin-right: -18px;
}

.navigation-top.hide-top-burgermenu .last-page-url,
.navigation-top.hide-top-burgermenu .logo,
.navigation-top.hide-top-burgermenu .burger-menu {
    display: none;
}

.navigation-top .items {
    width: 340px;
    margin: auto;
}

.navigation-top .items .item {
    padding: 0 10px;
    padding-bottom: 2px;
    text-transform: uppercase;
    text-shadow: 0 0 3px rgba(90, 90, 90, 1);
}

.navigation-top .items .item.active {
    border-bottom: 2px solid white;
}

.navigation-top .items .item-inspiration {
    float: left;
}

.navigation-top .items .item-competition {
    float: right;
}

.burger-menu .close {
    display: none;
}

.burger-menu-content {
    display: none;
    z-index: 4;
    position: fixed;
    width:  850px;
    height: 480px;
    background-color: black;
    font-family: 'steilefuturabqbold', Arial, sans-serif;
    font-size: 34px;
    text-transform: uppercase;
}

.burger-menu-content,
.burger-menu-content a {
    color: white;
}

.burger-menu-content .last-page-url {
    position: absolute;
    top:  37px;
    left: 55px;
}

.burger-menu-content .btn-close {
    position: absolute;
    top:   37px;
    right: 55px;
}

.burger-menu-content .logo {
    position: absolute;
    top:  186px;
    left: 336px;
}

.burger-menu-content .link-1 {
    position: absolute;
    top: 180px;
    left: 55px;
}

.burger-menu-content .link-2 {
    position: absolute;
    top:  180px;
    right: 55px;
}

.burger-menu-content .link-3 {
    position: absolute;
    top: 255px;
    left: 55px;
}

.burger-menu-content .link-4 {
    position: absolute;
    top:  255px;
    right: 55px;
}

.burger-menu-content .social-media-icons {
    position: absolute;
    bottom: 55px;
    right:  55px;
}

.burger-menu-content .social-media-icons .icon img {
    float: left;
    display: block;
    margin-left: 40px;
}

.scrollbysection {
    overflow: hidden;
}

.grid {
    position: absolute;
    top:  0;
    left: 0;
    width:  100%;
    height: 100%;
}

.grid .sections {
    /*
    position: absolute;
    top:  0;
    left: 0;
    */
    background-color: black;
}

.grid .item {
    display: none;
    overflow: hidden;
    float: left;
    width: 33.33%;
    background-color: white;
}

.grid .item-middle-logo {
    background-color: black;
}

.grid .item.fontcolor-yellow {
    color: #ffc300;
}

.grid .item.fontcolor-white {
    color: white;
}

.grid .item.fontcolor-black {
    color: black;
}

.grid .item.fontcolor-blue {
    color: #00a6ed;
}

.grid .item .container-inside {
    position: relative;
    font-family: 'steilefuturabqbold', Arial, sans-serif;
    font-size: 20px;
    text-align: center;
    text-transform: uppercase;
}

.grid .item.photo img {
    display: block;
    position: absolute;
    top:  0;
    left: 0;
}

.grid .item .text {
    position: absolute;
    top:  0;
    left: 0;
    display: block;
    width: 100%;
}

.grid .item .btn-play {
    vertical-align: middle;
    display: inline-block;
    width:  50px;
    height: 50px;
    margin-left: 15px;
    background-repeat: no-repeat;
}

.grid .item.fontcolor-yellow .btn-play {
    background-image: url(/img/btn-play-yellow.png);
}

.grid .item.fontcolor-white .btn-play {
    background-image: url(/img/btn-play-white.png);
}

.grid .item.fontcolor-black .btn-play {
    background-image: url(/img/btn-play-black.png);
}

.grid .item.fontcolor-blue .btn-play {
    background-image: url(/img/btn-play-blue.png);
}

.grid .item .valign-middle {
    position: relative;
    text-align: center;
}

.grid .item .valign-middle .last-page-url {
    position: absolute;
    top:  18px;
    left: 50px;
}

.grid .item .valign-middle .logo {
    display: inline-block;
    margin-right: -4px;
}

.grid .item .valign-middle .burger-menu {
    position: absolute;
    top:   18px;
    right: 50px;
}

.grid .item .valign-middle .burger-menu .close {
    display: none;
}

.embed-overlay {
    cursor: pointer;
    display: none;
    z-index: 7;
    position: fixed;
}

.embed-overlay iframe {
    width:  850px;
    height: 480px;
}

.embed-overlay .caption {
    pointer-events: none;
    position: absolute;
    left:   0;
    bottom: 0;
    width:  100%;
    height: 150px;
    background-image: url(/img/bg-caption.png);
}

.embed-overlay .caption .text {
    position: absolute;
    left:   0;
    bottom: 0;
    width: 100%;
    padding: 0 25px;
    padding-bottom: 25px;
    text-align: center;
    color: black;
}

.pagefull {
    width:  100%;
    height: 100%;
    background-color: black;
}

.pagefull .videoplayer,
.pagefull .imagebg {
    overflow: hidden;
    z-index: 1;
    display: block;
    position: absolute;
    top:  0;
    left: 0;
    width: 100%;
}

.pagefull .videoplayer iframe {
    position: absolute;
    top:  0;
    left: 0;
    width: 100%;
    height: 100%;
}

.pagefull h1,
.pagefull h2 {
    pointer-events: none;
    z-index: 2;
    position: relative;
    width: 100%;
    line-height: 100%;
    font-family: 'steilefuturabqbold', Arial, sans-serif;
    text-transform: uppercase;
    text-align: center;
    color: white;
}

.pagefull h1 .maxwidth,
.pagefull h2 .maxwidth {
    max-width: 500px;
    margin: auto;
}

.pagefull h1 {
    font-family: 'steilefuturabqbold', Arial, sans-serif;
    font-size: 60px;
}

.pagefull h2 {
    font-family: 'ridemybike_essential_bold', Arial, sans-serif;
    font-size: 40px;
}

.pagefull h1.middle {
    position: absolute;
    width: 100%;
}

.pagefull .btn-movealong {
    cursor: pointer;
    z-index: 1;
    position: absolute;
    left:   0;
    bottom: 0;
    width: 100%;
    background-color: white;
    text-align: center;
}

.page h1,
.page h2,
.page h3,
.page h4 {
    line-height: 100%;
    font-family: 'steilefuturabqbold', Arial, sans-serif;
    text-transform: uppercase;
}

.page .headline {
    float: left;
}

.page.even .headline {
    float: right;
}

.page .headline h1,
.page .headline h2 {
    letter-spacing: 1px;
}

.page .headline .inside-container {
    position: relative;
}

.page .headline .photo-large {
    display: block;
    position: absolute;
    top:  0;
    left: 0;
}

.page .headline h2 {
    position: absolute;
    left: 50px;
    font-size: 20px;
    text-shadow: 0 0 3px rgba(90, 90, 90, 0.35);
    color: white;
}

.page .headline h1 {
    position: absolute;
    left: 50px;
    width: 300px;
    font-size: 40px;
    text-transform: uppercase;
    text-shadow: 0 0 3px rgba(90, 90, 90, 0.35);
    color: white;
}

.page.even .headline h2,
.page.even .headline h1 {
    left: auto;
    right: 50px;
    text-align: right;
}

.page .headline .text {
    -webkit-overflow-scrolling: touch;
    overflow: auto;
    position: absolute;
    top:   0;
    left: 50px;
    color: white;
}

.page .subpages {
    float: right;
    width: 40%;
    max-width: 500px;
    padding: 45px 75px;
    background-color: white;
}

.page.even .subpages {
    float: left;
}

.page .subpages .inside-container {
    position: relative;
}

.page .subpages .nav-prev {
    cursor: pointer;
    position: absolute;
    top:   215px;
    left: -65px;
}

.page .subpages .nav-next {
    cursor: pointer;
    position: absolute;
    top:    215px;
    right: -65px;
}

.page .subpages h3 {
    font-size: 18px;
}

.page .subpages h3 img {
    vertical-align: baseline;
}

.page .subpages h2 {
    margin: 8px 0;
    margin-bottom: 25px;
    font-size: 35px;
}

.page .subpages .subpage-photo {
    display: block;
    overflow: hidden;
    max-height: 200px;
    margin-bottom: 30px;
}

.page .subpages .subpage_text {
    overflow: hidden;
    font-size: 14px;
}

.page .show-subpages {
    cursor: pointer;
    z-index: 4;
    position: absolute;
    width: 100px;
    height: 90px;
}

.page .show-subpages .showmore,
.page .show-subpages .showless {
    position: absolute;
    top:  0;
    left: 0;
}

.page .show-subpages .showless {
    display: none;
}

.competition-bottom-bar .btn {
    cursor: pointer;
    display: block;
}

.competition-bottom-bar {
    z-index: 1;
    position: absolute;
    bottom: 0;
    left:   0;
    overflow: hidden;
    width:  100%;
    height: 120px;
    background-color: #1a1a1a;
    text-align: center;
}

.competition-bottom-bar .btn {
    display: inline-block;
    width:  205px;
    height: 120px
}

.competition-page .competition-intro,
.competition-page .competition-entry {
    z-index: 999;
    position: absolute;
    overflow: none;
    width: 100%;
    font-family: 'steilefuturabqbold', Arial, sans-serif;
    text-align: center;
    color: white;
}

.competition-page .competition-entry .inputs-box {
    margin: 25px auto;
}

.competition-page .competition-entry input[type=text],
.competition-page .competition-entry input[type=email] {
    width: 250px;
    margin: 0 25px;
    border-width: 0;
    border-bottom: 2px solid #ffc300;
    background-color: transparent;
    font-family: 'steilefuturabqbold', Arial, sans-serif;
    text-transform: uppercase;
    color: white;
}

.competition-page .competition-entry input[type=file],
.competition-page .competition-entry input[type=submit] {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=1)";
    filter: alpha(opacity=1);
    -moz-opacity:   0.01;
    -khtml-opacity: 0.01;
    opacity:        0.01;
}

.competition-page .competition-entry a {
    text-decoration: underline;
    color: white;
}

.competition-page .terms-box {
    margin-bottom: 25px;
    font-size: 20px;
}

.entry-page .competition-photo-overlay-instagram-link {
    display: none;
    z-index: 6;
    position: absolute;
    top:  0;
    left: 0;
    height: 50px;
    padding-top: 15px;
    background-color: white;
    text-align: center;
}

.entry-page .competition-photo-overlay {
    display: none;
    z-index: 6;
    position: absolute;
    top:  0;
    left: 0;
    overflow: hidden;
    width:      600px;
    max-height: 600px;
}

.entry-page .competition-photo-overlay img {
    display: block;
}

.entry-page .competition-photos {
    -webkit-overflow-scrolling: touch;
    overflow: auto;
    color: white;
}

.entry-page .competition-photo {
    cursor: pointer;
    float: left;
    overflow: hidden;
    width: 20%;
}

.entry-page .competition-photo .inside-container {
    position: relative;
}

.entry-page .competition-photo-overlay img.photo,
.entry-page .competition-photo img {
    display: block;
    position: relative;
}

.entry-page .competition-photo-overlay .name {
    position: absolute;
    top:  10px;
    left: 20px;
    font-family: 'ridemybike_essential_bold', Arial, sans-serif;
    font-size: 40px;
    text-transform: capitalize;
    text-shadow: 0 0 3px rgba(90, 90, 90, 1);
    color: white;
}

.entry-page .competition-photo-overlay .close {
    cursor: pointer;
    position: absolute;
    top:   5px;
    right: 5px;
}

.entry-page .competition-photo-overlay .btns-social {
    position: absolute;
    bottom: 20px;
    left:   20px;
}

.entry-page .competition-photo-overlay .btns-social img {
    cursor: pointer;
    display: inline-block;
    margin-right: 15px;
}

.entry-page .competition-photo-overlay .btns-social img.last {
    margin-right: 0;
}

.entry-page .gradeup {
    position: absolute;
    bottom: -2px;
    left:   0;
    width:  100%;
    height: 200px;
    background-image: url(/img/bg-gradeup-small.png);
}

.entry-page .votes {
    cursor: pointer;
    position: absolute;
    bottom: 10px;
    right:  10px;
    font-family: 'steilefuturabqbold', Arial, sans-serif;
    font-size: 24px;
    text-align: right;
    text-shadow: 0 0 3px rgba(90, 90, 90, 1);
    color: white;
}

.entry-page .votes.voted {
    color: #ffc300;
}

.entry-page .competition-photo-overlay .votes {
    bottom: 20px;
    right:  20px;
}

.entry-page .votes .icon {
    vertical-align: middle;
    display: inline-block;
    width:  30px;
    height: 25px;
    margin-left: 5px;
    background-image: url(/img/icon-heart.png);
    background-repeat: no-repeat;
}

.entry-page .votes.voted .icon {
    background-image: url(/img/icon-heart-voted.png);
}

.entry-page .competition-bottom-instructions {
    pointer-events: none;
    z-index: 1;
    position: absolute;
    left:   0;
    bottom: 120px;
    width: 100%;
    height: 165px;
    padding-top: 70px;
    background-image: url(/img/bg-gradeup.png);
    font-family: 'steilefuturabqbold', Arial, sans-serif;
    font-size: 65px;
    text-transform: uppercase;
    text-align: center;
    color: #fcb818;
}

.entry-page .search-overlay,
.imageuploaded-overlay {
    display: none;
    z-index: 6;
    position: absolute;
    top:  0;
    left: 0;
}

.entry-page .search-overlay .search-field {
    width: 400px;
    height: 50px;
    border-width: 0;
    border-bottom: 2px solid #ffc300;
    background-color: transparent;
    font-family: 'steilefuturabqbold', Arial, sans-serif;
    font-size: 30px;
    text-transform: uppercase;
    color: white;
}

.imageuploaded-overlay {
    pointer-events: none;
    font-family: 'steilefuturabqbold', Arial, sans-serif;
    font-size: 50px;
    text-transform: uppercase;
    text-align: center;
    color: #ffc300;
}

.imageuploaded-overlay p {
    margin: 25px 0;
}

a.readmore {
    display: block;
    margin: 15px 0;
    font-size: 14px;
    text-decoration: underline;
    text-align: center;
    color: #0078ff;
}

.error {
    margin: 15px auto;
    font-style: italic;
}

.left {
    float: left;
}

.right {
    float: right;
}

.center {
    display: block;
    margin: auto;
    text-align: center;
}

.clear {
    clear: both;
}

@media only screen
and (min-width : 320px)
and (max-width : 1136px),
only screen and (min-device-width : 320px) and (max-device-width : 1136px) {
    
    .desktop,
    img.desktop,
    a.desktop,
    span.desktop {
        display: none !important;
    }
    
    .mobile {
        display: block !important;
    }
    
    img.mobile,
    a.mobile,
    span.mobile {
        display: inline-block !important;
    }
    
    .navigation-top {
        z-index: 5;
        padding-top: 18px;
    }
    
    .navigation-top .inside-container {
        width: 600px;
    }
    
    .navigation-top .item {
        font-size: 20px;
    }
    
    .navigation-top .item-inspiration {
        margin-left: -30px;
        margin-right: 30px;
    }
    
    .navigation-top .item-competition {
        margin-left:   30px;
        margin-right: -30px;
    }
    
    .navigation-top .last-page-url,
    .navigation-top .items .logo,
    .navigation-top .burger-menu {
        display: inline-block;
    }
    
    .navigation-top .burger-menu {
        padding: 20px;
        padding-top: 0;
    }
    
    .navigation-top .items .item {
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
        filter: alpha(opacity=50);
        -moz-opacity:   0.5;
        -khtml-opacity: 0.5;
        opacity:        0.5;
    }
    
    .navigation-top .items .item.active {
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
        filter: alpha(opacity=100);
        -moz-opacity:   1;
        -khtml-opacity: 1;
        opacity:        1;
    }
    
    .burger-menu-content {
        z-index: 7;
        top:   0;
        right: 0;
        width:  500px !important;
        height: 100%;
        background-color: white;
    }
    
    .burger-menu-content,
    .burger-menu-content a {
        color: black;
    }
    
    .burger-menu-content .last-page-url,
    .burger-menu-content .btn-close,
    .burger-menu-content .logo {
        display: none;
    }
    
    .burger-menu-content .link-1,
    .burger-menu-content .link-2,
    .burger-menu-content .link-3,
    .burger-menu-content .link-4 {
        position: static;
        display: block;
        margin: 35px 35px;
        text-align: center;
    }
    
    .burger-menu-content .link-1 {
        margin-top: 150px;
    }
    
    .burger-menu-content .social-media-icons {
        position: absolute;
        top:   auto;
        left:  auto;
        right: auto;
        bottom: 40px;
        width: 100%;
        text-align: center;
    }
    
    .burger-menu-content .social-media-icons .icon img {
        float: none;
        display: inline;
        margin: 0 20px;
    }
    
    .scrollbysection {
        -webkit-overflow-scrolling: touch;
        overflow: auto;
    }
    
    .grid .item {
        float: left;
        width: 100%;
    }
    
    .grid .item .text {
        font-size: 24px;
    }
    
    .entry-page .competition-photo {
        width: 33.33%;
    }
    
    .competition-page .competition-entry input[type=text],
    .competition-page .competition-entry input[type=email] {
        border-radius: 0;
        margin: 20px 0;
        background-color: transparent;
        font-size: 20px;
    }
    
    .competition-bottom-bar {
        height: 90px;
    }
    
    .competition-bottom-bar .btn {
        width: 154px;
        height: 90px;
    }
    
    .competition-bottom-instructions {
        font-size: 45px !important;
    }
    
    .entry-page .competition-photo-overlay {
        width:      400px;
        max-height: 600px;
    }
    
    .entry-page .competition-bottom-instructions {
        bottom: 90px;
    }
    
    .page.even .headline h2,
    .page.even .headline h1 {
        left: 50px;
        right: auto;
        text-align: left;
    }
    
    .page .headline .text,
    .page .subpages .subpage_text {
        font-size: 18px;
    }
    
    .page .subpages {
        display: none;
        float: none;
        z-index: 6;
        position: absolute;
        padding: 70px 25px;
        padding-top: 65px;
    }
    
    .page .subpages .nav-prev,
    .page .subpages .nav-next {
        display: none;
    }
    
    .page .subpages .subpage_text {
        max-height: 500px;
    }
    
    .page .show-subpages {
        z-index: 6;
    }
    
    .page .subpages,
    .page .subpages .inside-container {
        pointer-events: all;
        -webkit-overflow-scrolling: touch;
        overflow: scroll !important;
    }
    
    .page .subpages .subpage {
        display: block !important;
        position: relative;
    }
    
    .page .subpages .subpage .next-subpage {
        position: absolute;
        bottom: 25px;
        width: 100%;
        text-align: center;
    }
    
    .embed-overlay iframe {
        width:  425px;
        height: 240px;
    }
    
}