html, body {
	max-width:100vw;
	max-height:100vh;
	min-width:1366px;
	margin: 0px;
	overflow: auto;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
}

body {
	background-color:#aab7b8;
	font-family: 'Lato', sans-serif;
	color:white;
	z-index: -1;
}

.wrapper{
	overflow: hidden;
}

.box-item{
	background:rgba( 28, 28, 28 , 0.8)!important;
}
.instansi{
	width:100%;
	display: flex;
	flex-direction: row;
}
.logo{
	width:10%;
	height:auto;
}
.instansi-info{
	width:90%;
	display: flex;
	flex-direction: column;	
}
#judul-aplikasi{
	font-weight:600;
	font-size: 3vw;
	line-height:45px;
}
#nama-instansi{
	font-size: 2.2vw;
	font-weight:900;	
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;	
	line-height:25px;
}
#box-dt{
	padding: 2vw 4vw;
}
.box-date-time{
	background:rgba( 8, 174, 36 ) !important;
	margin:auto;
}
#waktu{
	font-size: 3vw;
	font-weight: 600;
	line-height:45px;
}
#tanggal{
	font-size: 1.5vw;
	font-weight: 600;	
	line-height:25px;
}

#display-title{
	font-size: 3vw;
	font-weight: 600;	
	background: #0721d8;
	color:white;
}
#display-title p {
	margin-left:30px;
}
#kontent{
	background:#7485f9;
	color:white;	
}
.agenda{
	height:75vh;
}
.tgl-agenda{
	font-size:2.5vw;
	font-weight:600;
	padding:20px;
}
.detail-waktu{
	border-right: 2px solid white;
	font-size:2vw;
	padding:10px;	
}
.detail-agenda{
	font-size:2vw;
	padding:10px;	
}
#agenda{
		padding-top: 100%;
        -moz-animation: marquee 5s linear infinite;
        -webkit-animation: marquee 5s linear infinite;
        animation: marquee 15s linear infinite;	
}

@-moz-keyframes marquee {
0% {
  transform: translate(0, 0);
}
100% {
  transform: translate(0, -100%);
}
}
@-webkit-keyframes marquee {
0% {
  transform: translate(0, 0);
}
100% {
  transform: translate(0, -100%);
}
}
@keyframes marquee {
0% {
  -moz-transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
100% {
  -moz-transform: translate(0, -100%);
  -webkit-transform: translate(0, -100%);
  transform: translate(0, -100%);
}
}