@charset "utf-8";
/* CSS Document */

@font-face {
    font-family: Bungee;
    src: url(../fonts/Bungee-Regular.ttf);
    font-weight: normal;
}

@font-face {
    font-family: Roboto Slab;
    src: url(../fonts/RobotoSlab-Regular.ttf);
    font-weight: normal;
}

@font-face {
    font-family: Roboto Slab;
    src: url(../fonts/RobotoSlab-Bold.ttf);
    font-weight: bold;
}

@font-face {
    font-family: Roboto Slab;
    src: url(../fonts/RobotoSlab-Light.ttf);
    font-weight: 100;
}


*{
    box-sizing: border-box;
}

html, body{
    margin: 0;
    font-family: 'Roboto Slab', serif;
    font-size: 18px;
    color: #000044;
    /*background: url(../img/bg.png) no-repeat center center fixed #666;
    background-size: cover;*/
    background: #ECECF4;
}

a{
    color: #ff9600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-weight: 700;
}

a:hover, a:active, a:focus{
    color: #FFCD80;
}

ul a{
    color: #000044;
}

ul a:hover, ul a:active, ul a:focus{
    color: #ff9600;
}

h1, h2, h3, h4, h5{
    font-family: 'Bungee', cursive;
    display: inline-block;
    color: #ff9600;
    padding: 0;
    font-weight: 400;
    max-width: 100%;
}

h1{
    font-size: 56px;
    line-height: 56px;
}

h2{
    font-size: 42px;
    line-height: 42px;
}

h3{
    font-size: 36px;
    line-height: 36px;
}

h4{
    font-size: 32px;
    line-height: 32px;
}

.clearfix{
    clear: both;
}

span.break{
    font-size: 0;
    line-height: 0;
}

#wrapper{
    min-height: 100vh;
    width: 100%;
    position: relative;
    float: left;
    padding-bottom: 30px;
    overflow: hidden;
}

#logo{
    float: left;
    height: 100%;
    width: 30%;
    padding: 5px 0;
    overflow: hidden;
}

#logo img{
    float: left;
    max-height: 100%;
    margin: 0 20px;
    max-width: 90%;
}

#topmenu{
    position: relative;
    float: left;
    width: 100%;
    height: 90px;
    padding: 0;
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
    z-index: 100;
}

#topmenu .submenu{
    min-width: 60%;
    height: 100%;
    float: right;
    text-align: left;
}

#topmenu .submenu a {
    float: left;
    height: 90px;
    width: 25%;
    text-align: center;
    vertical-align: middle;
    line-height: 20px;
    font-size: 20px;
    margin: 0 !important;
    padding: 35px 0;
    color: #000044;
    text-transform: uppercase;
}

#topmenu .submenu a:hover{
    color: #ff9600;
}

#topmenu .submenu a.active {
    background-color: #ff9600;
    color: #fff;
    font-weight: 900;
}

#topmenu .submenu a.active:hover {
    color: #000044;
}

#topmenu .languagemenu{
    width: 10%;
    float: right;
    padding-right: 25px;
}

#topmenu .languagemenu a{
    float: right;
    padding: 30px 5px 0 0;
}

#topmenu .languagemenu a img{
    transition: all .3s ease;
    border-radius: 50%;
    filter: grayscale(100%);
}

#topmenu .languagemenu a.active img,
#topmenu .languagemenu a:hover img{
    filter: grayscale(0%);
}

#mobile-menu{
    height: 60px;
    position: fixed;
    z-index: 999;
    width: 100%;
    background: #000044;
}

#mobile-menu h1{
    font-size: 34px;
    line-height: 60px;
    margin: 0;
    padding: 0;
    width: 85%;
}

#mobile-menu #mobile-logo{
    display: block;
    text-align: center;
    height: 60px;
}

#mobile-menu #mobile-logo img{
    height: 60px;
    display: inline-block;
    padding: 5px;
    float: left;
}

