.main-block-container {
    width: 100%;
}
:root {
    --page-color1: #DBE8D6;
    --page-color2: #b3f8ec;
}
.mpContainer{
    width: 100% !important;
    max-width: unset !important;
    margin: unset !important;
    padding: unset !important;
}
.page-header, footer, footer.footer-beige {
    background-color: #DBE8D6;
    border: 6px solid #DBE8D6;
    width: 100%;
}

.div {
    display: block;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80%;
}

.div1 {
    display: flex;
    flex-direction: column;
    flex-flow: row wrap;
    width: 100%;
    align-items: baseline;
    justify-content: left;
}
.description {
    margin-bottom: 50px;
    padding: 1rem;
    text-align: left !important;
}
.div2 {
    background-color: rgba(219, 232, 214, 0.25);
    display: flex;
    flex-direction: column;
    flex-flow: row wrap;
    width: 100%;
    align-items: baseline;
    justify-content: left;
}

.title {
    font-family: "multicolore", sans-serif;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0;
    border-bottom: var(--palette-green) 0.1rem solid;
    display: block;
    width: 100%;
    padding: 1rem;
}
.monthtitle {
        font-family: "multicolore", sans-serif;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0;
    border-bottom: var(--palette-green) 0.2rem solid;
    display: block;
    width: 100%;
    padding: 1rem;

}
.main-block-container {
    width: 100%;
    display: flex;
    flex-direction: row;
}
.sidebar {
    display: flex;
    position: sticky;
    position: -webkit-sticky;
    flex-direction: column;
    align-items: baseline;
    top:6rem;
    justify-content: left;
    width: 20%;
    margin-bottom: 50px;
    align-self: flex-start;
}
.side-item {
    text-align: left;
    background-color: var(--page-color1);
    width: 100%;
    padding: 1rem;
    font-family: "multicolore", sans-serif;
    font-size: 1rem;
}
.side-item.edgetop {
    border-radius: 1rem 1rem 0 0;
}
.side-item.edgebot {
    border-radius: 0 0 1rem 1rem;
}
.side-item:hover, .side-item.active{
    background-color: var(--palette-green);
    color: white;
}
.content-container {
    display: none;
    width: 80%;
    padding: 1rem;
}


/* Defining for mobile*/
@media only screen and (max-device-width: 768px) {
    .sidebar {
        width: 80%;
        margin: auto;
        padding: unset;
        position: static;
        margin-bottom: 8rem;
    }
        .content-container {
        width: 100% !important;
        padding: unset;
    }
    .main-block-container {
        flex-direction: column !important;
    }
}