.view_logo {
	width: calc(100% - 40px);
	margin-right: auto;
	margin-left: auto;
	margin-top: 20px;
	max-height: 100px;
	text-align: center;
}
.view_logo > img {
	max-width: 200px;
	max-height: 100px;
	border-radius: 5px;
}

.view_photo {
	width: calc(100% - 40px);
	margin-right: auto;
	margin-left: auto;
	margin-top: 20px;
	height: 120px;
	text-align: center;
}
.view_photo > img {
	width: 120px;
	height: 120px;
	border-radius: 50%;
}

.view_photo_squared {
	width: calc(100% - 40px);
	margin-right: auto;
	margin-left: auto;
	margin-top: 20px;
	height: 120px;
	text-align: center;
}
.view_photo_squared > img {
	width: 120px;
	height: 120px;
	border-radius: 10px;
}

.view_diamond {
	width: calc(100% - 40px);
	margin-right: auto;
	margin-left: auto;
	margin-top: 20px;
	height: 120px;
	text-align: center;
}
.view_diamond > img {
	width: 120px;
	height: 120px;
	object-fit: cover;
	clip-path: polygon(
		25% 0,
		75% 0,
		100% 50%,
		75% 100%,
		25% 100%,
		0 50%
	);
}

.view_color {
	width: calc(100% - 40px);
	margin-right: auto;
	margin-left: auto;
	margin-top: 20px;
	text-align: center;
}

.view_color_circle {
	width: 120px;
	height: 120px;
	margin-inline-start: auto;
	margin-inline-end: auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(2, 1fr);
	border-radius: 10px;
	overflow: hidden;
	box-sizing: border-box;
	border: 1px solid var(--vvlight-color);
	background-color: var(--vvvlight-color);
}

.view_color_circle > span {
	display: block;
	width: 100%;
	height: 100%;
}

.view_color_cont {
	display: inline-block;
	width: 140px;
	margin-inline-start: 5px;
	margin-inline-end: 5px;
	overflow: hidden;
}

.view_color_feel {
	width: 40px;
	height: 30px;
	border-radius: 5px;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 5px;
}

.view_color_code {
	width: 100%;
	margin-bottom: 5px;
	font-size: 0.7em;
	direction: ltr;
	text-align: center;
}

.view_color_title {
	width: 100%;
	font-weight: 500;
	margin-bottom: 10px;
	font-size: 0.7em;
	text-align: center;
}

.view_line1 {
	width: calc(100% - 40px);
	margin-right: auto;
	margin-left: auto;
	margin-top: 20px;
	text-align: center;
	font-size: 1.4em;
	font-weight: 500;
}
.view_line2 {
	width: calc(100% - 40px);
	margin-right: auto;
	margin-left: auto;
	margin-top: 5px;
	text-align: center;
}

.view_line2 > div {
	margin-bottom: 5px;
}
.view_line2 > input {
	width: 100%;
	padding: 5px;
	box-sizing: border-box;
	font-family: var(--font-family);
	line-height: var(--line-height);
	font-size: 0.7em;
	text-align: center;
	color: var(--main-color);
	background-color: var(--vvvlight-color);
	border: 1px solid var(--vvlight-color);
	border-radius: 5px;
	outline: none;
	outline-width: 0;
	-webkit-appearance: none;
	-webkit-tap-highlight-color: transparent;
}

.view_permissions {
	width: calc(100% - 40px);
	margin-right: auto;
	margin-left: auto;
	border-top: 1px solid var(--vvlight-color);
	margin-top: 20px;
	padding-top: 20px;
	font-size: 0.9em;
}
.view_permissions > div + div {
	margin-top: 10px;
}

.view_stat {
	width: calc(100% - 40px);
	margin-right: auto;
	margin-left: auto;
	border-top: 1px solid var(--vvlight-color);
	margin-top: 20px;
	padding-top: 20px;
	font-size: 0.9em;
}

.view_datetime > div + div {
	margin-top: 10px;
}