.App {
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100vh;
  align-items: center;
}
.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff7f;
}
.App-header {
  background-color: #3f4550;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: calc(10px + 2vmin);
  color: #26aeee;
  min-height: 100px;
  padding: 0 1%;
  width: 90%;
  margin: 42px 5% 0;
}
h1.appLogoText {
  margin: 10px 0 20px;
  font-size: 6vw;
  color: #fff;
  padding: 0 20px;
}
.appLogo .appLogo {
  max-width: 100%;
}
.appLogo img {
  max-height: 90px;
  max-width: 100%;
}
@media screen and (min-width: 700px) {
  h1.appLogoText {
    font-size: 42px;
  }
}
.contentArea {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.screen {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  justify-content: flex-start;
  align-items: center;
  width: 90%;
}
.screen.loginScreen {
  justify-content: center;
  align-items: center;
  background-color: transparent;
  height: 100vh;
}
.screen.profileScreen,
.screen.clientsScreen {
  background-color: #00152a;
  border-radius: 40px;
  border: 1px solid #000;
  padding: 30px 0;
}
.loginBox {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  margin-top: -120px;
}
.loginContainer {
  transition: all 1s linear;
  border: 2px solid #1e1e1e;
  border-radius: 5px;
  padding: 5px 20px;
  background-color: #bdbdbd;
  color: #000;
}
.loginContainer .formField {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.loginContainer .formField.submit {
  display: block;
}
h3.loginTitle {
  margin: 10px 0 20px;
  font-size: 1.5em;
}
.formField {
  margin: 15px 0;
}
.formField input {
  border-top: 0 none;
  border-left: 0 none;
  border-right: 0 none;
  border-bottom: 1px solid #000;
  background-color: transparent;
}
button {
  border-radius: 6px;
  padding: 5px 11px;
  cursor: pointer;
}
button:hover {
  box-shadow: 0 1px 2px 1px #333;
}
button:active {
  box-shadow: 0 0 0 1px #555;
}
button.greyButton {
  background: #777;
  color: #fff;
  border: 1px solid #777;
}
.toggleLogin > p {
  text-decoration: underline;
  font-size: 14px;
  cursor: pointer;
}
.loginContainer button.greyButton {
  margin-top: 12px;
}
button.greyButton.error {
  padding: 1px 4px;
}
.menuButton {
  font-size: 1.5em;
  cursor: pointer;
}
div#root {
  display: flex;
  flex-direction: column;
}
.profileContent {
  width: 90%;
}
.section.section1 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: start;
  width: 100%;
}
.subSection.horizontal.balancesSection {
  flex: 1;
  margin-right: 50px;
}
.subSection.horizontal {
  border: 0 none;
  padding: 0;
  margin: 0;
  width: 100%;
}
.periodSelectors {
  display: flex;
  width: 200px;
  flex-direction: row;
  justify-content: space-evenly;
  font-weight: 700;
  font-size: 0.8em;
  float: right;
}
.periodSelector {
  color: #b5b5b5;
  cursor: pointer;
}
.periodSelector:hover {
  color: #fff;
}
.periodSelector.selected {
  color: #fff;
  pointer-events: none;
}
.balanceText {
  color: #b5b5b5;
  font-weight: 700;
  font-size: 0.9em;
}
.balanceAmount {
  font-weight: 700;
  font-size: 2em;
  color: #fff;
}
.balanceArea {
  display: flex;
  flex-direction: column;
  align-items: baseline;
}
.transRow {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 10px 20px;
}
.transRow.headerRow {
  color: #ddd;
  font-weight: 700;
  margin: 10px 0 0;
}
.transRow > div {
  width: 100%;
  text-align: left;
}
.transRow.itemRow {
  border: 1px solid #999;
  border-radius: 6px;
  margin: 10px 0;
  align-items: center;
}
h2.sectionTitle {
  color: #fff;
  font-size: 1.5em;
  margin: 40px 0 0;
}
.clientRequestOptions {
  border-radius: 6px;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
h3.sectionTitle {
  margin: 40px 0 25px;
  color: #fff;
}
.section input {
  border-bottom: 2px solid #fff;
}
.transClart {
  max-height: 400px;
}
.userArea {
  color: #fff;
  display: flex;
  align-items: flex-end;
  padding: 0 20px;
  flex-direction: column;
  justify-content: space-between;
  height: 79%;
}
button.greyButton.logoutLink {
  margin-left: 20px;
}
.clientRow {
  display: flex;
  width: 100%;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 20px 0;
  font-size: 1.1em;
  font-weight: 700;
  border-top: 1px solid #000;
  background: linear-gradient(0deg, #000 0%, #102d38 20%, #001e42 100%);
}
.clientRowSmallText {
  font-size: 0.8em;
  color: #b5b5b5;
}
.section.clientList {
  width: 100%;
}
.clientList h2 {
  margin: 0;
}
.totalBalancesText {
  margin: 5px 0 15px;
  color: #999;
  font-weight: 700;
}
.section {
  width: 100%;
}
.clientsActions h3.sectionTitle {
  margin: 60px 0 15px;
}
.clientProfile {
  display: flex;
  width: 100%;
  justify-content: space-around;
  transition: height ease-out 0.2s;
}
.clientProfile .screen.profileScreen {
  border-radius: 0;
  border: 0 none;
}
button.addClientButton {
  margin: 40px 0 160px;
}
.floatingFormContainer {
  position: fixed;
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: space-around;
  z-index: 10;
  align-items: center;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #4fb3d37f;
  overflow-y: auto;
}
.floatingForm {
  background: #000;
  border-radius: 10px;
  border: 2px solid #fff;
  display: flex;
  flex-direction: column;
  padding: 20px 30px;
  box-shadow: 0 0 20px -1px #fff;
  align-items: center;
  justify-content: center;
  max-width: 75%;
}
.floatingFormFields {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.floatingFormFields > div {
  margin: 20px;
}
.addClientInput.submit > button {
  margin: 20px;
}
.floatingFormFields input,
.floatingFormFields select {
  background: #d1fdff;
  border-radius: 4px;
  font-size: 1.1em;
  margin: 0 2px;
}
.editTransaction.submit > button {
  margin: 0 10px;
}
.section.clientsActions {
  background: #0d233a;
}
.actionButtons > button {
  margin: 20px;
}
.transRow > div.col6 {
  max-width: 70px;
}
.transRow > div.col1 {
  max-width: 100px;
}
.clientActionButtons {
  margin-top: 40px;
}
.clientActionButtons > button {
  margin: 0 20px;
}
.floatingFormFields .formFields {
  display: flex;
  flex-direction: row;
}
.floatingFormFields .formFields input,
.floatingFormFields .formFields button {
  margin: 0 20px;
}
.formField.vertical {
  display: flex;
  flex-direction: column;
  margin: 30px 0;
}
label.subLabel {
  font-size: 0.7em;
  margin-left: 5px;
}
.floatingFormFields input.editField.modernInput {
  background: transparent;
  border-bottom: 1px solid #fff;
  margin: 0;
  border-radius: 0;
  color: #fff;
}
.formField.vertical {
  display: flex;
  flex-direction: column;
  margin: 30px 0;
  align-items: flex-start;
}
.floatingForm.profileEditForm .floatingFormFields {
  align-items: flex-start;
}
label.subLabel.horizontal {
  margin-top: -15px;
  display: block;
  text-align: left;
}
.formField.horizontal {
  display: flex;
  flex-direction: row;
}
.floatingFormFields .formField.horizontal input.editField.modernInput {
  margin-right: 10px !important;
}
.profileEditForm .floatingFormFields input {
  font-size: 1em;
}
.subSection {
  border: 2px solid #06505c;
  padding: 0 20px;
  margin-bottom: 16px;
}
h5.subSectionTitle {
  text-align: left;
  margin: 0 0 0 5px;
  color: #06505c;
  font-size: 0.9em;
}
.floatingForm.profileEditForm > h3 {
  margin: 0 0 20px;
}
.clientRow > div {
  display: flex;
  flex-direction: column;
  text-align: left;
  width: 20%;
}
.clientRow > div.col4 {
  max-width: 150px;
}
.clientRow > button {
  align-self: flex-end;
}
a.deleteLink {
  color: #c15353;
  font-size: 0.9em;
  text-decoration: underline;
  cursor: pointer;
  display: inline-block;
  margin-top: 20px;
}
.addClientInput {
  margin: 0 5px 10px;
  max-width: 220px;
}
.addClientInput.submit {
  max-width: 100%;
  margin: 0;
}
p.fieldNote {
  font-size: 0.8em;
  margin-top: -14px;
  font-style: italic;
}
.loginBox p.fieldNote {
  text-align: right;
}
.userText {
  display: flex;
  align-items: self-end;
  cursor: pointer;
}
span.userTextName {
  margin-right: 5px;
}
.emailPhoneLinks > svg {
  margin-right: 32px;
}
.floatingFormFields.docs {
  flex-direction: column;
}
.floatingFormFields.docs > div {
  align-self: center;
  max-width: 70%;
}
.floatingFormFields.docs > div input.editField.modernInput {
  max-width: 100%;
}
span.notificationCloseNote {
  display: block;
  font-size: 0.7em;
}
.subSection.documents {
  flex-direction: row;
  display: flex;
  flex-wrap: wrap;
}
.documentLinkWrapper {
  border: 2px solid #55b2b5;
  color: #6be5e9;
  padding: 2px 6px;
  margin: 5px 10px;
  border-radius: 8px;
  background: #222;
  cursor: pointer;
}
.documentLinkWrapper:hover {
  border: 2px solid #6be5e9;
}
.documentLinkWrapper > a {
  display: inline-block;
}
.floatingFormFields.exports {
  flex-direction: column;
}
.floatingForm.exportForm {
  padding-top: 0;
}
.floatingFormFields.exports .formField {
  margin: 15px;
}
.floatingForm.exportForm .submit > button {
  margin: 0 10px;
}
button {
  background: #29848f;
  color: #fff;
}
.button {
  background-color: #4caf50;
  border: none;
  color: #fff;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
}
.exportLink {
  display: block;
  margin: 20px;
}
.floatingForm.exportForm input {
  color-scheme: dark;
}
div#exportResult>button {
    background: #3fabd5;
}
a.deleteDoc {
  margin-left: 5px;
}
a.deleteDoc:hover {
  color: red;
}
a.deleteDoc > svg {
  margin-bottom: -2px;
}
.mobileOnly {
  display: none;
}
.errorScreen {
  text-align: center;
}
.toggleHiddenField {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
}
.eyeHolder {
  margin-left: 5px;
}
.greenEye.eyeHolder {
  color: #0f0;
}
.logoutWarning {
  background: #aaa;
  width: 300px;
  position: fixed;
  top: 30%;
  z-index: 99999;
  left: 50%;
  margin-left: -160px;
  text-align: center;
  border: 10px solid #888;
  padding: 5px 10px;
}
.logoutSeconds {
  display: block;
  color: #555;
  font-size: 1.2em;
  font-weight: 700;
}
.toggleLogin {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}
@media (max-width: 768px) {
  .clientRow > div {
    text-align: center;
    width: auto;
  }
  .transRow.headerRow {
    display: none;
  }
  .mobileOnly {
    display: block;
  }
  .transRow {
    flex-wrap: wrap;
  }
  .transRow > div {
    width: auto;
    background: #144657;
    padding: 2px 4px;
    border-radius: 5px;
    margin: 5px;
    flex-direction: row;
    display: flex;
    flex-wrap: wrap;
  }
  .section.section1 {
    flex-direction: column;
  }
  .periodSelector {
    color: #b5b5b5;
    cursor: pointer;
    padding: 5px 0;
    background: #318085;
    border-radius: 10px;
    min-width: 40px;
    margin: 0 0 10px 10px;
    border: 1px solid #fff;
  }
  .totalBalancesTextWrapper>div {
		margin: 0;
	}
	.App-header {
		/* display: block; */
		flex-direction: column;
		min-height: 152px;
		margin: 10px 0 20px 0;
	}
	.userArea {
    	align-items: center;
		margin: 10px 0 0 0;
	}
	button.greyButton.logoutLink {
    	margin-left: 0;
	}
	.periodSelectors {
		width: 100%;
		justify-content: space-around;
		float: none;
	}

	.periodSelector {
		color: #b5b5b5;
		cursor: pointer;
		padding: 5px 0;
		background: #318085;
		border-radius: 10px;
		min-width: 40px;
		margin: 0 1px;
		border: 1px solid #fff
	}

	.totalBalancesTextWrapper>div {
		margin: 0;
	}
	.floatingFormContainer {
		display: block;
	}
	.loginContainer {
		border: 0 none;
	}
}
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, Roboto, Oxygen, Ubuntu,
    Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #3f4550;
  color: #affdff;
}
.notification {
  position: fixed;
  top: 0;
  border-bottom: 1px solid #000;
  width: 100%;
  font-weight: 700;
  z-index: 12;
}
.notification .notifError {
  background-color: red;
  color: #fff;
  padding: 2px 20px;
}
.notification .notifNote {
  background-color: #eeffb9;
  color: #000;
  padding: 2px 20px;
}


.balanceArea {
	align-items: center;
	margin: 20px 0;
}

.subSection.horizontal.transClart {
	margin-bottom: 20px;
}

.fullscreen-popup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: black;
	color: white;
	display: flex;
	flex-direction: column;
	/* To arrange text vertically */
	justify-content: center;
	align-items: center;
	font-size: 24px;
	z-index: 9999;
	/* Ensure it appears above other elements */
	opacity: 1;
	/* Start with the popup visible */
	transition: opacity 2s;
	/* Transition for fading out */
	text-align: center;
	/* Center text horizontally */
}

.fullscreen-popup.hide {
	opacity: 0;
	/* Hide popup */
}

.fullscreen-popup .quote {
	margin-bottom: 10px;
	/* Space between quote and citation */
}

.fullscreen-popup .citation {
	font-style: italic;
}

.totalBalancesTextWrapper>div {
	margin: 5px 15px 15px;
}

.totalBalancesTextWrapper {
	display: flex;
	justify-content: center;
}

span.calendarIcon {
	margin-left: 5px;
    display: inline-block;
    margin-top: -3px;
	vertical-align: top;
	cursor: pointer;
	opacity:0.7;
}

span.calendarIcon:hover {
	opacity:1;
}