/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
    font-family: Larsseit, -apple-system, BlinkMacSystemFont, sans-serif;
	/* -moz-osx-font-smoothing: grayscale; */
	text-rendering: geometricPrecision;
	box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-smoothing: antialiased;

}

html {
  font-size: 16.5px;
  text-rendering: geometricPrecision;
}

body {
  /* font-size: 17px; */
	line-height: 1.6;
	background: #ffffff;
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}


button, input, textarea {
	font-family: Larsseit, -apple-system, BlinkMacSystemFont, sans-serif;
		box-sizing: border-box;
		font-size: inherit;
    border: none;
    text-rendering: geometricPrecision;
    -webkit-font-smoothing: antialiased;
}

button:active, button:visited, button:focus {
	outline: none;
}

::placeholder {
	/* color: red; */
	color: #BBB;
}

input, textarea {
	border-style: none;
	outline: none;
	-webkit-appearance: none;
}

input[type='radio'], input[type='checkbox'] {
	-webkit-box-align: center;
    align-items: center;
    -webkit-appearance: none;
    display: flex;
    margin-right: 21px;
    width: 18px;
    height: 18px;
    position: absolute;
    top: 50%;
	margin-top: -10px;
	box-sizing: border-box;
}

input[type='radio']::after {
	content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(217, 219, 223);
    border-image: initial;
    border-radius: 50%;
}

input[type="radio"]:checked::before {
	background-color: rgb(45, 49, 56);
    content: "";
    height: 10px;
    left: 50%;
    margin-left: -4px;
    position: absolute;
    width: 10px;
    top: 50%;
    margin-top: -5px;
    border-radius: 50%;
}


a, a:visited a:active {
	text-decoration: none;
	color: inherit;
	-webkit-tap-highlight-color: transparent;
}

code {
    font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

.fixed {
	overflow: hidden;
}

ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* CSS animated loaders */

.lds-ripple {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
}
.lds-ripple div {
  position: absolute;
  border: 4px solid #ED2F59;
  opacity: 1;
  border-radius: 50%;
  animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.lds-ripple div:nth-child(2) {
  animation-delay: -0.5s;
}
@keyframes lds-ripple {
  0% {
    top: 28px;
    left: 28px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: -1px;
    left: -1px;
    width: 58px;
    height: 58px;
    opacity: 0;
  }
}


.lds-ring {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid #ED2F59;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #ED2F59 transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.spinner {
  /* margin: 100px auto 0; */
  width: 70px;
  text-align: center;
}

.spinner > div {
  width: 18px;
  height: 18px;
  background-color: #333;

  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(0) }
  40% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bouncedelay {
  0%, 80%, 100% { 
    -webkit-transform: scale(0);
    transform: scale(0);
  } 40% { 
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
  }
}

.markdown-container h1 {
  font-size: 2.5rem;
  margin: 1rem 0rem;
  font-weight: 600;
}

.markdown-container strong {
  font-weight: 600;
  color: black;
}

.markdown-container h2 {
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0.875rem 0rem;
}

.markdown-container p {
  margin-bottom: 1rem;
  color: rgb(110, 116, 150);
}

.markdown-container ol {
  margin-left: 1rem;
  color: rgb(110, 116, 150);
}


.markdown-container li {
  margin-bottom: 1rem;
  margin-left: 1rem;
  list-style-type: disc;
  color: rgb(110, 116, 150);
}