@-webkit-keyframes scroll {
	0% {
		-webkit-transform: translate(0, 0);
		transform: translate(0, 0);
	}
	100% {
		-webkit-transform: translate(-100%, 0);
		transform: translate(-100%, 0);
	}
}

@keyframes scroll {
	0% { transform: translate(0, 0); }
	100% { transform: translate(-100%, 0); }
}

.marquee {
	max-width: 100%;
	height: 80px;
	white-space: nowrap;
	overflow: hidden;
}

.marquee * {
	display: inline-block;
	padding-left: 100%;
	-webkit-animation: scroll 21s infinite linear;
	animation: scroll 21s infinite linear;
	font-size: 24px;
}
.marquee *:hover {
	-webkit-animation-play-state: paused;
	animation-play-state: paused;
}
.bg-radial-gradient {
	background: radial-gradient(white, transparent);
}
.to-top {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    display: none;
    width: 2.75rem;
    height: 2.75rem;
    text-align: center;
    color: #fff;
    background: rgba(90, 92, 105, 0.5);
    line-height: 46px;
}
.list-counter-circle {
	list-style: none;
	counter-reset: list;
	margin: 0;
	padding: 0;
	overflow: hidden;
}
.list-counter-circle>li {
	position: relative;
	display: block;
	min-height: 3rem;
	font-weight: bold;
	line-height: 1.6rem;
	margin-left: 2.75rem;
	margin-bottom: .25rem;
	padding: 0.7rem 2rem;
	border-radius: .25rem;
}
.list-counter-circle>li:last-child {
	margin-bottom: 0;
}
.list-counter-circle>li::before {
	font-family: FontAwesome;
	font-size: 25px;
	content: "\f00c";
	position: absolute;
	left: -2.75rem;
	top: -.25rem;
	bottom: -.25rem;
	width: 3.5rem;
	height: 3.5rem;
	line-height: 3rem;
	border-radius: 1.7rem;
	border: .25rem solid #fff;
	text-align: center;
	color: #fff;
	background: inherit;
}
.managment {
	overflow: hidden;
}
.theme__text--acts {
	font-size: 18px;
	cursor: pointer;
}
.accordion td p {
	background: white;
	min-height: 50px;
	padding: 15px;
	
}

.accordion td {
	font: 14px/20px 'MuseoSansMedium'; 
	padding-left: 20px; 
	padding-right: 20px; 
	border: none;
}

.accordion p a {
	color: #808080;
	font-size: 1.1em;
	text-decoration: none;
}

.accordion p a:hover {
	color: #555555;
	text-decoration: underline;
}

.accordion table { 
	max-width:1170px; 
	width:100%; 
	text-align: center; 
	font: 14px/20px 'MuseoSansMedium';
	margin: 0 auto; 
	color: #716f6f; 
	border: none;
}

.scrollbar
{
	height: 50vh;
	overflow-y: scroll;
}
.scrollbar::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
}

.scrollbar::-webkit-scrollbar
{
	width: 10px;
	background-color: #F5F5F5;
}

.scrollbar::-webkit-scrollbar-thumb
{
	background-color: #555555;
	border: 2px solid #555555;
}