body {
    font-family: 'Open Sans', sans-serif;
	margin: 0;
	/* max-width: 1920px; */
	color: #24292e;
	font-size: 100%;
}

a {
	color: #90bf4b;
	font-weight: bold;
	text-decoration: none;
	cursor: pointer;
}

/* a:visited{
	color: #90bf4b;
	font-weight: bold;
	text-decoration: none;
} */

img {
	max-width: 100%;
    height: auto;
}

#header {
	font-family: 'Cabin', sans-serif;
	display: flex;
	padding: 0 10px;
	align-content: center;
	/* font-size: 1.5vw; */
	font-size: 1.3em;
	/* background-image: url("/Static/img/headerBackground.png"); */
	background-color: #fff;
	/* background-size: contain; */
	border-top: 12px #90bf4b solid;
	border-bottom: 0.5px #90bf4b solid;
}

#header-menu-icon {
	display: none;
}

#logo {
	/* width: 101px;
	height: 65px; */
	/* width: 9.6vw;
	height: 6vw; */
	width: 124.8px;
	height: 78px;
	background-image: url("/Static/img/headerLogo2.jpg");
	background-size: cover;
	align-self: flex-start;
	margin: 12px 0 18px 5px;
}

#header-link-container {
	display: flex;
	align-items: center;
	padding: 0 10px;
	margin-left: 10px;
}

.header-link {
	display: inline-block;
	margin: 0 1rem;
}

.header-link-right {
	display: flex;
    align-items: center;
	margin-left: auto;
	margin-right: 8px;
}

.header-link-shrink {
	display: none;
}

#headerSeparator {
	height: 70px;
	border-left: 2px solid #e7e7e7;
	margin-right: 1.4em;
}

#headerMessagesWrapper {
	position: relative;
}

#headerMessages {
	color: #90bf4b;
	padding-right: 1.1em;
	font-size: 1.4em;
}

#newMessagesCircle {
	width: 0.9rem;
	height: 0.9rem;
	background-color: #fa8334;
	border-radius: 50%;
	position: absolute;
	top: 0;
	right: 1.6rem;
}

#myAccountHeaderWrapper {
	white-space: nowrap;
	cursor: pointer;
}

#myAccountHeaderIcon {
	background-color: #e6eaef;
	/* font-size: 1.2vw; */
	padding: 0.4rem;
    color: #90bf4b;
	height: 3.5rem;
	min-width: 3.5rem;
	line-height: 2em;
	border-radius: 50%;
	text-align: center;
	display: inline-block;
}

#myAccountNoPicture {
	/* position: relative;
	top: -0.13em; */
	font-size: 1.5em;
}

.triangleDown {
	width: 0;
	height: 0;
	border-left: .4em solid transparent;
	border-right: .4em solid transparent;
	border-top: .6em solid #90bf4b;
	display: inline-block;
	position: relative;
	/* top: -5px; */
	left: 5px;
}

.dropdownMenu {
	display: inline;
	position: relative;
}

.dropdownContent {
	font-size: 1.3rem;
	display: none;
	position: absolute;
	z-index: 75;
	/* background-color: #e6eaef; */
	background-color: #fff;
	border-radius: 0 0 0 5px;
	box-shadow: 0px 2px 5px #bbb, inset 0px -2px 5px #fff;
	top: 51px;
	right: 0;
	width: 475%;
}

#dropdownContentHeader {
	top: 81px;
	right: -18px;
	width: 9.15em;
}

.dropdownContent:after, 
.dropdownContent:before {
	content: "";
	position: absolute;
	top: -24px;
	left: 75%;
	height: 0;
	width: 0;
	pointer-events: none;
	z-index: 75;
	border: 12px solid transparent;
	/* border-bottom-color: #e6eaef; */
	border-bottom-color: #fff;
	margin-left: 15px;
}

.dropdownContent:before {
	top: -25px;
	/* border: 13px solid transparent; */
	border-bottom-color: #eee;
	/* margin-left: 14px; */
}

.dropdownContent > * {
	display: block;
	color: #505869;
	padding: 0.3em;
	/* border-bottom: 1px solid #a5a7a9; */
}