#mobile-menu .mobile-trigger{
    float: right;
    font-size: 40px;
    line-height: 60px;
    width: 50px;
    max-width: 15%;
    text-align: center;
    color: #000044;
    background-color: #ff9600;
    cursor: pointer;
    opacity: 1;
    visibility: visible;
}

#mobile-menu.open .mobile-trigger.on{
    opacity: 0;
    visibility: hidden;
    display: none;
}

#mobile-menu .mobile-trigger.off{
    opacity: 0;
    visibility: hidden;
    display: none;
}

#mobile-menu.open .mobile-trigger.off{
    opacity: 1;
    visibility: visible;
    display: block;
}

#mobile-menu #mobile-dropdown{
    width: 100%;
    padding: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

#mobile-menu.open #mobile-dropdown{
    visibility: visible;
    opacity: 1;
    pointer-events: inherit;
}

#mobile-menu #mobile-dropdown a{
    width: 100%;
    display: block;
    text-align: center;
    font-size: 30px;
    padding: 10px;
    background-color: #000044;
    margin-top: 15px;
    transform: translateX(100vw);
    transition: all 0.5s ease;
    pointer-events: none;
}

#mobile-menu.open #mobile-dropdown a{
    transform: translateX(0px);
    pointer-events: inherit;
    text-transform: uppercase;
}

#content-wrapper{
    transition: all 0.5s ease;
}

#mobile-menu.open ~ #content-wrapper{
    filter: blur(10px);
}

#mobile-menu #mobile-dropdown .mobile-lang a{
    float: left;
    width: 49%;
}

#mobile-menu #mobile-dropdown .mobile-lang a img{
    border: 3px solid #ff9600;
    border-radius: 50%;
}

.sidemenu{
    position: fixed;
    display: block;
    top: 105px;
    left: 0px;
    color: #000044;
    width: 400px;
    transform: translateX(-100%);
    transition: all 0.5s ease;
    z-index: 2;
    box-shadow: none;
}

.sidemenu.open{
    transform: translateX(0%);
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
}

.sidemenu.up{
    top: 10px;
}

.sidemenu h2{
    display: block;
    height: 45px;
    line-height: 45px;
    margin: 0;
    padding: 0;
    background-color: #fff;
    color: #000044;
    font-weight: 900;
    text-align: center;
    font-size: 32px;
}

.sidemenu .switch{
    width: 35px;
    height: 45px;
    position: absolute;
    right: -35px;
    top: 0;
    transition: all 0.3s 0.5s ease;
}

.sidemenu .switch a{
    display: flex;
    justify-content: left;
    align-items: center;
    width: 100%;
    height: 100%;
    font-size: 36px;
    background-color: #ff9600;
    color: #fff;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    border: solid #ff9600;
    border-width: 0 2px 2px 0;
    padding: 5px 0 0 5px;
}

.sidemenu .switch a:hover{
    color: #000044;
}

.sidemenu .switch a::after{
    content: '\f054';
    font-family: FontAwesome;
}

.sidemenu.open .switch{
    right: 0px;
}

.sidemenu.open .switch a::after{
    content: '\f053';
}

.sidemenu .controls{
    width: 100%;
    float: left;
    padding: 0;
    background-color: #fff;
    height: 100%;
    border-width: 0 2px 2px 0;
}

.sidemenu.open .controls{
}

.content{
    position: relative;
    float: right;
    width: calc(100% - 30px);
    height: 100%;
    margin: 15px 0;
    transition: all 0.5s ease;
    z-index: 1;
}

.sidemenu.open ~ .content{
    width: calc(100% - 400px);
}

.canvas{
    position: relative;
    display: block;
    background: url(../img/mn_logo_bg.png) no-repeat center center #fff;
    background-size: contain;
    transition: all 0.3s ease;
    text-align: center;
    overflow: hidden;
    float: left;
    animation: appear 1s ease-out;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
}

