/*
==============SITE FONTS==============
======================================
*/

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

/*
============DEFAULT BRAND=============
======================================
*/

:root {
/*Set brand colours here*/
--color-WHITE: #FFFFFF; 
--color-BLACK: #16172b; 
--color-REDERROR: #990000; 
--color-SHADOW: #00000033; 

--color-BLACKBLUE: #16172b; 
--color-GREEN: #4cac92; 
--color-MAGENTA: #953b68; 
--color-TEAL: #0f8187; 
--color-LIGHTTEAL: #65c8cb; 
--color-DARKPURPLE: #171A2D; 
--color-GREY: #e5e8e8; 
--color-YELLOW: #CA9432;

/*Set header font sizes here*/
--h1-font-size: 2.3em;
--h2-font-size: 2em;
--h3-font-size: 1.75em;		
--h4-font-size: 1.25em;		
}


/*
=============DEFAULT CODE=============
======================================
*/


html,body {
	font-family: 'Noto Sans', arial, helvetica, sans-serif;
	color: var(--color-BLACK); 
}

#body {
	background-color: var(--color-WHITE); 
	min-height: 1200px; /*if form nav overlaps footer, adjust min-height here*/ 
	padding: 15px;
	font-size: 16px;
	margin-top: 15px;
}

#wrapper {
	height: 100%;
	margin: 0 auto;
	min-height: 800px;
	width: 960px;
}

/*#logo {
	margin: 0 auto; /*do not define a width for logo here (it will force a page-wide scrollbar)*/ /*
} */


a, a:link, a:visited {
	border: none;
	color: #337ab7;
	outline: 1px solid transparent;
	text-decoration: none;
}

a:hover, a:active, a:focus {
	border: none;
	color: var(--color-BLACK); 
	outline: 1px solid transparent;
	text-decoration: underline;
}

a:focus {
	outline: 1px dotted #0172a8;
}

h1, h2, h3, h4 {
	font-weight: 700;
	margin: 20px 0;
}

h1 {
	font-size: var(--h1-font-size);
	color: var(--color-BLACK); 
}

h2 {
	font-size: var(--h2-font-size);
	color: var(--color-GREEN); 
}

h3 {
	font-size: var(--h3-font-size);
	color: var(--color-MAGENTA);  
}

h4 {
	font-size: var(--h4-font-size);
}

img, svg {
	vertical-align: unset;
}


/*
==============HEADER CODE=============
======================================
*/

#header a, #header a:link, #header a:visited, #header a:hover, #header a:active, #header a:focus {
	border: none;
	outline: none;
	text-decoration: none;
	display: inline-block;
}

#header {
	display: block;
	max-height: 303px;
}

#header1 {
	display: block;
	background-color: var(--color-BLACKBLUE); 
	width: 100%;
	height: 127px;
}

#department-name {
	display: inline-block;
	height: 37px;
	font-family: 'Lato';
	font-size: 1.25em;
	font-weight: 900;
	color: var(--color-WHITE);  
	padding-left: 55px;
	line-height: 1.2em;
}

#department-name a, #department-name a:active, #department-name a:hover{
	color: var(--color-WHITE);  
	text-decoration: none;
}
	
#logo {
	display: block;
	height: 80px;
}

.logo-image {
	height: 50px;
	padding: 16px 0 0 50px;
}

#header2 {
	display: block;
	max-height: 165px;
	width: 100%;
	border: none;
	overflow: hidden;
}

#header2 a {
	display: block;
	width: 100%;
	height: 100%;
}

#image-banner {
	border: none;
	display: block;
	background-image: url('https://static.smartygrants.com.au/fnjo/fnjo-banner-long-2.jpg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	min-height: 100%;
	max-width: 100%;
	max-height: 300px;
	overflow: hidden;
}

#image-banner img{
	/*display: inline-block;*/
	object-fit: cover;
	aspect-ratio: 10.5 / 1;
	max-width: 100%;
	min-height: 100%;
	width: 100%;
	max-height: 160px;
	overflow: hidden;
}

