@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css");
:root {
	--body-bg: F3F5F2;
	--base-color:#393536;
	--font-family: 'Open Sans', sans-serif;
	--base-size: 1.1rem;
	--base-weight: 400;
	--required: rgba(192, 57, 43, 1.0);

	--font-awesome: "Font Awesome 7 Free";

	--primary:rgba(141,199,63,1);
	--secondary:rgba(29,29,29,1);

	--transition: all .7s cubic-bezier(.25, .8, .25, 1);

	--transform: scale(1) translateY(0px);
	--transform-hover: scale(1.01) translateY(-3px);

	--box-shadow: 0 0 0 rgba(0, 0, 0, 0);
	--box-shadow-hover: 0 10px 26px rgba(0, 0, 0, 0.2);

	/* Alerts */
	--alert-radius: 14px;
	--alert-padding: 1rem 1.25rem;
	--alert-gap: 0.85rem;
	--alert-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
	--alert-border-width: 4px;
	--alert-transition: 0.25s ease;

	/* Borders / Radius */
	--radius-sm: 4px;
	--radius-md: 14px;
	--radius-card: 25px;
	--radius-btn: 999px;
}
@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.08);
        opacity: 0.85;
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}
@keyframes alertFadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes alertFadeIn {
	from {
		opacity: 0;
		transform: translateY(-8px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}
p{
	margin:1rem !important;
}
a,
a:hover,
a:focus,
a:active,
a:visited{
	outline:none !important;
}
body,
html{
	background:var(--body-bg) !important;
}
/******************************
Alerts
******************************/
div.systemMsg ul.success, div.field.message.success div.fieldBody, div.field.message.success div.field-body{
    background-image: none !important;
    padding:0;
}

.alert li,
.success li,
.notice li{
	position: relative;
	display: flex;
	align-items: flex-start;
	gap: var(--alert-gap);
	padding: var(--alert-padding) !important;
	border-radius: var(--alert-radius);
	border: none;
	font-size: 0.95rem;
	line-height: 1.55;
	font-weight: 500;
	box-shadow: var(--alert-shadow);
	transition: all var(--alert-transition);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	animation: alertFadeIn 0.35s ease;
}


.login-main #page > div:nth-of-type(1){
	position: relative;
	display:block;
	align-items: flex-start;
	gap: var(--alert-gap);
	padding: var(--alert-padding) !important;
	border-radius: var(--alert-radius);
	border: none;
	font-size: 0.95rem;
	line-height: 1.55;
	font-weight: 500;
	box-shadow: var(--alert-shadow);
	transition: all var(--alert-transition);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	animation: alertFadeIn 0.35s ease;
	background: rgba(59, 130, 246, 0.12);
	color: #1e3a8a;
	border-left: var(--alert-border-width) solid #3b82f6;
}

.alert strong {
	font-weight: 600;
}
.alert:hover {
	transform: translateY(-2px);
}
ul.success li{
	border-left: none;
	background:
		linear-gradient(white, white) padding-box,
		linear-gradient(180deg, #10b981, #059669) border-box;
	border-left: 4px solid rgba(46, 204, 113, 1);
}
.alert-info {
	background: rgba(59, 130, 246, 0.12);
	color: #1e3a8a;
	border-left: var(--alert-border-width) solid #3b82f6;
}
.alert-warning {
	background: rgba(245, 158, 11, 0.15);
	color: #78350f;
	border-left: var(--alert-border-width) solid #f59e0b;
}
.alert-danger,
ul.notice li{
	background: rgba(239, 68, 68, 0.12) !important;
	color: #7f1d1d;
	border-left: var(--alert-border-width) solid #ef4444;
}
.alert-inclusive {
	background: rgba(155, 89, 182, 0.03);

	border-left: var(--alert-border-width) solid rgba(155, 89, 182, 1);
}
.alert-inclusive i {
	color: rgba(155, 89, 182, 1);
}
.alert-inclusive span {
	display: flex;
	gap: 0.5rem;
}
.alert-icon {
	font-size: 1.2rem;
	margin-top: 2px;
	flex-shrink: 0;
	opacity: 0.95;
	transition: transform var(--alert-transition),
		opacity var(--alert-transition);
}
.alert:hover .alert-icon {
	transform: scale(1.15);
	opacity: 1;
}
#content .alert i {
	font-size: 1.5rem;
}

.alert .close {
	margin-left: auto;
	font-size: 1rem;
	opacity: 0.5;
	transition: opacity 0.2s ease;
}
.alert .close:hover {
	opacity: 1;
}
html,
body{
	font:unset;
	font-family: var(--font-family);
	font-size: var(--base-size);
}

.login-main #page div:nth-of-type(1){
	margin:1rem auto;
}
.login-main #page div:nth-of-type(1) div{
	border:none;
	box-shadow:none;
	background:none;
	border-radius:0;
	display:block;
}

