.left-fixed {
    position: fixed;
    bottom: 56px;
    left: 15%;
    background-color: white;
}

@media only screen and (max-width: $breakpoint_medium) {
    .left-fixed {
        left: 7.5%;
    }
}

@media only screen and (max-width: $breakpoint_small) {
    .left-fixed {
        left: 5%;
    }
}

.striped {
    border-bottom: solid $zim_yellow 1px;
    border-top: solid $zim_yellow 1px;
    padding: 20px 0px;
}