body{
	margin: 0;
	padding: 0;
	overflow-x: hidden;
	font-family: 'Open Sans', sans-serif;
	font-size: 15px;
	color: #444;
}
.no-data-msg{
	text-align: center;
	font-size: 24px;
	font-weight: 300;
	margin-top: 80px;
	padding: 10px 5%;
}

.ls-widgets{
	position: relative;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	width: 100%;
	height: 100vh;
	overflow: hidden;
}
.ls-widgets .ls-widget-1{
	width: 80%;
	overflow-y: auto;
	flex: 1;
}
.ls-widgets .ls-widget-2{
	width: 20%;
	min-width: 380px;
	padding: 15px;
}
.ls-widgets .widget-card{
	background-color: #eee;
	border-radius: 5px;
	padding: 15px;
}
.widget-card .ls-w-title{
	margin-top: 0;
	font-weight: 500;
	font-size: 25px;
	line-height: 1;
}

.w-time-slots{
	width: 100%;
	border-collapse: collapse;
	display: block;
}
.w-time-slots .wts-item{
	display: flex;
	background-color: #ddd;
	margin-bottom: 5px;
	padding: 10px;
	font-weight: 700;
	border-radius: 3px;
}
.w-time-slots .wts-item div:first-child{
	font-weight: 500;
	position: relative;
	padding-right: 10px;
	width: 48%;
}
.w-time-slots .wts-item div:first-child:after{
	position: absolute;
	content: ':';
	right: 10px;
}
.w-time-slots .wts-item div:last-child{
	flex: 1;
}

.w-time-slots .wts-item:nth-child(1).active{
	animation: wts-active-planning 1s infinite;
}
.w-time-slots .wts-item:nth-child(2).active,
.w-time-slots .wts-item:nth-child(4).active{
	animation: wts-active-silent 1s infinite;
}
.w-time-slots .wts-item:nth-child(3).active,
.w-time-slots .wts-item:nth-child(5).active{
	animation: wts-active-collaboration 1s infinite;
}
.w-time-slots .wts-item:nth-child(6).active{
	animation: wts-active-anything 1s infinite;
}

.widget-card.yt-video{
	margin-top: 15px;
	padding: 0;
	background-color: transparent;
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	height: 0;
}
.widget-card.yt-video iframe{
	border-radius: 5px;
	position: absolute;
  	top: 0;
  	left: 0;
  	width: 100%;
  	height: 100%;
}

@keyframes wts-active-silent {
    0% { background: #18c545; }
	50% { background: #ddd; }
	100% { background: #18c545; }
}
@keyframes wts-active-collaboration {
    0% { background: #fdc23d; }
	50% { background: #ddd; }
	100% { background: #fdc23d; }
}
@keyframes wts-active-anything {
    0% { background: #4fdfff; }
	50% { background: #ddd; }
	100% { background: #4fdfff; }
}
@keyframes wts-active-planning {
    0% { background: #fb78bf; }
	50% { background: #ddd; }
	100% { background: #fb78bf; }
}