widget {
	display: flex;
	flex-direction: column;
	height: 100%;
	border: 1px solid rgb(207, 207, 207);
	margin: 5px;
	border-radius: 5px;
	overflow: hidden;
	background-color: white;
}

widget-title {
	display: block;
	font-weight: bold;
	text-align: center;
	border-bottom: 1px solid #D0D0D0;
	box-shadow: 0px 0px 5px 1px #d2d2d2;
	padding: 3px;
	text-transform: uppercase;
	color: #1c97bf;
	font-size: 12px;
	background-image: linear-gradient(white, #f2f2f2);
}

widget-content {
    display: block;
}

widget-panel {
    display: flex;
}

widget-panel .col {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

widget-panel .row {
    display: flex;
    width: 100%;
    height: 100%;
}