main {
	padding-top: 100px;
	height: 100%;
	overflow: hidden;
}
header .welcome {
	color: var(--blue);
	font-family: var(--ff_black);
	font-size: 1.2rem;
}
header .edit {
	display: none;
	height: 30px;
	width:  30px;
	padding: 5px;
	position: absolute;
	right: 30px;
	top: 50%;
	cursor: pointer;
	transform: translateY(-50%);
}
.profile_admin header .edit {
	display: block;
}
header .edit svg {
	width:  100%;
	height: 100%;
}
header .edit svg path {
	transition: all .2s ease-in-out;
	fill: #aaa;
}
header .edit:hover svg path {
	fill: var(--blue);
}
#me {
	display: flex;
	align-content: center;
	align-items: center;
	justify-content: center;
	text-align: center;
	overflow: hidden;
	flex-flow: column;
	height: 100%;
}
#about {
	position: relative;
	padding-top: 34px;
	width: 100%;
	height: 100%;
	overflow: auto;
	background: #fafafa;
	display: flex;
}
#about > div {
	margin: auto;
}
#about .status {
	font-size: 1.5rem;
	font-weight: 200;
}
body.edit_mode #about .status {
	display: none;
}
.profile_form {
	display: none;
}
body.edit_mode .profile_form {
	display: block;
}
.portrait {
	position: relative;
	height: 300px;
	width: 300px;
	border-radius: 100%;
}
.portrait::before {
	content: "";
	position: absolute;
	display: block;
	opacity: 0;
	width:  100%;
	height: 100%;
	left: 50%;
	top:  50%;
	transform: translate(-50%,-50%);
	border-radius: 100%;
	border-style: dashed;
	border-width: 1px;
	border-color: transparent;
	pointer-events: none;
	transition: all .3s 1.3s ease-in-out;
}
body.ready .portrait::before {
	width:  calc(100% + 20px);
	height: calc(100% + 20px);
	opacity: 1;
}
.portrait.workingon_red::before {
	border-color: #d42027;
}
.portrait.workingon_blue::before {
	border-color: #0091ea;
}
.portrait.workingon_white::before {
	border-color: #cccccc;
}
.portrait.workingon_yellow::before {
	border-color: #ffd600;
}
.portrait .color_me_button {
	height: 32px;
	padding: 0 20px;
	display: inline-flex;
	align-content: center;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: absolute;
	bottom: -12px;
	left: 50%;
	transform: translateX(-50%);
	font-family: var(--ff_black);
	font-weight: 900;
	font-size: 1rem;
	letter-spacing: .05em;
	line-height: 1;
	background: #fff;
	border-radius: 40px;
	cursor: pointer;
	box-shadow: 0 4px 4px rgba(0,0,0,.12);
	transition: all .24s ease-in-out;
}
.portrait .color_me_button:hover {
	box-shadow: 0 0 0 4px #fff, 0 6px 6px rgba(0,0,0,.12);
}
.portrait .color_me_button:hover span span {
	font-size: 1.2rem;
}
body.ready .portrait .color_me_button {
	bottom: 0;
}
.portrait .color_me_button span span {
	transition: all .1s ease-in-out;
}
body.ready .portrait .color_me_button .red {
	color: #d42027;
	transition-delay: .2s;
}
body.ready .portrait .color_me_button .yellow {
	color: #ffd600;
	transition-delay: .3s;
}
body.ready .portrait .color_me_button .blue {
	color: #0091ea;
	transition-delay: .4s;
}
.portrait .border {
	position: absolute;
	left: 0;
	top:  0;
	opacity: 0;
	width:  100%;
	height: 100%;
	border-radius: 100%;
	transform: rotate(-175deg);	
	background-image: conic-gradient(#d42027 90deg, #0091ea 0 180deg, #eeeeee 0 270deg, #ffd600 0 360deg);
	transition: transform 1.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
body.ready .portrait .border {
	opacity: 1;
	transform: rotate(-45deg);
}
body.pc_prompt .portrait .border,
body.pc_prompt .portrait::before {
	display: none;
}
.portrait .photo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width:  calc(100% - 20px);
	height: calc(100% - 20px);
	background-color: #fff;
	background-image: url(/model/pic/icons/avatar-default.jpg);
	border-radius: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;	
}
.colorme_bubble {
	height: 60px;
	width: auto;
	display: block;
	position: absolute;
	cursor: pointer;
	left: calc(100% - 50px);
	top: -40px;
	transition: all .2s ease-in-out;
}
.colorme_bubble:hover {
	height: 72px;
	margin-left: -6px;
	margin-top: -6px;
	transform: rotate(-3deg);
}
.character_code_active .colorme_bubble {
	z-index: -1;
	height: 20px;
	pointer-events: none;
	left: calc(100% - 80%);
	top: 50%;
	transition: all .8s .5s ease-in-out, height .3s .5s ease-in-out;
}
.profile_admin .colorme_bubble {
	display: none;
}
#me .quick_details {
	text-align: left;
	display: grid;
	grid-template-columns: auto 80px;
	gap: 30px;
}
#me .quick_details .about_me {
	position: relative;
	margin-top: 30px;
}
#me .quick_details .badge {
	position: absolute;
	left: -50px;
	top: 0;
	height: 100%;
	width:  40px;
	border-right: 1px solid rgba(0,0,0,.4);
	opacity: .4;
	background-size: 32px auto;
	background-repeat: no-repeat;
	background-position: left center;
	background-color: transparent;
	transition: all .1s ease-in-out;
	cursor: pointer;
}
#me .quick_details .badge:hover {
	border-color: rgba(0,0,0,0);
	opacity: 1;
	background-size: 40px auto;
}
#me .quick_details .badge._stallion {
	background-image: url("../pic/badges/stallion.png");
}
#me .quick_details .badge._terrapin {
	background-image: url("../pic/badges/terrapin.png");
}
#me .quick_details .badge._barque {
	background-image: url("../pic/badges/barque.png");
}
#me .quick_details .name {
	font-family: var(--ff_black);
	font-weight: 900;
	font-size: 1.7rem;
	line-height: 1;
}
#me .quick_details .title {
	padding-top: 10px;
	text-transform: uppercase;
	font-family: var(--ff_light);
	font-weight: 300;
	font-size: .9rem;
	line-height: 1;
	color: #aaa;
}
.chart {
	display: flex;
	align-content: flex-end;
	align-items: flex-end;
	justify-content: space-between;
	text-align: center;
	height: 100%;
	width: 100%;
}
.chart.hide {
	opacity: 0;
}
.chart > div {
	position: relative;
	height: 100%;
	width: 14px;
	min-height: 14px;
}
.chart .bar {
	border-radius: 20px;
	position: absolute;
	bottom: 20px;
	left: 0;
	width: 100%;
	height: 0;
	max-height: calc(100% - 30px);
	transition: all .3s ease-in-out;
}
.chart .red .bar {
	background-color: #d42027;
}
.chart .blue .bar {
	background-color: #0091ea;
	transition-delay: .1s;
}
.chart .white .bar {
	background-color: #eeeeee;
	transition-delay: .2s;
}
.chart .yellow .bar {
	background-color: #ffd600;
	transition-delay: .3s;
}
.chart .percent {
	font-family: var(--ff_black);
	font-weight: 900;
	font-size: .72rem;
	color: #000;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 16px;
}
#about article {
	max-width: 60ch;
	text-align: left;
	padding-bottom: 50px;	
}
#about article.broad{
	max-width: calc(100% - 100px);
	margin: 0 auto;
}
#about article p {
	font-size: 1.2rem;
	line-height: 1.6;
	text-align: left;
	margin-bottom: 50px;
	color: #5e5e5e;
	font-family: ff-tisa-web-pro, serif;
	font-weight: 400;
	margin-bottom: 30px;
}
#about .connect {
	display: flex;
	align-content: center;
	align-items: center;
	justify-content: flex-start;
	text-align: left;
}
#about .connect .button {
	background: #eee;
	height: 50px;
	border-radius: 20px;
	display: flex;
	align-content: center;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 0 30px 0 20px;
	margin-right: 10px;
	font-family: var(--ff_black);
	font-weight: 900;
	font-size: .9rem;
	color: #000;
	cursor: pointer;
	transition: all .2s ease-in-out;
}
#about .connect .button:hover {
	box-shadow: 0 0 0 5px #eee;
}
#about .connect .button img {
	width: 16px;
	height: auto;
	display: block;
	margin-right: 10px;
}
#about .connect .button.send img {
	width: 12px;
}
.online_status {
	display: flex;
	align-content: flex-start;
	align-items: flex-start;
	justify-content: left;
	text-align: left;
	color: #0091ea;
	font-family: var(--ff_bold);
	font-weight: 900;
	text-transform: uppercase;
	font-size: .7rem;
	margin-bottom: 30px;
}
.online_status.off {
	color: #d42027;
	color: #aaa;
}
.online_status span {
	position: relative;
	top: -1px;
}
.online_status img {
	width: 16px;
	height: auto;
	display: block;
	margin-right: 4px;
}
#awards_panel {
	height: 600px;
	width: 500px;
	background: #fff;
	border-radius: 50px;
	padding: 35px;
	box-shadow: 0 0 50px rgba(0,0,0,0);
	position: fixed;
	margin-top: calc(-50vh - 400px);
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: 99999;
	transition: all .5s ease-in-out;
}
body.awards_panel_mode #awards_panel {
	margin-top: 0;
	box-shadow: 0 0 50px rgba(0,0,0,.2);
}
#awards_panel > article {
	width:  100%;
	height: 100%;
	position: relative;
	border: 1px solid #eee;
	border-radius: 25px;
}
#awards_panel > article .scroller {
	width:  100%;
	height: 100%;
	position: relative;
	border-radius: 25px;
	overflow: scroll;
	-webkit-overflow-scrolling: touch;
}
#awards_panel .panel_title {
	height: 100px;
	display: flex;
	align-content: center;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-family: var(--ff_heavy);
	font-weight: 900;
	font-size: 1.5rem;
	color: #0091ea;
}
#awards_panel .panel_title_2 {
	text-align: center;
	font-family: var(--ff_light);
	font-weight: 300;
	font-size: 1.1rem;
	text-transform: uppercase;
	color: #aaa;
	margin-bottom: 30px;
}
#awards_panel .panel_title_2 strong {
	color: #0091ea;
	font-family: var(--ff_black);
	font-weight: 900;
}
#awards_panel .awards_display {
	width: 100%;
	padding: 0 30px;
	display: flex;
	align-content: center;
	align-items: center;
	justify-content: center;
	text-align: center;
	flex-flow: row;
	flex-wrap: wrap;
}
#awards_panel .awards_display .award {
	width: 100px;
	height: 150px;
	margin: 0 10px 10px;
}
#awards_panel .awards_display .award_badge {
	height: 100px;
	width:  100px;
	margin-bottom: 10px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	background-color: transparent;
}
#awards_panel .separator {
	height: 1px;
	width: 66%;
	background: #eee;
	margin: 30px auto;
}
#awards_panel .awards_display .award_badge._stallion {
	background-image: url("../pic/badges/stallion.png");
}
#awards_panel .awards_display .award_badge._terrapin {
	background-image: url("../pic/badges/terrapin.png");
}
#awards_panel .awards_display .award_badge._barque {
	background-image: url("../pic/badges/barque.png");
}
#awards_panel .awards_display .award_name {
	font-family: var(--ff_black);
	font-weight: 900;
	font-size: .9rem;
	text-transform: uppercase;
	letter-spacing: .05em;
	text-align: center;
}
#awards_panel .awards_display .award_name span {
	display: block;
	text-align: center;
	color: #aaa;
	font-size: .65rem;
	font-family: var(--ff_light);
	font-weight: 300;
}
#awards_panel .x {
	height: 35px;
	width: 35px;
	position: absolute;
	top: -25px;
	right: -25px;
	display: flex;
	align-content: center;
	align-items: center;
	justify-content: center;
	text-align: center;font-family: var(--ff_light);
	font-weight: 300;
	font-size: 1.5rem;
	color: #000;
	opacity: .3;
	cursor: pointer;
	transition: all .2s ease-in-out;
}
#awards_panel .x:hover {
	opacity: .6;
}
#awards_panel .person {
	width: 310px;
	display: grid;
	grid-template-columns: 80px 130px 120px;
	margin: 0 auto 20px;
}
#awards_panel .person .portrait {
	width:  80px;
	height: 80px;
}
body.ready #awards_panel .person .portrait::before {
	width:  calc(100% + 8px);
	height: calc(100% + 8px);
}
#awards_panel .person .chart {
	padding: 0 20px;
}
#awards_panel .person .chart2 {
	padding-left: 30px;
}
#awards_panel .person .portrait .photo {	
	width:  calc(100% - 8px);
	height: calc(100% - 8px);
}
.under_text {
	margin-top: 5px;
	display: block;
	text-align: center;
	color: #aaa;
	font-size: .75rem;
	font-family: var(--ff_light);
	font-weight: 300;
}
.under_text.second {
	padding-left: 10px;
}
.account_links {
	text-align: left;
	width: calc(100% - 10ch);
	margin: 30px 0 0 200px;
}
.account_links span {
	font-family: var(--ff_book);
	font-weight: 400;
	font-size: .9rem;
	color: #aaa;
	display: inline-flex;
	align-content: center;
	align-items: center;
	justify-content: center;
	text-align: center;
	height: 24px;
	margin-right: 5px;
	cursor: pointer;
	transition: all .2s ease-in-out;
}
.account_links span.selected {
	background: #0091ea;
	color: #fff;
	font-family: var(--ff_heavy);
	font-weight: 900;
	padding: 0 10px;
	border-radius: 8px;
}
.account_links span.off.selected {
	background: #d42027;
}
.account_section {
	display: none;
}
.account_section.active {
	display: block;
}
._exp {
	font-family: var(--ff_light);
	font-weight: 300;
	font-size: .9rem;
	color: #aaa;
}
._block {
	border-left: 1px solid #ddd;
	padding-left: 17px;
	margin-bottom: 17px;
}
.portrait.hidden {
	display: none;
}
._character .aggregate {
	background: #fafafa;
	padding: 0 10px 20px;
	margin-bottom: 20px;
	border-radius: 13px;
	position: relative;
	width: 100%;
}
._character .chart {
	width: 80px;
	height: 80px;
	margin: 0 auto 10px;
}
._character .person .chart {
	margin-bottom: 0;
	margin-left: 20px;
}
._character .aggregate ._small_title {
	font-family: var(--ff_light);
	font-weight: 300;
	font-size: .8rem;
	color: #aaa;
	position: absolute;
	bottom: 5px;
	left: 0;
	height: 30px;
	width: 100%;
	display: flex;
	align-content: center;
	align-items: center;
	justify-content: center;
	text-align: center;
}
._character .aggregate ._small_title strong {
	font-family: var(--ff_black);
	font-weight: 900;
	color: #999;
}
._character ._exp {
	color: #555;
}
._character .person {
	display: grid;
	grid-template-columns: 80px 1fr;
	margin: 0 0 20px;
	width: 180px;
	padding-left: 4px;
}
._character .person .portrait {
	width: 80px;
	height: 80px;
}
._character .person .portrait .photo {
	width: calc(100% - 8px);
	height: calc(100% - 8px);
}
body.ready ._character .person .portrait::before {
	width:  calc(100% + 8px);
	height: calc(100% + 8px);
	border-width: 1px;
	opacity: 1;
}
._character .under_text {
	padding: 0;
}
.add_sphere {
	margin-left: 20px;
	height: 40px;
	width: 40px;
	border-radius: 100%;
	border: 1px solid #aaa;
	color: #aaa;
	font-size: 1.75rem;
	font-family: var(--ff_light);
	font-weight: 300;
	margin-right: 10px;
	display: flex;
	align-content: center;
	align-items: center;
	justify-content: center;
	text-align: center;
	cursor: pointer;
	transition: all .2s ease-in-out;
}
.add_sphere:hover {
	border-color: #0091ea;
	color: #0091ea;
}
.sphere_links .unread {
	border-radius: 20px;
	height: 16px;
	padding: 2px 4px 0;
	background: #d42027;
	min-width: 16px;
	color: #fff;
	font-size: .6rem;
	font-family: var(--ff_black);
	font-weight: 900;
	text-align: center;
	margin-left: 5px;
	position: relative;
	top: -3px;
	display: inline-flex;
	align-content: center;
	align-items: center;
	justify-content: center;
}
.button {
	display: inline-flex;
	align-content: center;
	align-items: center;
	justify-content: center;
	text-align: center;
	height: 40px;
	padding: 0 20px;
	background: #eee;
	border-radius: 24px;
	margin-right: 10px;
	font-size: .9rem;
	border: 1px solid #eee;
	cursor: pointer;
	transition: all .2s ease-in-out;
}
.button.major {
	background: var(--blue);
	color: #fff;
	border: 1px solid var(--blue);
	box-shadow: 0 0 0 0 var(--blue);
}
.button:hover {
	border: 1px solid #ccc;
	color: var(--blue);
}
.button.major:hover {
	color: #fff;
	border: 1px solid var(--blue);
	box-shadow: 0 0 0 3px #fff, 0 0 0 4px var(--blue);
}
.edit_avatar {
	display: flex;
	align-content: center;
	align-items: center;
	justify-content: flex-start;
	text-align: left;
	width: 100%;
	padding-left: 10px;
}
.edit_avatar span {
	display: inline-flex;
	align-content: center;
	align-items: center;
	justify-content: center;
	text-align: center;
	height: 40px;
	padding: 0 20px;
	background: #eee;
	border-radius: 24px;
	margin-right: 10px;
	font-size: .9rem;
	border: 1px solid #eee;
	cursor: pointer;
	transition: all .2s ease-in-out;
}
.edit_avatar span:hover {
	border: 1px solid #ccc;
	color: var(--blue);
}
.umsystem {
	display: none;
}
.save_profile.loading {
	pointer-events: none;
	opacity: .7;
}		
.main_title {
	font-family: var(--ff_heavy);
	font-weight: 900;
	font-size: 2rem;
	color: #0091ea;
	margin-bottom: 1em;
}	
.account_form {
	width: 60ch;
}
.account_form .form_title {
	height: 100px;
	display: flex;
	align-content: center;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-family: var(--ff_heavy);
	font-weight: 900;
	font-size: 1.5rem;
	color: #0091ea;
}
.account_form .form_field {
	height: 50px;
	display: flex;
	align-content: center;
	align-items: center;
	justify-content: center;
	text-align: center;
	margin-bottom: 15px;
}
.account_form .form_field.justify_left {
	text-align: left;
	justify-content: left;
}
.account_form .form_field.textarea {
	height: 135px;
	align-content: flex-start;
	align-items: flex-start;
}
.account_form .form_field label {
	font-family: var(--ff_heavy);
	font-weight: 900;
	font-size: 1rem;
	color: #999;
	width: 10ch;
	text-align: left;
}
.account_form .form_field input,
.account_form .form_field textarea {
	height: 100%;
	background: #eee;
	padding: 15px;
	width: calc(100% - 10ch);
	font-family: var(--ff_book);
	font-size: 1rem;
	color: #000;
	border: 1px soild #eee;
	transition: all .2s ease-in-out;
}
.focus_options {	
	width: calc(100% - 10ch);
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap: 10px;
}
.focus_options > div {
	height: 40px;
	border-radius: 15px;
	color: #000;
	display: flex;
	align-content: center;
	align-items: center;
	justify-content: center;
	text-align: center;
	cursor: pointer;
	background: var(--white);
	transition: all .2s ease-in-out;
}
.focus_options .selected {
	font-family: var(--ff_heavy);
	font-weight: 900;
}
.focus_options .red:hover,
.focus_options .red.selected {
	background: var(--red);
	color: #fff;
}
.focus_options .blue:hover,
.focus_options .blue.selected {
	background: var(--blue);
	color: #fff;
}
.focus_options .white:hover,
.focus_options .white.selected {
	background: var(--white);
	box-shadow: 0 0 0 2px #000;
	color: #000;
}
.focus_options .yellow:hover,
.focus_options .yellow.selected {
	background: var(--yellow);
}
.account_form .form_field input:focus,
.account_form .form_field textarea:focus {	
	border: 1px soild #ccc;
}
.account_form .form_field textarea {
	height: 100%;
	resize: none;
}
.online_select {
	text-align: left;
	width: calc(100% - 10ch);
}
.online_select span {
	font-family: var(--ff_book);
	font-weight: 400;
	font-size: .9rem;
	color: #aaa;
	display: inline-flex;
	align-content: center;
	align-items: center;
	justify-content: center;
	text-align: center;
	height: 24px;
	margin-right: 5px;
	cursor: pointer;
	transition: all .2s ease-in-out;
}
.online_select span.selected {
	background: #0091ea;
	color: #fff;
	font-family: var(--ff_heavy);
	font-weight: 900;
	padding: 0 10px;
	border-radius: 8px;
}
.online_select span.off.selected {
	background: #d42027;
}


