/**
 * @TODO
 * Fix file coming from fonts.com, so that we don't have to use
 * crappy font names.
 *
 * @TODO
 * Come up with standardized styling for h2, h3, h4 w/ Bryan.
 **/
body {
	color: var(--coal-color, #323532);
	font-family: 'Poppins Regular', sans-serif;
}

h1 {
	color: var(--cash-color, #76b844);
	font-family: 'Poppins Regular';
	font-size: 40px;
	font-weight: normal;
	letter-spacing: -1px;
	line-height: 1em;
	margin: .5em 0;
	text-align: center;
}

h1:lang(fr) {
  font-size: 40px;
  margin: .5em 0;
}

.subtitle {
	margin-top: 20px;
	margin-bottom: 20px;
	font-size: 18px;
	text-align: center;
}

h1 + .subtitle {
	margin-top: -10px;
}

h2 {
	font-family: 'Poppins Regular';
	font-size: 18px;
	font-weight: normal;
	margin: 2em 0 0;
}

h3 {
	font-weight: normal;
}

h4 {
	color: #76b844;
}

a {
	color: var(--cash-color, #2e96d3);
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

a img {
	border: none;
}

strong {
	font-family: 'Poppins Regular';
  font-weight: normal;
}

hr {
	background: #e7e7e7;
	border: 0;
	height: 1px;
	margin: 2em 0;
	width: 100%;
}

hr.short {
    height: 1px;
    color: #e7e7e7;
    width: 40%;
    margin: 0 auto;
}

.center {
	text-align: center;
}

body:not(.privacy) .copy ol,
body:not(.privacy) .copy ul {
	padding: 0;
}

.copy li,
.copy li {
	color: #76b844;
}

.copy li p,
.copy li p {
	color: #323532;
}

.signup-disclaimer {
	font-size: 14px;
}

.signup-disclaimer a {
	white-space: nowrap;
}

@media (max-width: 768px) {
	h1 {
		font-size: 40px;
		margin: .5em 0;
	}
	.main .container {
		padding: 0 30px;
	}
}

/* This doesn't belong here, oh well - cal @todo */
.loading + .loader,
.loading .loader {
	display: block;
	height: 40px;
	width: 40px;
	margin: 0 auto 26px;
	position: relative;
	-webkit-animation: spinner-rotation .6s infinite linear;
	animation: spinner-rotation .6s infinite linear;
	border: 6px solid rgba(0,174,239,.15);
	border-radius: 100%;
}

.loading + .loader:before,
.loading .loader:before {
   content: "";
   display: block;
   position: absolute;
   left: -6px;
   top: -6px;
   height: 100%;
   width: 100%;
   border-top: 6px solid rgba(0,174,239,.8);
   border-left: 6px solid transparent;
   border-bottom: 6px solid transparent;
   border-right: 6px solid transparent;
   border-radius: 100%;
}

.loading .loader.small {
	height: 20px;
	width: 20px;
}

.button.loading .loader {
	border-color: rgba(255, 255, 255, .15);
	border-width: 5px;
	height: 20px;
	top: 4px;
	width: 20px;
}

.button.loading .loader:before {
   border-top: 5px solid rgba(255, 255, 255, .8);
	 border-width: 5px;
	 left: -5px;
	 top: -5px;
}

.button.loading .text {
	display: none;
}

@-webkit-keyframes spinner-rotation {
   from {-webkit-transform: rotate(0deg);}
   to {-webkit-transform: rotate(359deg);}
}
@keyframes spinner-rotation {
   from {transform: rotate(0deg);}
   to {transform: rotate(359deg);}
}

.text-green {
    color: var(--cash-color, #76b844);
}