.canvas:hover{
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.content.n1 .canvas{
    width: 98%;
    max-height: 90vh;
    margin: 0 1% 1%;
}

.content.n2 .canvas{
    width: 49%;
    height: auto;
    max-height: 50%;
    margin: 0 0 0.5% 0.5%;
}

.canvas canvas{
    position: relative;
    max-height: 90vh;
    max-width: 100%;
    margin-bottom: 20px;
    z-index: 2;
}

@keyframes appear{
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}

@keyframes disappear{
    0%{
        opacity: 1;
    }
    99%{
        opacity: 0;
    }

}

@keyframes slideRight{
    0%{
        transform: translateX(-100%);
    }
    100%{
        transform: translateX(0%);
    }
}

@keyframes slideLeft{
    0%{
        transform: translateX(100%);
    }
    100%{
        transform: translateX(0%);
    }
}

.canvas img{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.canvas .btn{
    z-index: 3;
}

.canvas h3{
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    margin: 0;
    padding: 0;
    color: #000044;
    line-height: 25px;
    font-size: 20px;
    text-align: center;
    z-index: 4;
}

.canvas .bikeInfo{
    position: absolute;
    transform: translate(-100%, -100%);
    top: 0px;
    overflow: hidden;
    background-color: #000044;
    transition: all 0.5s ease;
    color: #fff;
    text-align: left;
    opacity: 0;
    padding: 10px 30px 10px 10px;
    z-index: 5;
    min-width: 300px;
    max-width: 100%;
}

.canvas .bikeInfo.open{
    transform: translate(0%, 0%);
    opacity: 0.8;
}

.canvas .bikeInfo h4{
    margin: 10px 0 5px;
    padding: 0;
    background: transparent;
    color: #ff9600;
    text-transform: uppercase;
    width: 100%;
    float: left;
}

.canvas .bikeInfo .item{
    width: 100%;
}

.canvas .bikeInfo .item span{
    float: right;
    color: #ff9600;
}

.btn{
    background-color: #FF9600;
    padding: 6px 10px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: 'Roboto Slab', serif;
    font-size: 18px;
}

.btn::before{
    font-family: FontAwesome;
}

.btn span{
    margin-left: 10px;
}

.btn:hover{
    color: #fff;
    background-color: #000044;
}

.btn.l{
    font-size: 20px;
}

.btn.xl{
    font-size: 26px;
}

.btn.xxl{
    font-size: 36px;
}

.btn.trans{
    background-color: transparent;
    color: #fff;
}

.btn.trans:hover{
    color: #ff9600;
}

.btn.blue{
    background-color: #000044;
}

.btn.blue:hover{
    background-color: #ff9600;
}

.btn.white{
    background-color: #fff;
    color: #000044;
}

.btn.white:hover{
    background-color: #000044;
    color: #fff;
}

.btn.close{
    color: #000044;
    padding: 0;
}
.btn.close:hover{
    color: #fff;
}

.btn.right{
    position: absolute;
    right: 0px;
    top: 0px;
}

.btn.left{
    position: absolute;
    left: 0;
    top: 0;
}

.center{
    text-align: center;
}

.hidden{
    visibility: hidden;
}

.full{
    display: block;
    width: 100% !important;
    max-width: 100% !important;
}

input:disabled{
    opacity: 0.5;
    cursor: not-allowed;
}

.popup{
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.5);
    width: 100%;
    height: 100%;
    transition: opacity 0.5s ease;
    opacity: 0;
    pointer-events: none;
    z-index: 1000;
}

.popup.open{
    opacity: 1;
    pointer-events: auto;
}

.popup-inner{
    display: none;
    position: absolute;
    background-color: #fff;
    margin: 0;
    padding: 0;
    top: 50%;
    left: 50%;
    min-width: 50vw;
    max-height: 85vh;
    z-index: 1000;
    transform: translate(-50%, -50%);
    overflow: hidden;
}

.popup.open .popup-inner{
    display: block;
    border: 2px solid #000044;
}

.popup .btn.right{
    right: 10px;
    top: 5px;
}

.popup h1, .popup h2, .popup h3, .popup h4{
    display: block;
}

.popup .title{
    margin: 0;
    position: relative;
    color: #ff9600;
    background-color: #000044;
    text-align: center;
    height: 52px;
    overflow: hidden;
}

.popup .btn.close{
    color: #fff;
}

.popup .btn.close:hover{
    color: #ff9600;
}

table#bikes{
    display: inline;
    width: 100%;
    border-collapse: collapse;
}

