@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');

html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    height: 100%
}

a {
    color: #0366d6;
}

app {
    position: relative;
    display: flex;
    flex-direction: row;
/*    height: 100vh;*/
}

label{
    margin-bottom: 0px;
}

.main {
    display:flex;
    flex-direction:column;
    background-color: white;
    width: 100%;
    height: 100%;
}

.content {
    flex:1;
    flex-direction:column;
    display: flex;
    overflow-y:auto;
    overflow-x:hidden
}

.form-layout {
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
    height: 100%
}

.Settings {
    height: 50vh;
}

.searchComponent {
    top: 50%;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 97%;
    height: 97%;
    max-height: 97%;
    max-width: 97%;
    display: flex;
    background-color: whitesmoke;
    border: 1px solid black;
    border-radius: 1rem;
    padding: 10px;
    z-index: 101;
}

.searchCloseButton {
    position: absolute;
    right: 0;
    padding: 0.5rem;
    width: 1rem;
    height: 1rem;
    min-width: 1rem;
    line-height: 1rem;
    text-align: center;
    background-color: white;
    cursor: pointer;
    border: 1px solid black;
    font-size: 1rem;
    margin: -1rem;
    border-radius: 2rem;
    z-index: 100;
    box-sizing: content-box;
}

.searchOverlay {
    overflow: hidden;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}
