/* Extra small devices (phones, 600px and down) */

@media only screen and (max-device-width:849px),
screen and (max-width:850px) {
	#trending {
		margin-top: 55% !important;
	}
}

@media only screen and (min-width:500px) and (max-device-width: 570px) {
	#trending {
		margin-top: 250px !important;
	}
}

@media print {
	#main-logo {
		display: block !important;
		width: 60% !important;
	}

	#trending {
		z-index: 1000000000000000;
		margin-top: 250px;
	}
}


@media only screen and (max-width: 992px) {
	#main-logo {
		display: none !important;
	}
}

/*****************************
*	horizontal news ticker
******************************/

.ticker-wrapper-h {
	display: flex;
	position: relative;
	overflow: hidden;
	background-color: white;
}

.ticker-wrapper-h .heading {
	background-color: #fde77a;
	opacity: 30;
	color: #fff;
	padding: 5px 10px;
	flex: 0 0 auto;
	z-index: 1000;
	padding: 8px;
}


.news-ticker-h {
	display: flex;
	margin: 0;
	padding: 0;
	padding-left: 90%;
	z-index: 999;

	animation-iteration-count: infinite;
	animation-timing-function: linear;
	animation-name: tic-h;
	animation-duration: 100s;

}

.news-ticker-h:hover {
	animation-play-state: paused;
}

.news-ticker-h li {
	display: flex;
	width: 100%;
	align-items: center;
	white-space: nowrap;
	padding-left: 20px;
}

.news-ticker-h li a {
	color: black;
	font-weight: bold;
}

@keyframes tic-h {
	0% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
		visibility: visible;
	}

	100% {
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}
}


@media (min-width: 992px) {
	.navbar-expand-lg .navbar-nav .nav-link {
		padding-right: 0.5rem;
		padding-left: 1.5rem;
	}
}


.owl-carousel button.owl-dot.active {
	background: #ffd400;
}

.badge-danger {
	background-color: #ffd400;

}

.bg-primary {
	background-color: #ffd400 !important;
}

.border-primary {
	border-color: #ffd400 !important;
}

.title-arrow:before {
	content: '';
	width: 2.5rem;
	height: 2px;
	position: absolute;
	top: 2rem;
	background: #ffd400;
}

a {
	color: #ffd400;
}

a:hover {
	color: #dd9933 !important;
}

.card:hover a {
	color: #dd9933 !important;
}

.navbar-light .navbar-nav .show>.nav-link,
.navbar-light .navbar-nav .active>.nav-link,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .nav-link.active {
	color: #dd9933 !important;
}

.title {
	position: relative;
}

.title span {
	background-color: white;
	padding-right: 10px;
}

.title:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 0.5em;
	border-top: 2px solid rgba(0, 0, 0, 0.05);
	z-index: -1;
}

.divider {
	border-top: 4px solid #4e4100;
	border-radius: 5px;
	width: 50px;
}

.fas {
	background-color: white;
	border-radius: 50%;
	border: 1px solid white;
	padding: 20px;
}