.adm-workarea .v-application input[type="text"]{
    font-size: initial;
    height: initial;
    padding: initial;
    margin: initial;
    background: initial;
    border: initial;
    border-color: initial;
    border-radius: initial;
    color: initial;
    box-shadow: initial;
    display: initial;
    outline: initial;
    vertical-align: initial;
    -webkit-font-smoothing: initial;
}

#app-settings .v-input{
    min-width: 300px;
}

.header{
    display:flex;
    justify-content: space-between;
    padding:10px 20px 20px;
}


.header-inner-block-left{
    display: flex;
    align-items: center;
    font-weight: 500;
    margin-left: 20px;
}

.header-inner-block-right{
    display: flex;
    justify-items: end;
    align-items: center;
    margin-right: 40px;
    font-weight: 500;
}
.header-inner-block-left-mobile{
    display: flex;
    align-items: center;
    font-weight: 500;
    margin-left: 20px;
}

.header-inner-block-right-mobile{
    display: flex;
    justify-items: end;
    align-items: center;
    margin-left: 40px;
    font-weight: 500;
}

.header-block-left{
    display: flex;
    align-items: center;
}
.header-block-right{
    display: flex;
    align-items: center;
}

.header-block-left-mobile{
    display: none;
}
.header-block-right-mobile{
    display: none;
}


@media screen and (max-width: 800px) {
    .header-block-left{
        display: none;
    }
    .header-block-right{
        display: none;
    }
    .header-block-left-mobile{
        display: flex;
        align-items: center;
        margin-bottom: 20px;
    }
    .header-block-right-mobile{
        display: flex;
        align-items: center;
        margin-bottom: 20px;
    }
    .header{
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 500px) {
    .header-block-left-mobile{
        flex-wrap: wrap;
        justify-content: center;
    }
    .header-block-right-mobile{
        flex-wrap: wrap;
        justify-content: center;
    }
    .header-inner-block-left-mobile{
        margin-left: 0;
        text-align: center;
    }
    .header-inner-block-right-mobile{
        margin-left: 0;
        text-align: center;
    }
}