/* font face definitions */
@font-face {
	font-family: montserrat;
	src: url('../fonts/Montserrat/Montserrat-Regular.ttf') format('truetype');
}

@font-face {
	font-family: montserrat;
	src: url('../fonts/Montserrat/Montserrat-Bold.ttf') format('truetype');
	font-weight: bold;
}

@font-face {
	font-family: museo;
	src: url('../fonts/Museo/MuseoSans-300.ttf') format('truetype');
	font-weight: 300;
}

@font-face {
	font-family: museo;
	src: url('../fonts/Museo/MuseoSans-500.ttf') format('truetype');
	font-weight: 500;
}

@font-face {
	font-family: museo;
	src: url('../fonts/Museo/MuseoSans-700.ttf') format('truetype');
	font-weight: 700;
}

/*font styles*/
.display {
	font-family: montserrat;
	font-weight: bold;
	font-size: 64px;
}

.display-lead {
	font-family: museo;
	font-weight: 300;
	font-size: 26px;
	line-height: 31px;
}

.h1 {
	font-family: montserrat;
	font-weight: bold;
	font-size: 30px;
}

.h2 {
	font-family: montserrat;
	font-weight: bold;
	font-size: 30px;
}

.h3 {
	font-family: montserrat;
	font-weight: bold;
	font-size: 22px;
}

.h4 {
	font-family: montserrat;
	font-weight: bold;
	font-size: 17px;
}

footer>div {
	font-family: museo;
	font-weight: 500;
	color: var(--middle-grey);
	font-size: .75em;
}

.lead {
	font-family: museo;
	font-weight: 300;
	font-size: 22px;
	line-height: 28px;
}

.body {
	font-family: museo;
	font-weight: 300;
	font-size: 17px;
	line-height: 22px;
}

pre {
	font-family: museo;
	font-size: inherit;
}

.hyperlink {
	font-family: museo;
	font-weight: 700;
	font-size: 17px;
	line-height: 22px;
}

.caption {
	font-family: museo;
	font-weight: 300;
	font-size: 14px;
	line-height: 18px; }

.label {
	font-family: montserrat;
	font-weight: bold;
	font-size: 12px;
	letter-spacing: 1px;
}

.small-label {
	font-family: montserrat;
	font-weight: bold;
	font-size: 10px;
	letter-spacing: 1px;
	line-height: 10px;
}

input::placeholder {
	font-family: museo;
	font-weight: 300;
	font-size: 17px;
	line-height: 22px;
	color: var(--middle-grey);
}

/* colors */
:root {
	/* primary */
	--pink: #d3178e;
	--pink-rgb: 211, 23, 141;
	--yellow: #ffa300;
	--orange: #fe5000;
	/* greyscale */
	--almost-black: #111111;
	--almost-black-rgb: 17, 17, 17;
	--charcoal: #444444;
	--dark-grey: #717171;
	--middle-grey: #aaaaaa;
	--light-grey: #dadada;
	--almost-white: #f6f6f6;
	--info-blue: #0074b3;
	--success-green: #008040;
	--error-red: #d42b47;
	--alert-orange: #c74103;
}

html {
	min-height: 100%;
}

body {
	font-family: museo;
	color: var(--almost-black);
	background-color: #fff !important;
	display: flex;
	height: 100vh;
	margin: 0;
	flex-direction: column;
}

header {
	padding: 15px;
	border-bottom: 1px solid var(--light-grey);
}

header>img {
	height: 16px;
	width: 97px;
}

main {
	padding-left: 16px;
	padding-right: 16px;
	padding-bottom: 40px;
}

footer {
	background-color: var(--almost-black);
	width: 100%;
	height: 40px;
	min-height: 40px;
	margin-top: auto;
	display: flex;
	align-items: center;
	justify-content: center;
}

footer>div {
	font-family: museo;
	font-weight: 500;
	color: var(--middle-grey);
	font-size: 12px;
}

.phone-number {
	font-family: museo;
	font-weight: 500;
	color: var(--pink);
}

.card-header {
	background-color: white;
	margin-top: 40px;
	margin-left: 20px;
	padding: 0;
}

.card {
	border: none
}

.no-focus:focus {
	outline: none !important;
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
}

.hidden {
	display: none !important;
}

ul {
	text-align: left;
	list-style: outside;
}

.error-caption {
	color: var(--dark-grey);
}

h4.plans-dollar-sign {
	font-family: Montserrat;
	font-weight: bold;
	font-size: 38px;
	line-height: 38px;
	vertical-align: top;
}

.plans-price-dollarvalue {
	font-family: Montserrat;
	font-weight: bold;
	font-size: 72px;
	line-height: 60px;
}

.plans-price-centsvalue {
	font-family: Montserrat;
	font-size: 24px;
	font-weight: bold;
	text-align: left;
	border-bottom: 1px solid var(--charcoal);
}

div.gradient-underline {
	background: linear-gradient(270deg, #FFA300 0%, #DF1995 100%);
	padding: 0;
}

.gradient-underline>span {
	background-color: white;
}

.icon {
	font-size: 71px;
	margin-top: 80.25px;
}

.error-icon {
	color: var(--error-red);
}

.success-icon {
	color: var(--success-green);
}

.yellow-check {
	color: var(--yellow);
	font-size: 11px;
}

.top-border {
	border-top: 1px solid var(--light-grey);
}

.bottom-border {
	border-bottom: 1px solid var(--light-grey);
}

.primary-button {
	display: block;
	width: 100%;
	height: 43px;
	background-color: var(--pink);
	color: white;
	border-radius: 5px;
	border: none;
}

.primary-button.disabled {
	opacity: 0.35;
}

.primary-button:hover:enabled {
	background-color: var(--almost-black);
}

.primary-button:active:enabled {
	background-color: rgba(var(--almost-black-rgb), 0.35);
}

.tertiary-button {
	display: block;
	padding-left: 2em;
	padding-right: 2em;
	margin: auto;
	height: 43px;
	background-color: white;
	color: var(--pink);
	border-radius: 5px;
	border: none;
}

.tertiary-button:hover:enabled {
	color: var(--almost-black);
}

.tertiary-button:active:enabled {
	color: rgba(var(--almost-black-rgb), 0.75);
}

.tertiary-button.disabled {
	color: rgba(var(--pink-rgb), 0.35);
}

.pricing-block {
	margin-left: 28px;
	margin-right: 28px;
	padding-top: 20px;
	border-top: 1px solid var(--light-grey);
}

div.rectangle-copy-5 {
	height: 2px;
	width: 88px;
	background: linear-gradient(270deg, #FFA300 0%, #DF1995 100%);
}

.svg-icon {
	display: inline-flex;
	align-self: center;
}

.svg-icon svg {
	height:1em;
	width:1em;
}

.svg-icon.svg-baseline svg {
	top: .125em;
	position: relative;
}

.spinner-border.spinner-border-sm {
	margin-right: 0.5rem;
}