@media only screen and (max-width: 1747px){ 
	#image-banner{
		aspect-ratio: 9.98 / 1;
	}
}

@media only screen and (max-width: 1459px){ 
	#image-banner{
		aspect-ratio: 9.75 / 1;
	}
}

@media only screen and (max-width: 912px){ 
	#image-banner{
		aspect-ratio: 9 / 1;
	}
}

@media only screen and (max-width: 865px){ 
	#header2{
		height: 96px;
	}
	#image-banner{
		aspect-ratio: 8 / 1;
	}
	#image-banner img{
		min-height: 96px;
	}
}

#head-bar{
	background-color: var(--color-GREEN); 
	width: 100%;
	height: 45px; 
	box-shadow: 0 5px 10px -5px rgba(53, 52, 53, 0.9); 
	margin: 0;
	border: none;
}


/*============USER LOGIN BAR============
======================================
*/

#head {
	background-color: transparent;
	line-height: 46px;
	min-height: 46px;
	padding: 0 15px;
	margin-top: -46px;
	color: var(--color-WHITE); 
	border: none;
}

#head a, #head a:link, #head a:visited {
	display: inline-block;
	height: 45px;
	color: var(--color-WHITE); 
	font-size: 16px;
	font-weight: bold;
	padding: 0 10px 0 10px;
	white-space: nowrap;
	margin-left: 5px;
}

#head a:hover, #head a:active, #head a:focus {
	text-decoration: none;
	background-color: var(--color-GREY); 
	border: none;
	color: #444;
	transition: all .25s ease;
}

#user, #headlinks {
	margin: 0px;
	font-size: inherit;
}

#headlinks {
	float: none;
}

/* prevents Current Rounds from being cut-off if window screen shrinks in size */
@media only screen and (max-width: 960px) {
  #headlinks {
    text-align: left;
  }
}

/*
=============LOGIN SCREEN=============
======================================
*/

.loginbox .appform .btn {
	padding-left: 105px;
}

.loginbox .appform .l {
	min-width: 145px !important;
}

/*label of MFA steps*/
.otp-steps {
	width: 70px;
}

#kc-form-wrapper h2 {
  width: 333px;
}

/*
===========SUBMISSIONS BAR============
======================================
*/

.iconbar .item {
	font-size: 110%;
}

.iconbar .item a:hover {
	/*text-decoration: underline;*/
}
 /*adjust the position of the images next to the submission bar action links */
.iconbar .item img {
	margin-top: -7px;
}

.iconbar .item-narrow {
	width: 175px;
}

.iconbar .item-mid {
	width: 200px;
}

/*form width minus the item-mid width*/
.iconbar .item-wide {
	width: 500px;
}

/* form width minus the item-narrow width*/
.iconbar .item-very-wide {
	width: 525px;
}

.iconbar .item-very-wide a {
    display: inline !important;
}

/*
=========OPEN/CURRENT ROUNDS==========
======================================
*/

/*prevents the timezone in the rounds page from appearing as a link*/
.sg-time, .sg-time:hover {
	border: none !important;
	text-decoration: none !important;
	font-weight: normal !important;
	color: var(--color-BLACK); 
}

/*adjust top/bottom margin of the Current Rounds / Upcoming Rounds headers*/
#sgCurrentRounds {
	margin: 30px 0 20px 0;
}

#sgUpcomingRounds {
	margin: 40px 0 20px 0;
}

.chooseform h3 {
	margin: 30px 0 10px 0;
}

/*
=============FORM NAV BAR=============
======================================
*/

/* Prevents title overlap with the SmartyFile logo. */
#smartyfile-logo-link {
	padding-left: 15px; /* Remove for appnav left. */
	margin-top: 12px;
}

#appnav {
	background-color: var(--color-WHITE); 
	border: none;
	color: var(--color-BLACK); 
    /*float:left; for appnav on left side*/
	font-size: 15px;
	font-weight: 400;
	margin-bottom: -4000px;
    margin-top: 50px; /*if editing the btn height adjust this to match so page & appnav headings are aligned*/
	padding: 0px;
	width: 200px;
}