body > header {
	position: absolute;
	left: 0;
	top:  0;
	z-index: 2000;
}
body > aside {
	width: 600px;
	max-width: 100%;
	left: auto;
	right: 60px;
	height: 50px;
	top: -50px;
	background: #f6f6f6;
	background: transparent;
	border-radius: 50px;
	box-shadow: none;
	padding-right: 100px;
	z-index: 9999;
}
body.menu_open > aside {
	top: 16px;
	left: auto;
	right: 60px;
	height: 50px;
	box-shadow: none;
	width: 600px;
}
body > aside > nav {
	width: 100%;
	height: 100%;
	position: relative;
	display: flex;
	align-content: center;
	align-items: center;
	justify-content: space-evenly;
	text-align: center;
}
body > aside > nav > a {
	display: block;
}
main {
	display: grid;
	grid-template-columns: .8fr 1.2fr;
	height: 100vh;
}
#app {
	padding-top: 100px;
	height: 100%;
	overflow: auto;
}
#magazine {
	width: 100%;
	min-height: 100vh;
	padding-top: 100px;
	overflow: auto;
	background: #fafafa;
}
#magazine section.feature {
	position: relative;
	min-height: 100px;
	display: flex;
	align-content: center;
	align-items: center;
	justify-content: center;
	text-align: center;
	flex-flow: column;
}
.swatch {
	height: 100px;
	width: 84px;
}
.swatch._blue {
	left: -30px;
	top: -30px;
}
.feature1 .swatch._blue::after {
	bottom: -1px;
	left: calc(100% - 2px);
	transform-origin: left center;
	transform: rotate(45deg);
}
.swatch._yellow {
	right: -13px;
	top: 50px;
}
.feature1 .swatch._yellow::after {
	bottom: -1px;
	width: 40px;
	right: calc(100% - 2px);
	transform-origin: right center;
	transform: rotate(-45deg);
	background-position: left center;
}
#magazine .feature h1 {
	margin-bottom: 60px;
}
#magazine .feature h2.super {
	font-size: 1.6rem;
	line-height: 1.3;
	max-width: 500px;
}
#magazine .feature .illustrative {
	margin-bottom: 40px;
}
#magazine .feature1 {
	width:  500px;
	height: 500px;
	margin: 0 auto;
	position: relative;
	border-radius: 50px;
	background: url(../images/photos/square/stock-photo-114464805.jpg) no-repeat center center;
	background-size: cover;
}
.feature.focus_blue {
	background: #0091ea;
	color: #fff;
	display: flex;
	align-content: center;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 50px;
	font-family: ff-tisa-web-pro, serif;
	font-weight: 600;
	font-style: italic;
	font-size: 2rem;
	line-height: 1.2;
	text-align: center;
}
.feature.focus_blue > div {
	max-width: 500px;
}
.exp {
	max-width: 500px;
	font-size: 1.3rem;
	text-align: left;
	margin-bottom: 50px;
	color: #5e5e5e;
	font-family: ff-tisa-web-pro, serif;
	font-weight: 400;
	border-left: 5px solid #eee;
	padding-left: 30px;
}
.cta_button,
a.cta_button {
	width: 270px;
	padding: 10px;
	border-radius: 25px;
	background: #fff;
	display: flex;
	align-content: center;
	align-items: center;
	justify-content: center;
	text-align: left;
	font-family: var(--ff_heavy);
	font-weight: 900;
	font-size: 1.2rem;
	line-height: 1.1;
	position: absolute;
	left: 50%;
	top:  50%;
	transform: translate(-50%,-50%);
	color: #d42027;
	border: 6px solid #d42027;
	box-shadow: 0 0 0 6px #fff;
	cursor: pointer;
	transition: all .2s ease-in-out;
}
.cta_button.pc_button {
	display: none;
}
.cta_button.pc_button.on {
	display: flex;
}
.cta_button:hover,
a.cta_button:hover {
	background: #d42027;
/* 							box-shadow: 0 0 0 6px #d42027; */
	color: #fff;
}
.cta_button:after {
	left: calc(100% + 2px);
	top: 50%;
	border: solid transparent;
	content: "";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(255, 255, 255, 0);
	border-left-color: var(--red);
	border-width: 12px;
	margin-top:  -12px;
	transition: all .2s ease-in-out;
}
.cta_button:hover::after {
/* 							border-left-color: #d42027; */
}
.feature.focus_white {
	background: #fff;
	padding: 50px;
}
#magazine .feature h2.fine {
	position: relative;
	font-family: var(--ff_light);
	font-weight: 300;
	font-size: 1.7rem;
	line-height: 1.3;
	text-align: left;
	margin-bottom: 80px;
}
#magazine .feature h2.fine strong {
	font-family: var(--ff_heavy);
	font-weight: 900;
	color: #d42027;
}
#magazine .feature h2.fine::after {
	content: "";
	height: 6px;
	width: 150px;
	border-radius: 10px;
	position: absolute;
	bottom: -40px;
	left: 0;
	background: #d42027;
}
aside .signin {
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	display: flex;
	align-content: center;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #000;
	font-family: var(--ff_black);
	font-weight: 900;
	font-size: 1rem;
	line-height: 1;
}
aside .signin span {
	display: inline-flex;
	align-content: center;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: #0091ea;
	color: #fff;
	padding: 0 10px;
	border-radius: 8px;
	height: 30px;
	cursor: pointer;
	transition: all .2s ease-in-out;
}
aside .signin span:hover {
	box-shadow: 0 0 0 4px #0091ea;
}
#magazine a {
	transition: all .2s ease-in-out;
	border-bottom: 0px solid #fff;
	
}
#magazine a:hover {
	color: #000;
	border-bottom: 2px solid #eee;
}
header .simple_chart {
	height: 60px;
	width: 80px;
	position: absolute;
	top: 50%;
	right: 34px;
	transform: translateY(-50%);
}
header .simple_chart .portrait {
	display: none;
}
.declaration {	
	color: #000;
	font-family: var(--ff_black);
	font-weight: 900;
	font-size: 3rem;
	line-height: 1;
	padding: 34px;
}
.declaration.red {
	color: var(--red);
}
.declaration.blue {
	color: var(--blue);
}
.declaration.white {
	color: #000;
}
.declaration.yellow {
	color: var(--yellow);
}
#quiz.character_code_assessment {
	width:  100%;
	height: 100%;
	background: #fbfbfb;
	position: absolute;
	left: 0;
	top:  100%;
	opacity: 0;
	pointer-events: none;
	transition: top .4s ease-in-out;
}
body.character_code_active #quiz.character_code_assessment {
	top: 50px;
	pointer-events: all;
	opacity: 1;
}

