body {
	padding-left: 122px;
}
#control {
	position: fixed;
	left: 0;
	top: 0;
	height: 100%;
	width: 122px;
	background: var(--subtle);
	z-index: 1001;
}
#control article {
	width: 100%;
	cursor: pointer;
	transition: all .2s ease-in-out;
}
#control .brand {
	height: 100px;
	background: url("../pic/brand/logo-cc.png") no-repeat center center;
	background-size: 70px auto;
	margin-bottom: 34px;
}
#control .pod {
	width:  88px;
	height: 88px;
	display: flex;
	align-content: center;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-family: var(--ff_black);
	font-size: .9rem;
	border: #e5e5e5 2px solid;
	padding: 17px;
	margin: 17px;
	border-radius: 17px;
	line-height: 1.3;
	color: #575757;
}
#control .pod.break {
	margin-bottom: 54px;
}
#control .pod:hover {
	background-color: #fff;
	border-color: var(--blue);
	box-shadow: 0 0 0 4px var(--blue);	
	color: var(--blue);
}
#control .key {
	height: 36px;
	width:  36px;
	border-radius: 8px;
	margin: 17px auto;
	display: flex;
	align-content: center;
	align-items: center;
	justify-content: center;
	text-align: center;
}
#control .key:hover {
	background: var(--blue);
}
body.ready #control .key.alert.active {
	animation: ring 1s linear;
}
#control .key.alert.active:hover {
	background: var(--red);
}
#control .key svg path {
	fill: #999;
	transition: all .2s ease-in-out;
}
#control .key.alert.active svg path {
	fill: var(--red);
}
#control .key:hover svg path,
#control .key.active:hover svg path {
	fill: #fff;
}
@keyframes ring {
	0% {
		transform: rotate(-20deg);
	}
	20% {
		transform: rotate(20deg);
	}	
	40% {
		transform: rotate(-10deg);
	}
	60% {
		transform: rotate(10deg);
	}
	80% {
		transform: rotate(-5deg);
	}
	100% {
		transform: rotate(0deg);
	}
}
#control .account {
	position: absolute;
	bottom: 0;
	height: 122px;
	width: 100%;
	display: flex;
	align-content: center;
	align-items: center;
	justify-content: center;
	text-align: center;
}
#control .account .medallion {
	height: 70px;
	width:  70px;
	border-radius: 100%;
	color: #575757;
	font-family: var(--ff_black);
	font-size: 1.2rem;
	border: #e5e5e5 2px solid;
	display: flex;
	align-content: center;
	align-items: center;
	justify-content: center;
	text-align: center;
	transition: all .2s ease-in-out;
}
#control .account:hover .medallion {
	background-color: #fff;
	border-color: var(--blue);
	box-shadow: 0 0 0 4px var(--blue);	
	color: var(--blue);
}
main {
	width:  100%;
	padding: 134px 0 0;
	position: relative;
}
header {
	position: absolute;
	left: 0;
	top:  0;
	height: 100px;
	width: 100%;
	border-bottom: 1px solid #ededed;
	padding: 34px;
}
#quickies {
	display: flex;
	align-content: flex-end;
	align-items: flex-end;
	justify-content: center;
	text-align: center;
	position: fixed;
	height: 100%;
	width: 0;
	overflow: hidden;
	left: 0;
	top:  0;
	padding-bottom: 0;
	background-color: rgba(255,255,255,0);
	z-index: 99999;
	transition: background-color .4s ease-in-out, padding-bottom .3s ease-in-out, width .01s .4s ease-in-out;
}
body.quickies #quickies {
	width: 100%;
	background-color: rgba(255,255,255,.85);
	padding-bottom: 120px;
	transition: background-color .4s ease-in-out, padding-bottom .4s ease-in-out;
}
#quickies > article {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr .5fr;
	gap: 0;
	width: 400px;
	max-width: calc(100% - 120px);
	height: 60px;
	margin-bottom: -60px;
	border-radius: 30px;
	background: var(--blue);
	box-shadow: 0 0 10px rgba(0,0,0,.2), 0 0 50px rgba(0,0,0,.2);
	transition: all .4s .1s ease-in-out;
}
#quickies > article > div {
	width:  100%;
	height: 100%;
	border-left: 1px solid rgba(1, 118, 189, .4);
	cursor: pointer;
	transition: all .2s ease-in-out;
}
#quickies > article > div:hover {
	background: rgba(1, 118, 189, .4);
}
#quickies > article > div > * {
	width:  100%;
	height: 100%;
	display: flex;
	align-content: center;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #fff;
}
#quickies > article > div:first-of-type {
	border-left: 0;
	border-radius: 30px 0 0 30px;
}
#quickies > article > div:last-of-type {
	border-radius: 0 30px 30px 0;
}
#messages {
	position: fixed;
	width: 40%;
	height: 100%;
	left: calc(-100%);
	margin-left: 122px;
	top: 0;
	background: var(--blue);
	z-index: 1000;
	padding: 40px;
	overflow: scroll;
	transition: all .3s ease-in-out;
}
#messages.active {
	left: 0;
}
#messages .title {
	display: flex;
	align-content: center;
	align-items: center;
	justify-content: flex-start;
	text-align: left;
	gap: 1rem;
}
#messages .title > div {
	color: #fff;
	font-size: .8rem;
	margin-bottom: 40px;
	font-family: var(--ff_bold);
	font-weight: 700;
	padding: .5rem 1rem;
	border-radius: 2rem;
	border: 1px solid #fff;
	opacity: .7;
	cursor: pointer;
	transition: all .2s ease-in-out;
}
#messages .title > div:hover {
	opacity: 1;
}
#messages .title > div.active {
	font-size: 1.4rem;
	font-family: var(--ff_heavy);
	font-weight: 900;
	padding: 0;
	border: 0;
	opacity: 1;
}
#messages .title > div:last-of-type {
	margin-left: auto;
}
#messages .no_new {
	font-size: 1.2rem;
	color: rgba(255,255,255,.7);
}
#messages article {
	padding: 20px;
	margin-bottom: 14px;
	border-radius: 17px;
	background: #fff;
	transition: box-shadow .2s ease-in-out;
}
#messages article:hover {
	box-shadow: 0 0 0 2px #fff;
}
#messages article .byline {
	position: relative;
	display: flex;
	align-content: center;
	align-items: center;
	justify-content: space-between;
	text-align: left;
	height: 40px;
	padding-left: 50px;
	font-size: .9rem;
	color: #999;
}
#messages article .byline .thumb {
	position: absolute;
	left: 0;
	top:  0;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	background-color: #f1f1f1;
	border-radius: 100%;
	width:  40px;
	height: 40px;
}
#messages article .message {
	display: none;
	margin-top: 20px;
	border-top: 1px solid var(--blue);
	padding: 20px 0 10px;
	position: relative;
}
#messages article .message .invite_message {
	display: block;
	margin-bottom: 15px;
	color: #000;
	font-family: var(--ff_heavy);
	font-weight: 900;
	font-size: 1.2rem;
}
#messages article .message .respond {
	display: inline-flex;
	align-content: center;
	align-items: center;
	justify-content: center;
	text-align: center;
	height: 40px;
	background: #eee;
	color: #000;
	font-family: var(--ff_heavy);
	font-weight: 900;
	border-radius: 40px;
	margin-right: 10px;
	padding: 0 20px;
	transition: all .2s ease-in-out;
	cursor: pointer;
}
#messages article .message .respond:hover {
	background: var(--blue);
	color: #fff;
}
#messages article .delete {
	position: absolute;
	bottom: -15px;
	right: -10px;
	height: 34px;
	width:  34px;
	color: #999;
	display: flex;
	align-content: center;
	align-items: center;
	justify-content: center;
	text-align: center;
	cursor: pointer;
}
#messages article .delete .confirmed {
	position: absolute;
	width:  100%;
	height: 100%;
	left: 0;
	top:  0;
	display: none;
}
#messages article.confirm_delete .delete .confirmed {
	display: block;
}
#messages article.confirm_delete .delete .sure {
	display: none;
}
#messages article .delete .sure {
	position: absolute;
	width:  100%;
	height: 100%;
	left: 0;
	top:  0;
	border-radius: 100%;
	background: #fff;
	display: flex;
	align-content: center;
	align-items: center;
	justify-content: center;
	text-align: center;
}
#messages article .delete svg {
	height: 16px;
	width: auto;
}
#messages article .delete svg path {
	fill: var(--red);
}