html {
    scroll-padding-top: 70px;
}


.db-hidden-select-container {
    width: 0px;
    height:0px;
    overflow: hidden;
}

.db-customselect-head {
    border: 1px solid darkgrey;
    border-radius: 3px;
    background-color: white;
    padding: 3px 35px 3px 3px;
    position: relative;
    width: fit-content;
    min-width: 100%;

}

.db-customselect-head:after {
    content: "\f078";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-family: FontAwesome;
    font-size: 0.7rem;
}

.db-customselect-head.db-open:after {
    content: "\f077";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-family: FontAwesome;
    font-size: 0.7rem;
}

.db-customselect-head-title {
    width: fit-content;
    font-size: 0.9rem;
    min-height: 20px;
}

.db-customselect-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    border: 1px solid darkgrey;
    border-radius: 3px;
    padding: 5px;
    background-color: white;
    z-index: 10;
    display: none;
    font-size: 0.9rem;
}

.db-customselect-head.db-open .db-customselect-dropdown {
    display: block;
}

.db-input-inline-unit {
    padding-right: 2.5rem;
}

.db-inline-unit {
    position: absolute;
    top: 0.5rem;
    right: 1rem;
}

.accordion {
    margin-top: 10px;
}

.db-infobutton {
    cursor: pointer;
    color: grey;
    border-radius: 50%;
    float: right;

}

.flash {
    position: relative;
}

.flash .alert-close {
    position: absolute;
    top: 10px;
    right: 10px;
}

.db-table th,.db-table td {
    padding: 5px;
}

.db-table tr td:first-of-type {
    text-align: right;
}

.db-table, .db-table tr {
    border-collapse: collapse;
    border: 1px solid black;
    width: 100%;
}