/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 */
* {
    -webkit-tap-highlight-color: rgba(0,0,0,0); /* make transparent link selection, adjust last value opacity 0 to 1.0 */
}

html{
    width: 100%;
    height: 100%;
}

body {
    -webkit-touch-callout: none;                /* prevent callout to copy image, etc when tap to hold */
    -webkit-text-size-adjust: none;             /* prevent webkit from resizing text to fit */
    -webkit-user-select: none;                  /* prevent copy paste, to allow, change 'none' to 'text' */
    background-attachment:fixed;
    font-family:'HelveticaNeue-Light', 'HelveticaNeue', Helvetica, Arial, sans-serif;
    font-size:13px;
    margin:0px;
    padding:0px;
    width:100%;
    height:100%;
    background-image: url(../img/roadmap.jpg);
    background-size: cover;
}

.app {
    width: 100%;
    min-height: 100%;
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
}

.view {
    width: 100%;
    height: 100%;
}

#logo_ img {
    width: 80%;
    margin: 0 10%;
}

#start {
    width: 100%;
    height: max-content;
    min-height: 100%;
    max-width: 600px;
    margin: auto;
    position: absolute;
    background-image:linear-gradient(top, #E4E4E4 0%, #FFFFFF 20%, #FFFFFF 80%, #E4E4E4 100%);
    background-image:-webkit-linear-gradient(top, #E4E4E4 0%, #FFFFFF 20%, #FFFFFF 80%, #E4E4E4 100%);
    background-image:-ms-linear-gradient(top, #E4E4E4 0%, #FFFFFF 20%, #FFFFFF 80%, #E4E4E4 100%);
    background-image:-webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(0, #E4E4E4),
        color-stop(0.2, #FFFFFF),
        color-stop(0.8, #FFFFFF),
        color-stop(1, #E4E4E4)
    );
}

#startC {
    font-size: 15px;
    width: 90%;
    margin: 10% 5%;
    /*position: absolute;
    top: 50%;
    transform: translateY(-50%);*/
}

.btn-special {
    webkit-box-shadow: 0 2px 5px 0 rgba(0,0,0,.16), 0 2px 10px 0 rgba(0,0,0,.12);
    box-shadow: 0 2px 5px 0 rgba(0,0,0,.16), 0 2px 10px 0 rgba(0,0,0,.12);
    -webkit-transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    -o-transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    margin: 5px;
    border: 0;
    cursor: pointer;
    white-space: normal;
    word-wrap: break-word;
    color: #fff;
    text-shadow: 1px 1px 1px black;
    
    background: -webkit-linear-gradient(50deg,#f7ba00,#fd2222)!important;
    background: -o-linear-gradient(50deg,#f7ba00,#fd2222)!important;
    background: linear-gradient(40deg,#f7ba00,#fd2222)!important;
    
    webkit-border-radius: 10em;
    border-radius: 10em;
}

.btn-special:hover {
    background: -webkit-linear-gradient(50deg,#fd2222,#f7ba00)!important;
    background: -o-linear-gradient(50deg,#fd2222,#f7ba00)!important;
    background: linear-gradient(40deg,#fd2222,#f7ba00)!important;
}

#menu {
    background: #f7ba00;
    display: flex;
    padding: 2px;
    color: #FFF;
    font-weight: bold;
    text-shadow: 1px 1px 1px #500202;
    border-radius: 1.0rem;
}

#menu li {
    display: inline-block;
    padding: 3px;
    cursor: pointer;
}

#menu li:first-child {
    border-radius: 1.0rem 0 0 1.0rem;
}

#menu li:last-child {
    border-radius: 0 1.0rem 1.0rem 0;
}

#menu li.active {
    background: #FFF;
    color: #f7ba00;
    font-weight: normal;
}

.slogan {
    color: #f7ba00;
}

.title {
    margin: -30px auto 20px auto;
    background: white;
    width: fit-content;
    padding: 0 10px;
}

.loader {
    margin: auto;
    display: block;
}