#appnav h3 {
	background-color: var(--color-WHITE); 
	border-top: none;
	border-right: none;
	border-bottom: 2px solid var(--color-MAGENTA);   
	border-left: none;
	color: var(--color-MAGENTA);   
	font-size: var(--h4-font-size);
	margin: 0px;
	padding: 5px;
}

#appnav .current {
	background-color: var(--color-YELLOW);  
	color: #000000;
	border: none;
	font-size: 15px;
	font-weight: 400;
	margin: 0px;
	padding: 8px;
	text-decoration: none;
}

#appnav li {
	border: none;
	font-weight: 400;
	margin: 0px;
	padding: 0px;
}

#appnav a, #appnav a:link, #appnav a:visited {
    color: var(--color-BLACK); 
	display: block;
	font-size: 15px;
	font-weight: 400;
	padding: 8px;
    text-decoration: none;
}

#appnav a:hover,#appnav a:active, #appnav a:focus {
    /*text-decoration: underline;*/
	background-color: var(--color-GREY);  
}

/*Review & Submit page link when also the selected page*/
#appnav .current a {
    color: #000000;
    margin: -8px; /*edit to match the .current padding (negative) to avoid double up with #appnav a*/
}

#appnav hr {
	background-color: var(--color-BLACK); 
	border: none;
	height: 2px;
	margin: 0;
	outline: none;
}

/*
=============FORM LAYOUT==============
======================================
*/

.validationerror, .ftValidError {
	background-color: #f2dede !important;
	border: 1px solid;
	border-color: #eed3d7;
	border-radius: 5px;
	color: #A70000;
    font-weight: 700;
	margin: 10px 0px;
	padding: 15px 10px 15px 20px !important;
}

#regform > fieldset > div:nth-child(5) > div.hint > p {
	margin-top: 130px;
}

.ftEditForm,.ftEditPage {
	border: none;
	width: 700px !important;
}

.appform h2, .ftEditPageHeading, #kc-passwd-update-form h2 {
	background-color: var(--color-WHITE); 
    box-sizing: border-box;
	color: var(--color-GREEN);  
	font-size: var(--h2-font-size);
	width: inherit;
	padding-left: 0 !important;
	padding-right: 0 !important;
}

.loginbox .appform h2 {
	background-color: var(--color-GREY); 
    box-sizing: border-box;
	color: var(--color-BLACK);  
	font-size: var(--h3-font-size);
	width: inherit;
	padding-left: 0 !important;
	padding-right: 0 !important;
}

.appform h3, .ftEditSectionHeading {
	background-color: var(--color-WHITE); 
    box-sizing: border-box;
	color: var(--color-MAGENTA);  
	padding-left: 0 !important;
	font-size: var(--h3-font-size);
	width: inherit;
	margin-bottom: 0.5em;
}

.ftEditColumnHeading {
	background-color: var(--color-GREEN); 
	color: var(--color-WHITE); 
	font-size: 16px;
	width: inherit;
}

.appform .btn {
	background: none;
	background-color: transparent;
	border: none;
	font-size: 90%;
	height: 30px;
	position: relative;
	padding: 5px 0 5px 0 !important;
}

.appform .btn .right {
	padding-left: 10px;
}

.appform .btn .mid {
	width: 410px;
}

#regform .field {
	width: 660px;
}

.appform .l {
	width: 197px;
}

/*General form navigation button design */
.appform .btn input, #body .appform .btn a.linkbtn, .appform .btn .close {
	appearance: none;
	background-color: var(--color-TEAL); 
	border: 1px solid var(--color-TEAL); 
	border-radius: 5px;
	color: var(--color-WHITE); 
	cursor: pointer;
	font-size: 14px;
	height: 32px;
	line-height: 30px; /*height minus border top and bottom width*/
	padding: 0;
	text-decoration: none;
	width: 138px;
	-moz-appearance: none;
	-webkit-appearance: none;
}