// CHARACTER CODE
#quiz.complete a.cta_button.full_assessment {
	display: flex;
}
#quiz.active .begin {
	display: none;
}
#quiz .keepinmind {
	display: none;
}
#quiz.active .keepinmind {
	display: block;
	margin: 0 auto 20px;
	max-width: 400px;
	text-align: center;
	font-size: 1.1rem;
	color: #777;
}
#quiz.active.complete .keepinmind {
	display: none;
}
#quiz.active .keepinmind strong {
	color: #333;
}
#quiz article {
	position: relative;
	display: none;
	margin: auto;
	width: 100%;
	margin-bottom: 30px;
	max-width: 600px;
	border-radius: 50px;
	padding: 60px 50px 50px;
	background: #fff url(../pic/quizborder/tl.png) no-repeat 20px 20px;
	background-size: 1000px;
	box-shadow: 3px 6px 20px rgba(0,0,0,.2);
}
#quiz.active article {
	display: block;
}
#quiz h1 {
	text-align: center;
	margin-bottom: 40px;
	color: #ccc;
}
#quiz article::before {
	content: "";
	pointer-events: none;
	position: absolute;
	right: 0;
	top:   0;
	width:  100px;
	height: 100%;
	border-radius: 50px;
	background: #fff url(../pic//quizborder/tr.png) no-repeat right 20px top 20px;
	background-size: 1000px;
	z-index: 0;
}
#quiz article::after {
	content: "";
	pointer-events: none;
	position: absolute;
	left:    0;
	bottom:  0;
	width:  100%;
	height: 100px;
	border-radius: 50px;
	background: #fff url(../pic//quizborder/bl.png) no-repeat left 20px bottom 20px;
	background-size: 1000px;
	z-index: 0;
}
#quiz article .br {
	pointer-events: none;
	position: absolute;
	right:    0;
	bottom:  0;
	width:  100px;
	height: calc(100% - 100px);
	border-radius: 50px;
	background: #fff url(../pic//quizborder/br.png) no-repeat right 20px bottom 20px;
	background-size: 1000px;
	z-index: 1;
}
#quiz article .screen {
	position: relative;
	min-height: 300px;
	z-index: 1;
	transition: all .3s ease-in-out;
}
#quiz article.loading .screen {
	opacity: 0;
}
#quiz.complete article .screen {
	opacity: 1;
}
#quiz article .prompt {
	color: #000;
	font-family: var(--ff_black);
	font-weight: 900;
	font-size: 1.2rem;
	line-height: 1.5;
	text-align: left;
	padding-left: 20px;
	margin-bottom: 30px;
}
#quiz article .responses {
	width: 100%;
}
#quiz article .responses .response {
	position: relative;
	background: #eee;
	text-align: left;
	border-radius: 18px;
	margin-bottom: 20px;
	color: #777;
	font-family: var(--ff_book);
	font-weight: 500;
	font-size: 1.1rem;
	line-height: 1.3;
	padding: 20px 20px 20px 45px;
	cursor: pointer;
	transition: all .2s ease-in-out;
}
#quiz article .responses .response::before {
	content: "";
	position: absolute;
	border-radius: 100%;
	left: 15px;
	top:  50%;
	margin-top: -10px;
	width:  20px;
	height: 20px;
	background: #fff;
}
#quiz article .responses .response.selected {
	background: #0091ea;
	color: #fff;
}
#quiz .screen.final {
	background: #fff;
