#navigation {
    position: fixed;
    width: 100%;
    top: 0px;
    left: 0px;
    right: 0px;
    background-color: #11A821;
    z-index: 2;
}
.logo-image {
    width: 50px;
}
#sidebar {
    position: fixed;
    background-color: #11A821;
    height: 100vh;
    padding: 4rem 2rem;
    overflow-y: scroll;
    top: 0px;
    left: 0px;
    bottom: 0px;
    width: 20%;
    z-index: 1;
}
#sidebar .list {
    line-height: 3;
    padding-left: 0;
}
#sidebar .list .list-item {
    list-style: none;
}
#sidebar .list .list-item .list-item-link {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
}
.dashboard-container {
    position: absolute;
    left: 20%;
    width: 80%;
    padding: 1rem;
    top: 4rem;
}
.custom-form-input {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #F8F8F8;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: .375rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.custom-form-input:focus {
    color: #212529;
    background-color: #fff;
    border-color: #11A821;
    outline: 0;
}
.custom-form-select {
    display: block;
    width: 100%;
    padding: .375rem 2.25rem .375rem .75rem;
    -moz-padding-start: calc(0.75rem - 3px);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right .75rem center;
    background-size: 16px 12px;
    border: 1px solid #ced4da;
    border-radius: .375rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.custom-form-select:focus {
    color: #212529;
    background-color: #fff;
    border-color: #11A821;
    outline: 0;
}
.btn-outline-custom {
    border: 1px solid #fff !important;
    color: #fff !important;
    font-size: 24px !important;
    padding: .5rem 2rem !important;
}
.btn-outline-custom:hover {
    background-color: #fff !important;
    color: #22812B !important;
}
.btn-custom {
    background-color: #09CC1C !important;
    border-radius: 4px !important;
    color: #fff !important;
    padding: .25rem 1rem !important;
}
.btn-custom:hover {
    background-color: #11A821 !important;
    border: 1px solid #22812B !important;
}
.success-text {
    color: green;
}
.error-text {
    color: red;
}
.success-button {
    background-color: #09CC1C;
    border: 1px solid #11A821;
    border-radius: 4px;
    color: #fff;
    font-size: 20px;
    padding: .25rem 1rem;
}
.danger-button {
    background-color: red;
    /*border: 1px solid red;*/
    border-radius: 4px;
    color: #fff;
    font-size: 20px;
    padding: .25rem 1rem;
}


/* `sm` applies to x-small devices (portrait phones, less than 992px) */
@media (max-width: 991.98px) { 

    #sidebar {
        width: 25%;
    }
    
    .dashboard-container {
        left: 25%;
        width: 75%;
    }
    
    #sidebar .list .list-item .list-item-link {
        font-size: 18px;
    }

}

/* `md` applies to small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) { 
    
    #sidebar {
        display: none;
        width: 75%;
    }
    
    .dashboard-container {
        left: 0;
        width: 100%;
    }
}