
.border-box,
a,
article,
aside,
blockquote,
body,
code,
dd,
div,
dl,
dt,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
html,
input[type=email],
input[type=number],
input[type=password],
input[type=tel],
input[type=text],
input[type=url],
legend,
li,
main,
nav,
ol,
p,
pre,
section,
table,
td,
textarea,
th,
tr,
ul {
    box-sizing: border-box
	font-family: "Montserrat", Sans-serif;
	color: #233d62;
}

html {
	font-size: 100%
}

:root {
	--cPrimary: #ff9f23;
	--cPrimaryRGB: 255,159,35;
	--cText:  #687693;
	--cPrimary100: #ffeab5;
	--cSecondary: #233d62;
}

p {
	margin: 0.3rem 0rem;
	font-family: "Montserrat", Sans-serif;
	color: #233d62;
}

/* Google Font */
/* latin */
@font-face {
	font-family: 'Google Sans';
	font-style: normal;
	font-weight: 400;
	src: local('Google Sans Regular'), local(GoogleSans-Regular), url(//fonts.gstatic.com/s/googlesans/v5/4UaGrENHsxJlGDuGo1OIlL3Owp4.woff2) format("woff2");
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD
}
	
	/* latin */
@font-face {
	font-family: 'Google Sans';
	font-style: normal;
	font-weight: 500;
	src: local('Google Sans Medium'), local('GoogleSans-Medium'), url(https://fonts.gstatic.com/s/googlesans/v11/4UabrENHsxJlGDuGo1OIlLU94YtzCwY.woff2) format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

h2 { 
	font-family: "Montserrat", Sans-serif;
	font-weight: 500;
	color: #233d62;
	word-break: normal;
}


.card__content {
	font-family: "Montserrat", Sans-serif;
	color: #233d62;
	display: grid;
	grid-template-columns: auto 150px;
	gap: 2rem;
	align-items: start;
}

.calcButtonGroup {
	display: grid;
	grid-auto-flow: column;
}
.calcButtonGroup > p {
	margin-right: auto;
}
.calcButtonGroup > button {
	margin-left: auto;
	width: 190px;
}


@media (max-width: 620px) {
	.card__content {
		grid-template-columns: 1fr;
		grid-auto-flow: row;
		gap: 1rem;
	}
	html {
		font-size: 90%
	}
}

@media (max-width: 420px) {
	html {
		font-size: 80%
	}
	.calcButtonGroup {
		display: grid;
		grid-template-columns: 1fr;
		grid-auto-flow: row;
		gap: 1rem;
	}
	.calcButtonGroup > * {
		margin-left: 0;
		margin-right: 0;
	}
	.calcButtonGroup > p {
		margin-left: auto;
		margin-right: auto;
	}
	.calcButtonGroup > .btn-btn {
		margin-left: auto;
		margin-right: auto;
		width: 100%;
	}
}

.btn.btn-secondary {
	background-color: rgba(var(--cPrimaryRGB), 1);
	border: 1px solid var(--cPrimary)
}
.btn.btn-secondary:hover {
	background-color: rgba(var(--cPrimaryRGB), 0.6);
}
.btn.btn-secondary:focus, .btn:focus {
	outline: none;
	box-shadow: none;
}

.btn--text {
	font-family: "Montserrat", Sans-serif;
	color: #233d62;
	color: var(--cSecondary);
	text-decoration: underline;
	font-weight: 600;
	cursor: pointer;
	text-align: right;
	margin-right: 0.25rem;
}

.btn--text:hover {
	opacity: 0.6;
}

.calculateGroup input[type=text] {
	width: 64px
}

/* utility classes */
.bg--cPrimary100 {
	background-color: var(--cPrimary100) !important;
}

.bg--cPrimary {
	background-color: var(--cPrimary) !important;
	color: white !important;
}

.gc--text {
	color: #4d5156;
}

.gc--black {
	color: #202124;
}

.gc--link {
	color: #1a0dab;
}

.gc--light {
	color: #70757a;
}

.bg--light {
	background-color: #e9ecef;
}

.bg--light--fade {
	background-color: rgba(233, 236, 239, 0.3);
}

/* hide number input arrows */
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

/* Do not focus border for readonly input fields */
input:read-only:focus, button:focus, button:hover {
    outline: none;
	box-shadow: none;
}