/* border radius */
/* border width */
/* primary */
/* neutral */
/* danger */
/* warning */
/* success */
@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400;700&display=swap");
/* font family */
/* font sizes */
/* font sizes display */
/* font weight */
/* font line height */
/* layers */
/* shadows */
/* spacings */
/* transitions */
input[type=checkbox],
input[type=radio] {
  -webkit-appearance: none;
  appearance: none;
  align-items: center;
  appearance: none;
  cursor: pointer;
  display: flex;
  height: 20px;
  justify-content: center;
  outline: none;
  position: relative;
  width: 20px;
}
input[type=checkbox]:before,
input[type=radio]:before {
  content: "";
  opacity: 0;
  position: absolute;
}
input[type=checkbox]:checked:before,
input[type=radio]:checked:before {
  opacity: 1;
}
input[type=checkbox]:disabled,
input[type=radio]:disabled {
  color: #C6C6C6;
  cursor: not-allowed;
  background-color: #EEEEEE;
}

input[type=checkbox] {
  border: 1px solid #C6C6C6;
  border-radius: 4px;
}
input[type=checkbox]:before {
  border: 2px solid #1172EB;
  border-left: 0;
  border-top: 0;
  height: 9px;
  top: 2px;
  transform: rotate(45deg);
  width: 4px;
}
input[type=checkbox]:checked {
  background: #1172EB;
  border-color: #1172EB;
}
input[type=checkbox]:checked:before {
  border-color: #ffffff;
}
input[type=checkbox]:checked.indeterminate:before {
  border-left: 0;
  border-top: 0;
  border-right: 0;
  border-bottom: 2px solid #ffffff;
  transform: rotate(0);
  width: 8px;
  top: -1px;
}
input[type=checkbox]:disabled:checked {
  background-color: #EEEEEE;
  border-color: #C6C6C6;
}
input[type=checkbox]:disabled:checked:before {
  border-color: #C6C6C6;
}

input[type=radio] {
  border: 1px solid #C6C6C6;
  border-radius: 50%;
}
input[type=radio]:before {
  width: 12px;
  height: 12px;
  background-color: #1172EB;
  top: 3px;
  border-radius: 50%;
}
input[type=radio]:checked {
  background-color: #ffffff;
  border-color: #1172EB;
}
input[type=radio]:disabled:before {
  background-color: #C6C6C6;
}
input[type=radio]:disabled:checked {
  background-color: #EEEEEE;
  border-color: #C6C6C6;
}

.layout {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}
.layout.container-sm {
  max-width: 320px;
}
.layout.container-md {
  max-width: 768px;
}
.layout.container-lg {
  max-width: 1024px;
}
.layout.container-xl {
  max-width: 1280px;
}

.center-content {
  display: flex;
  align-items: center;
  justify-content: center;
}

* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  outline: 0;
  padding: 0;
}

html {
  height: 100%;
  -ms-overflow-style: scrollbar;
}

body {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 16px;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
label,
span {
  font-family: "Source Sans Pro", sans-serif;
  margin: 0;
}

:host {
  display: block;
}