/* Layout */
* {
    margin: 0;
}
html {
    overflow-y: scroll;
}
body {
    padding-top: 0;
    min-height: 100vh;
}
.container {
    width: auto;
    max-width: 1600px;
}
.form-group.required .control-label::after {
    color: #d00;
    font-family: 'Font Awesome 5 Free';
    /*font-weight: normal;*/
    font-size: 12px;
    content: "\f069";
    position: absolute;
    margin-left: 4px;
    top: 3px;
 }
.height-65 {
    max-height: 65vh;
    min-height: 35vh;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
}
.pagination li:first-child {
     border-top-left-radius: 15px;
     border-bottom-left-radius: 15px;
 }

.pagination li:last-child {
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}

.cursor-default {
    cursor: default !important;
    pointer-events: all !important;
}

button:disabled {
    cursor: default !important;
}

.toast-header {
    background: white;
}

.toast-body {
    background: grey;
}