﻿.ºtile{
	position: relative;
	display: flex;
	flex-direction: column;
	background: var(--color-12);
	border-radius: var(--control-border-radius-2);
}
	.ºtile > .header{
		display: flex;
		padding: var(--size-1) var(--size-1) 0;
		align-items: center;
		justify-content: space-between;
		height: calc(var(--size-4) + 2px);
		z-index: 1;
	}
		.ºtile .header .title{
			padding-left: var(--size-1);
			font-weight: 400;
		}
			.ºtile > .header > .subtitle .fas{
				position: relative;
				top: 2px;
				margin: 0 3px;
				font-size: 1.4em;
				line-height: 0px;
			}
		.ºtile > .header .buttons{
			display: flex;
			flex-direction: row;
		}
			.ºtile > .header .button{
				display: flex;
				align-items: center;
				justify-content: center;
				width: var(--size-4);
				height: var(--size-4);
				font-size: 15px;
				line-height: 25px;
				border-radius: 100%;
				cursor: pointer;
				transition:
					background .3s ease-in,
					color .3s ease-out;
			}
				.ºtile > .header .button:hover{
					background: var(--color-5);
					color: var(--color-12);
				}
	.ºtile > .body{
		position: relative;
		padding: var(--size-1);
		flex: 1;
	}
		.ºtile.slim > .body .ºloader{
			background: var(--color-12);
		}
			.ºtile > .body .ºloader .icon{
				width: var(--control-height);
				height: var(--control-height);
				border-top-width: 4px;
				border-right-width: 3px;
			}
		.ºtile > .body .ºcombobox{
			border: 0;
			box-shadow: none;
		}
		.ºtile > .body .without-data{
			position: absolute;
			display: flex;
			left: 0; right: 0;
			top: 0; bottom: 0;
			flex-direction: column;
			align-items: center;
			justify-content: center;
		}
	
.ºtile ::-webkit-scrollbar{	
	width: 8px;
	height: 8px;
	background: var(--control-border-color-2);
}

.ºtile.slim > .body{
	display: grid;
	grid-template-columns: min-content 1fr 2fr;
	grid-template-rows: auto min-content;
}
	.ºtile.slim > .body > .icon,
	.ºtile.slim > .body > .label{
		display: flex;
		align-items: center;
	}
	.ºtile.slim > .body > .icon{
		grid-row: 1 / span 2;
		padding-left: var(--size-3);
		font-size: var(--size-5);
	}
	.ºtile.slim > .body > .label{
		grid-row: 1 / span 2;
		margin: auto 0;
		padding-left: var(--size-4);
		font-size: var(--size-4);
		font-weight: 400;
	}
	.ºtile.slim > .body > .header{
		display: flex;
		align-items: end;
		height: var(--size-4);
	}
		.ºtile.slim > .body > .header .title{
			line-height: 12px;
		}
	.ºtile.slim > .body > .ºcombobox{
		grid-row: 2;
	}
		.ºtile.slim > .body > .header > .title,
		.ºtile.slim > .body > .ºcombobox > .label{
			margin-left: var(--size-4);
			padding: 0;
		}
.ºtile.slim.without-data .header{
	grid-column: 1 / span 3;
	grid-row: 1;
	align-items: center;
}
	.ºtile.slim.without-data .header .title{
		margin-left: var(--size-1);
	}

.ºtile.card > .body{
	display: flex;
	flex-direction: column;
}
	.ºtile.card > .body > .container{
		display: flex;
		width: 100%;
		align-items: center;
	}
	.ºtile.card > .body > .top{
		display: flex;
		flex-grow: 2;
	}
		.ºtile.card .spare{
			display: flex;
			justify-content: center;
			align-items: center;
		}
			.ºtile.card .spare.left, .ºtile.card .spare.right{
				top: 30%;
				flex-direction: column;
				min-width: 25%;
			}
			.ºtile.card .spare.left{
				left: 0;
			}
			.ºtile.card .spare.right{
				right: 0;
			}
			.ºtile.card .spare.central{
				left: 0;
				right: 0;
				margin: 0 auto;
				width: 128px;
				height: 100%;
			}
				.ºtile.card .spare .label{
					line-height: 26px;
				}
				.ºtile.card .spare.central, .ºtile.card .spare .value{
					font-size: 40px;
					line-height: 50px;
				}
			.ºtile.card .spare.circle{
				height: 128px;
				border-width: 4px;
				border-radius: 100%;
				border-style: solid;
				color: var(--color-5);
				box-sizing: border-box;
			}
	.ºtile.card > .body > .bottom{
		flex-direction: column;
	}
		.ºtile.card .container.bottom > *{
			box-sizing: border-box;
			width: 100%;
		}
		.ºtile.card .container.bottom .label{
			text-align: center;
		}

.ºtile.graph > .body{
	margin-top: calc(var(--size-1) * -1);
	padding: 0;
}

.ºtile.calendar .body{
	padding: 0;
	overflow-y: auto;
}
.ºtile.calendar .container{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 5px;
}
	.ºtile.calendar .node{
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		width: 72px;
		height: 49.5px;
		border-radius: var(--control-border-radius-3);
	}
		.ºtile.calendar .node > *{
			color: var(--color-text);
			font-size: 12px;
			line-height: 12px;
			opacity: .75;
		}
			.ºtile.calendar .node .day{
				font-size: 16px;
				line-height: 16px;
				font-weight: 500;
			}
		.ºtile.calendar .node.completed{
			background: #BCDE94;
		}
		.ºtile.calendar .node.pending{
			background: #EF7676;
			cursor: pointer;
		}
			.ºtile.calendar .node.pending:hover{
				box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .5);
			}
				.ºtile.calendar .node.pending:hover > *{
					opacity: .90;
				}

.ºtile.grid > .body{
	position: absolute;
	top: var(--control-height);
	left: 0;
	bottom: 0;
	right: 0;
	padding: 0;

}
	.ºtile.grid .ºgrid > .container{
		height: 100%;
		backface-visibility: hidden;
		background: var(--color-12);
		padding: var(--size-1);
		border-radius: 0 0 var(--control-border-radius-2) var(--control-border-radius-2);		
		overflow: auto;
	}
		.ºtile.grid .ºgrid > .container > .body{
			flex: 1;
			overflow-y: auto;
		}
	
	.ºtile.grid .ºgrid .footer{
		height: auto;
		background: transparent;
		border: 0;
	}
		.ºtile.grid .ºgrid .footer .left,
		.ºtile.grid .ºgrid .footer .center,
		.ºtile.grid .ºgrid .footer .right{
			height: auto;
		}
			.ºtile.grid .ºgrid .footer .button{
				padding: 4px;
			}