table#bikes thead{
    display: block;
}

table#bikes tbody{
    display: block;
    width: 100%;
    max-height: calc(100% - 90px);
    overflow-y: auto;    /* Trigger vertical scroll    */
    overflow-x: hidden;  /* Hide the horizontal scroll */
}

table#bikes th,
table#bikes td{
    display: inline-block;
}

table#bikes tr{
    display: block;
    width: 100%;
    border-bottom: 1px dashed #000044;
    background-color: #fff;
    transition: .2s ease;
}

table#bikes tr:nth-child(even){
    background-color: #ECECF4;
}

table#bikes tr:hover{
    background-color: #ff9600;
}

table#bikes td{	
    padding: 5px;
    cursor: pointer;
    transition: .2s ease;
}

table#bikes tr td:nth-child(2){
    font-weight: 700;
}

table#bikes td.full{
    text-align: center;
    background: #000044;
    font-weight: 900;
}

table#bikes td.full i{
    animation: pointdown 3s infinite;
}

@keyframes pointdown{
    0%{
        transform: translateY(0px);
    }
    5%{
        transform: translateY(5px);
    }
    10%{
        transform: translateY(0px);
    }
    15%{
        transform: translateY(5px);
    }
    20%{
        transform: translateY(0px);
    }
    100%{
        transform: translateY(0px);
    }
}

table#bikes th{
    float: left;
    text-align: left;
    background-color: #000044;
    color: #fff;
    padding: 5px;
    margin: 0;
    height: 38px;
    cursor: default;
}

table#bikes th i:hover,
table#bikes th i.active{
    color: #ff9600;
}

table#bikes th i.sort{
    visibility: hidden;
    opacity: 0;
    float: right;
    margin-right: 10px;
    margin-top: 5px;
    transition: 0.3s ease;
    cursor: pointer;
}

table#bikes th:hover i.sort,
table#bikes th i.sort.active{
    visibility: visible;
    opacity: 1;
}

table#bikes th:first-child,
table#bikes tr td:first-child{
    width: 20%;
    clear: left;
}

table#bikes th:nth-child(2),
table#bikes tr td:nth-child(2){
    width: 30%;
}

table#bikes th:nth-child(3),
table#bikes tr td:nth-child(3){
    width: 15%;
}

table#bikes th:nth-child(4),
table#bikes tr td:nth-child(4){
    width: 20%;
}

table#bikes th:nth-child(5),
table#bikes tr td:nth-child(5){
    width: 15%;
}

.filter{
    position: absolute;
    left: 0;
    top: 90px;
    max-height: 0px;
    width: 25%;
    background-color: #000044;
    padding: 0px 10px;
    overflow: hidden;
    transition: 0.3s ease;
    color: #fff;
    font-weight: 100;
}

table#bikes th:hover .filter,
.filter:hover,
table#bikes th:focus .filter,
.filter:focus{
    max-height: inherit;
    padding: 10px;
}

.filter label{
    color: #ff9600;
    float: left;
    width: 100%;
}

.group label{
    display: block;
    width: 100%;
    color: #fff;
}

.group input[type="checkbox"] + label span{
    background-color: #fff;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
    font-size: 20px;
    width: 100%;
    padding: 5px;
    margin: 5px 0;
    color: #000044;
    background: url(../img/down.png) no-repeat 98% center #CBCBE0;
    border: none;
    font-family: 'Roboto Slab', serif;
    cursor: pointer;
} 

select::-ms-expand {
    display:none;
}

option{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #CBCBE0;
    font-family: 'Roboto Slab', serif;
    font-size: 18px;
}

button.tab {
    position: relative;
    background-color: #fff;
    color: #000044;
    cursor: pointer;
    padding: 10px;
    margin: 0;
    width: 100%;
    text-align: center;
    border: none;
    outline: none;
    transition: all 0.4s ease;
    font-size: 22px;
    font-family: 'Bungee', cursive;
    line-height: 30px;
    font-weight: 100;
    box-shadow: inset 0px 7px 5px -5px rgba(0,0,0,0.0);
}