/*"NEXT PAGE" buttons */
.appform .btn .next, .appform .btn .next.sg-verify-login {
	background-image: url('data:image/svg+xml,<svg fill="%23ffffff" width="25px" height="25px" viewBox="-8 -5 24 24" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMinYMin" class="jam jam-chevron-right" title="next page"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><path d="M5.314 7.071l-4.95-4.95A1 1 0 0 1 1.778.707l5.657 5.657a1 1 0 0 1 0 1.414l-5.657 5.657a1 1 0 0 1-1.414-1.414l4.95-4.95z"></path></g></svg>');
	background-position: right; 
	background-size: 25px;
}

/*"PREVIOUS PAGE" buttons */
.appform .btn .prev, .appform .btn .prev.sg-verify-login {
	background-image: url('data:image/svg+xml,<svg fill="%23ffffff" width="25px" height="25px" viewBox="-8 -5 24 24" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMinYMin" class="jam jam-chevron-left" title="previous page"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><path d="M2.757 7l4.95 4.95a1 1 0 1 1-1.414 1.414L.636 7.707a1 1 0 0 1 0-1.414L6.293.636A1 1 0 0 1 7.707 2.05L2.757 7z"></path></g></svg>');
	background-position: left;
	background-size: 25px;
	padding: 0 8px 2px 15px !important;
}

/*"SUBMIT" button */
.appform .btn .review {
	background-image: url('data:image/svg+xml,<svg fill="%23ffffff" width="25px" height="25px" viewBox="-2 -2 24 24" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMinYMin" class="jam jam-arrow-square-up" stroke="%23ffffff" stroke-width="0.00024000000000000003"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><path d="M4 2a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H4zm0-2h12a4 4 0 0 1 4 4v12a4 4 0 0 1-4 4H4a4 4 0 0 1-4-4V4a4 4 0 0 1 4-4z"></path><path d="M11 8.414V14a1 1 0 0 1-2 0V8.414L6.464 10.95A1 1 0 1 1 5.05 9.536l4.243-4.243a.997.997 0 0 1 1.414 0l4.243 4.243a1 1 0 1 1-1.414 1.414L11 8.414z"></path></g></svg>');
	background-color: var(--color-TEAL);  
	background-repeat: no-repeat;
	background-position: 108px center;
	background-origin: padding-box;
	border: 1px solid var(--color-TEAL); 
	padding: 0 15px 0 0 !important;
} 

.appform .btn input:hover, #body .appform .btn a.linkbtn:hover, .appform .btn .close:hover, appform .btn .review:hover {
	background-color: var(--color-MAGENTA); 
	border: 1px solid var(--color-MAGENTA); 
	border-radius: 5px;
	box-shadow: 0 0 0.25em 0 var(--color-SHADOW); 
}

/*Button input disabled appearance */
.appform .btn input.btndisabled {
	cursor: not-allowed;
	border-radius: 5px;
	font-size: 14px;
	height: 32px;
	line-height: 30px; /*height minus border top and bottom width*/
	color: var(--color-WHITE) !important;
	border: none !important;
}

.appform .btn input.btndisabled:hover {
	box-shadow: none;
}

/*Login page buttons */
#kc-form-buttons input {
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="12" width="20" viewBox="100 -30 350 570"><path fill="%23fff" d="M310.6 233.4c12.5 12.5 12.5 32.8 0 45.3l-192 192c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L242.7 256 73.4 86.6c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l192 192z"/></svg>');
	background-color: var(--color-TEAL); 
	background-repeat: no-repeat;
	background-position: right center;
	background-origin: padding-box;
	border: 1px solid var(--color-TEAL); 
	border-radius: 5px;
	color: var(--color-WHITE); 
	cursor: pointer;
	font-size: 14px;
	height: 32px;
	line-height: 30px; /*height minus border top and bottom width*/
	width: 138px;
	padding: 0;
	text-decoration: none;
}

