:root {
    --breadcrumb-font-color: #637282;
    --hover-link-color: #5B5DEF;
    --average-color: #334252;
    --footer-height: 64px;
    --footer-padding-top: 48px;
    --horizontal-spacing-for-content: 42px;
    --mobile-horizontal-spacing-for-content: 8px;
    --bottom-spacing: 16px;
    --color-scrollbar: rgba(39, 40, 44, 0.40);
    --color-scrollbar-track: #f4f4f4;
}

#logo {
    background-image: url(https://developers.sygic.com/maps-sdk/api-reference/logo.svg);
    background-size: 100px 48px;
    border-bottom: 1px solid #DADFE6;
    background-repeat: no-repeat;
    background-origin: content-box;
    padding-left: 24px;
    padding-top: 12px;
    height: 72px;
}

#sideMenu {
    padding-top: 16px;
    position: relative;
    max-height: calc(100% - 140px);
    height: 100%;
    overflow-y: auto;
}

#sideMenu img {
    margin: 1em 0.25em;
}

#sideMenu hr {
    background: #DADFE6;
}

.sideMenuPart > .overview {
    display: flex;
    align-items: center;
    position: relative;
    user-select: none; /* there's a weird bug with text selection */
    padding: 8px 0;
}

.sideMenuPart a {
    display: block;
    align-items: center;
    color: var(--average-color);
    overflow: hidden;
}


.sideMenuPart a:hover {
    text-decoration: none;
    color: var(--average-color);
}

.sideMenuPart > .overview:before {
    box-sizing: border-box;
    content: '';
    top: 0;
    width: 280px;
    right: 0;
    bottom: 0;
    position: absolute;
    z-index: -1;
}

.sideMenuPart {
    padding-left: 12px;
    box-sizing: border-box;
}

.sideMenuPart .hidden > .overview .navButtonContent::before {
    transform: rotate(0deg);
}

.sideMenuPart > .overview .navButtonContent::before {
    content: url("../images/arrow_down.svg");
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    transform: rotate(180deg);
}

.sideMenuPart.hidden > .navButton .navButtonContent::after {
    content: '\02192';
}

.sideMenuPart.hidden > .sideMenuPart {
    height: 0;
    visibility: hidden;
}

.sideMenuPart[data-active] > .overview:before {
    border-left: 4px solid var(--hover-link-color);
    background: rgba(237, 27, 47, 0.15);
}
