/* Tablet */
.TabletContainer{
	width: 62vw;
	background-color: #000000de;
	backdrop-filter: blur(1px);
	border: #a23 solid 2px;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 6px;
}

.TabletInnerContainer{
	aspect-ratio: 16 / 9;
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
}

.TabletTimeDateContainer{
	display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px;
}

.TabletTimeContainer{
	font-size: 58pt;
    font-weight: bold;
}

.TabletDateContainer{
	font-size: 26pt;
}

.TabletAppIconContainer{
	display: flex;
	padding: 5px;
	flex-direction: column;
	align-items: flex-start;
}

.TabletAppQuickAccessContainer{
	display: flex;
    background-color: #0006;
    border-radius: 14px;
    padding: 10px;
    margin-bottom: 20px;
}

.TabletBarContainer{
	width: 100%;
	display: flex;
	align-items: center;
	flex-direction: row;
	margin-bottom: 6px;
	justify-content: space-between;
}

.TabletHomeButtonContainer{
	display: flex;
    background-color: #424242;
    border-radius: 10px;
}

.TabletHomeButtonAppContainer{
	display: flex;
}

.TabletHomeButton{
	width: 62px;
    height: 44px;
    border-radius: 10px;
    color: #eee;
    cursor: pointer;
    background-color: #a6a6a6;
    border: #888 solid 1px;
    background-position: center;
    background-size: 30px;
    background-repeat: no-repeat;
}

.TabletHomeButton:hover{
	background-color: #888;
}

.TabletHomeAppButton{
	width: 44px;
    margin: 0 10px;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    color: #eee;
    cursor: pointer;
    background-position: center;
    background-size: 32px;
    background-repeat: no-repeat;
}

.TabletHomeAppHighlight{
	background-image: linear-gradient(0deg, #ffffff80, transparent);
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
}

.TabletHomeAppHighlightBar{
	position: absolute;
    height: 4px;
    width: 120%;
    background-color: #fff;
    border-radius: 5px;
    bottom: 0;
}

.TabletCloseButton{
	width: 44px;
	aspect-ratio: 1 / 1;
	border-radius: 200px;
	color: #eee;
	cursor: pointer;
	margin: 4px;
	align-items: center;
	justify-content: center;
	background-position: center;
    background-size: 40px;
    background-repeat: no-repeat;
}

.TabletCloseButton:hover{
	background-color: #888;
}

.TabletIcon{
	display: flex;
	flex-direction: column;
	cursor: pointer;
	margin: 10px;
	width: 70px;
	aspect-ratio: 1 / 1;
	align-items: center;
}

.TabletIconPic{
	width: 70px;
	aspect-ratio: 1 / 1;
	border-radius: 10px;
	background-position: center;
	background-size: contain;
}

.TabletIconName{
	padding: 2px;
	text-align: center;
}

.TabletHomeContainer{
	aspect-ratio: 16 / 9;
    background-image: linear-gradient(90deg, #c50000, #000000);
    width: 100%;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.TabletAppWindow{
	overflow: hidden;
	width: 100%;
	height: 100%;
}