body {
    font-family: 'Poppins', sans-serif;
    overflow-x: auto;

}

li {
    list-style: none;
    cursor: pointer;
}

.side-bar {
    min-width: 237px;
    height: 100vh;
    background-color: #FAFBFD;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.side-bar-title>span {
    position: absolute;
    left: 48px;
    top: 38px;
    font-weight: 600;
    font-style: normal;
    color: #090F31;
    font-size: 13px;
    line-height: 20px;
}

.side-bar-title>span>span {
    color: #F7542E;
}

.nav-links {
    width: 100%;
    margin-top: 122px;
}

.side-bar li {
    color: #9E9E9E;
    margin-top: 28px;
    margin-left: 48px;
}

.side-bar li.active {
    font-weight: bold;
    color: #090F31;
}

.buttons-container {
    width: 100%;
    height: 100%;
    padding-left: 83px;
    padding-top: 53px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    height: 1159px;
}

.buttons-row {
    display: flex;
    justify-content: space-between;
    width: 332px;
}

.buttons-row.medium {
    width: 443px;
}

.buttons-row.medium>div {
    width: calc(100% / 2);
}

.buttons-row.xmedium {
    width: 572px;
}

.buttons-row.xmedium>div {
    width: calc(100% / 2);
}

.buttons-row.large {
    width: 532px;
}

.buttons-row.large>div {
    width: calc(100% / 4)
}

.buttons-row.xlarge {
    width: 802px;
}

.buttons-row.xlarge>div {
    width: calc(100% / 4)
}

.single-button-container {
    display: flex;
    flex-direction: column;
    margin-top: 28px;
}

.single-button-container>span {
    font-family: 'Ubuntu Mono', monospace;
    font-weight: 400;
    font-size: 12px;
    margin-bottom: 12px;
    height: 12px;
    
}

.single-button-container>span.on-hover {
    color: #828282;
}

.buttons-container>h1 {
    font-weight: 500;
    font-size: 24px;
    color: #4F4F4F;
}

.footer {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 60px;
    margin-top: 60px;
}

.footer>span {
    color: #828282
}

.icons-link {
    font-family: 'Ubuntu Mono', sans-serif;
    font-size: 12px;
}

.credit {
    font-family: 'Poppins', sans-serif;
}

.credit>a {
    color: #828282;
    text-decoration: underline;
    font-weight: bold;
}