/* 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;
}

.wrapper {
  align-content: center;
  align-items: center;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  padding: 0 40px;
  width: 100%;
}
.wrapper.center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  right: 0;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 4px solid #EEEEEE;
  border-bottom-color: #1172EB;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
  margin-bottom: 16px;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.text-loader {
  --text: "Aguarde";
  color: #4F4F4F;
  font-size: 16px;
  font-family: "Source Sans Pro", sans-serif;
  height: 36px;
  margin-bottom: 40px;
  text-align: center;
  width: 100%;
}
.text-loader:before {
  animation: fade 5s linear infinite;
  content: "";
  display: block;
}
@keyframes fade {
  0% {
    content: var(--text);
  }
  20% {
    content: var(--text) ".";
  }
  40% {
    content: var(--text) "..";
  }
  60% {
    content: var(--text) "..";
  }
  80% {
    content: var(--text) "...";
  }
  100% {
    content: var(--text) "...";
  }
}