/* 	z-index: 9; */
}
#quiz .screen.final::before {
	left: 20px;
	top:  20px;
	background: none;
	width:  calc(100% - 40px);
	height: calc(100% - 40px);
	border-radius: 30px;
}
#quiz .screen.final::after {
	content: none;
}
#quiz .screen.final.red::before {
	border: 6px solid #d42027;
}
#quiz .screen.final.blue::before {
	border: 6px solid #0091ea;
}
#quiz .screen.final .result_title {	
	font-family: var(--ff_black);
	font-weight: 900;
	font-size: 2.2rem;
	line-height: 1;
	text-align: center;
	margin-bottom: 23px;
}
#quiz .screen.final .result_title span {
	opacity: 0;
	transition: all 1s 1s ease-in-out;
}
#quiz .screen.final.focus .result_title span {
	opacity: 1;
}
#quiz .screen.final.red .result_title {
	color: var(--red);
}
#quiz .screen.final.blue .result_title {
	color: var(--blue);
}
.quiz_progress {
	position: relative;
	display: none;
	align-content: center;
	align-items: center;
	justify-content: center;
	text-align: center;
	height: 30px;
}
#quiz.active .quiz_progress {
	display: flex;
}
#quiz.active.complete .quiz_progress {
	display: none;
}
.quiz_progress .nav {
	position: relative;
	height: 30px;
	display: flex;
	align-content: center;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 0 14px;
	border: 2px solid var(--blue);
	color: var(--blue);
	font-size: .9rem;
	border-radius: 20px;
	background: #fff;
	margin: 0 20px;
	cursor: pointer;
	transition: all .2s ease-in-out;
}
.quiz_progress .nav:hover {
	background: var(--blue);
	color: #fff;
}
.quiz_progress .nav span {
	display: flex;
	align-content: center;
	align-items: center;
	justify-content: center;
	text-align: center;
	width: 20px;
	padding-bottom: 2px;
	height: 100%;
	color: #fff;
	position: absolute;
	top: 0;
	background: var(--blue);
	transition: all .2s ease-in-out;
}
.quiz_progress .nav.back {
	padding-left: 30px;
	display: none;
}
.quiz_progress .nav.back.active {
	display: flex;
}
.quiz_progress .nav.forward {
	padding-right: 30px;
}
.quiz_progress .nav.forward.hold {
	border-color: #eee;
	color: #eee;
	pointer-events: none;
}
.quiz_progress .nav.forward strong {
	font-weight: 400;
}
.quiz_progress .nav.forward .finish {
	display: none;
}
#quiz.finishing .quiz_progress .nav.forward .finish {
	display: inline;
}
.quiz_progress .nav.forward .finish {
	display: none;
}
#quiz.finishing .quiz_progress .nav.forward .next {
	display: none;
}
.quiz_progress .nav.forward.hold span {
	background-color: #eee;
}
.quiz_progress .nav.back span {
	left: 0;
	border-radius: 20px 0 0 20px;
}
.quiz_progress .nav.back:hover span {
	padding-left: 7px;
}
.quiz_progress .nav.forward span {
	right: 0;
	border-radius: 0  20px 20px 0;
}
.quiz_progress .nav.forward:hover span {
	padding-right: 7px;
}
.quiz_progress .question_number {
	font-family: var(--ff_heavy);
	font-weight: 900;
	font-size: .9rem;
	color: #999;
}
#quiz .loader {
	height: 14px;
	width: 100px;
	border-radius: 14px;
	pointer-events: none;
	overflow: hidden;
	position: absolute;
	left: 50%;
	top:  50%;
	z-index: 9;
	transform: translate(-50%,-50%);
}
#quiz .loader > div {
	width: 400px;
	height: 100%;
	position: relative;
	top: 0;
	left: -400px;
	display: none;
	gap: 10px;
	grid-template-columns: repeat(4,1fr);
}
#quiz .loader > div span {
	display: block;
	height: 100%;
	width: 100%;
	border-radius: 14px;
}
#quiz .loader > div span:nth-of-type(1) {
	background: var(--red);
}
#quiz .loader > div span:nth-of-type(2) {
	background: var(--blue);
}
#quiz .loader > div span:nth-of-type(3) {
	background: var(--white);
}
#quiz .loader > div span:nth-of-type(4) {
	background: var(--yellow);
}
#quiz article.loading .loader > div {
	display: grid;
	animation: loading 3s linear;
}
@keyframes loading {
	100% {left: 400px;}
}
.screen.final {
	display: flex;
	align-content: center;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.result_chart {
	width: 180px;
	height: 100px;
	display: flex;
	align-content: center;
	align-items: center;
	justify-content: space-evenly;
	text-align: center;
	margin: 0 auto;
}
.result_chart > div {
	height: 30px;
	max-height: 100%;
	width:  30px;
	border-radius: 30px;
	transition: all .4s ease-in-out;
}
.result_chart > div.red {
	background: #d42027;
}
.result_chart > div.blue {
	transition-delay: .1s;
	background: #0091ea;
}
.result_chart > div.yellow {
	transition-delay: .2s;
	background: #ffd600;
}
.result_chart > div.white {
	transition-delay: .3s;
	background: #eeeeee;
}
.result_chart.hold > div {
	height: 30px !important;
}

#quiz .screen.final {
	background: #fff;
/* 	z-index: 9; */
}
#quiz .screen.final::before {
	left: 20px;
	top:  20px;
	background: none;
	width:  calc(100% - 40px);
	height: calc(100% - 40px);
	border-radius: 30px;
}
#quiz .screen.final::after {
	content: none;
}
#quiz .screen.final.r::before {
	border: 6px solid var(--red);
}
#quiz .screen.final.b::before {
	border: 6px solid var(--blue);
}
#quiz .screen.final.w::before {
	border: 6px solid var(--white);
}
#quiz .screen.final.y::before {
	border: 6px solid var(--yellow);
}
#quiz .screen.final .result_title {	
	font-family: var(--ff_black);
	font-weight: 900;
	font-size: 2.2rem;
	line-height: 1;
	text-align: center;
	margin-bottom: 23px;
	opacity: 0;
	transition: all .4s .3s ease-in-out;
}
#quiz .screen.final .result_title span {
	opacity: 1;
	transition: all .4s .7s ease-in-out;
}
#quiz .screen.final.focus .result_title,
#quiz .screen.final.focus .result_title span {
	opacity: 1;
}
#quiz .screen.final.r .result_title {
	color: var(--red);
}
#quiz .screen.final.b .result_title {
	color: var(--blue);
}
#quiz .screen.final.w .result_title {
	color: #000;
}
#quiz .screen.final.y .result_title {
	color: var(--yellow);
}
#quiz .screen.final .result_addendum {
	height: 80px;
	width: fit-content;
	border-radius: 15px;
	padding: 20px;
	margin-top: 30px;
	display: flex;
	flex-flow: column;
	align-content: center;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #fff;
	font-family: var(--ff_black);
	font-weight: 900;
	font-size: 1rem;
	line-height: 1;
	opacity: 0;
	transition: all .4s .8s ease-in-out;
}
#quiz .screen.final.r .result_addendum {
	background-color: var(--red);
}
#quiz .screen.final.b .result_addendum {
	background-color: var(--blue);
}
#quiz .screen.final.w .result_addendum {
	background-color: #000;
}
#quiz .screen.final.y .result_addendum {
	background-color: var(--yellow);
}
#quiz .screen.final.focus .result_addendum {
	opacity: 1;
	height: 90px;
	margin: 20px auto 0;
}
#quiz .screen.final .result_addendum > div {
	font-size: 2.5rem;
	margin-top: 6px;
	transition: all .5s 1s ease-in-out;
}
#quiz article.final.focus .result_addendum > div {
	margin-top: 5px;
}
.cc_intro {
	display: flex;
	height: 100%;
	width: 100%;
	padding: 40px;
	position: relative;
}
#quiz.active .cc_intro {
	display: none;
}
.cc_intro .cta_button, .cc_intro a.cta_button {
	position: static;
	top: auto;
	bottom: auto;
	margin: 0 auto 50px;
	transform: none;
}
.cc_intro_content {
	margin: auto;
}
#quiz .cc_intro h2 {
	font-family: var(--ff_heavy);
	font-weight: 900;
	text-align: center;
	color: var(--blue);
	margin-bottom: 20px;
	line-height: 1.2;
}
#quiz .cc_intro .explain {
	font-family: var(--ff_heavy);
	font-weight: 900;
	text-align: center;
	color: #404040;
	margin-bottom: 30px;
	font-size: 1.2rem;
}
#quiz .cc_intro .explain > span {
	display: none;
}
#quiz.set0 .cc_intro .explain > span.x0,
#quiz.set .cc_intro .explain > span.x0 {
	display: block;
}
#quiz.set1 .cc_intro .explain > span.x1 {
	display: block;
}
#quiz .cc_intro .x {
	height: 40px;
	width:  40px;
	position: absolute;
	right: 20px;
	top:   -20px;
	display: flex;
	align-content: center;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-family: var(--ff_light);
	text-align: center;
	font-size: 2rem;
	font-weight: 300;
	color: #404040;
	cursor: pointer;
	opacity: .6;
	transition: all .2s ease-in-out;
}
#quiz .cc_intro .x:hover {
	opacity: 1;
}
.cc_progress {
	display: none;
	opacity: 0;
	position: relative;
	top: 20px;
	transition: all .3s ease-in-out;
}
.open_part2 .cc_progress {
	display: block;
}
.open_part2.p2_display .cc_progress {
	opacity: 1;
	top: 0;
}
.cc_progress .show {
	width: 130px;
	height: 50px;
	margin: 0 auto 20px;
	display: flex;
	align-content: center;
	align-items: center;
	justify-content: space-evenly;
	text-align: center;
}
.cc_progress .show .check {
	width:  50px;
	height: 50px;
	border-radius: 100%;
	border: 4px solid var(--white);
	position: relative;
	display: flex;
	align-content: center;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.cc_progress .show .check svg {
	width:  100%;
	height: 100%;
	display: block;
}
 .open_part2 .cc_progress .show .check svg path {
	fill: var(--white);
	transition: all .3s 1.6s ease-in-out;
}
.character_code_active .open_part2 .cc_progress .show .check.checked {
	border-color: var(--blue);
	transition: all .3s 1.6s ease-in-out;
}
.character_code_active .open_part2 .cc_progress .show .check.checked svg path {
	fill: var(--blue);
}
.cc_progress.final .show .check:last-of-type {
	display: none;
}
.cc_part2 {
	position: relative;
	height: 30px;
	width: fit-content;
	display: flex;
	align-content: center;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 0 28px 0 14px;
	border: 2px solid var(--blue);
	color: var(--blue);
	font-size: .9rem;
	border-radius: 20px;
	background: #fff;
	margin: 0 auto;
	cursor: pointer;
	transition: all .2s ease-in-out;
}
.cc_part2:hover {
	background: var(--blue);
	color: #fff;
}
.cc_progress.final .show .check:last-of-type {
	display: none;
}
.cc_progress.final .cc_part2 {
	display: none;
}
.cc_part2 .ccq {
	padding: 0 .25em;
}
.cc_part2 .arrow {
	display: flex;
	align-content: center;
	align-items: center;
	justify-content: center;
	text-align: center;
	width: 20px;
	padding-bottom: 2px;
	height: 100%;
	color: #fff;
	border-radius: 0  20px 20px 0;
	position: absolute;
	top: 0;	
	right: 0;
	background: var(--blue);
	transition: all .2s ease-in-out;
}
.cc_part2:hover .arrow {
	padding-right: 7px;
}
#quiz.complete .cc_results {
	display: block;
}
#quiz.complete .cc_live {
	display: none;
}
#onboard {
	position: fixed;
	left: 0;
	top:  0;
	width:  100%;
	height: 100%;
	background: rgba(241, 241, 241, 0.97);
	display: none;
	align-content: center;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 56px;
	z-index: 99999;
}
body.pc_prompt #onboard {
	display: flex;
}
#onboard > article {
	position: relative;
	padding: 34px;
	border-radius: 21px;
	box-shadow: 3px 3px 34px rgba(0,0,0,.1);
	width:  100%;
	height: 100%;
	background: #fff;
	overflow-x: hidden;
	overflow-y: scroll;
	display: flex;
	align-content: center;
	align-items: center;
	justify-content: center;
	text-align: center;
	flex-flow: column;
}
#onboard .feature_header {
	font-size: 3rem;
	line-height: 1;
	font-family: var(--ff_heavy);
	font-weight: 900;
	color: var(--blue);
	margin-bottom: 21px;
}
#onboard .subheader {
	font-size: 1.5rem;
	line-height: 1;
	margin-bottom: 35px;
}
#onboard .checkpod {
	position: relative;
	background: #fff;
	padding: 34px;
	border-radius: 14px;
	box-shadow: 1px 1px 21px rgba(0,0,0,.06);
	width: 100%;
	max-width: 700px;
	margin: 0 auto 14px;
	display: flex;
	align-content: center;
	align-items: center;
	justify-content: flex-start;
	text-align: left;
	cursor: pointer;
	transition: all .2s ease-in-out;
}
#onboard .checkpod.focus {
	background: var(--blue);
	box-shadow: 0 5px 4px rgba(0,0,0,.1), 1px 1px 21px rgba(0,0,0,.1);
	z-index: 3;
}
#onboard .checkpod.focus:hover {
	box-shadow: 0 0 0 14px var(--lightblue);
}
#onboard .checkpod .check {
	height: 50px;
	width:  50px;
	border-radius: 100%;
	border: 1px solid #fff;
	margin-right: 21px;
	overflow: hidden;
	position: relative;
	display: flex;
	align-content: center;
	align-items: center;
	justify-content: center;
	text-align: center;
}
#onboard .checkpod .check svg {
	height: 20px;
	width: auto;
	margin-top: 150%;
	transition: all .2s ease-in-out;
}
#onboard .checkpod:hover .check svg {
	margin-top: 0;
}
#onboard .checkpod .check svg path {
	fill: #fff;
}
#onboard .checkpod .label {
	font-size: 1.2rem;
	font-family: var(--ff_heavy);
	font-weight: 900;
	color: #fff;
}
#onboard .checkpod .label span {
	border-bottom: 1px solid #fff;
}
.remaining_checkpods {
	position: relative;
	margin: 0 auto;
	width: 100%;
	max-width: 700px;
	top: -68px;
}
.remaining_checkpods div {
	box-shadow: 1px 1px 21px rgba(0,0,0,.06);
	width: 100%;
	height: 100px;
	background: #fff;
	border-radius: 14px;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}
