tweet-ticker {
	width: 100%;
    background: #EB1E2A;
    position: relative;
    display: block;
}
tweet-ticker .ticker {
	position: relative;
    width: 100%;
    z-index: 100;
    color: #fff;
    height: 85px;
    width: 100%;
    overflow: hidden;
    font-family: "DIN Next W01 Regular";
    padding: 0 20px;
    box-sizing: border-box;
    max-width: 1140px;
    margin: 13px auto 0;
    display: flex;
}
tweet-ticker .tweets {
	position: relative;
    overflow: hidden;
    max-width: 700px;
    height: 26px;
    bottom: 0;
    top: 0;
    margin: auto;
    box-sizing: border-box;
    z-index: 10;
    flex: 6;
}
tweet-ticker .tweets ul {
	top: 0;
    position: relative;
    height: 26px;
}
tweet-ticker .tweets ul li {
	margin: auto;
    line-height: 26px;
    position: absolute;
    height: 26px;
    white-space: nowrap;
    display: inline-block;
    top: 100%;
}
tweet-ticker .tweets ul li.hide {
    top: -100%;
    transition: .3s ease;
}
tweet-ticker .tweets ul li.show {
    top: 0;
    transition: .3s ease;
}
tweet-ticker .tweets ul li > * {
    height: 20px;
    line-height: 26px;
    display: inline-block;
}
tweet-ticker .tweets ul li img {
	max-width: 30px;
}
tweet-ticker .tweets ul li a {
	color: #740005;
    text-decoration: none;
}
tweet-ticker .totop {
	position: relative;
	height: 100%;
    flex: 1;
    min-width: 50px;
}
tweet-ticker .totop span {
	position: absolute;
	bottom: 0;
	top: 0;
	right: 5%;
    margin: auto 0;
    display: inline-table;
}
tweet-ticker .totop .icon-chevron-up {
    border-color: #720000;
    color: #720000;
    cursor: pointer;
}
@keyframes ticker {
	from {transform: translateX(0);}
	to {transform: translateX(-100%);}
}
@keyframes overflow {
	from {left:0; }
	to {right: 0;}
}
@media (max-width: 639px) {
	tweet-ticker .ticker {
		margin-top: 0;
	}
}