
div.niftybar {
    width: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.5);
    display: -webkit-flex;
    display: flex;
}

div.niftybar-button {
    cursor: pointer;
    float: left;

    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;

    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

div.niftybar-icon-button {
    cursor: pointer;
    width: 36px;
    height: 36px;
    padding-left: 6px;
    padding-right: 6px;

    color: white;
}

div.niftybar-tab-button {
    padding-top: 12px;
    padding-bottom: 10px;
    font-size: 18px;

    font-weight: bold;
    cursor: pointer;
    float: left;
    color: #606060;
    text-align: center;
    background-color: #e0e0e0;
    border-bottom: medium solid #e0e0e0;

    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

div.niftybar-selected-tab {
    color: #202020;
    border-bottom: medium solid #a0a0a0;
}

div.niftybar-space {
    width: 12px;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

svg.niftybar-icon {
    position: relative;

    width: 24px;
    height: 24px;
    margin-top: 6px;
    margin-left: 6px;
    color: white;
    fill: currentColor;
    pointer-events: none;
}

div.niftybar-panel {
    display: none;
    opacity: 0;
}

div.niftybar-sub-panel {
    padding: 20px;
    display: none;
    opacity: 0;
}

div.niftybar-left-slide-panel {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 50%;
    z-index: 10;
    display: none;
    background-color: white;
    box-shadow: 0 0 25px 0 rgba(0,0,0,0.5);
}

div.niftybar-dialog-panel {
    /* Center */
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;

    display: none;
    opacity: 0;
    background-color: white;
    box-shadow: 5px 5px 25px 0 rgba(0,0,0,0.5);
}

div.niftybar-dialog-bar {
    margin-top: 10px;
    width: 100%;
    overflow: hidden;
    background-color: #f0f0f0;
    border-top: thin solid #d0d0d0;
}

div.niftybar-dialog-button {
    margin: 10px 20px 10px 0;
    font-size: 16px;
    width: 100px;
    padding: 5px 0;
    border-radius: 3px;
    float: right;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    font-family: 'Roboto', sans-serif;
    border: thin solid #d0d0d0;
    cursor: default;

    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

div.niftybar-dialog-button:hover {
    background-color: #f8f8f8;
}

div.niftybar-default-button {
    border: thin solid #a0a0a0;
}

div.niftybar-menu-button {
    padding: 10px 20px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    cursor: default;
    background-color: white;

    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

div.niftybar-menu-button:hover {
    background-color: #f0f0f0;
}

div.niftybar-disabled {
    color: #a0a0a0;
}

div.niftybar-tooltip {
    padding: 8px 12px;
    font-size: 14px;
    border-radius: 4px;
    position: absolute;
    visibility: hidden;
    opacity: 0;
    background-color: rgba(100, 100, 100, 0.90);
    color: #eeeeee;
    font-family: 'Roboto', sans-serif;
    z-index: 999;
    pointer-events: none;

    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

span.niftybar-ruler {
    padding: 8px 12px;
    font-size: 14px;
    position: static;
    display: none;
    font-family: 'Roboto', sans-serif;
}