.remaining_checkpods div:nth-of-type(3) {
	top: 0;
	width: calc(100% - (34px * 2));
	box-shadow: 1px 1px 21px rgba(0,0,0,.13);
}
.remaining_checkpods div:nth-of-type(2) {
	top: 34px;
	width: calc(100% - (2 * 68px));
	box-shadow: 1px 1px 21px rgba(0,0,0,.1);
}
.remaining_checkpods div:nth-of-type(1) {
	top: 68px;
	width: calc(100% - (132 * 2px));
}
.um .um-field-group-head, .picker__box, .picker__nav--prev:hover, .picker__nav--next:hover, .um .um-members-pagi span.current, .um .um-members-pagi span.current:hover, .um .um-profile-nav-item.active a, .um .um-profile-nav-item.active a:hover, .upload, .um-modal-header, .um-modal-btn, .um-modal-btn.disabled, .um-modal-btn.disabled:hover, div.uimob800 .um-account-side li a.current, div.uimob800 .um-account-side li a.current:hover {
	border-radius: 21px 21px 0 0 !important;
	background: #fff !important;
	color: var(--blue) !important;
	height: 80px !important;
	line-height: 1 !important;
	display: flex !important;
	align-content: center !important;
	align-items: center !important;
	justify-content: center !important;
	text-align: center !important;
	font-family: var(--ff_heavy) !important;
	font-weight: 900 !important;
}
body.page-template-template-profile div.um-modal .um-finish-upload {
	background: var(--blue) !important;
	color: #fff !important;
	border: 0 !important;
}
body.page-template-template-profile div.um-modal .um-finish-upload.disabled {
	background: #fff !important;
	color: #ddd !important;
}
.um-modal-body {
	border-radius: 0 0 21px 21px !important;
	padding: 0 34px 34px !important;
}
.um-modal-body .um-modal-right {
	float: none !important;
	display: flex;
	align-content: center;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 34px;
}
.um-modal-btn.disabled, .um-modal-btn.disabled:hover {
	pointer-events: none;
	opacity: 1 !important;
}
.um-modal-body .um-modal-right .um-modal-btn {
	line-height: 1 !important;
	padding: 0 14px !important;
	height: 34px !important;
	width: fit-content !important;
	display: flex !important;
	align-content: center !important;
	align-items: center !important;
	justify-content: center !important;
	text-align: center !important;
	border: 1px solid #ddd;
	border-radius: 0 !important;
}
body.page-template-template-profile div.um-modal .ajax-upload-dragdrop span.icon {
	display: flex !important;
	align-content: center !important;
	align-items: center !important;
	justify-content: center !important;
	text-align: center !important;
	line-height: 1 !important;
	vertical-align: middle;
	margin: 0 auto 21px !important;
	margin-bottom: 0 !important;
	height: 80px !important;
	width:  80px !important;
	border-radius: 100% !important;
	background-size: auto 50px !important;
	background-repeat: no-repeat !important;
	background-position: center center !important;
	background-color: #fff !important;
	background-image: url(/model/pic/icons/avatar-default.jpg) !important;
	border: 1px solid #ddd !important;
}
body.page-template-template-profile .um-faicon-camera::before {
	content: "" !important;
}
body.page-template-template-profile div.um-modal .ajax-upload-dragdrop span.str {
	margin: 14px 0;
}
div.um-modal .upload {
	background: var(--blue) !important;
	color: #fff !important;
	font-size: 1rem !important;
	width: fit-content !important;
	padding: 0 34px !important;
	height: 42px !important;
	display: flex !important;
	align-content: center !important;
	align-items: center !important;
	justify-content: center !important;
	text-align: center !important;
	border-radius: 14px !important;
	margin: 0 auto !important;
}
body.page-template-template-profile .um-modal-overlay {
	background: rgba(255,255,255,.94);
}
body.page-template-template-profile .um-modal.normal {
	border-radius: 21px;
	box-shadow: 3px 3px 34px rgba(0,0,0,.1);
}




		
		@media (max-width: 900px) {
		/* PHONE STYLES 
		------------------------------ */
		
		
		#screen {
			padding: 0;
		}
		#screen_header {
			margin-bottom: 30px;
			padding: 50px 20px;
		}
		#screen_header.columns > article {
			display: block;
		}
		#screen_header.columns .portrait {
			width:  50px;
			height: 50px;
			margin: 0 auto 2px;
		}
		#screen_header.columns .portrait .photo {
			width:  calc(100% - 8px);
			height: calc(100% - 8px);
		}
		#screen_header.columns > article .summary {
			font-size: .75rem;
		}
		#screen_header.columns > article .summary * {
			width: 100%;
			text-align: center;
		}
		#me {
			margin-bottom: 40px;
		}
		.portrait {
			height: 200px;
			width:  200px;
		}
		#me .quick_details .badge {
			width: 34px;
			left: -42px;
			background-size: 28px auto;
		}
		#me .quick_details .badge:hover {
			background-size: 34px auto;
		}
		#me .quick_details .name {
			font-size: 1.5rem;
		}
		#me .quick_details .title {
			padding-top: 6px;
			font-size: .8rem;
		}
		#about {
			padding: 40px 40px 100px;
			display: block;
		}
		#about article {
			margin: 0 auto;
		}
		#about .connect .button {
			font-size: .8rem;
			padding: 0 20px 0 14px;
			line-height: .8;
		}
		#about .connect .button img {
			width: 14px;
			margin-right: 6px;
		}
		#about .connect .button.send img {
			width: 10px;
		}
		
		
		
		body {
			padding-top: 122px;
			padding-left: 0;
		}
		#control {
			left: 0;
			top: 0;
			width: 100%;
			height: 122px;
			padding-right: 40px;
			display: flex;
			align-content: center;
			align-items: center;
		}
		#control .brand {
			height: 70px;
			width: 120px;
			background-size: 70px auto;
			background-position: left 20px center;
			margin-bottom: 0;
		}
		#control .pod {
			width:  54px;
			height: 54px;
			font-size: .7rem;
			margin: 0 6px;
			border-radius: 17px;
			font-family: var(--ff_heavy);
			font-weight: 900;
		}
		#control .pod.first {
			margin-left: auto;
		}
		#control .pod.break {
			margin-bottom: 0;
		}
		#control .key {
			width:  26px;
			height: 26px;
			position: absolute;
			right: 14px;
			margin: 0;
		}
		#control .key.alert {
			top: 34px;
		}
		#control .key.break {
			bottom: 34px;
		}
		#control .key svg {
			height: 20px;
		}
		#messages {
			width: 100%;
			height: calc(100% - 100px);
			margin-left: 0;
			top: 100px;
		}
		main {
			display: block;
			height: fit-content;
			padding-top: 140px;
			overflow: scroll;
		}
		#me {
			overflow: visible;
		}
		#me .quick_details {
			display: block;
		}
		.quick_details .chart {
			height: 80px;
			width: 80px;
			margin: 0 auto;
		}
		#about {
			padding: 40px 20px 100px;
			display: block;
			height: auto;
			overflow: hidden;
		}
		.account_form {
			max-width: 100%;
			width: 100%;
		}
		.account_form .form_field label {
			font-weight: 900;
			font-size: .8rem;
		}
		.account_form .form_field input, 
		.account_form .form_field textarea {
			font-size: .9rem;
		}
		.edit_avatar span {
			font-size: .8rem;
		}
		.focus_options > div {
			font-size: .8rem;
		}
		.button {
			font-size: .8rem;
		}
		
		
		
		/* END PHONE STYLES 
		------------------------------ */