#kc-form-buttons input:hover, kc-form-buttons input:active, #kc-form-buttons input:focus  {
	background-color: var(--color-MAGENTA); 
	border: 1px solid var(--color-MAGENTA); 
	box-shadow: 0 0 0.25em 0 var(--color-SHADOW); 
}

#lastSaved {
	float: left !important; /*change to right for appnav on left side*/
	margin-top: -70px; /*increase with appnav margin-top*/
	font-size: 90%;
	padding-left: 5px; /*switch to padding-right for left appnav */
}

.questionLegend {
	width: inherit;
}

/*.appform textarea.ftFieldAddressFull {
	height: 20px;
	min-width: 500px;
	width: max-content;
}*/

a.leaflet-pelias-search-icon {
	visibility: hidden;
}

.leaflet-left .leaflet-control-custom {
    cursor: pointer;
    width: 62px !important;
}

.create-sf-profile-btn{
	text-decoration: none !important;
}

.ftFieldRadio, .ftFieldCheckbox {
	margin-top: 4.5px !important; /* adjust if radio/checklist buttons are misaligned */
}

/*
================FOOTER================
======================================
*/

#footer{
	background-color: var(--color-BLACKBLUE);  
	color: var(--color-WHITE); 
	font-size: 1em;
	margin: 0 auto;
	line-height: 1.75em;
	min-width: 100%;
	max-height: 800px;
	min-height: 330px;
	overflow: hidden;
}

.footer-logos{
	display: flex;
	width: 100%;
	height: 70px;
	max-height: 70px;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-content: center;
	align-items: center;
	overflow: hidden;
	line-height: 1.2;
	background-color: var(--color-GREEN);
}

#footer-content{
	margin: 30px auto 0 auto;
	max-height: 750px;
	max-width: 80%; /*adjust width here to increase the margins either side of the main content of the footer*/
	overflow: hidden;
}

#footer h4, #footer h3 {
	color: var(--color-WHITE); 
	font-size: 1.2em;
	margin-top: 0;
}

#acknowledgement-header {
	display: inline-block;
	margin-bottom: 10px;
	font-size: 1.2em;
}

.footer-box{
	display: flex;
	width: 100%;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-content: center;
	align-items: center;
	column-gap: 3%;
	overflow: hidden;
}

.footer-upper-box{
	width: 100%;
	display: flex;
	flex-wrap: nowrap;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
	column-gap: 1%;
	overflow: hidden;
}

.grantsbox {
	align-self: flex-start;
	min-width: 380px;
	max-width: 500px;
	font-size: 1em;
}

.techbox{
	align-self: flex-start;
	min-width: 280px;
	max-width: 500px;
	font-size: 1em;
}

.acknowledgementbox {
	font-size: 1em;
	line-height: 1.2;
	align-self: auto;
	padding-bottom: 10px;
	max-width: 600px;
}

.footer-lower-box{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: space-around;
	align-content: center;
	align-items: stretch;
	column-gap: 5%;
	overflow: hidden;
	margin-top: 5px;
	padding-top: 15px;
}

.sg-disclaimer{
	align-self: center;
	text-align: center;
	max-width: 800px;
	font-size: 1em;
	font-style: italic;
}

#grants-info ul li, #tech-support ul li  { /*adjust the formatting of the ul li dot points */
    list-style-position: outside;
    padding-left: 0;	
	margin-left: -1em;
}

#footer a, #footer a:link, #footer a:visited{
	border: none;
	outline: 1px solid transparent;
	color: var(--color-WHITE);
	text-decoration: underline !important;
}

#footer a:hover, #footer a:active, #footer a:focus{
	text-decoration: none !important;
	border-bottom: 1px solid var(--color-WHITE);
}

#footer a:focus{
	outline:1px dotted #0172a8;
}