button.tab::after{
    font-family: FontAwesome;
    content: '\f196';
    position: absolute;
    right: 10px;
    top: 15px;
}

.controls .tab:first-child{
    border-bottom: 10px solid #ff9600;
}

button.tab.active, button.tab:hover {
    box-shadow: inset 0px 7px 5px -5px rgba(0,0,0,0.2);
}

button.tab:hover {
    background-color: #ff9600;
}

button.tab.active::after{
    content: '\f147';
}

div.panel {
    box-sizing: content-box;
    padding: 0 5px;
    background-color: #fff;
    color: #000044;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    box-shadow: inset 0px -7px 5px -5px rgba(0,0,0,0.0);
}

button.tab.active + .panel{
    padding: 0px 5px 25px;
    box-shadow: inset 0px -7px 5px -5px rgba(0,0,0,0.2);
}

.controls h4{
    display: inline-block;
    width: 100%;
    margin: 10px 0 0;
    background-color: #fff;
    font-family: 'Roboto Slab', serif;
    color: #000044;
    padding: 2px;
    font-size: 20px;
    font-weight: 900;
    text-align: left;
}

.controls i.fa,
.controls i.fas,
.controls i.far{
    font-size: 26px;
    float: left;
    width: 12%;
    padding: 5px;
    background-color: #000044;
    border: 2px solid #000044;
    border-radius: 5px 0 0 5px;
    color: #fff;
    height: 50px;
    line-height: 34px;
    text-align: center;
}

.controls button.tab i.fa,
.controls button.tab i.fas,
.controls button.tab i.far{
    font-size: 28px;
    width: auto;
    background-color: transparent;
    color: #000044;
    height: 30px;
    border: none;
    padding: 0;
    line-height: 30px;
}

.controls .value{
    height: 50px;
    line-height: 50px;
    width: 20%;
    padding-right: 1%;
    float: left;
    text-align: center;
    background-color: #ECECF4;
}

.controls .buttons{
    width: 14%;
    float: left;
    height: 50px;
    background-color: #ECECF4;
    border-radius: 0 5px 5px 0;
}

.controls .buttons .btn{
    float: left;
    margin: 8px 0;
    padding: 5px 4px;
    border: 2px solid #ffffff;
    border-right-width: 1px;
    border-radius: 5px 0 0 5px;
}

.controls .buttons .btn i{
    font-size: 20px;
    padding: 0;
    height: 100%;
    margin: 0;
    width: auto;
    border: none;
    background: transparent;
    line-height: 22px;
}

.controls .buttons .btn:nth-child(2){
    border-right-width: 2px;
    border-left-width: 1px;
    border-radius: 0 5px 5px 0;
}

.controls input[type="radio"]{
    float: left;
}

.controls label{
    float: left;
    height: 50px;
    width: 44%;
    margin: 0px !important;
    background-color: #ECECF4;
    color: #000044;
    padding: 5px;
    line-height: 34px;
    text-align: center;
}

.controls label.opt1{
    border-right-width: 1px;
}

.controls label.opt2{
    border-left-width: 1px;
    border-radius: 0 5px 5px 0;
}

.controls input[type="radio"] + label::before{
    content: '\f096';
    font-family: 'FontAwesome';
    margin-right: 5px;
}

.controls input[type="radio"]:checked + label{
    background-color: #ff9600;
    color: #fff;
}

.controls input[type="radio"]:checked + label::before{
    content: '\f046';
}