#content-login,
#content-register{
	display:grid;
}


body {
	background:#ffffff;
	color: #646464;
}
#wrapper {
	width: 100%;
	min-width:100%;
	background: transparent;
	box-shadow: none;
}
a{
	color:#027ba2;
	text-decoration: none !important;
}
a:hover,
a:focus{
	text-decoration: underline !important;
}

textarea.form-control
{
	height: 15em;
}
/*****************************************************************
HEADER
*****************************************************************/
/* layout */
#header {
	height: auto;
    position: relative;
    width: 100%;
    border-bottom: 25px solid #8dc73f;
	/*
    background: #ffffff;
	*/
	background: linear-gradient(to right, rgba(22,18,41,1) 0%,rgba(34,42,91,1) 59%,rgba(22,18,41,1) 100%);
    box-shadow: 0px 1px 3px 0px rgba(00,00,00,0.3);
}
#header #inner-header{
	max-width: 80%;
	width:100%;
}
#header #inner-header img{
	position: relative;
	display: inline-block;
	-webkit-mask-image: linear-gradient(to right, black 80%, transparent 100%);
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-size: 100% 100%;
	mask-image: linear-gradient(to right, black 80%, transparent 100%);
	mask-repeat: no-repeat;
	mask-size: 100% 100%;
}

#loginFormTitle,
#content-register h2{
	width: 580px;
    margin: 10px auto !important;
    text-align: left;
}

/* styles */
#header h1, #header h2 {
	display: none;
}
#user {
	font-size: 0.9rem;
    padding-right: 13px;
    top: 12px;
    bottom: auto;
    z-index: 999;
 }
#user li {
	border-right-color: #ffffff;
}
#user a {
	color: #ffffff;
}

#elementHeaderBottom {
	color: rgb(70,43,127);
	width: 100%;
	text-align: center;
}
#elementHeaderBottom p{
	margin: 0 !important;
}
#elementHeaderBottom h2 {
	display: block;
	font-size: 30px;
}

.modalset
.switchAuthor{
	color:#333333 !important;
}
.switchAuthor{
	margin-right:3px;	
}
.author-option a.btn{
	font-weight:bold;
	border:1px solid #cccccc;
	
}
.author-option a.btn:hover{
	color:#999;	
}
.author-option a.btn:focus{
	outline:none;	
}

.removeAuthor{
	color:#ffffff !important;
	background:#d9534f !important;
	border: 1px solid #d43f3a !important;
}
.removeAuthor:hover{
	color:#ffffff !important;
	background:#c9302c !important;
	border: 1px solid #ac2925 !important;
}

div.ui-sortable div.sortable a.btn-sm{
	color:inherit;	
}
div.userNew div.modal-dialog{
	max-width:840px;	
	width:100%;
}
div.userNew div.modal-dialog label{
	font-size:1rem;
	margin-bottom:5px;
	display:inline-block;
}

div.userNew ul {
	list-style-type: disc;
	margin-left: 20px;
}

hr { margin: 10px 0px; }

/*****************************************************************
NAVIGATION
*****************************************************************/
/* layout */
#navigation {
    width: 25%;
    float: none;
    position: sticky;
    top: 20px;
    padding: 1rem;
    background: #ffffff;
    border-radius: 25px;
    box-shadow: var(--box-shadow-hover);
}
#navigation ul{
	display:grid;
	gap:0.5rem;
	margin:0;
	padding:0;
}
#navigation ul li{
    margin: 0;
    padding: 0;
    display: grid;
    align-items: center;
    width: 100%;
	gap:0;
}

/*****************************************************************
CONTENT
*****************************************************************/
/* layout */
#pa {
	padding-top: 0px;
	width:95%;
	margin:0px auto;
}
#main {
    margin: 0 auto;
    position: relative;
    width: 73%;
    background: #ffffff;
    border-radius: 25px;
    min-height: unset;
    box-shadow: var(--box-shadow-hover);
    padding: 1rem 3rem;
}
#main h2 {
	color: #5f7583;
	margin: 20px 0;
	text-transform: uppercase;
	font-size: 145%;
}
div.field h4 {
	color: #5f7583;
	padding: 7px;
	border-bottom: 1px solid rgba(218,0,0,0.5);
	font-size: 15px;
	margin: 10px 0px;
	font-weight: 600;
}