/* Apply to all but the first child of the class */
.dropdownContent > * ~ * {
	border-top: 1px solid #eef1f5;
}

.dropdownName {
	font-weight: bold;
}

.linkSimulation {
	font-weight: bold;
	cursor: pointer;
	color: #90bf4b;
}

.dropdownContent a,
.dropdownContent .dropdownLinkSimulation {
	font-weight: normal;
	cursor: pointer;
}

.dropdownContent a:hover,
.dropdownContent .dropdownLinkSimulation:hover {
	color: #90bf4b;
}

@media screen and (min-width: 1300px){
	#logo {
		width: 124.8px;
		height: 78px;
	}
}

@media screen and (max-width: 1100px),
		screen and (min-resolution: 300dpi){
	#header {
		font-size: 1.5em;
	}

	#logo {
		width: 102px;
		height: 63.75px;
	}

	/* .header-link-full {
		display: none;
	} */

	.header-link-shrink {
		display: flex;
		padding: 2vw;
	}

	.header-link {
		margin: 0 1.5rem;
	}

	#headerSeparator {
		height: 60px;
	}

	#newMessagesCircle {
		width: 0.6em;
		height: 0.6em;
		top: -0.09em;
		right: 1.25em;
	}
	
	#dropdownContentHeader {
		width: 9.33em;
		top: 77px;
		left: -95px;
	}

	#dropdownContentHeader:before,
	#dropdownContentHeader:after {
		margin-left: 15px;
	} 
}

/* @media screen and (max-width: 765px){
	.header-logo {
		display: none;
	}

	#headerSeparator {
		height: 6vw;
	}

	.dropdownMenu {
		padding: 5px 0;
	}
} */

#container {
	margin: 0 auto;
	width: 90%;
}

#footer {
	margin: 40px 0;
	text-align: center;
	clear: both;
}

.footer-padding {
	display: inline;
	padding: 0 0.5rem;
}

@media 	screen and (hover: none) and (pointer: coarse) {
	#header {
		justify-content: space-between;
		border-top: none;
		border-bottom: none;
	}

	#header-menu-icon {
		display: inline;
		font-size: 4rem;
	}

	#header-link-container, .header-link-right {
		display: none;
	}

	.sidenav {
		align-self: center;
	}
	
	#logo {
		width: 215.3px;
		height: 134.6px;
	}

	#footer {
		font-size: 2.5rem;
	}
}

.textRight {
	text-align: right;
}

.textCenter {
	text-align: center;
}

.formButton {
	cursor: pointer;
	display: inline-block;
	width: 90px;
    background-color: #a2d656;
    padding: 8px;
    border-radius: 15px;
    margin: 15px auto;
    color: white;
    font-weight: bold;
    font-size: 11px;
}

.red {
	background-color: #ff4d4d
}

/* .modalBackground {
	width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.75);
    position: fixed;
    top: 0;
    left: 0;
    display: none;
	align-items: center;
	justify-content: center;
} */

#loginModal{
	display: inline-block;
    width: 400px;
    position: absolute;
    top: 25px;
    right: 0;
    left: 0;
    background-color: white;
    padding: 40px 30px 10px 30px;
    border-radius: 18px;
    line-height: 1.5;
    margin: auto;
    text-align: center;
    border-style: dotted;
    border-width: thin;
    border-color: #4CAf50;
}

/* .closeModal {
	margin-top: -32px;
    margin-left: -27px;
    float: right;
    font-weight: bolder;
    cursor: pointer;
} */

/* #loginModal input[type="text"]{
	font-size: 20px;
    height: 40px;
    padding: 10px;
    margin: 15px;
    border-radius: 10px;
} */

/*#registerButton {
    color: white;
    background-color: lavender;
    width: 200px;
    border-radius: 10px;
    padding: 10px;
    text-align: middle;
    font-weight: bold;
    display: inline-block;
    margin: 10px 12px;
    float: right;
    cursor: pointer;
}*/

.topSpacing {
	margin-top: 10px;
}

