@font-face {
  font-family: Roboto;
  src: url(Roboto-Regular.ttf);
}
body{
    position: absolute;
    width: 100%;
    height: 100%;
    margin: 0px;
    overflow: hidden;
    font-family: Roboto;

}
.alld{
    position: absolute;
    width:100%;
    height:100%;
    margin:0px;
    top:0px;
    left:0px;
    overflow: hidden;
}
#mbts{
    position: absolute;
    top: 0px;
    left: 0px;
    z-index:10;
}
#apages{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: #59a7ea;
    overflow: hidden;
}
.menubt{
    width:100%;
    background:#00000099;
    height:5%;
    color: #ffffff;

}
.inpage{
    overflow: hidden;
    overflow-y: auto;
}
.ymenu{
    height: 95%;
    margin-top: 30px;
}
.nmenu{
    height: 100%;
}
#overn{
    background: #ffffff;
}
#starton{

}
.startnow{
    opacity: 0;
/*    background:white url('start.png') no-repeat center center fixed;*/
    -webkit-background-size: contain;
    -moz-background-size: contain;
    -o-background-size: contain;
    background-size:contain;
    animation: showslow 3s 1;
    animation-fill-mode: forwards;
}
@keyframes showslow {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;

    }
}

/*    Pulse animation*/
.pulse {
    animation: pulse 1s infinite;
    margin: 0 auto;
/*    display: table;*/
/*    margin-top: 50px;*/
    animation-direction: alternate;
    -webkit-animation-name: pulse;
    animation-name: pulse;
}
/*for webkit*/
@-webkit-keyframes pulse{
  0% {
    -webkit-transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
/* for others*/
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
/*/// All bts */
.lbt{
/*    width: 100%;*/
    height: 50px;
    padding-left: 50px;
    padding-right: 50px;
    font-size: 20px;
    color: #fff;
    text-align: center;
    background: #3457a8;
    border: 0;
    border-radius: 15px;
    cursor: pointer;
    outline:0;
}
/*////// on off*/
    .onoffswitch {
        position: relative; width: 90px;
        -webkit-user-select:none; -moz-user-select:none; -ms-user-select: none;
    }
    .onoffswitch-checkbox {
        display: none;
    }
    .onoffswitch-label {
        display: block; overflow: hidden; cursor: pointer;
        border: 2px solid #999999; border-radius: 20px;
    }
    .onoffswitch-inner {
        display: block; width: 200%; margin-left: -100%;
        transition: margin 0.3s ease-in 0s;
    }
    .onoffswitch-inner:before, .onoffswitch-inner:after {
        display: block; float: left; width: 50%; height: 30px; padding: 0; line-height: 30px;
        font-size: 14px; color: white; font-family: Trebuchet, Arial, sans-serif; font-weight: bold;
        box-sizing: border-box;
    }
    .onoffswitch-inner:before {
        content: "ON";
        padding-left: -10px;
        background-color: #3457A8; color: #FFFFFF;
    }
    .onoffswitch-inner:after {
        content: "OFF";
        padding-right: 10px;
        background-color: #EEEEEE; color: #999999;
        text-align: right;
    }
    .onoffswitch-switch {
        display: block; width: 18px; margin: 6px;
        background: #FFFFFF;
        position: absolute; top: 0; bottom: 0;
        right: 56px;
        border: 2px solid #999999; border-radius: 20px;
        transition: all 0.3s ease-in 0s;
    }
    .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {
        margin-left: 0;
    }
    .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch {
        right: 0px;
    }
.bton{
    background: green;
    padding: 5px;
}
.btof{
    background: red;
    padding: 5px;
}
/*select*/
.noselect {
  -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 */
}