#navigation ul.main-nav li div.panel-heading{
    border: none;
    border-radius: 0;
    padding: 0;
    margin: 0;
    width: 100%;
}

#navigation li a, #navigation ul.main-nav li div.panel-heading a {
    color: #ffffff;
    font-weight: bold;
    background: #8dc73f;
    border-left: 5px solid transparent;
	border-right: none;
	border-top: none;
	border-bottom: none;
    will-change: transition, background, border, color, box-shadow;
    transition: var(--transition);
    transform: var(--transform);
    box-shadow: var(--box-shadow);
    border-radius: 0 999px 999px 0;
    padding: 1rem;
}
#navigation ul.main-nav li div.panel-heading a:hover {
	background-color:#8dc73f; 
	color: #ffffff;
    font-weight: bold;
	border-color:#22254e;
	text-decoration: none;
	transform:var(--transform-hover);
	box-shadow:var(--box-shadow-hover);
}
#navigation ul.main-nav li div.sideSubNav {
	background: none;
}
#navigation ul.main-nav li div.sideSubNav ul li {
	border-bottom: none;
}
#navigation ul.main-nav li div.sideSubNav ul li a {
	background-color:#21295a; 
	color: #ffffff;
    font-weight: bold;
	border-left: 5px solid transparent;
	text-decoration: none;
	transition: var(--transition);
    transform: var(--transform);
    box-shadow: var(--box-shadow);
}
#navigation ul.main-nav li div.sideSubNav ul li a:hover,
#navigation ul.main-nav li div.sideSubNav ul li a:focus,
#navigation ul.main-nav li div.sideSubNav ul li a.active{
	background-color:#222a5b; 
	color: #ffffff;
    font-weight: bold;
	border-color:#8dc73f;
	box-shadow:var(--box-shadow-hover);
	text-decoration: none;
}
#menuBottomContent p a:before {
	display: inline-block;
	font: normal normal normal 1rem/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-size: 17px;
	position: relative;
	top: 1px;
	content: "\f1c1";
	margin-right: 8px;
}
#menuBottomContent p a {
	margin: 5px 10px;
	display: inline-block;
	width: 100%;
	padding: 14px 15px;
	background: #EFEFEF;
	border-radius: 4px;
}
#menuBottomContent p a:hover,
#menuBottomContent p a:focus {
	background-color:#C5D8ED; 
	color:#125B9E;
	outline:none;
}

/* general styles */
div.field {
	margin-top: 20px;
}

/*****************************************************************
FOOTER
*****************************************************************/
/* layout */
#footer{
	font-size:0.85rem;
    border:none;
    padding: 2rem 2rem 0.5rem 2rem;
	margin:2rem 0 0 0;
    background: #222222;
    color: #ffffff;
    height: unset;
}
#inner-footer{
    position: relative;
    width: 100%;
    max-width: 95%;
    margin: 0px auto;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* menu */
#footLinks {
    color: rgba(250, 250, 250, 1);
    flex: 1 1 100%;
    margin: 0;
    position: absolute;
    top: 0;
    right: 0;
}
.copyright {
	flex:1 1 100%;
	margin: 1rem 0 0 0 !important;
	color: rgba(250, 250, 250, 0.4) !important;
	text-align: center;
	margin: 0 !important;
}
.copyright a{
	color: rgba(250, 250, 250, 0.4) !important;
}
#footLinks li a, #footLinks li a.btn {
    color: rgba(250,250,250,0.8) !important;
}
#tagline{
	color:rgba(250, 250, 250, 0.4);
}
/*****************************************************************
PAGE SPECIFIC
*****************************************************************/
/* SUPPORT FORM */

/* Schedule */
#schedule-list div.schedule-listing div.title-data {
	font-family: Calibri, sans-serif;
	font-size: 11pt;
}
#schedule-list div.schedule-listing div.title-data h3 {
	font-size: 24px;
}
#schedule-list div.theme_selection {
	margin: 20px 0 15px;
}
#schedule-list div.theme_selection h3 {
	margin-bottom: 15px;
}

/*****************************************************************
Custom
- set the custom field display options
*****************************************************************/

p.required-top { display: none; }