.bottomSpacing {
	margin-bottom: 10px;
}

.titleMargin {
	margin: 10px 0;
}

.unbold {
	font-weight: normal;
}

.bold {
	font-weight: bold;
}

.italic {
	font-style: italic;
}

.underline {
	text-decoration: underline;
}

.strikethrough {
	text-decoration: line-through;
}

.leftAlignText {
	text-align: left;
}

.centerText {
	text-align: center;
}

/* verticalCenter and verticalMiddle accomplish the same thing in differet ways and need to be used differently */
.verticalCenter {
	display: flex;
	align-items: center;
}

.verticalMiddle {
	vertical-align: middle;
}

.title-text {
	font-size: 2rem;
}

.main-text {
	font-size: 1.2rem;
}

.titleText {
	font-size: 2.5em;
	font-weight: bold;
}

.subtitleText{
	font-size: 1.2em;
	font-weight: bold;
}

.sectionHeaders {
	font-size: 1.4em;
	font-weight: bold;
}

.smallerText {
	font-size: .9em;
}

.slightlyBiggerText {
	font-size: 1.2em;
}

.biggerText {
	font-size: 1.4em;
}

.biggestText {
	font-size: 3rem;
}

.highlightOrange {
	color: orange;
}

.highlightGreen {
	/*color: #4caf50;*/
	/*color: #86b247;*/
	color: #7aa240;
}

.blackText {
	color: #24292e;
}

.grey-text, .gray-text {
	color: #586069;
}

.whiteText {
	color: #fff;
}

.orangeText {
	color: #fa8334;
}

.greenText {
	color: #90bf4b;
}

.black-text {
	color: #000;
}

.floatLeft {
	float: left;
}

.floatRight {
	float: right;
}

.inlineBlock {
	display: inline-block;
}

.greyBackground {
	background-color: #ddd;
}

.lowOpacity {
	opacity: 0.4;
}

.standardButton {
	width: 200px;
	height: 40px;
	background-color: orange;
	margin-top: 5px;
	color: white;
	font-weight: bold;
	font-size: 1.3em;
	cursor: pointer;
}

.topBorder {
	border-top: 1px solid #aaa;
}

.bottomBorder {
	border-bottom: 1px solid #aaa;
}

a.noLink{
	color: #000;
	text-decoration: none;
}

.linkDisplay {
	color: #90bf4b;
	cursor: pointer;
}

/***** Response Messages *****/
.errorMessage, .errorMessageChange, .errorMessageRequest{
	color: red;
	font-size: 1.5rem;
	font-weight: bold;
	display: none;
}

.errorMessageVue {
	color: red;
	font-size: 1.5rem;
	font-weight: bold;
}

@media 	screen and (hover: none) and (pointer: coarse) {
	.errorMessageVue {
		font-size: 3rem;
	}
}

.successMessage{
	color: #7aa240;
	font-weight: bold;
}

.preFormatted {
	white-space: pre-wrap;
}

.sectionMargin {
	margin: 30px auto;
}

input[type=text]{
	font-size: 1.5rem;
    padding: 20px;
    border-style: solid;
    border-radius: 8px;
    border-color: lightgray;
}

input:focus[type=text]{
	border-color: #90bf4b;
	border-radius: 3px;
}

input[type=password]{
	font-size: 1.5rem;
    padding: 20px;
    border-style: solid;
    border-radius: 8px;
    border-color: lightgray;
}

input:focus[type=password]{
	border-color: #90bf4b;
	border-radius: 3px;
}

select {
	font-size: 16px;
	padding: 8px;
	border-radius: 8px;
	border-width: 2px;
	border-color: lightgray;
}

textarea{
	display: inline-block;
	font-size: 16px;
	padding: 8px;
	border-radius: 8px;
	border-width: 2px;
	border-color: lightgray;
}

textarea:focus{
	border-color: #90bf4b;
	border-radius: 3px;
}

input[type=email]{
	font-size: 1.5rem;
    padding: 20px;
    border-style: solid;
    border-radius: 8px;
    border-color: lightgray;
}