@media only screen and (max-width: 1315px){ /*this sets the max size before the footer "shrinks" */
	.footer-box{
		column-gap: 2%;
	}
	
	.grantsbox {
		font-size: 0.85em;
		min-width: 310px;
	}
	
	.techbox{
		margin-left: -20px;
		font-size: 0.85em;
		min-width: 180px;
	}
	
	.footer-upper-box{
		margin-top: 0;
		max-width: 100%;
	}

	.acknowledgementbox {
		max-width: 500px;
		min-width: 265px;
		font-size: 0.85em;
	}
	
	.sg-disclaimer {
		font-size: 0.8em;
	}
	
	#acknowledgement-header {
		margin-top: 5px;
	}
}

@media only screen and (max-width: 930px){ /*this sets the max size before the footer "shrinks" the content into one column*/

	.footer-box{
		flex-flow: column wrap;
		align-items: flex-start !important;
		align-content: stretch !important;
		justify-content: center !important;
		column-gap: 0%;
	}
	
	.footer-upper-box, .footer-lower-box{
		flex-flow: column wrap;
	}
	
	.grantsbox {
		align-self: center;
		min-width: 200px;
		margin-left: 0;
		margin-bottom: 0;
	}
  
	.techbox {
		align-self: center;
		margin-bottom: 5px;
		min-width: 200px;
		margin-left: -40px;
	}
 
 	.grantsbox, .techbox {
		font-size: 0.85em;
	}

	.grantsbox h4, .grantsbox h3, .techbox h4, .grantsbox h3 {
		font-size: 1em;
		margin-bottom: -10px !important;
	}
	
	.acknowledgementbox{
		align-self: center;
		font-size: 0.85em;
		line-height: 1.2em;
		min-width: 200px;
	}
	
	#acknowledgement-header {
		font-size: 1em;
	}

	.sg-disclaimer{
		font-size: 0.7em;
		line-height: 1.2em;
	}	
}

#top-button{
	text-align: right;
	padding-right: 30px;
}


/*
================COOKIES===============
======================================
*/

.cookie-banner {
    position: fixed;
    bottom: 0;
    width: 99%;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #71b136;
    box-shadow: 0 0 2px 1px #0003;
    color: #fff;
    font-weight: 400;
    font-family: arial, Helvetica, sans-serif;
    font-size: 14px;
    text-align: center;
    line-height: 2;
    /* border-radius: 5px; */
}

.cookie-banner div p {
    margin-left: 100px;
}

.cookie-banner-close {
    height: 40px;
    width: 120px;
    background-color: white;
    border: none;
    color: #00afd8;
    cursor: pointer;
    font-size: 100%;
    margin-left: 20px;
    margin-right: 20px;
    font-weight: 400;
    border-radius: 8px;
}

#footer .cookie-banner a, #footer .cookie-banner a:link, #footer .cookie-banner a:visited {
    color: white;
}


/*
=============DO NOT TOUCH=============
======================================
*/

#app-detail-modal button.btn-primary {
	display: none !important;
	color: transparent !important;
}

#rc-responselink, #rc-responselink a {
	background-image: url('data:image/svg+xml,<svg fill="%233c529e" width="25px" height="25px" viewBox="-5 -5 24 24" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMinYMin" class="jam jam-chevrons-right" title="open form" stroke="%23000000" stroke-width="0.6"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><path d="M11.314 7.071l-4.95-4.95A1 1 0 0 1 7.778.707l5.657 5.657a1 1 0 0 1 0 1.414l-5.657 5.657a1 1 0 0 1-1.414-1.414l4.95-4.95zm-6 0l-4.95-4.95A1 1 0 1 1 1.778.707l5.657 5.657a1 1 0 0 1 0 1.414l-5.657 5.657a1 1 0 0 1-1.414-1.414l4.95-4.95z"></path></g></svg>');
	background-repeat: no-repeat;
	background-position: left center;
	background-origin: padding-box;
	color: #000 !important;
	padding: 3px 3px 3px 28px;
	text-decoration: underline !important;
}