.required.required-dynamic{
	color:var(--required);
	float:none !important;
}

/*************************
	Mobile Adjustments
**************************/
@media (min-width:120px)and (max-width:990px){
	html,
	body{
		font-size: 1rem;
	}
	body{
		padding: 5px;
		border:none;
	}
	#wrapper {
		max-width: 100%;
		min-width: 100%;
		width: 100%;
		margin: 0px;
		margin-top: 25px;
	}
	#pa{
		width:100% !important;
	}
	#header{
		background-size: contain;
		height:100px;
		margin-bottom:15px;
	}
	#header #inner-header,
	#inner-footer{
		width:100%;
	}
	#header h1{
		font-size:1.8rem;
	}
	#header h2{
		font-size:1.4rem;
	}
	#user {
		position: relative;
		top: -23px;
		right: 0px;
	}
	#user li a{
		color:#eb3e36;
		border-color:#ffffff;
	}
	.content{
		width:100% !important;	
	}
	div.login .form-control{
		margin-bottom:15px;	
	}
/* Main */
	#main{
		width:100%;
		padding: 15px;
	}
	.dashnote{
		padding:15px;
	}
/* Navigation */
	#navigation{
		width: 100%;
		float: none;
		padding: 0px 10px;
	}
	#navigation ul{
		margin:0px;	
	}

/* Mobile Footer */	
	#footer #ers{
		position: relative;
		width: 100%;
		background-position: center;	
	}
	#footer #tagline{
		margin: 20px 0px;
		text-align: center;
	}
	#footer #footLinks {
		margin: 15px 0px;
		text-align: center;
	}
	#footer #footLinks li{
		float:none;
		border:none;
	}
	#footer .copyright{
		float: none;
		margin: 5px 0px;
		text-align: center;
	}
	
	/* Review */
	form[name="scoringForm"] div.nextField p{
		height:100%;
		overflow:hidden;
	}
	form[name="scoringForm"] div.nextField label{
		display: inline-block;
		float: right;
		width: 92%;
	}
}


/****************************************************************
	Login Page Adjustments
****************************************************************/

.logreg{
    min-height: 90vh;
    height: stretch;
    position: relative;
}

.login #page{
	overflow: visible;
	height:stretch !important;
}

.login #page #content-login,
.login-main #content-register .content{
    background: #FAFAFA;
    padding: 25px;
    border-radius: 25px;
    border: 1px solid rgba(00, 00, 00, 0.1);
    box-shadow: 0px 0px 20px rgba(00, 00, 00, 0.2);
    margin: 3rem 0;
    width: 100%;
    max-width: max-content;
    margin: 3rem auto;
}

.login-main #content-register .content{
	max-width: 45%;
}

#submitHldr input,
#registerbtn,
a.btn.btn-primary{
	display: inline-block;
	font-weight: 400;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	border: 1px solid transparent;
	padding: 10px 15px;
	line-height: normal;
	border-radius: 0.25rem;
	transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
	width:auto;
	height: auto;
	font-size: 1rem;
    text-transform: uppercase;
    margin: 5px 11px;
}
#submitHldr input,
#registerbtn,
a.btn.btn-primary{
	color: #fff;
	font-weight:500;
    background: #161229;
	background: linear-gradient(90deg,rgba(22, 18, 41, 1) 0%, rgba(34, 42, 91, 1) 48%);
    border-color: rgba(22, 18, 41, 1.0);
    border-width: 2px;
    border-radius: 14px;
    margin: 1rem 0;
	padding:1rem 2rem;
	will-change:transform, background, border, color;
	transition: var(--transition);
	transform: var(--transform);
	box-shadow:var(--box-shadow);
}
#submitHldr input:hover,
#submitHldr input:focus,
#registerbtn:hover,
#registerbtn:focus,
a.btn.btn-primary:hover,
a.btn.btn-primary:focus{
	color: #fff;
	background: #161229;
	background: linear-gradient(90deg,rgba(22, 18, 41, 1) 0%, rgba(34, 42, 91, 1) 48%);
	box-shadow: 0 0 0 0.2rem rgba(141, 199, 63, 0.5);
	transform: var(--transform-hover);
	text-decoration: none;
}


p.lostPassword,
p.createAccount{
	margin:1rem 0;
}