input:focus[type=email]{
	border-color: #90bf4b;
	border-radius: 3px;
}

input[type=number]{
	/* font-size: 20px;
	padding: 20px 5px 20px 20px; */
	font-size: 1.5rem;
	padding: 0.6em;
    border-style: solid;
    border-radius: 8px;
    border-color: lightgray;
}

input:focus[type=number]{
	border-color: #90bf4b;
	border-radius: 3px;
}

.error-input{
	border:solid red 1px !important;
}

select{
	font-size: 20px;
    padding: 20px;
    width: 250px;
}

select:focus{
	border-color:#90bf4b;
	border-radius: 3px;
}

.button{
	text-align: center;
	min-width: 50px;
	display: inline-block;
	color: #a2d656;
	font-size: 1.5rem;
	font-weight: bold;
	border-radius: 6px;
	padding: 4px;
	cursor: pointer;
	margin-left: 10px;
	margin-right: 10px;
	border: 2px solid #a2d656;
}

@media 	screen and (max-width: 1024px) and (min-resolution: 250dpi){
	.button {
		font-size: 2em;
	}
}

@media screen and (hover: none) and (pointer: coarse) {
	.mobile-button {
		font-size: 3rem;
		margin-left: 0;
		margin-right: 0;
		padding: 15px;
		text-align: center;
	}
}

.button:hover{
	/* border: 2px solid #ffe176; */
	/* color: #ffe176; */
}

.button:active {
	border: 2px solid #a2d656;
	background-color: #a2d656;
	color: white;
}

.button.toggleSelected {
	color: white;
	background-color: #a2d656;
	border: 2px solid #a2d656;
}

.button.toggleSelected:hover {
	color: white;
	background-color: #a2d656;
	border: 2px solid #a2d656;
}

.headerButton {
	min-width: 50px;
	font-size: 1.5vw;
	font-weight: bold;
	padding: 1.2vw 1.5vw;
}

@media screen and (min-width: 1300px){
	.headerButton {
		font-size: 1em;
		padding: 15.6px 19.5px;
	}
}

@media screen and (max-width: 960px),
		screen and (min-resolution: 300dpi){
	.headerButton {
		font-size: 2vw;
	}
}

.greyButtonInverted, .button.disabled {
	color: lightgrey;
	border: 2px solid lightgrey;
	background-color: transparent;
}

.button.disabled {
	cursor: default;
	color: lightgrey;
	border: 2px solid lightgrey;
}

.orangeButton {
	background-color: #fa8334;
	color:  white;
	border: 2px solid #fa8334;
	min-width: 50px;
	font-weight: bold;
	padding: 6px 20px;
}

.orangeButton:hover {
	color: white;
	background-color: #f8ad7b;
	border: 2px solid #f8ad7b;
}

.orangeButton:active {
	background-color: #f8ad7b;
	border: 2px solid #f8ad7b;
	box-shadow: inset 0px 3px 5px #24292e, inset 0px -1px 3px lightgrey;
}

.greenButton {
	color: white;
	background-color: #90bf4b;
	border: 2px solid #90bf4b;
}

.greenButtonInverted {
	color: #90bf4b;
	background-color: #fff;
	border: 2px solid #90bf4b;
}

.greenButtonUp{
	text-align: center;
	min-width: 50px;
	display: inline-block;
	background-color: #90bf4b;
	color: white;
	font-size: 18px;
	font-weight: bold;
	border-radius: 25px;
	padding: 20px;
	cursor: pointer;
	margin-left: 10px;
	margin-right: 10px;
	border: 2px solid #a2d656;
	box-shadow: 0px 5px 5px lightgray /*, white 0px 1px 3px inset;*/
}

.greenButtonDown{
	text-align: center;
	min-width: 50px;
	display: inline-block;
	background-color: #90bf4b;
	color: white;
	font-size: 18px;
	font-weight: bold;
	border-radius: 25px;
	padding: 20px;
	cursor: pointer;
	margin-left: 10px;
	margin-right: 10px;
	border: 2px solid #a2d656;
	box-shadow: inset 0px 3px 5px #24292e, inset 0px -1px 3px lightgrey;
}

