html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
    flex-flow: column;
}

#map {
    width: 100%;
    flex-grow: 1;
    z-index: 1;
}

.timelineContainer {
    position: absolute;
    display: block;
    overflow: auto;
    justify-content: center;
    align-items: center;
    right: 10%;
    left: 10%;
    bottom: 5%;
    z-index: 2;
    background-color: #fff9e96b;
    border-radius: 5px;
}

.timelineInnerContainer {
    margin: auto;
    padding: 20px;
    text-align: center;
    line-height: 12px;
}

.icons {
    margin: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 90%;
}

.icon {
    width: 30px;
    height: 30px;
    background-size: 100% 100%;
    padding: 5px;
    border: none;
    cursor: pointer;
}

.selectionButton {
    display: table-cell;
}

.markerBase {
    background: transparent;
    border: none;
    background-size: 100% 100%;
    background-image: url('emptyIcon.png');
    position: relative;
}

.markerBaseInner {
    background: transparent;
    border: none;
    background-size: 100% 100%;
}

.markerInnerSingle {
    height: 100%;
    background-color: transparent;
    position: relative;
    background-size: 100% 100%;
    border: none;
}

.markerInnerSmall {
    background-color: transparent;
    position: absolute;
    background-size: 100% 100%;
    border: none;
}

.headerBase {
    width: 100%;
    height: 50px;
    background-color: #fff9e9;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-size: 35px;
}

.headerBaseText {
    margin-right: auto;
    padding-left: 10px;
    font-size: 35px;
    height: 90%;
    border: none;
    cursor: pointer;
    background-color: transparent;
    padding-right: 20px;
}

.headerButton {
    font-size: 35px;
    height: 90%;
    border: none;
    cursor: pointer;
    background-color: transparent;
    padding-right: 20px;
}

.noUi-connect {
    background: #fff9e9;
}

.noUi-connects {
    background-color: #3597f2;

}

.noUi-handle {
    background-color: #fff9e9;
}

.noUi-horizontal .noUi-handle {
    border-radius: 80%;
    width: 28px;
    height: 28px;
}

.noUi-handle:before,
.noUi-handle:after {
    height: 0px;
    width: 0px;
}

.noUi-vertical .noUi-handle:before,
.noUi-vertical .noUi-handle:after {
    width: 0px;
    height: 0px;

}

.sidenav {
    height: 50%;
    width: 0px;
    position: fixed;
    z-index: 2;
    top: 50%;
    right: 0;
    background-color: #fff9e9;
    overflow-x: hidden;
    overflow-y: scroll;
    transition: 0.5s;
    transform: translateY(-50%);
    border-radius: 5px 0px 0px 5px;
    display: flex;
    flex-direction: column;
    text-align: justify;
}

.sidenavTab {
    padding: 5px;
    position: fixed;
    z-index: 2;
    top: 50%;
    right: 0px;
    background-color: #fff9e9;
    transition: 0.5s;
    transform: translateY(-50%);
    border-radius: 5px 0px 0px 5px;
    cursor: pointer;
    writing-mode: sideways-lr;
}

.sidenavText {
    margin: 15px;
}