@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');

html {
    height: 100%;
}

body {
    height: inherit;
    margin: 0;
    overflow-x: hidden;
    font-family: "ff-dax-web-pro", sans-serif;
    color: #333333;
    line-height: 1.2em;
    display: flex;
    flex-direction: column;
    background-color: #f2f2f2;
}

p {
    margin: 0 0 10px;
}

#app {
    height: inherit;
    display: inherit;
    flex-direction: inherit
}

.page {
    flex: 98;
    display: flex;
    flex-direction: column;
}

.main {
    height: inherit;
}

.content {
    height: inherit;
}


/* Blazor Error (default) */
.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
    padding-top: 5px;
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

/* Error */
.error-container {
    border-radius: 5px;
    box-shadow: 0 0 7px 1px #d9d9d9;
    margin-top: 50px;
    margin-bottom: 50px;
    display: grid;
    grid-template-rows: auto auto;
    padding: 0;
    background-color: #ffffff;
}

.error-summary {
    padding: 0;
}

.error-header {
    display: flex;
    align-items: center;
    border-bottom: 3px solid #b3b3b3;
    border-radius: 4px 4px 0 0;
    background-color: #2D415A;
    padding: 10px 0;
}

.error-title > h1 {
    color: white;
    margin-bottom: 0;
    padding-bottom: 10px;
    font-size: 1.7rem;
}

.error-title > h2 {
    color: white;
    margin-bottom: 0;
    font-size: 1rem;
}


.error-tbody > tr:nth-child(even) {
    background-color: #f2f2f2;
}

.error-information {
    margin-bottom: 0;
}

/*@media (min-width: 641px) {
    .main > div {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}*/