﻿/* Smoothen animations */
.wrapper div, a, i, input {
    transition: all .3s ease;
}

/* Flex styling */
html, body, form {
    height: 100%;
    margin: 0;
    width: 100%;
    overflow: hidden;
    font-size: medium;
}

.fieldlabel {
    font-size: small;
    opacity: 0.7;
}

.wrapper {
    display: -moz-box;
    display: -webkit-flexbox;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
}

.column {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.row {
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
}

.gridheader {
    flex: 0 0 auto;
    display: flex;
    min-height: 30px;
    justify-content: center;
}

.grid {
    justify-content: center;
    cursor: pointer;
    min-width: 99.0%;
    width: 99.0%;
    margin-top: 0.2%;
    margin-bottom: 0.2%;
    margin-left: 0.5%;
    margin-right: 0.5%;
}

.toolbar {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    margin: 0.2%;
}

    .toolbar > i, .toolbar > a, .toolbar > div > i, .toolbar > div > a { /* Apply also to the container icons in the toolbar */
        padding: 10px;
    }

    .toolbar > br {
        width: 100%;
        content: '';
    }

.toolbar-icon {
    font-size: xx-large;
}

.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.overlayicon {
    color: #a21f32;
    font-size: 18px;
    margin-left: -10px;
}

.modalbox {
    position: fixed;
    z-index: 100000;
    border-radius: 3px;
}

    .modalbox br {
        width: 100%;
        content: '';
    }

.activeicon {
    border-radius: 30px;
    padding: 5px;
    text-decoration: none;
    cursor: pointer;
}

.modalboxtextbox {
    padding-left: 3px;
    height: 24px;
    border: none;
    border-radius: 4px;
    width: 100%;
    font-family: Roboto-Regular, Arial, Helvetica, sans-serif;
}

.readonly {
    background-color: #e6e7ed;
}

.toastcontainer {
    z-index: 200000000;
    position: fixed;
    background-color: #ffffff;
    opacity: 0.9;
    border: 1px solid #7c7c80;
    padding: 20px;
    left: 50%;
    transform: translate(-50%, 0px);
    top: 40px;
    border-radius: 3px;
}

.draggable {
    cursor: move;
}

.flexupdatepanel {
    display: flex;
    flex: 0 0 auto;
    min-height: 0px;
}

.scrollflex {
    display: flex;
    flex: 1;
    min-height: 0px;
}

.growingflexupdatepanel {
    display: flex;
    flex: 1 1 auto;
    min-height: 0px;
}

.autoheight {
    height: auto !important;
}

.center {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
}

.center2 {
    left: 50%;
    top: 50%;
    transform: translate(-47%, -47%);
    position: absolute;
}

.center3 {
    left: 50%;
    top: 50%;
    transform: translate(-44%, -44%);
    position: absolute;
}

.sidebarcomponent {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    min-height: 0px;
}

.flexbasis10vh {
    flex-basis: 10vh;
}

.scrollingflexupdatepanel {
    display: flex;
    flex: 1 1 auto;
    min-height: 0px;
    overflow-y: auto;
}

.scrollingflexbox {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
}

.height3vh {
    height: 3vh;
}

.height5vh {
    height: 5vh;
}

.height10vh {
    height: 10vh;
}

.height90vh {
    height: 90vh;
}

.height95vh {
    height: 95vh;
}

.width15vw {
    width: 15vw;
}

.width85vw {
    width: 85vw;
}

.width20vw {
    width: 15vw;
}

.width80vw {
    width: 85vw;
}

.width0vw {
    width: 0vw;
}

.width2vw {
    width: 2vw;
}

.width98vw {
    width: 98vw;
}

.width4vw {
    width: 4vw;
}

.width96vw {
    width: 96vw;
}


.width100vw {
    width: 100vw;
}