.greyButton {
	color: white;
	background-color: #bdc1b7;
	border: 2px solid #bdc1b7;
}

/* .redButton {
	background-color: red;
	color:  white;
	border: 2px solid red;
}

.redButton:hover {
	color: white;
	background-color: #ff5a5f;
	border: 2px solid #ff5a5f;
}

.redButton:active {
	background-color: green;
	border: 2px solid #a2d656;
} */

/* .header-divider{
	border-color: #90bf4b;
    margin: 0;
    border-width: 0.5;
} */

#signupForm, #signinForm, #passwordResetForm, #resetResult, #usingToken {
	margin-top: 20px;
	width: 100%;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	font-size: 1.5em;
}

.signup-line{
	margin: 15px;
	/* font-size: 3.25vmin; */
}

input[type='checkbox']{
	-webkit-appearance:none;
	-moz-appearance: none;
    width:1.7rem;
    height:1.7rem;
    background:white;
    border-radius:5px;
	border:2px solid #a2d656;
	margin-right: 0.3rem;
	margin-bottom: -0.3rem;
}
input[type='checkbox']:checked{
	background: #a2d656;
}

/* .disabled{
	color: lightgrey;
	border: 2px solid lightgrey;
} */

.form-section{
	margin: 25px auto;
	/* margin-top: 10px;
	margin-bottom: 10px; */
}

.form-label{
	display: block;
	font-size: 1.25rem;
	color: #90bf4b;
    margin-bottom: 10px;
	font-weight: bold;
	/* display: inline-block;
    font-size: 20px;
    margin: 20px;
    width: 200px; */
}

@media 	screen and (hover: none) and (pointer: coarse) {
	.form-label {
		font-size: 3rem;
	}
}

.form-tab{
	display: inline-block;
    font-size: 14px;
    margin: 20px;
	cursor: pointer;
}

.form-tab.chosen{
	border-color: #90bf4b;
	border-bottom: 4px solid #90bf4b;
}

.hidden{
	display: none;
}

[v-cloak] {
	display: none;
}

#passwordError{
	display: none;
	color: red;
	font-weight: bold;
}

#resetResult {
	display: none;
}

#usingToken{
	display: none;
}

#explainer-button {
	text-align: center;
}

#explainer-button-container {
	text-align: center;
}

/*.modalBackground {
	background-color: rgba(0,0,0,0.7);
	height: 100vh;
	opacity: 0.7;
	display: none;
}*/

/* #explainerModal {
	background-color: white;
    border-radius: 20px;
    width: 40%;
    min-width: 500px;
    padding: 25px;
	text-align: center;
	font-size: 2.75vmin
}

@media screen and (min-resolution: 300dpi){
	#explainerModal{
		width: 80%;
	}
} */

/* label.signup-cc {
	vertical-align: middle;
    font-size: 20px;
	float: right;
} */

.eventTileContainer, .groupTileContainer {
	display: flex;
    flex-wrap: wrap;
	justify-content: space-between;
	/* margin: auto; */
	/* max-width: 1500px; */
}

@media 	screen and (max-width: 1100px){
	.eventTileContainer, .groupTileContainer {
		justify-content: center;
	}
}

#attendeeList {
	width: 100%;
	text-align: left;
	max-width: 50em;
	margin-top: 2em;
}

#attendance-list {
	margin: auto;
	width: 100%;
	text-align: left;
	margin-top: 2em;
}

#attendance-list td{
	padding: 12px;
}

.table-odd {

}

.table-even {
	background-color: #e6ffe6
}

.table-special {
	background-color: #ffe176;
}

/* Override Quasar editor styling on font size */
font[size="1"] {
	font-size: .5em;
}

font[size="2"] {
	font-size: .7em;
}

font[size="3"] {
	font-size: 1em;
}

font[size="4"] {
	font-size: 1.2em;
}

font[size="5"] {
	font-size: 1.5em;
}

font[size="6"] {
	font-size: 1.8em;
}

font[size="7"] {
	font-size: 2em;
}