.controls input[type="range"]{
    -webkit-appearance: none;
    appearance: none;
    width: 54%;
    height: 50px;
    padding: 0;
    margin: 0;
    padding-right: 1%;
    border: 0;
    float: left;
    background-color: #ECECF4;
    box-shadow: 0 0 0 50px #ececf4 inset;
}
.controls input[type=range]:focus {
    outline: none;
}
input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 2px;
    cursor: pointer;
    animate: 0.2s;
    background: #000044;
}
input[type=range]::-webkit-slider-thumb{
    -webkit-appearance: none;
    appearance: none;
    border: 2px solid #fff;
    height: 30px;
    width: 10px;
    border-radius: 3px;
    background: #ff9600;
    cursor: pointer;
    margin-top: -14px;
}
input[type=range]:focus::-webkit-slider-runnable-track {
    background: #367ebd;
}
input[type=range]::-moz-range-track {
    width: 100%;
    height: 2px;
    cursor: pointer;
    animate: 0.2s;
    background: #000044;
}
input[type=range]::-moz-range-thumb {
    border: 2px solid #fff;
    height: 30px;
    width: 10px;
    border-radius: 3px;
    background: #ff9600;
    cursor: pointer;
}
input[type=range]::-ms-track {
    width: 100%;
    height: 2px;
    cursor: pointer;
    animate: 0.2s;
    background: #000044;
    border-color: transparent;
    border:none;
    color: transparent;
}
input[type=range]::-ms-fill-lower {
    background: #000044;
    border: none;
    border-radius: 2.6px;
}
input[type=range]::-ms-fill-upper {
    background: #000044;
    border: none;
    border-radius: 2.6px;
}
input[type=range]::-ms-thumb {
    margin-top: 0px;
    border: 2px solid #fff;
    height: 30px;
    width: 10px;
    border-radius: 3px;
    background: #ff9600;
    cursor: pointer;
}
input[type=range]:focus::-ms-fill-lower {
    background: #000044;
}
input[type=range]:focus::-ms-fill-upper {
    background: #000044;
}

input[type="checkbox"], 
input[type="radio"] {
    display:none;
}

input[type="checkbox"] + label,
input[type="radio"] + label{
    cursor: pointer;
    margin-right: 10px;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently supported by Chrome and Opera */
}

input[type="checkbox"] + label span{
    display:inline-block;
    position: relative;
    width: 20px;
    height: 20px;
    margin: -2px 5px 0 0;
    vertical-align: middle;
    cursor: pointer;
    background: #000044;
}

input[type="checkbox"]:checked + label span::after{
    color: #ff9600;
    content: '\f00c';
    font-family: FontAwesome;
    position: absolute;
    line-height: 20px;
    left: 0;
    top: 0;
}

#placeholder{
    border: 5px dashed #ff9600;
    background-color: transparent;
    box-shadow: none;
}

#placeholder div{
    width: 1500px;
    padding-bottom: 73%;
    max-width: 100%;
    max-height: 95vh;
}

#placeholder .btn{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.page{
    background-color: #fff;
    display: block;
    width: 100%;
    position: relative;
    float: left;
    padding: 75px 15%; 
    text-align: left;
}

.page h2 span{
    color: #000044;
    margin-right: 10px;
    font-weight: 900;
}

.page.blue{
    background-color: #ECECF4;
}

.page.orange{
    background-color: #ff9600;
    color: #000044;
}

.page.orange a{
    color: #444;
}

.box{
    display: inline-block;
    margin: 15px 10px 10px 0px;
    padding: 0 15px 10px;
    background-color: #000044;
    color: #fff;
    max-width: 50%;
    margin-left: 50%;
    transform: translate(-50%, 0);
}

.box p{
    display: block;
    float: left;
    width: 100%;
}

.box.right{
    float: right;
    margin: 15px 0px 10px 10px;
}

.box.orange{
    background-color: #ff9600;
}

.box.light{
    background-color: #9999B9;
}

.box .title{
    background-color: #ff9600;
    color: #fff;
    float: left;
    padding: 10px;
    margin: 0px 0 10px -15px;
}

.box.light .title{
    background-color: #000044;
    color: #fff;
}

.box.orange .title{
    background-color: #000044;
    color: #fff;
}

.box ol{
    float: left;
    list-style: upper-latin outside;
    padding: 0 0 0 20px;
}

.box ol li{
    padding-left: 10px;
    text-align:  left;
}

