html,body{
    background-color: #333333;
}
a{
    cursor: pointer;
}
#app{
    background-color: #f5f5f5;
    width: 460px;
    height: 100vh;
    margin: 0 auto;
    font-size: 0px;
}
.lazy-load{
    /*border: 1px solid red;*/
}
.tab-btn{
    background-color: #ffffff;
    font-weight: bold;
    font-size: 14px;
    padding: 6px 32px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    margin: 0 4px;
    color: #a9aaa9;
    position: relative;
    bottom: -6px;
    -webkit-box-shadow: rgb(101 209 176) 0px 3px 7px 0px;
    -moz-box-shadow: rgb(101 209 176) 0px 3px 7px 0px;
    box-shadow: rgb(101 209 176) 0px 3px 7px 0px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 0;
    outline: none !important;
    cursor: pointer;
}
.tab-btn.active{
    background-image: linear-gradient(to right,#8fce50,#049265);
    color: #ffffff;
    bottom: 0;
}
.tab-btn-a{
    background-color: #ffffff;
    font-weight: bold;
    padding: 6px 12px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    margin: 0 2rem;
    color: #a9aaa9;
    position: relative;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 0;
    width: 120px;
    font-size: 1.1rem;
    outline: none !important;
    cursor: pointer;
}
.tab-btn-a.active{
    background-image: linear-gradient(to bottom,#d8ff50,#8fce50,#049265);
    color: #ffffff;
    bottom: 0;
}
@media screen and (max-width: 750px){
    #app{
        width: 100%;
    }
}
a.d-block{
    margin: -1px 0;
}
.noSelect{
    pointer-events: none !important;
    -webkit-user-drag: none;
    -moz-user-drag: none;
    -ms-user-drag: none;
    user-drag: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
