.twitch-buttons, .twitch-buttons * {
    box-sizing: content-box;
}

.social-links-and-twitch-buttons {
    align-items: center;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-end;
}

.social-links-and-twitch-buttons .twitch-buttons {
    flex: 0 1 auto;
}

.social-links-and-twitch-buttons .fusion-social-networks {
    flex: 0 1 auto;
}

.social-links-and-twitch-buttons .twitch-buttons .twitch-button {
    color: #ffffff;
    margin: 0;
}

.social-links-and-twitch-buttons .twitch-buttons .twitch-button + .twitch-button {
    margin-left: 7px;
}

.social-links-and-twitch-buttons .twitch-buttons .twitch-button.twitch-button--offline + .twitch-button {
    margin-left: 18px;
}

.twitch-buttons {
    align-items: center;
    color: #ffffff;
    display: flex;
    font-family: "Arial", sans-serif;
    font-size: 11px;
    justify-content: flex-end;
    line-height: 1;
    margin-bottom: 10px;
    margin-right: 10px;
    text-transform: uppercase;
}

.twitch-button {
    align-items: center;
    background-color: #6441a4;
    display: inline-flex;
    flex-flow: row nowrap;
}
.youtube-button {
	background-color: #ff0000;
}

.twitch-button__icon {
    flex: 0 1 auto;
}

.twitch-button__label {
    align-items: center;
    flex: 0 1 auto;
}

.twitch-button--live {
    border: 3px solid #6441a4;
}

.twitch-button--live .twitch-button__icon-image {
    padding: 0 10px 0 9px;
    width: 18px;
}

.twitch-button--live .twitch-button__label {
    align-items: center;
    background-color: #000000;
    display: flex;
    font-size: 12px;
    letter-spacing: 1px;
    padding: 10px 9px 10px 7px;
}

.twitch-button--live .twitch-button__label-text {
    display: block;
    flex: 0 1 auto;
    margin-left: 6px;
}

.twitch-button--follow {
    align-items: stretch;
    border-radius: 2px;
}

.twitch-button--follow .twitch-button__label {
    background-color: transparent;
    padding: 12px 7px;
}

.twitch-button--follow .twitch-button__icon {
    align-items: center;
    background-color: #4b367c;
    border-bottom-right-radius: 2px;
    border-top-right-radius: 2px;
    display: flex;
    padding: 0 8px 0 7px;
}
.youtube-button__icon {
    align-items: center;
    background-color: #282828;
    border-bottom-right-radius: 2px;
    border-top-right-radius: 2px;
    display: flex;
    padding: 0 8px 0 7px;
}

.twitch-button--follow .twitch-button__icon-fa {
    font-weight: 900;
}

.twitch-button--follow:hover .twitch-button__icon {
    background-color: #14b866;
}
.twitch-button--follow:hover .youtube-button__icon {
    background-color: #990000;
}

.twitch-button--offline {
    background-color: transparent;
}

.twitch-button--offline .twitch-button__icon-image {
    padding: 0;
    width: 27px;
}

.recording-dot {
    animation: 1s infinite alternate recording-dot-pulse;
    background-color: #ff0000;
    border-radius: 15px;
    display: block;
    flex: 0 1 auto;
    height: 10px;
    width: 10px;
}

@keyframes recording-dot-pulse {
    0% {
        opacity: .7;
        transform: scale(0.8);
    }

    75% {
        opacity: 1;
        transform: scale(1);
    }
}