*:focus {
    outline: none;
}
body::-webkit-scrollbar {
    display: none;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type=number] {
    -moz-appearance: textfield;
}


body {
    height: 0;
    margin: 0;
    padding: 0;
    font-size: 13px;
    font-family: Verdana, Geneva, sans-serif;
    -ms-overflow-style: none;
}

.wrapper {
    width: 100%;
    min-width: max-content;
    display: flex;
    flex-direction: column;
    position: relative;
}
.logo {
    font-family: 'Kurale', serif;
}
.mainBar {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 20;
}

.bar {
    width: 1000px;
    display: flex;
    position: relative;
}

#topBar {
    height: 50px;
    background-color: blue;
}
#topBar > div.bar > div.logo {
    color: white;
    font-size: 20px;
    margin-left: 10px;
}
#midBar {
    height: calc(100% - 125px);
    min-height: 720px;
    margin-top: 15px;
}
#midBar > div.bar {
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

#signinForm {
    margin-top: -125px;
}

.dialog {
    width: 100%;
    max-width: 296px;
    display: flex;
    flex-direction: column;
    background-color: white;
    border-bottom: 5px solid lightgray;
}
.dialog > div.title {
    display: flex;
    align-items: center;
    padding: 5px;
    background-color: blue;
    color: white;
}
.dialog > div.title > span.material-icons {
    margin-right: 5px;
}
.dialog > div.content {
    display: flex;
    flex-direction: column;
    padding: 10px;
}
.dialog > div.content.hoz {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-size: 12px;
}
.dialog > div.content > input {
    border: 1px solid lightgray;
    border-radius: 5px;
    padding: 10px;
    margin: 3px 0 3px 0;
}
.dialog > div.content > input[type="checkbox"] {
    padding: 0;
    margin: 0 5px 0 5px;
}
.dialog > div.separator {
    margin: 2px 0 1px 0;
    /*border-bottom: 1px dotted #e2e2e2;*/
    border-bottom: 1px dotted lightgray;
}
.dialog > div.controls {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 10px;
}
.dialog > div.controls.center {
    justify-content: center;
}
.dialog > div.controls > div.notes {
    font-size: 11px;
    padding: 5px;
    text-align: center;
}
.dialog > div.controls > div.notes > span.inlineButton {
    cursor: pointer;
    color: blue;
    text-decoration: none;
}
.dialog > div.controls > div.notes > span.inlineButton:hover {
    text-decoration: underline;
}
.dialog > div.controls > div.button {
    min-width: available;
    color: gray;
    padding: 10px;
    text-align: center;
    border: 3px solid lightgray;
    cursor: pointer;
    transition: background-color ease 0.5s, color ease 0.5s;
    white-space: nowrap;
}
.dialog > div.controls > div.button:hover {
    background-color: blue;
    color: white;
}
.dialog > div.controls > div.button.last {
    margin-left: auto;
}
.dialog > div.controls > div.button.green:hover {
    background-color: green;
}
.dialog > div.controls > div.separatorV {
    height: 15px;
    border-left: 1px solid lightgray;
    margin: 0 15px 0 15px;
}




.shadow-5 {
    -webkit-box-shadow: 0 7px 13px 0 rgba(0,0,0,0.50);
    -moz-box-shadow: 0 7px 13px 0 rgba(0,0,0,0.50);
    box-shadow: 0 7px 13px 0 rgba(0,0,0,0.50);
}