.top-bar,
.bottom-bar
{
    position: fixed;
    left: 0;
	right: 0;
	background-color: rgba(43, 43, 43, 0.95);
    backdrop-filter: blur(2px);
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px;
	z-index: 1000;
	box-sizing: border-box;
    color: #fff;
}

.top-bar
{
	top: 0;
    height: var(--top-bar-height);
    font-size: 32px;
    font-family: var(--top-bar-font);
}

.bottom-bar
{
    bottom: 0;
}

.bar-button,
.tag-button
{
    background-color: rgba(0, 0, 0, 0);
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 18px;
    box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 1);
    font-weight: bold;
    font-family: var(--card-title-font);
}

.bar-button:hover,
.tag-button:hover
{
    background-color: #003975;
    box-shadow: inset 0 0 0 3px rgb(0, 204, 240);
}

.tag-button
{
    border-radius: 100px;
}

.tag-button.active
{
    background-color: #006bdd;
    color: #fff;
}

.tag-button.active:hover
{
    background-color: #8800007a;
    box-shadow: inset 0 0 0 3px rgb(240, 0, 0);
    color: #fff;
}

.hero-button
{
    padding: 0.7em 1.3em;
    border: 3px solid #17C3B2;
    position: relative;
    overflow: hidden;
    background-color: transparent;
    text-align: center;
    text-transform: uppercase;
    font-size: 16px;
    transition: .3s;
    font-family: var(--top-bar-font);
    color: #17C3B2;
    cursor: pointer;
}

.hero-button::before
{
    content: '';
    width: 0;
    height: 500%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(75deg);
    background: #17C3B2;
    transition: .3s ease;
    display: block;
    z-index: -1;
}

.hero-button:hover::before
{
    width: 105%;
}

.hero-button:active::before
{
    background: #ffffff;
}

.hero-button:hover
{
    border: 3px solid #ffffff;
    color: #111;
}