sb-top-bar #top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 65px;

    padding: 10px 20px;

    background-color: white;
    border-bottom: 1px solid #DBDBDB;
    /* When not specifying z-index, some elements in other parts of the page stack on top of the head bar. */
    /* "z-index: 1" does the trick, but hey, let's be a bit zealous... and certain. */
    z-index: 1;
    display: flex;
    flex-wrap:wrap;
}

sb-top-bar .left {
    flex: 0 0 340px;
}

sb-top-bar .right {
    flex: 1 0 0;
    display: flex;
    flex-direction: row-reverse;
}

sb-top-bar #top-bar .logo {
    height:38px;
    margin-top: 3px
}

sb-top-bar #top-bar .banner {
    position: absolute;
    top: 0px;
    left: 200px;

    width: 100px;
    background-color: #FFD449;
    transition: background-color 0.3s linear, color 0.3s linear;

    text-align: center;
    line-height: 65px;

    text-transform: uppercase;
    font-family: Fabrikat-Bold;
    letter-spacing: 0.72px;
}

sb-top-bar #top-bar .patreon {
    position: absolute;
    left: 320px;
    top: 0px;
    height: 65px;
    line-height: 65px;
    padding: 0px 10px 0px 10px;
    background-color: #FFD449;
    text-align: center;
    text-transform: uppercase;
    font-family: Fabrikat-Bold;
    letter-spacing: 0.72px;
}

sb-top-bar #top-bar .patreon:hover {
    background-color: #ffe695;
}

sb-top-bar ul.top-menu {
    list-style: none;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
}

sb-top-bar .top-menu li {
    padding-left: 20px;
    padding-right: 20px;
    font-family: "Fabrikat-Bold";
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.72px;
}

sb-top-bar .top-menu #user-menu-dropdown li {
    line-height: 15px;
}

sb-top-bar menu-button {
    cursor: pointer;
}

sb-top-bar .menu-icon {
    vertical-align: middle;
    padding-right: 10px;
    cursor: pointer;
}

sb-top-bar #user-menu-button {
    display: inline-block;
    padding: 1px 0 0 0;
    background: #D1CFCF;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
}

sb-top-bar sb-popup form .form-group {
    min-height: 60px;
}

sb-top-bar sb-popup form .error {
    padding-top: 5px;
    padding-bottom: 5px;
    color: #e41515;
}

sb-top-bar sb-popup form {
    margin-top: 10px;
}

sb-top-bar sb-popup form textarea.feedback-description {
    padding: 5px;
    /* will prevent resizing horizontally */
    resize:vertical;
    min-height: 100px;
    max-height: 400px;
}

@media only screen and (max-width: 1024px) {
    sb-top-bar .left {
        flex: 0 0 130px;
    }
    sb-top-bar #top-bar .logo {
        height: 30px;
        margin-top: 8px;
    }
}

@media only screen and (max-width: 650px) {
    sb-top-bar #top-bar .banner {
        display: None !important;
    }

    sb-top-bar #top-bar .patreon {
        left: 160px;
    }
}
