
aside.ticker-bar{
	width: 100vw;
    overflow: hidden;
    background: var(--default-offblack);
    color: var(--default-colour2);
    display: flex;
    align-items: center;
    position: relative;
}
.the-ticker{
    width: 100vw;
    overflow: hidden;
    background: var(--default-colour2);
    color: #fff;
    font-family: var(--titlefont);
    display: flex;
    align-items: center;
    position: relative;
}
.ticker-bar-track{
    display: flex;
    flex-wrap: nowrap;
    white-space: nowrap;
    will-change: transform;
    align-items: center;
    height: 100%;

}
.ticker-bar-content{
	display: flex;
    white-space: nowrap;
    flex-shrink: 0;
    align-items: center;
    height: 100%;
}
.ticker-bar-content p{
	margin: 0;
    padding: 15px 90px;
    line-height: 1.2em;
    display: flex;
    align-items: center;
    height: 100%;
    position: relative;
    font-family: var(--titlefont);
    color: #fff;
    font-size: 18px;
}
.ticker-bar-content p:before{
    position: absolute;
    content: "";
    background: url(images/vgolf-icon.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 25px;
    height: 20px;
    left: 0;
    top: 50%;
    translate: 0 -50%;
}
.ticker-bar-content p a,
.ticker-bar-content p span.no-link{
    color: inherit;
    text-decoration: none;
    display: inline-block;
    font-family: var(--titlefont);
}


