body[component="BOARD"] .C_MASTER_PAGE
,body[component="BOARDEDIT"] .C_MASTER_PAGE
{
	background-color: #EEEEEE;
}

.C_BOARD
{
	position: relative;
	margin: 20px auto 0px auto;
}
.C_BOARD > .C_CARDS
{
	display: flex;
    flex-direction: row;
	justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}
.C_BOARD > .C_CARDS > .C_CARD
{
	position: relative;
	border: 2px dashed #CCCCCC;
    width: 240px;
    height: 240px;
   	background-color: #FFFFFF;
    margin: 0px;
    cursor: pointer;
    border-radius: 12px;
}
@media screen and (min-width: 641px)
{
	.C_BOARD > .C_CARDS > .C_CARD:hover
	{
		border: 2px solid #666666;
	}
}
.C_BOARD > .C_CARDS > .C_CARD > font.C_PLUS
{
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}
.C_BOARD > .C_CARDS > .C_CARD > font.C_PLUS > i.fa
{
	font-size: 100px;
	line-height: 100px;
	color: #DDDDDD;
}
.C_BOARD > .C_CARDS > .C_CARD > span.C_EDIT
{
	position: absolute;
	right: 0px;
	top: 0px;
	width: 48px;
	height: 48px;
	background-color: #FFFFFF88;
}
.C_BOARD > .C_CARDS > .C_CARD > span.C_EDIT > i.fa
{
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	font-size: 24px;
}
.C_BOARD > .C_CARDS > .C_CARD > span.C_MOVE_UP
{
	position: absolute;
	left: 0px;
	top: 50%;
	transform: translate(0%, -50%);
	width: 48px;
	height: 48px;
	background-color: #FFFFFF;
	border: 2px dashed #BBBBBB;
	border-left-width: 0px;
	border-radius: 0% 50% 50% 0%;
}
.C_BOARD > .C_CARDS > .C_CARD > span.C_MOVE_UP > i.fa
{
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	font-size: 24px;
	color: #BBBBBB;
}
.C_BOARD > .C_CARDS > .C_CARD > span.C_MOVE_DOWN
{
	position: absolute;
	right: 0px;
	top: 50%;
	transform: translate(0%, -50%);
	width: 48px;
	height: 48px;
	background-color: #FFFFFF;
	border: 2px dashed #BBBBBB;
	border-right-width: 0px;
	border-radius: 50% 0% 0% 50%;
}
.C_BOARD > .C_CARDS > .C_CARD > span.C_MOVE_DOWN > i.fa
{
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	font-size: 24px;
	color: #BBBBBB;
}
.C_BOARD > .C_CARDS > .C_CARD > h1
{
	text-align: center;
    margin: 16px 0px 0px 0px;
    font-size: 24px;
    line-height: 28px;
    font-weight: normal;
}
.C_BOARD > .C_CARDS > .C_CARD > div
{
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);

	text-align: center;
}
.C_BOARD > .C_CARDS > .C_CARD > div > span
{
	display: inline-block;
	width: 64px;
	height: 64px;
	border-radius: 16px;
	
	background-repeat: no-repeat;
	background-size: cover;
}
.C_BOARD > .C_CARDS > .C_CARD > h2
{
	position: absolute;
	left: 50%;
	bottom: 2vw;
	transform: translate(-50%, 0%);
	width: 90%;
	margin: 0px;
	
}
.C_BOARD > .C_CARDS > .C_CARD > h2 > font
{
	display: inline-block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
    font-size: 16px;
    line-height: 20px;
    font-weight: normal;
    width: 100%;
    text-align: center;
}

.C_BOARD > div.C_EDIT_MODE_COMMANDS
{
	text-align: center;
	padding: 40px;
}

#cardedit
{
	min-width: 320px;
	min-height: 320px;
}
@media screen and (max-width: 320px)
{
	#cardedit
	{
		min-width: auto;
		width: 90vw !important;
	}
}
@media screen and (min-width: 640px) and (max-width: 800px)
{
	.C_BOARD > .C_CARDS
	{
		gap: 2vw;
	}
	.C_BOARD > .C_CARDS > .C_CARD
	{
		width: 23vw;
		height: 23vw;
	}
	.C_BOARD > .C_CARDS > .C_CARD > h1
	{
		margin: 2vw 0px 0px 0px;
		font-size: 2.6vw;
		line-height: 2.8vw;
    }
	.C_BOARD > .C_CARDS > .C_CARD > div > span
	{
		width: 8vw;
		height: 8vw;
		border-radius: 2vw;
	}
	.C_BOARD > .C_CARDS > .C_CARD > h2
	{
		bottom: 1vw;
    }
	.C_BOARD > .C_CARDS > .C_CARD > h2 > font
	{
		
	}
}
@media screen and (max-width: 640px)
{
	.C_BOARD > .C_CARDS
	{
		gap: 4vw;
	}
	.C_BOARD > .C_CARDS > .C_CARD
	{
		border: 0px;
		width: 44vw;
		height: 44vw;
		border-radius: 2vw;
	}
	.C_BOARD > .C_CARDS > .C_CARD > font.C_PLUS
	{
	}
	.C_BOARD > .C_CARDS > .C_CARD > font.C_PLUS > i.fa
	{
		font-size: 20vw;
		line-height: 20vw;
	}
	.C_BOARD > .C_CARDS > .C_CARD > span.C_EDIT
	{
		width: 8vw;
		height: 8vw;
	}
	.C_BOARD > .C_CARDS > .C_CARD > span.C_EDIT > i.fa
	{
		font-size: 6vw;
	}
	.C_BOARD > .C_CARDS > .C_CARD > span.C_MOVE_UP
	{
		width: 10vw;
		height: 16vw;
	}
	.C_BOARD > .C_CARDS > .C_CARD > span.C_MOVE_UP > i.fa
	{
		font-size: 7vw;
	}
	.C_BOARD > .C_CARDS > .C_CARD > span.C_MOVE_DOWN
	{
		width: 10vw;
		height: 16vw;
	}
	.C_BOARD > .C_CARDS > .C_CARD > span.C_MOVE_DOWN > i.fa
	{
		font-size: 7vw;
	}
	.C_BOARD > .C_CARDS > .C_CARD > h1
	{
		margin: 3vw 0px 0px 0px;
		font-size: 5vw;
		line-height: 8vw;
		white-space: nowrap;
		text-overflow: ellipsis;
		overflow: hidden;
	}
	.C_BOARD > .C_CARDS > .C_CARD > div
	{
	}
	.C_BOARD > .C_CARDS > .C_CARD > div > span
	{
		width: 20vw;
		height: 20vw;
		border-radius: 5vw;
	}
	.C_BOARD > .C_CARDS > .C_CARD > h2
	{
		bottom: 2vw;
	}
	.C_BOARD > .C_CARDS > .C_CARD > h2 > font
	{
		font-size: 6vw;
		line-height: 6vw;
	}

}