#submissions .col-1 button {
	/*background-color: #007bff;
	color: #fff;*/
	line-height: 1.5;
	min-height: 30px;
	min-width: 30px;
	border-radius: 3px;
	background-color: #3c529e;
	color: transparent !important;
	background-image: url('data:image/svg+xml,<svg fill="%23FFFFFF" width="25px" height="25px" viewBox="-5 -8 24 24" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMinYMin" class="jam jam-chevron-down" title="more information" stroke="%23ffffff" stroke-width="1.2"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><path d="M7.071 5.314l4.95-4.95a1 1 0 1 1 1.414 1.414L7.778 7.435a1 1 0 0 1-1.414 0L.707 1.778A1 1 0 1 1 2.121.364l4.95 4.95z"></path></g></svg>');
	background-repeat: no-repeat;
	background-position: center;
	background-origin: padding-box;
	padding: 5px;
	text-decoration: none !important;
  }
  
#submissions .col-1 button:hover {
	border: 1px solid #3c529e;
	color: transparent !important;
	background-color: #FFFFFF;
	background-image: url('data:image/svg+xml,<svg fill="%233c529e" width="25px" height="25px" viewBox="-5 -8 24 24" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMinYMin" class="jam jam-chevron-down" title="more information" stroke="%233c529e" stroke-width="1.2"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><path d="M7.071 5.314l4.95-4.95a1 1 0 1 1 1.414 1.414L7.778 7.435a1 1 0 0 1-1.414 0L.707 1.778A1 1 0 1 1 2.121.364l4.95 4.95z"></path></g></svg>');
	background-repeat: no-repeat;
	background-position: center;
	background-origin: padding-box;
	padding: 5px;
}
  
#app-detail-modal button.btn-primary {
	background: none;
	border-color: #6c757d;
	color: black;
}
  
a#rc-responselink {
	color: #3c529e;
	font-size: 16px;
	text-decoration: none;
}

.col-6 a {
	color: #3c529e;
	text-decoration: underline !important;
}

.btn-outline-primary {
	color: transparent !important;
	background-image: url('data:image/svg+xml,<svg fill="%233c529e" width="25px" height="25px" viewBox="-5 -4.5 24 24" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMinYMin" class="jam jam-arrow-up" title= "sort by filter confirm selection" stroke="%233c529e" stroke-width="0.6"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><path d="M6 4.071l-3.95 3.95A1 1 0 0 1 .636 6.607L6.293.95a.997.997 0 0 1 1.414 0l5.657 5.657A1 1 0 0 1 11.95 8.02L8 4.07v9.586a1 1 0 1 1-2 0V4.07z"></path></g></svg>');
	background-repeat: no-repeat;
	background-position: center;
	background-origin: padding-box;
	border: 1px solid #3c529e;
}

.btn-outline-primary:hover {
	color: transparent !important;
	background-color: #3c529e !important;
	background-image: url('data:image/svg+xml,<svg fill="%23ffffff" width="25px" height="25px" viewBox="-5 -4.5 24 24" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMinYMin" class="jam jam-arrow-up" title= "sort by filter confirm selection" stroke="%23ffffff" stroke-width="0.6"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><path d="M6 4.071l-3.95 3.95A1 1 0 0 1 .636 6.607L6.293.95a.997.997 0 0 1 1.414 0l5.657 5.657A1 1 0 0 1 11.95 8.02L8 4.07v9.586a1 1 0 1 1-2 0V4.07z"></path></g></svg>');
	background-repeat: no-repeat;
	background-position: center;
	background-origin: padding-box;
	border: 1px solid #3c529e;
}

#submissions .app-title a{ 
	color: #3c529e;
	line-height: 2;
	font-size: 125%
}

#submissions .app-title a:hover{ 
	/*color: #FFF;*/
}

#submissions .dropdown-toggle-no-caret{
	color: #444444;
}

#submissions .dropdown-toggle-no-caret:hover{
	background: none;
}
	
.mr-2, .mx-2 {
	margin-right: 0.5rem !important;
	padding-top: 0.1rem;
}
