@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&display=swap');

html {font-size: 100%;} /*16px*/

body {
	font-size: 14px;
	background: #2193b0;  /* fallback for old browsers */
	background: -webkit-linear-gradient(to top, rgba(41, 128, 185,.2), rgba(52, 152, 219,.2));
	background: linear-gradient(to top, rgba(41, 128, 185,.2), rgba(52, 152, 219,.2));
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  line-height: 1.75;
  color: #000000;
}

p {margin-bottom: 1rem;}

h1, h2, h3, h4, h5 {
  margin: 3rem 0 1.38rem;
  font-family: 'ABeeZee', sans-serif;
  font-weight: 400;
  line-height: 1.3;
}

h1 {
  margin-top: 0;
  font-size: 3.052rem;
}

h2 {font-size: 2.441rem;}

h3 {font-size: 1.953rem;}

h4 {font-size: 1.563rem;}

h5 {font-size: 1.25rem;}

small, .text_small {font-size: 0.8rem;}


.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header-menu ul {
	margin-bottom: 0px;
}

.header-menu ul li {
	list-style: none;
	display: inline-block;
	margin-left: 12px;
	color: #999;
	cursor: pointer;
}

.header-menu ul li:hover {
	opacity: .9;
}

.header-menu ul li a {
	text-decoration: none;
	color: inherit;
}

.header-menu ul li a.active {
	font-weight: bold;
	color: #2980b9;
}

.header {
	padding: 4px 0px;
	position: fixed;
	left: 0px;
	right: 0px;
	background: #FFF;
	z-index: 1000;
}

.mobile-menu {
	z-index: 2000;
	position: fixed;
	top: 10px;
	right: 12px;
	background: rgba(243, 156, 18,1.0);
	width: 40px;
	height: 30px;
	text-align: center;
	line-height: 30px;
	font-size: 16px;
	cursor: pointer;
}


.mobile-menu:hover {
	background: rgba(230, 126, 34,1.0);
}

.header-logo {
	display: flex;
	align-items: center;
	grid-gap: 8px;
}

.header-logo img {
	width: 24px;
}

.header-padding-top{
	padding-top: 60px;
}

.video-container {
	background: #DDD;
	aspect-ratio: 16 / 9;
	position: relative;
}


.program {
	background: #f4f4f4;
	padding: 16px;
	margin-bottom: 8px;
	cursor: pointer;
}

.program:hover {
	background: #eee;
}

.program.active {
	background: rgba(243, 156, 18, .2);
}


.main-section {
	display: grid;
	grid-template-columns: 70% auto;
	height: 100vh;
/*	overflow: hidden;*/
	grid-gap: 10px;
	position: relative;
	box-sizing: content-box;
}

.main-video,
.main-program {
	padding-top: 64px;
}


#currrentTime {
	color: #FFF;
	bottom: 16px;
	left: 16px;
	position: absolute;
	font-family: 'Roboto Mono', monospace;
	opacity: .7;
}


.program-title {
	font-weight: 600;
}

.video-container {
	overflow: hidden;
}

.video-container iframe {
	width: 100%;
	height: 100%;
}


.header-title {
	font-weight: 600;
	color: #f39c12;
}


.main-program {
	position: relative;
}

.days {
	display: flex;
	justify-content: space-between;
}


.day {
	display: inline-block;
	padding: 5px 12px;
	background: rgba(0, 0, 0,.3);
	color: #FFF;
	border-radius: 2px;
	cursor: pointer;
}

.day.active {
	background: rgba(22, 160, 133,1.0);
	box-shadow: var(--bs-box-shadow);
}

.day:hover {
	background: rgba(22, 160, 133,0.5);
}

.programs {
	margin-top: 16px;
}

.audio-container {
	background: #333;
	height: 160px;
	position: relative;
	overflow: hidden;

}


.audio-container .art {
	height: 160px;
	object-fit: cover;
}


.audio-container .art img{
	height: 100%;
	object-fit: cover;
}

.audio-container-play{
	z-index: 600;
	width: 50px;
	height: 50px;
	position: absolute;
	top: 50%;
	left:50%;
	transform: translate(-50%,-50%);
	background: rgba(255,255,255,.8);
	font-size: 24px;
	line-height: 49.5px;
	text-align: center;
	cursor: pointer;
	border-radius: 50%;
	color: rgba(22, 160, 133,1.0);;
}

.audio-container-play2{
	z-index: 500;
	width: 50px;
	height: 50px;
	position: absolute;
	top: 34%;
	left: 47.4%;
	background: rgba(255,255,255,.5);
	font-size: 40px;
	line-height: 49px;
	text-align: center;
	cursor: pointer;
	border-radius: 50%;
	color: rgba(22, 160, 133,1.0);;
}


.magazines {
	padding-top: 70px;
}


.mag {
	width: 320px;
	overflow: hidden;
	background: #FFF;
	margin-bottom: 16px;
	cursor: pointer;
}


.mag img{
	width: 100%;
}

.mag-title {
	padding: 8px 16px;
	border-top: 1px solid #ddd;
	color: rgba(0,0,0,.7);
	font-weight: 600;
}

.mag:hover {
	box-shadow: var(--bs-box-shadow);
	transform: scale(1.005);
} 

.carousel-img {
	width: 100%;
}

.mobile-menu {
    display: none;
}


@media only screen and (max-width: 768px) {
    .mobile-menu {
        display: block;
    }


	.header-container {
		display: block;
	}

	.header-menu {
		display: none;
	}

	.main-section {
		display: block;
	}

	.main-program {
		display: none;
	}
}