.box li:hover{
    color: #ff9600;
    cursor: pointer;
}

input[type=text],
input[type=email],
input[type=number],
textarea{
    display: block;
    float: left;
    line-height: 35px;
    height: 35px;
    width: 100%;
    margin: 10px 0;
    padding: 0px 10px;
    background-color: #CBCBE0;
    border: none;
    font-family: 'Roboto Slab', serif;
    font-size: 20px;
    color: #000044;
    transition: all 0.3s ease; 
}

textarea{
    height: 160px;
    padding: 5px 10px;
    line-height: 25px;
    resize: none;
}

input[type=text]:active, input[type=text]:hover, input[type=text]:focus,
input[type=email]:active, input[type=email]:hover, input[type=email]:focus,
input[type=number]:active, input[type=number]:hover, input[type=number]:focus,
textarea:active, textarea:hover, textarea:focus{
    background-color: #ff9600;
    color: #fff;
}

input[type="file"]{
    display: none;
}

/*label{
        display: block;
        float: left;
        line-height: 35px;
        height: 35px;
        width: 25%;
        padding: 0px 10px;
        margin: 10px 0;
        background-color: #000044;
        font-size: 20px;
        color: #fff;
}*/

form .btn{
    float: right;
}

#footer{
    position: absolute;
    left: 0;
    bottom: 0;
    text-align: right;
    padding: 5px 10px;
    width: 100%;
    background-color: #000044;
    color: #fff;
    font-size: 16px;
}

#footer span{
    float: left;
}

#footer a{
    margin-right: 5px;
    font-weight: 300;
}

#footer a::after{
    content: '|';
    margin-left: 5px;
}

#footer a:last-of-type::after{
    display: none;
}

.card{
    float: left;
    margin: 40px 0 5px 1%;
    width: 19%;
    height: 180px;
}

.card .card-inner{
    background-color: #fff;
    border: 5px solid #fff;
    transition: 0.3s ease;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
}

.card .card-inner .card-img{
    display: flex;
    padding: 5px 0;
    width: 100%;
    height: 110px;
    background-color: #fff;
    text-align: center;
    align-items: end;
    justify-content: center;
}

.card .card-inner .card-img img{
    max-width: 100%;
}

.card .card-inner .card-desc{
    padding: 5px;
    text-align: center;
    line-height: 26px;
}

.card .card-inner .card-desc span{
    display: block;
    color: #000044;
}

.card .card-inner:hover{
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    z-index: 10;
}

.card .card-inner:hover a{
    color: #ff9600;
}

.flag{
    position: relative;
    float: left;
    width: 4px;
    background-color: #ff9600;
    height: 196px;
    margin: -14px 0 0 -8px;
    z-index: 0;
}

.flag span{
    position: absolute;
    background-color: #ff9600;
    padding: 2px 5px;
    top: -20px;
    left: 0px;
    height: 30px;
}

.intro{
    position: relative;
    float: left;
    width: 100%;
    overflow: hidden;
    background-color: #fff;
    padding: 0.1%;
    box-shadow: 0 0 10px rgba(0,0,0,1);
    z-index: 1;
}

.intro h1 img{
    max-width: 96%;
}

.intro .tiles{
    perspective: 2000px;
    height: 525px;
}

.intro .tiles .tile{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    z-index: 1;
    opacity: 0;
    filter: blur(100px);
    animation: shuffleTiles 60s linear infinite;
}

@keyframes shuffleTiles{
    0%{
        z-index: 1;
        opacity: 0;
        filter: blur(100px);
        transform: translateX(-10%);
    }
    1%{
        z-index: 2;
        opacity: 1;
        filter: blur(3px);
        transform: translateX(0%);
    }
    4%{
        z-index: 2;
        opacity: 1;
        filter: blur(3px);
        transform: translateX(0%);
    }
    5%{
        z-index: 1;
        opacity: 0;
        filter: blur(100px);
        transform: translateX(10%);
    }
    100%{
        z-index: 1;
        opacity: 0;
        filter: blur(100px);
        transform: translateX(-10%);
    }
}

