html, body {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1;
}
html {
	font-size: 62.5%;
}/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

.reset applet, .reset object, .reset iframe,
.reset h1, .reset h2, .reset h3, .reset h4, .reset h5, .reset h6, .reset p, .reset blockquote, .reset pre,
.reset a, .reset abbr, .reset acronym, .reset address, .reset big, .reset cite, .reset code,
.reset del, .reset dfn, .reset em, .reset img, .reset ins, .reset kbd, .reset q, .reset s, .reset samp,
.reset small, .reset strike, .reset strong, .reset sub, .reset sup, .reset tt, .reset var,
.reset b, .reset u, .reset i, .reset center,
.reset dl, .reset dt, .reset dd, .reset ol, .reset ul, .reset li,
.reset fieldset, .reset form, .reset label, .reset legend,
.reset table, .reset caption, .reset tbody, .reset tfoot, .reset thead, .reset tr, .reset th, .reset td,
.reset article, .reset aside, .reset canvas, .reset details, .reset embed, .reset 
.reset figure, .reset figcaption, .reset footer, .reset header, .reset hgroup, .reset 
.reset menu, .reset nav, .reset output, .reset ruby, .reset section, .reset summary,
.reset time, .reset mark, .reset audio, .reset video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
.reset article, .reset aside, .reset details, .reset figcaption, .reset figure, .reset 
.reset footer, .reset header, .reset hgroup, .reset menu, .reset nav, .reset section {
	display: block;
}
.reset ol, .reset ul {
	list-style: none;
}
.reset blockquote, .reset q {
	quotes: none;
}
.reset blockquote:before, .reset blockquote:after,
.reset q:before, .reset q:after {
	content: '';
	content: none;
}
.reset table {
	border-collapse: collapse;
	border-spacing: 0;
}
.image.background-cover {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.image.background-contain {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

.image.background-center {
  background-position: center center;
  background-repeat: no-repeat;
}

.image.background-top-left {
  background-position: top left;
  background-repeat: no-repeat;
}

.full-size {
  width: 100%;
  height: 100%;
}

.full-width {
  width: 100%;
}

.full-height {
  height: 100%;
}

.centered-block {
  margin: auto;
}

.center-align-items {
  align-items: center;
}

.absolute-container {
  position: relative;
}

.position-relative {
  position: relative;
}

.position-absolute {
  position: absolute;
}

.absolute-overlay {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}

.absolute-for-transform {
  position: absolute;
  left: 0;
  top: 0;
}

.absolute-right {
  position: absolute;
  right: 0;
}

.top-right {
  top: 0;
  right: 0;
}

.top-left {
  top: 0;
  left: 0;
}

.right-0 {
  right: 0;
}

.bottom-negative-1-8 {
  bottom: -1.8rem;
}

.no-pointer-events {
  pointer-events: none;
}

.all-pointer-events {
  pointer-events: all;
}

.cursor-pointer {
  cursor: pointer;
}

.display-block {
  display: block;
}

.display-inline {
  display: inline;
}

.display-inline-block {
  display: inline-block;
}

.no-overflow {
  overflow: hidden;
}

.float-right {
  float: right;
}

.clear-both {
  clear: both;
}

.clear-left {
  clear: left;
}

.clear-right {
  clear: right;
}

.no-margins {
  margin: 0;
}

.no-paddings {
  padding: 0;
}

.hidden-space {
  width: 0;
  display: inline-block;
}

.layer-order-high {
  z-index: 3;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-x-hidden {
  overflow-x: hidden;
}

.overflow-x-auto {
  overflow-x: auto;
}

.overflow-auto {
  overflow: auto;
}

.border-box-sizing {
  box-sizing: border-box;
}

.text-decoration-none {
  text-decoration: none;
}

a.custom-styled-link {
  text-decoration: none;
  color: inherit;
}

.transform-origin-top-center {
  transform-origin: center top;
}

.turned-180 {
  transform: rotate(180deg);
}

.ease-out-transformations {
  transition-property: transform;
  transition: 0.3s;
  transition-timing-function: ease-out;
}

.no-size {
  width: 0;
  height: 0;
}

@media print {
  .no-print,
  .no-print * {
    display: none !important;
  }
}

.vertical-align-top {
  vertical-align: top;
}

.text-overflow-ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.fit-content {
  width: fit-content;
}

.bottom-05 {
  bottom: 0.5rem;
}

.top-05 {
  top: 0.5rem;
}

.display-none {
  display: none;
}

.text-decoration-underline {
  text-decoration: underline;
}

.margin-left-auto {
  margin-left: auto;
}

.fit-content-width {
	min-width: fit-content;
}

.centered-block-for-overflow {
	width: fit-content;
	margin: auto;
}

.no-opacity {
	opacity: 0;
}.flex {
  display: flex;
}

.flex-row {
  display: flex;
  flex-direction: row;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-shrink0 {
  flex-shrink: 0;
}

.flex-row.justify-between,
.flex-column.justify-between {
  justify-content: space-between;
}

.flex.justify-center,
.flex-row.justify-center,
.flex-column.justify-center {
  justify-content: center;
}

.flex-row.justify-end,
.flex-column.justify-end {
  justify-content: flex-end;
}

.flex-row.vertically-center-items {
  align-items: center;
}

.flex-row .flex-row-item {
}

.flex-row .flex-row-item:first-of-type {
  margin-left: 0rem;
}

.flex-row .flex-row-item:last-of-type {
  margin-right: 0rem;
}

.flex-row.singles > .flex-row-item {
  width: 100%;
}

.flex-row.halfs > .flex-row-item {
  width: 50%;
}

.flex-row > .flex-row-item.half {
  width: 50%;
}

.flex-row.thirds > .flex-row-item,
.flex-row-item.third {
  width: 33.33%;
}

.flex-row.quarters > .flex-row-item {
  width: 25%;
}

.flex-row > .flex-row-item.quarter {
  width: 25%;
}

.flex-column.halfs > .flex-column-item {
  height: 50%;
}

.flex-row .flex-row-item .reset-flex-row-item-size .flex-row-item {
  width: initial;
}

.flex-column.all-grow .flex-column-item {
  height: 0%;
}

.flex-column .flex-column-item:first-of-type {
  margin-top: 0rem;
}

.flex-column .flex-column-item:last-of-type {
  margin-bottom: 0rem;
}

.flex-vertical-line {
  width: 0.1rem;
  flex-grow: 0;
  flex-shrink: 0;
}

.flex-horizontal-line {
  height: 0.1rem;
  flex-grow: 0;
  flex-shrink: 0;
}

.flex-no-resize {
  flex-grow: 0;
  flex-shrink: 0;
}

.flex-resize {
  flex-grow: 1;
  flex-shrink: 1;
}

.flex-row-item.width-90 {
  width: 90%;
  flex-grow: 1;
  flex-shrink: 1;
}

.flex-row-item.width-80 {
  width: 80%;
  flex-grow: 1;
  flex-shrink: 1;
}

.flex-row-item.width-70 {
  width: 70%;
  flex-grow: 1;
  flex-shrink: 1;
}

.flex-row-item.width-60 {
  width: 60%;
  flex-grow: 1;
  flex-shrink: 1;
}

.flex-row-item.width-50 {
  width: 50%;
  flex-grow: 1;
  flex-shrink: 1;
}

.flex-row-item.width-40 {
  width: 40%;
  flex-grow: 1;
  flex-shrink: 1;
}

.flex-row-item.width-30 {
  width: 30%;
  flex-grow: 1;
  flex-shrink: 1;
}

.flex-row-item.width-20 {
  width: 20%;
  flex-grow: 1;
  flex-shrink: 1;
}

.flex-row-item.width-10 {
  width: 10%;
  flex-grow: 1;
  flex-shrink: 1;
}

.flex-row.align-end .flex-row-item {
  align-self: flex-end;
}

.flex-row.uniform-item > .flex-row-item {
  width: 1%;
  flex-grow: 1;
  flex-shrink: 1;
}

.centered-cell-holder {
  display: flex;
  justify-content: center;
  align-items: center;
}

.align-items-center {
	align-items: center;
}

.flex-column-desktop {
  display: flex;
}

.flex-row-desktop {
  display: flex;
  flex-direction: column;
}

.align-items-mobile {
  align-items: center;
}

@media (min-width: 800px) {
  .flex-column-desktop {
    flex-direction: column;
  }

  .flex-row-desktop {
    flex-direction: row;
  }

  .align-items-mobile {
    align-items: normal;
  }
}

.flex-grow-1 {
  flex-grow: 1;
}

.flex-mobile-row {
  display: flex;
  flex-direction: row;
}

.flex-mobile-wrap {
  flex-wrap: wrap;
}

@media (min-width: 600px) {
  .flex-mobile-row {
    display: flex;
    flex-direction: column;
  }

  .flex-mobile-wrap {
    flex-wrap: nowrap;
  }
}

@media (min-width: 1024px) {
  .flex-desktop {
    display: flex;
  }
}

.align-items-start {
  align-items: flex-start;
}

.flex-basis-130 {
  flex: 0 0 13rem;
}

.justify-evenly {
  justify-content: space-evenly;
}

.align-self-end {
  align-self: flex-end;
}

.content-space-between {
  justify-content: space-between;
}

.flex-1 {
  flex: 1;
}
.inline-list {
	
}

.inline-list .inline-list-item {
	display: inline-block;
}

.inline-list .inline-list-item:first-of-type {
	margin-left: 0rem;
}

.inline-list .inline-list-item:last-of-type {
	margin-right: 0rem;
}

.row-list {
	
}

.row-list .row-list-item {
	
}

.row-list .row-list-item:first-of-type {
	margin-top: 0rem;
}

.row-list .row-list-item:last-of-type {
	margin-bottom: 0rem;
}

.inline-list .row-list-item {
	display: inline-block;
}

.row-list .row-list-item:first-of-type {
	margin-top: 0rem;
}

.row-list .row-list-item:last-of-type {
	margin-bottom: 0rem;
}.text-align-center {
	text-align: center;
}

.text-align-left {
	text-align: left;
}

.text-align-right {
	text-align: right;
}

.vertical-text-top {
	vertical-align: text-top;
}

.font-italic {
	font-style: italic;
}

.text-uppercase {
	text-transform: uppercase;
}

.no-paragraph-margins p {
	margin: 0;
}

.no-paragraph-margins-around p:first-of-type {
	margin-top: 0;
}

.no-paragraph-margins-around p:last-of-type {
	margin-bottom: 0;
}.border-box {
	border-width: 0.1rem;
	border-style: solid;
	border-color: #333333;
}.date-with-details {
	
}

.date-with-details .primary {
	line-height: 1;
	font-size: 2.4rem;
	font-weight: 600;
	margin-right: 0.2rem;
}

.date-with-details .secondary {
	font-size: 1.2rem;
	font-weight: 600;
}

.date-with-details .details {
	font-size: 0.9rem;
	color: #7e7e7e;
}

.spacing.date-with-details-spacing {
	
}

.flex-row.date-with-details-item-spacing > .flex-row-item:not(:first-of-type) {
	margin-left: 0.1rem;
}

.flex-row.date-with-details-item-spacing > .flex-row-item:not(:last-of-type) {
	margin-right: 0.1rem;
}.date-selection-overlay {
	box-sizing: border-box;
	border: 1px solid #073988;
	background-color: #FFFFFF;
}

.date-selection-overlay-padding {
	padding: 1rem;
}

.date-selection-button {
	box-sizing: border-box;
	border: 1px solid #073988;
	background-color: #FFFFFF;
}

.date-selection-button-padding {
	padding: 1rem;
}

.date-selection-button.invalid,
.invalid .date-selection-button {
	border-color: #880707;
}.calendar-week:not(:first-of-type) {
	margin-top: 0.2rem;
}

.flex-row.calendar-week > .flex-row-item:not(:first-of-type) {
	margin-left: 0.1rem;
}

.flex-row.calendar-week > .flex-row-item:not(:last-of-type) {
	margin-right: 0.1rem;
}

.calendar-day {
	font-weight: bold;
	border: 1px solid rgb(7, 57, 136);
	padding: 1.3rem 0.5rem;
	text-align: center;
	cursor: pointer;
}

.calendar-day.today {
	background-color: rgb(7, 57, 136, 0.2);
}

.calendar-day.other-month {
	border: 1px solid rgb(221, 221, 221, 0.5);
	color: rgb(92, 92, 92, 0.5);
}

.calendar-day.selected {
	background-color: rgb(7, 57, 136);
	color: #FFFFFF;
}

.calendar-day.unselectable {
	pointer-events: none;
	background-color: rgb(221, 221, 221, 0.5);
	border: 1px solid rgb(221, 221, 221, 0.5);
	color: rgb(92, 92, 92, 0.5);
}.item-list .field {
	width: 30rem;
}

.item-list .field-type-select,
.item-list .field-type-options {
	width: auto;
}

.standard-flag {
	background-color: #C0C0C0;
	border-radius: 0.3rem;
	box-sizing: border-box;
}

.id-flag {
	font-size: 1.2rem;
	width: 6rem;
	text-align: center;
	
	background-color: #C0C0C0;
	color: #FFFFFF;
}

.status-flag {
	font-size: 0.9rem;
	text-align: center;
	background-color: #feffce;
}

.start-at-flag {
	background-color: #cbe2bf;
}

.end-at-flag {
	background-color: #d4af96;
}

.standard-flag-padding {
	padding: 0.2rem;
}

.date-selection-number {
	line-height: 1;
	font-size: 2.4rem;
	font-weight: 600;
	margin-right: 0.2rem;
}

.date-selection-month {
	font-size: 1.2rem;
	font-weight: 600;
}

.date-selection-weekday {
	font-size: 0.9rem;
	color: #7e7e7e;
}

.flex-row.date-selection-spacing > .flex-row-item:not(:first-of-type) {
	margin-left: 0.1rem;
}

.flex-row.date-selection-spacing > .flex-row-item:not(:last-of-type) {
	margin-right: 0.1rem;
}

.label-text-small {
	font-size: 1.2rem;
	font-weight: 600;
}.validation-error-popup .up-arrow:before {
	position: absolute;
	top: 0;
	left: 0.7rem;
	transform: translateY(-100%);
	content: "";
	display: inline-block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 12px 11px 12px;
	border-color: transparent transparent #e94b35 transparent;
}

.validation-error-popup .up-arrow:after {
	position: absolute;
	top: 0;
	left: 0.8rem;
	transform: translateY(-100%);
	content: "";
	display: inline-block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 11px 10px 11px;
	border-color: transparent transparent #ffffff transparent;
}

.validation-error-popup .down-arrow:before {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	content: "";
	display: inline-block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 11px 12px 0 12px;
	border-color: #e94b35 transparent transparent transparent;
}

.validation-error-popup .down-arrow:after {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	content: "";
	display: inline-block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 10px 11px 0 11px;
	border-color: #ffffff transparent transparent transparent;
}

.validation-error-popup {
	background-color: #fff;
	text-align: center;
	position: relative;
	color: #e94b35;
	border: 1px solid #e94b35;
	padding: 2rem 2.6rem;
	font-size: 2rem;
	border-radius: 0.5rem;
	width: 37rem;
	margin-bottom: 11px;
}

.validation-error-popup-centered-over-position {
	left: 50%;
	transform: translate(-50%, -100%);
}.standard-dropdown-button {
	box-sizing: border-box;
	border-radius: 0.3rem;
	border: 0.1rem solid #D1D1D1;
}

.standard-dropdown-button-padding {
	padding: 1.4rem 0.8rem;
}

.standard-dropdown-button.batch-operations-select-title {
	border-radius: 0;
	border: none;
}

.standard-dropdown-button-padding.batch-operations-select-title {
	padding: 0;
}

.custom-selection-menu {
	box-sizing: border-box;
	background-color: #FFFFFF;
}

.custom-selection-menu-padding {
	padding: 1rem;
}

.dropdown-selection-popup {
	min-width: 20rem;
}

.custom-dropdown.dropdown-from-right .dropdown-selection-popup {
	right: 0;
}.stepped-navigation-button {
	box-sizing: border-box;
	width: 6rem;
	height: 6rem;
	background-color: #2ece6e;
	border-radius: 50%;
	transition: background-color 0.1s ease-in;
}

.stepped-navigation-button.active:hover {
	background-color: #0de061;
}

.stepped-navigation-button.inactive {
	opacity: 0.5;
}

.stepped-navigation-back-button {
	box-sizing: border-box;
	
	width: 3rem;
	height: 3rem;
	
	background-color: #FFFFFF;
	border-radius: 50%;
	border: 2px solid #CCCCCC;
	
	transition: background-color 0.1s ease-in;
}

.stepped-navigation-back-button.inactive {
	opacity: 0.5;
}

.stepped-navigation-back-button.active:hover {
	background-color: #EEEEEE;
}

.stepped-navigation-button-padding {
	padding: 1rem;
}

.stepped-navigation-back-button-padding {
	padding: 0.5rem;
}

.stepped-navigation-step-indicator {
	width: 1rem;
	height: 1rem;
	
	border-radius: 50%;
	
	background-color: #CCCCCC;
	opacity: 0.5;
}

.signed-in-name {
	font-size: 2.4rem;
	font-weight: bold;
}

.signed-in-email {
	color: #CCCCCC;
	font-size: 1.2rem;
}.verification-code-box {
	background-color: #ffffff;
	border-radius: 0.6rem;
	box-sizing: border-box;
	border: 1px solid #153c63;
	overflow: hidden;
}

.verification-code-box-digit-field {
	width: 5.2rem;
	font-size: 4.4rem;
	font-weight: normal;
	line-height: normal;
	padding: 1.2rem 0;
	box-sizing: border-box;
	text-align: center;
	border: none;
	background-color: #153c6300;
	transition: background-color 0.1s ease-in;
}

.verification-code-box-digit-field:focus {
	background-color: #153c6311;
	outline: none;
}

.verification-code-box-digit-field:not(:last-of-type) {
	border-right: 1px solid #153c63;
}.action-link {
	font-size: 1.6rem;
	font-weight: normal;
	line-height: normal;
	text-decoration: underline;
}

.action-link.secondary {
	color: #CCCCCC;
}.centered-site {
  padding-left: 1rem;
  padding-right: 1rem;
  margin: auto;
}

@media (min-width: 800px) {
  .centered-site {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

@media (min-width: 1024px) {
  .centered-site {
    max-width: 128rem;
    padding-left: 8rem;
    padding-right: 8rem;
  }
  
  .centered-site.narrower {
	max-width: 100rem;
  }
}

.centered-content-text {
  width: 80%;
  max-width: 70rem;
  margin: auto;
}

.page-footer {
	background-color: #343434;
	color: #FFFFFF;
}
.main-font-setting {
	font-family: "Baskerville", sans-serif;
	font-size: 2.4rem;
	color: #393939;
}

.main-font-setting sup {
	font-size: 0.5em;
}

.wp-rich-text-formatting {
	font-size: 2.4rem;
	line-height: 3.4rem;
}

h1:not(.skip-default) {
	font-family: "Century Gothic", serif;
	font-size: 3.2rem;
	font-weight: 800;
}

h2:not(.skip-default) {
	font-family: "Century Gothic", serif;
	font-size: 2.4rem;
	font-weight: 800;
}

h3:not(.skip-default) {
	font-family: "Century Gothic", serif;
	font-size: 2.2rem;
}

.header-font {
	font-family: "Century Gothic", serif;
}

.standard-field-label {
	font-size: 1.2rem;
	font-family: "Century Gothic", serif;
	font-weight: bold;
}

.small-description {
	font-size: 1.2rem;
	font-family: "Century Gothic", serif;
	font-weight: bold;
}

.change-image-button-text {
	font-size: 1.4rem;
	font-family: "Century Gothic", serif;
	font-weight: bold;
}

.dangerous-action-text-color {
	color: #da2323;
}.image.site-logo {
	width: 29rem;
	height: auto;
}

.image.mobile-site-logo {
	width: 15rem;
	height: auto;
}

.image.standard-icon {
	width: 2.4rem;
	height: 2.4rem;
}

.preview-image-area {
	width: 26rem;
	height: 14.6rem;
	background-color: #EEEEEE;
}

.image.source-hamburger {
	width: 4.2rem;
	height: 4.2rem;
}.footer-menu .menu-link {
	font-family: "Century Gothic", serif;
	font-size: 1.6rem;
	font-weight: bold;
	color: #69BDD8;
}.site-header {
	background-color: #265990;
	color: #FFFFFF;
}

.site-header-padding {
	padding-top: 2rem;
	padding-bottom: 2rem;
}

.header-menu .menu-link {
	font-family: "Century Gothic", serif;
	font-size: 1.6rem;
	font-weight: bold;
}.hero {
	color: #FFFFFF;
}

.hero-padding {
	padding-top: 15rem;
	padding-bottom: 3rem;
}

.hero-title {
	font-size: 2.8rem;
	font-weight: bold;
}

.hero-sub-title {
	font-size: 1.8rem;
}

@media(min-width: 600px) {
	.hero-padding {
		padding-top: 30rem;
		padding-bottom: 7rem;
	}

	.hero-title {
		font-size: 6.4rem;
		font-weight: bold;
	}

	.hero-sub-title {
		font-size: 3.6rem;
	}
}
hr.line {
	height: 1px;
	margin: 0;
	border: none;
}
	
hr.footer-line {
	background-color: #265990;
}

hr.mobile-menu-separator {
	background-color: #265990;
}

.standard-field-label {
	
}

.standard-field {
	font-family: "Baskerville", sans-serif;
	border: 1px solid #265990;
	font-size: 2rem;
	box-sizing: border-box;
}

.standard-field-padding {
	padding: 10px 14px;
}

.dropdown-from-right .dropdown-selection-popup {
	right: 0;
}

.embedded-chat .embededablechat-chat-widget {
	-webkit-box-shadow: none;
}

.chat-height {
	height: 400px;
}

.standard-box {
	border: 1px solid #EEEEEE;
	box-sizing: border-box;
}

.post-preview-button-width {
	width: 26rem;
}

.category-flag {
	font-size: 1.2rem;
	font-weight: bold;
	color: #FFFFFF;
	font-family: "Century Gothic", serif;
	background-color: #A8BCD2;
}

.standard-flag-padding {
	padding: 5px 18px;
}

.edit-profile__img-ring {
	padding: 0.5rem;
	border-radius: 50%;
	border: solid 1px #265990;
	overflow: hidden;
	position: relative;
}

.edit-profile__img {
	border-radius: 50%;
	background-color: #e1e1e1;
	width: 340px;
	height: 340px;
	overflow: hidden;
}

.uploadBtn {
	height: 62px;
	width: 100%;
	position: absolute;
	bottom: 0;
	background-color: rgba(255, 255, 255, 0.8);
	color: #293163;
	font-weight: 600;
}

.edit-profile__pen-icon {
	width: 18px;
	height: 18px;
}

.vertical-menu-item-padding {
	padding: 1rem;
}.spacing.double {
  height: 4rem;
}

.spacing.standard {
  height: 2rem;
}

.spacing.medium {
  height: 1.5rem;
}

.spacing.small {
  height: 1rem;
}

.spacing.small.field-label-spacing {
	height: 0.5rem;
}

.spacing.micro {
  height: 0.5rem;
}

.spacing.none {
  height: 0rem;
}

.inline-list.small-item-spacing > .inline-list-item {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.inline-list.small-item-spacing > .inline-list-item:first-of-type {
  margin-left: 0rem;
}

.inline-list.small-item-spacing > .inline-list-item:last-of-type {
  margin-right: 0rem;
}

.inline-list.menu-item-spacing > .inline-list-item {
  margin-left: 2rem;
  margin-right: 2rem;
}

.inline-list.menu-item-spacing > .inline-list-item:first-of-type {
  margin-left: 0rem;
}

.inline-list.menu-item-spacing > .inline-list-item:last-of-type {
  margin-right: 0rem;
}

.inline-list.small-item-row-spacing > .inline-list-item {
  margin-top: 1rem;
}

.flex-row.line-item-spacing > .flex-row-item:not(:first-of-type) {
  margin-left: 0.1rem;
}

.flex-row.line-item-spacing > .flex-row-item:not(:last-of-type) {
  margin-right: 0.1rem;
}

.flex-row.micro-item-spacing > .flex-row-item {
  margin-left: 0.6rem;
  margin-right: 0.6rem;
}

.flex-row.micro-item-spacing > .flex-row-item:first-of-type {
  margin-left: 0rem;
}

.flex-row.micro-item-spacing > .flex-row-item:last-of-type {
  margin-right: 0rem;
}

.flex-row.small-item-spacing > .flex-row-item {
  margin-left: 1rem;
  margin-right: 1rem;
}

.flex-row.small-item-spacing > .flex-row-item:first-of-type {
  margin-left: 0rem;
}

.flex-row.small-item-spacing > .flex-row-item:last-of-type {
  margin-right: 0rem;
}

.flex-row.medium-item-spacing > .flex-row-item {
  margin-left: 2rem;
  margin-right: 2rem;
}

.flex-row.medium-item-spacing > .flex-row-item:first-of-type {
  margin-left: 0rem;
}

.flex-row.medium-item-spacing > .flex-row-item:last-of-type {
  margin-right: 0rem;
}

.flex-item-spacing-big > .flex-item:not(:first-of-type) {
	margin-left: 3rem;
}

.flex-item-spacing-big > .flex-item:not(:last-of-type) {
	margin-right: 3rem;
}

.flex-row.date-selection-spacing > .flex-row-item:not(:first-of-type) {
  margin-left: 0.1rem;
}

.flex-row.date-selection-spacing > .flex-row-item:not(:last-of-type) {
  margin-right: 0.1rem;
}

.flex-row.pixel-item-spacing > .flex-row-item:not(:first-of-type) {
  margin-left: 0.1rem;
}

.flex-row.pixel-item-spacing > .flex-row-item:not(:last-of-type) {
  margin-right: 0.1rem;
}

.margin-bottom-micro {
  margin-bottom: 0.5rem;
}

.margin-right-medium {
  margin-right: 2rem;
}
.standard-button {
	background-color: #4EA589;
	color: #FFFFFF;
	border-radius: 2px;
	font-family: "Century Gothic", serif;
	font-weight: bold;
	border: 1px solid #4EA589;
	box-sizing: border-box;
}

.standard-button.inactive {
	opacity: 0.4;
}

.standard-button-padding {
	padding: 8px 53px;
}

.secondary-button {
	background-color: #FFFFFF;
	color: #4EA589;
	border-radius: 2px;
	font-family: "Century Gothic", serif;
	font-weight: bold;
	border: 1px solid #4EA589;
	box-sizing: border-box;
}