p.lostPassword a,
p.createAccount a{
	padding:0px;
	width:auto;
	height:auto;
	text-decoration:none;
	background:none;
	transition: var(--transition);
	transform: var(--transform);
}
p.lostPassword a:hover,
p.createAccount a:hover,
p.lostPassword a:focus,
p.createAccount a:focus{
	text-decoration:underline;
	background:transparent;
	transform: var(--transform-hover);
}
p.lostPassword,
p.createAccount{
	margin:10px;
}

#loginAdmin label,
#register label{
	margin: 3px 0px;
    display: inline-block;
    font-size: 16px;
    line-height: normal;
    font-weight: 400;
}
#loginAdmin input[type="text"],
#register input[type="text"]{
	font-size: 24px;
    height: auto;
    color: #666666 !important;
}

#menuBottomContent p a:before{
	color:#c0392b;
}
h2#loginFormTitle,
#content-register .content h2{
    background: #8DC73F;
    background: linear-gradient(90deg, rgba(141, 199, 63, 1) 44%, rgba(196, 250, 125, 1) 100%);
    padding: 1rem;
    margin: 0 !important;
    border-radius: 10px;
    color: #ffffff;
    text-transform: capitalize;
    font-size: 1.4rem;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    overflow: hidden;
    gap: 0.5rem;
    box-shadow: var(--box-shadow-hover);
    width: 100%;
}
#content-register .content h2:after,
h2#loginFormTitle:after{
	font-family: var(--font-awesome);
	font-size:var(--base-size);
	display:inline-block;
	content:"";
	color: #222a5b;
}
#content-register .content h2:after{
	content:"\f234";
}
h2#loginFormTitle:after{
	content:"\f502";	
}
#inner-header a.headerlink{
	position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: block;
    z-index: 999;
}
#authorAddButtons a.btn,
#submitDraft{
    width: auto;
    margin: 0px;
    float: none;
    display: inline-block;
    padding: 1rem;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: normal;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 25px;
    height: auto;
	transition: var(--transition);
	transform: var(--transform);
	box-shadow: var(--box-shadow);
}
#authorAddButtons {
    height: 100%;
    overflow: visible;
}
a.author-create{
	background:#8dc63f;
	border-color:#8dc63f;
	color:#ffffff;
	font-weight:bold !important;
}
a.author-create:hover,
a.author-create:focus,
#authorAddButtons a.btn:hover,
#submitDraft:hover,
#authorAddButtons a.btn:focus,
#submitDraft:focus{
	background:#0a529e;
	border-color:#0a529e;
	color:#ffffff;
	font-weight:bold !important;
	transform: var(--transform-hover);
	box-shadow: var(--box-shadow-hover);
}

#submitDraft{
	background:#0a529e;
	border-color:#0a529e;
	color:#ffffff;
	font-weight:bold !important;
	padding:14px 30px;
	font-size: 1.3rem;
}
#submitDraft:hover,
#submitDraft:focus{
	background:#0a529e;
	border-color:#0a529e;
	color:#ffffff;
	font-weight:bold !important;
	transform: var(--transform-hover);
	box-shadow: var(--box-shadow-hover);
}
#submitDraft:before{
	display: inline-block;
    font: normal normal normal 14px / 1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    content: "\f0c7";
    color: #ffffff;
    margin-right: 5px;
    font-size: 1.5rem;
    position: relative;
    top: 2px;
}
#submitDraft:hover,
#submitDraft:focus{
	background:#009344;
	border-color:#009344;
	color:#ffffff;
	font-weight:bold !important;
	transform: var(--transform-hover);
	box-shadow: var(--box-shadow-hover);
}
a.author-listing{
	background:#009344;
	border-color:#009344;
	color:#ffffff;
	font-weight:bold !important;
}
a.author-listing:hover,
a.author-listing:focus{
	background:#01823c;
	border-color:#01823c;
	color:#ffffff;
	font-weight:bold !important;
}
.userlistdisplay{
	width: 100%;
    clear: both;
    height: auto;
    margin: 70px 0px 0px;
    float: none;
}
.btn-group{
	width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    float: none;
    height: 100%;
    overflow: visible;
    position: relative;
    padding-top: 38px;
    margin-top: 25px;
}

.btn-group:after {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 65px;
    height: 3px;
    background: #8dc73f;
    border-radius: 3px;
}
.btn-group:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(34, 42, 91, 0.18);
}