.intro .overlay{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 120px 50px;
    text-align: center;
    background: -webkit-linear-gradient(top left, rgba(255,150,0,0.8) 0%, rgba(0,0,68,0.8) 100%);
    background: -o-linear-gradient(top left, rgba(255,150,0,0.8) 0%, rgba(0,0,68,0.8) 100%);
    background: linear-gradient(to bottom right, rgba(255,150,0,0.8) 0%, rgba(0,0,68,0.8) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#80ff9600', endColorstr='#80000044',GradientType=1 );
}

.intro h1{
    margin-bottom: 0px;
}

.intro h2{
    margin: 0px;
    font-size: 42px;
    color: #ff9600;
}

#cookiehint{
    display: none;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background: rgba(255,150,0,0.9);
    color: #000044;
    padding: 10px 10px 25px;
    text-align: center;
}

#cookiehint h4{
    color: #fff;
    margin: 15px 0;
}

#cookiehint .btn.blue:hover{
    background-color: #fff;
    color: #000044;
}

ul.listall{
    padding-left: 0px;
    list-style: none;
}

ul.listall li{
    margin-bottom: 5px;
}

@media screen and (max-width: 991px) {

    h1{
        font-size: 32px;
        line-height: 32px;
    }

    h2{
        font-size: 26px;
        line-height: 26px;
    }

    h3{
        font-size: 22px;
        line-height: 22px;
    }

    #wrapper{
        padding-bottom: 50px;
    }

    .box{
        max-width: 100%;
        width: 100%;
    }

    .hide-s{
        display: none;
    }

    .page{
        padding: 30px 3%;
    }

    #content-wrapper > .page{
        margin-top: 60px;
    }

    #content-wrapper > .page ~ .page{
        margin-top: 0px;
    }

    .card{
        margin: 40px 0 5px 2%;
        width: 48%;
    }

    .flag{
        margin: -14px 0 0 -2px;
    }

    #footer{
        text-align: center;
    }

    #footer span{
        display: block;
        width: 100%;
        margin-top: 5px;
    }

    .sidemenu{
        width: 320px;
        top: 65px !important;
    }

    .sidemenu h2{
        font-size: 28px;
        text-align: left;
        margin-left: 5px;
    }

    .controls i.fa{
        font-size: 22px;
    }

    .content{
        margin-top: 115px;
        width: 100% !important;
    }

    .controls .buttons .btn{
        padding: 5px 2px;
    }

    button.tab.active + .panel{
        max-height: calc(100vh - 350px) !important;
        overflow: scroll;
    }

    .canvas{
        width: 98% !important;
        max-width: 100% !important;
        margin: 0 1% 2% !important;
    }

    .canvas canvas{
        margin-bottom: 40px;
    }

    .canvas h3{
        height: 50px;
        background-color: #fff;
    }

    .popup-inner{
        height: 100vh !important;
        max-height: 100vh !important;
        width: 100vw !important;
        top: 0px;
        left: 0px;
        transform: none;
    }

    .popup .title{
        padding-right: 50px;
    }

    table#bikes tbody{
        max-height: calc(100% - 130px);
    }

    table#bikes th{
        width: 50% !important;
    }

    table#bikes td{
        width: 50% !important;
        padding: 0px 5px;
    }

    table#bikes td.full{
        width: 100% !important;
    }

    .filter{
        top: 125px !important;
        left: 0px !important;
        width: 100% !important;
    }

    .intro .tiles{
        height: 100vh;
    }

    .intro .overlay{
        padding: 35vh 0px;
    }

    .intro h1{
        font-size: 42px;
    }

    .intro h2{
        font-size: 22px;
    }

    ul.listall li{
        margin-bottom: 15px;
    }

}

@media screen and (max-width: 1200px) {
    #logo h1{
        font-size: 36px;
    }
}

@media screen and (min-width: 992px) {

    .hide-l{
        display: none;
    }
}

@media screen and (max-width: 372px) {

    #mobile-menu #mobile-logo img{
        display: none;
    }
}

