@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@800&display=swap");
html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  padding: 1em;
}

* {
  box-sizing: border-box;
}

h1, h2, h3 {
  font-family: "Nunito Sans", sans-serif;
}

a {
  color: #0066ff;
  text-decoration: none;
}
a:active, a:focus, a:hover {
  color: #0047b3;
  text-decoration: underline;
}
a:visited {
  color: #0066ff;
}

.svg {
  display: inline-block;
  line-height: 0;
  vertical-align: text-top;
}
.svg svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reset-ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.form-container {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.25em;
}
.form-container .form {
  margin-left: 0.25em;
  margin-right: 1em;
}

.result {
  padding: 1.5em;
  background-color: #f4f4f4;
  border: 1px solid #ddd;
  color: #555;
  border-radius: 4px;
  line-height: 1.4;
  margin-top: 1em;
}

select {
  background-image: url("../../images/chevron-down.svg");
  background-position: center right 0.25em;
  background-repeat: no-repeat;
  background-size: 0.875em;
  padding-right: 1.5em !important;
}

.form, .btn {
  border: 1px solid transparent;
  border-radius: 0.25em;
  box-sizing: border-box;
  min-height: 2.5em;
  padding: 0.5em;
  padding-left: 0.6875em;
  padding-right: 0.6875em;
  transition: all 0.2s;
}

.form {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border-color: rgba(0, 0, 0, 0.2);
  font-size: 1em;
}
.form:focus {
  outline: none;
  border: 1px solid #0066ff;
}
.form:focus + .form {
  border-left-color: #0066ff;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0066ff;
  color: #fff;
  cursor: pointer;
  line-height: 1;
  text-decoration: none;
}
.btn:hover {
  background-color: #0047b3;
}
.btn.btn-icon {
  width: 2.5em;
  height: 2.5em;
}
.btn.btn-icon svg {
  width: 1.25em;
  height: 1.25em;
  stroke-width: 2;
}
.btn.btn-deactive {
  background-color: #eee !important;
  color: #ccc !important;
  cursor: default;
}
.btn.btn-deactive:hover {
  background-color: #eee;
  color: #ccc;
}
.btn.btn-sub {
  background-color: #acacac;
  color: #fff;
}
.btn.btn-sub:hover {
  background-color: #868686;
}
.btn.btn-text {
  background-color: transparent;
  color: #0066ff;
}
.btn.btn-text:hover {
  background-color: rgba(0, 0, 0, 0.05);
  color: #005ce6;
}
.btn.btn-text.btn-deactive {
  background-color: transparent !important;
  color: #ccc;
  box-shadow: none;
}
.btn.btn-text.btn-sub {
  color: #777;
}
.btn.btn-text.btn-sub:hover {
  color: #000;
}
.btn.btn-outlined {
  background-color: transparent;
  border-color: #0066ff;
  color: #0066ff;
}
.btn.btn-outlined:hover {
  background-color: rgba(0, 0, 0, 0.05);
  color: #005ce6;
}
.btn.btn-outlined.btn-deactive {
  background-color: transparent !important;
  color: #ccc;
  box-shadow: none;
}
.btn.btn-outlined.btn-sub {
  color: #777;
}
.btn.btn-outlined.btn-sub:hover {
  color: #000;
}
.btn.btn-round {
  border-radius: 1.25em;
}
.btn .svg svg {
  stroke-width: 2.5;
}
.btn .svg + span {
  margin-left: 0.5em;
}

.compact-forms .btn,
.compact-forms .form,
.btn-compact,
.form-compact {
  min-height: 2em;
  height: auto;
  padding: 0.25em;
  padding-left: 0.4375em;
  padding-right: 0.4375em;
}

.large-forms .btn,
.btn-large {
  font-size: 1.25rem;
}

.small-forms .btn,
.btn-small {
  font-size: 0.875rem;
}

.smaller-forms .btn,
.btn-smaller {
  font-size: 0.75rem;
}

.smallest-forms .btn,
.btn-smallest {
  font-size: 0.625rem;
}

.form-wrapper {
  display: flex;
  align-items: center;
}
.form-wrapper .form-container {
  margin-left: 0.25em;
  margin-top: 0.125em;
  margin-bottom: 0.125em;
}
.form-wrapper .form-container:first-child {
  margin-left: 0 !important;
}
.form-wrapper .form-container.grouped::after {
  display: block;
  content: "";
  clear: both;
}
.form-wrapper .form-container.grouped .btn, .form-wrapper .form-container.grouped .form {
  float: left;
  border-radius: 0;
}
.form-wrapper .form-container.grouped .btn:first-child, .form-wrapper .form-container.grouped .form:first-child {
  border-top-left-radius: 0.25em;
  border-bottom-left-radius: 0.25em;
}
.form-wrapper .form-container.grouped .btn:last-child, .form-wrapper .form-container.grouped .form:last-child {
  border-top-right-radius: 0.25em;
  border-bottom-right-radius: 0.25em;
}
.form-wrapper .form-container.grouped .btn + .btn {
  margin-left: 1px;
}
.form-wrapper .form-container.grouped .form {
  border-right: none;
}
.form-wrapper .form-container.grouped .form:last-child {
  border-right: 1px solid rgba(0, 0, 0, 0.2);
}
.form-wrapper .form-container.grouped .form:last-child:focus {
  border-right-color: #0066ff;
}
.form-wrapper .btn-spacing {
  flex: 1 1 auto;
}
.form-wrapper.inline-flex {
  display: inline-flex;
}
.form-wrapper.evenly {
  width: 100%;
}
.form-wrapper.evenly .form-container {
  flex: 1 1 0;
}
.form-wrapper.evenly .form-container.custom-width {
  flex: 0 1 auto;
}
.form-wrapper.rounded .btn, .form-wrapper.rounded .form {
  border-radius: 1.25em;
}
.form-wrapper.rounded .grouped .btn:first-child, .form-wrapper.rounded .grouped .form:first-child {
  border-top-left-radius: 1.25em;
  border-bottom-left-radius: 1.25em;
  padding-left: 1.125em;
}
.form-wrapper.rounded .grouped .btn:last-child, .form-wrapper.rounded .grouped .form:last-child {
  border-top-right-radius: 1.25em;
  border-bottom-right-radius: 1.25em;
  padding-right: 1.125em;
}
.form-wrapper.grouped .form-container {
  margin-left: 1px;
}
.form-wrapper.grouped .form-container .btn, .form-wrapper.grouped .form-container .form {
  border-radius: 0;
}
.form-wrapper.grouped .form-container:first-child .btn, .form-wrapper.grouped .form-container:first-child .form {
  border-top-left-radius: 0.25em;
  border-bottom-left-radius: 0.25em;
}
.form-wrapper.grouped .form-container:last-child .btn, .form-wrapper.grouped .form-container:last-child .form {
  border-top-right-radius: 0.25em;
  border-bottom-right-radius: 0.25em;
}/*# sourceMappingURL=style.css.map */