.btn-group button[type="submit"]{
	float: none;
    padding: 14px 30px;
    font-size: 1.3rem;
    background: #449d44;
    color: #ffffff;
    border-color: #449d44;
    font-weight: bold;
}
.btn-group button[type="submit"]:hover,
.btn-group button[type="submit"]:focus{
	background: #398439;
    color: #ffffff;
    border-color: #398439;
}
input[type="radio"], input[type="checkbox"] {
    margin: 0;
    margin-top: 1px \9;
    line-height: normal;
    width: 18px;
    height: 18px;
    position: relative;
    top: -3px;
}
.form-control {
    height: auto;
    font-size: var(--base-size);
    line-height: unset;
    padding: 0.5rem;
    border-radius: 10px;
}
#systemForm{
	padding-bottom: 70px;
}

#pa.outer-element .inner-element{
	display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1rem;
	margin: 1rem 0;
	flex-wrap: wrap;
}
.field-values {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
	width: 100%;
}
.field-values p{
display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    position: relative;
    /* width: 100%; */
    margin: 0 !important;
}

.field-values p .blank_space{
	display:none !important;
}
.field-values p label{
	margin:0;
	display: flex;
	padding:0.5rem 1rem;
	gap:0.5rem;
	align-items: center;
}

.field-values p input[type="radio"]~label,
.field-values p input[type="checkbox"]~label{
	border-radius: 25px;
	transition: var(--transition);
	transform: var(--transform);
    border: 1px solid rgba(00, 00, 00, 0.03);
	box-shadow:var(--box-shadow);
}

.field-values p input[type="radio"]~label:hover,
.field-values p input[type="checkbox"]~label:hover,
.field-values p input[type="radio"]:checked~label,
.field-values p input[type="checkbox"]:checked~label{
	box-shadow:var(--box-shadow-hover);
	transform: var(--transform-hover);
}
.field-values p input[type="radio"]:checked~label,
.field-values p input[type="checkbox"]:checked~label{
	box-shadow:0 10px 26px rgba(29, 209, 161,0.2);
	transform: var(--transform-hover);
	border-color:rgba(29, 209, 161,0.5);
}

#submission-14223 .field-values p:nth-of-type(2) input[type="radio"]~label:hover,
#submission-14223 .field-values p:nth-of-type(2) input[type="radio"]:checked~label,
#submission-14196 .field-values p:nth-of-type(2) input[type="radio"]~label:hover,
#submission-14196 .field-values p:nth-of-type(2) input[type="radio"]:checked~label{
	border-color:rgba(238, 82, 83,0.5);
	box-shadow:0 10px 26px rgba(238, 82, 83,0.2);
}


.field-values p input[type="radio"],
.field-values p input[type="checkbox"]{
	display:none;
	opacity: 0;
	position:absolute;
}
.field-values p label:before{
	font-family: var(--font-awesome);
	display:inline-block;
	font-weight:400;
	content:"";
	font-size: 1.4rem;
    line-height: normal;
}

.field-values p input[type="radio"]:checked~label:before,
.field-values p input[type="checkbox"]:checked~label:before{
	font-weight:900;
}

.field-values p input[type="radio"]~label:before{
	content:"\f111";
}
.field-values p input[type="checkbox"]~label:before{
	content:"\f0c8";
}

.field-values p input[type="radio"]:checked~label:before{
	content:"\f058";
	color:#8dc73f;
}
.field-values p input[type="checkbox"]:checked~label:before{
	content:"\f14a";
	color:#8dc73f;
}



h3.field-header {
    position: relative;
    margin: 40px 0 28px;
    padding: 0 0 0 55px;
    color: #161229;
    font-size: 30px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
}

h3.field-header::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 38px;
    height: 38px;
    background: #8DC73F;
    border-radius: 50%;
}

h3.field-header::after {
    content: "";
    position: absolute;
    left: 12px;
    top: 13px;
    width: 13px;
    height: 12px;
    border-left: 3px solid #222A5B;
    border-bottom: 3px solid #222A5B;
    transform: rotate(-45deg);
}

.authorTypeSelection{
	display:flex;
	flex-wrap: wrap;
	gap: 1rem;
	align-items: center;
	justify-content: center;
}

div.systemMsg ul.notice, div.field.message.notice div.fieldBody, div.field.message.notice div.field-body{
	background-image:none;
	margin:0;
	padding:0;
}
#authorBlock{
	width:100%;
}
div.systemMsg ul li{
	margin:0 !important;	
}
.dragdropper .field-values{
	display:grid;
	justify-content: center;
}
p.currentFile {
    background: rgba(141,199,63,0.1);
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    border: 2px dashed var(--primary);
}

p.currentFile:empty{
	display:none;
}