html{
    --primary-orange: #f4662f;
    --primary-gray: #bec3c7;
    background-color: #0A0A0A;
}  

body{
    background-color: #0A0A0A;
}

.validation-summary-errors {
    width: 100%;
    background-color: white;
    -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1), -1px 0 2px rgba(0, 0, 0, 0.05);
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1), -1px 0 2px rgba(0, 0, 0, 0.05);
    padding: 20px 0;
    margin-bottom: 30px;
    margin-top: 30px;
}
.validation-summary-errors ul {
    list-style: none;
    margin-bottom: 0;
}
.validation-summary-errors li {
    list-style: none;
    color: red;
}

.validation-summary-errors:before {
    content: 'Foutmeldingen';
    padding-left: 32px;
    color: red;
    font-weight: 700;
    font-size: 20px;
    line-height: 50px;
}
.sidebar-link i {
    display: flex;
    align-items: center;
    justify-content: center;
}
.action-buttons{
    float:right;
    margin-right:5px;
    max-height:30px;
    position:absolute;
    right:5px;
    top:7px;
    bottom:6px;
}
.form-group{
    margin-bottom: 1rem;
}
.form-group p{
    margin-bottom: 0;
}
.form-group:not(.no-label-style) label {
    color: rgb(104, 106, 118);
    font-weight: 600;
    font-size: 0.95em
}
.content-inner{
    width: 100%;
    @media (min-width: 1200px){
        width: calc(100vw - 250px)
    }
}
.text-primary-orange{
    color: var(--primary-orange) !important;
}
.text-primary-gray{
    color: var(--primary-gray);
}
.progress-tabs .progress-item{
    flex-grow: 1;
    color: #fff;
    font-weight: bold;
    font-size: 0.875rem;
}
.progress-tabs .progress-tab-bar{
    width: 100%;
    height: 0.9375rem;
    background-color: var(--primary-gray);
    margin-top: 0.3125rem;
}
.progress-item.active{
    color: var(--primary-orange);
}
.progress-item.active .progress-tab-bar{
    background-color: var(--primary-orange);
}
.progress-tabs:first-child{
    border-bottom-left-radius: 100%;
}
.progress-tabs:last-child {
    border-bottom-right-radius: 100%;
}
.py-6{
    padding-top: 4rem;
    padding-bottom: 4rem;
}
.day-item{
    background-color: var(--primary-orange);
}
.time-item{
    background-color: #fff;
}
.time-item:hover{
    background-color: var(--primary-gray);
    cursor: pointer;
}
.nav-link{
    color: var(--primary-orange);
    border: 2px solid #fff;
    border-radius: 1rem;
}
.nav-link.active{
    border-color: var(--primary-orange);
}