html, body {
    overscroll-behavior-x: none;
    overscroll-behavior-y: none;
}

html {
    -webkit-text-size-adjust: 100%; /* Prevent font scaling in landscape while allowing user zoom */
}

div {
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}

*{
    -webkit-tap-highlight-color: transparent;
}

body {
    color:white;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    /*margin-bottom: 0px;*/
}

textarea{
    background-color: white;
    font-size:1rem;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
}

.form_input_item{
    margin-bottom:5px;
}

.action{
    background-color: #9de16f;
    border: 1px solid #6c757d;
    cursor:pointer;
    padding:5px;
    margin:5px;
    text-align: center;
    color:black;
}

.action.men_item{
    display:block;
    margin-top:10px;
    margin-bottom:5px;
    margin-left:20px;
    margin-right: 20px;
    color:black;
}

.action:active,.action:hover{
    background-color: #7ebb8c;
    border: 1px solid #5c656d;
    cursor:pointer;
    padding:5px;
}

div {
    -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 */
}

.info_action{
    background-color: #9de16f;
    border: 1px solid #6c757d;
    color:black;
}

@media screen and (max-width: 399px) {
    .info_action{
        padding:4px;
        margin:1px;
    }
}

@media screen and (min-width: 400px) {
    .info_action{
        padding:5px;
        margin:5px;
    }
}

.action_disabled {
    background-color: #c5d1c2;
    border: 1px solid #6c757d;
    cursor:pointer;
    padding:5px;
    text-align: center;
}

@media screen and (max-width: 599px) {
    .form_label{
        display:block;
        width:100%;
    }
    input[type=text], select, textarea{
        display:block;
        width:100%;
    }
    input[type=password], select{
        display:block;
        width:100%;
    }
    #main_container{
        width:100%;
        height:100%;
    }
    #login_form{
        width:100%;
    }
    .form_label_white{
        width:100%;
        display:inline-block;
        color:black;
        background-color: white;
        border: 1px solid black;
    }
}

@media screen and (min-width: 600px) {
    .form_label{
        display:inline-block;
        width:250px;
    }
    .textarea-label{
        vertical-align: top;
    }
    input, textarea{
        display:inline-block;
        width:calc(100% - 256px);
    }
    select{
        display:inline-block;
        width:calc(100% - 256px);
    }
    input[type='checkbox']{
        display:inline-block;
        width:calc(100% - 350px);
    }
    #main_container{
        max-width:700px;
        width:100%;
        margin: auto;
        height:100%;
    }
    #login_form{
        width:100%;
    }
    .form_label_white{
        width:calc(100% - 252px);
        background-color: white;
        border: 1px solid black;
        display:inline-block;
        color:black;
    }
}

.form_submit{
    cursor:pointer;
}

body{
    /*background-color: #d1ecce !important;*/
}

.bottom_menu.enabled{
    bottom:0px;

    -webkit-transition: bottom 0.25s ease-out;
    -moz-transition: bottom 0.25s ease-out;
    -o-transition: bottom 0.25s ease-out;
    transition: bottom 0.25s ease-out;
}

.bottom_menu{
    border: 1px solid #6c757d;
    background-color: #ffffff;
    position:absolute;
    bottom:-30rem;
    left:0px;
    z-index: 3001;

    -webkit-transition: bottom 0.25s ease-out;
    -moz-transition: bottom 0.25s ease-out;
    -o-transition: bottom 0.25s ease-out;
    transition: bottom 0.25s ease-out;
}

.menu_mask.enabled{
    display:block;
}

.menu_mask{
    background-color: #d5d5d588;
    width: 100%;
    height: 100%;
    display:none;
    z-index: 3000;
    position:fixed;
    top:0;
    left:0;
}

@media screen and (max-width: 599px) {
    .bottom_menu{
        width: 100%;
    }
}

@media screen and (min-width: 600px) {
    .bottom_menu{
        width: 500px;
        left:calc(50% - 250px);
    }
}

.item_menu {
    width:22px;
    height:22px;
    background: url('images3/menu.png');
    margin: 0;
    position: absolute;
    top: 50%;
    right:0;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    cursor: pointer;
}

.item_menu:hover {
    background: url('images3/menu_hover.png');
}

.item_menu_light {
    width:22px;
    height:22px;
    background: url('images3/menu_light.png');
    margin: 0;
    position: absolute;
    top: 50%;
    right:20px;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    cursor: pointer;
}

.item_menu_light:hover {
    background: url('images3/menu_light_hover.png');
}

#main_container{
    position: relative;
    overflow:hidden;
}

input[type="text"],input[type="password"],select
{
    font-size:16px;
    border : 0;
}

#back{
    cursor: pointer;
}


.ui-progressbar-value {
    background-color: #9de16f;
    height:100%;
}

.ui-progressbar{
    background-color: #8c8989;
    margin-top:3px;
    margin-left:5px;
    margin-right:5px;
    margin-bottom:10px;
}

.progress-bar{
    height:30px;
    position:relative;
}

.progress-label {
    position: absolute;
    left: 50%;
    top: 4px;
}

.test{
    border: 1px solid #595959
}