/* app/frontend/src/utils/utils.scss */
@keyframes slide-bottom-up {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
.color-contrast-lower {
  color: hsl(0deg, 0%, 96%);
}
.color-contrast-low {
  color: hsl(212deg, 28%, 88%);
}
.color-contrast-medium {
  color: hsl(212deg, 19%, 60%);
}
.color-contrast-high {
  color: hsl(212deg, 27%, 18%);
}
.color-contrast-higher {
  color: hsl(240deg, 8%, 12%);
}
.bg-contrast-lower {
  background: hsl(0deg, 0%, 96%);
}
.bg-contrast-low {
  background: hsl(212deg, 28%, 88%);
}
.has-border {
  border-width: 1px;
  border-style: solid;
}
.border-contrast-low {
  border-color: hsl(212deg, 28%, 88%);
}
.color-primary {
  color: hsl(211deg, 98%, 63%);
}
.color-success {
  color: hsl(155deg, 84%, 45%);
}
.color-error {
  color: hsl(2deg, 64%, 58%);
}
.bg-success-lighter {
  background-color: hsl(155deg, 84%, 96%);
}
.color-grey-1 {
  color: #212d3a;
}
.color-grey-2 {
  color: #677a8d;
}
.color-grey-3 {
  color: #8598ac;
}
.color-grey-4 {
  color: #9fb2c6;
}
.color-grey-5 {
  color: #d8e0e9;
}
.color-grey-6 {
  color: #e9edf1;
}
.color-grey-7 {
  color: #f2f4f7;
}
.color-grey-8 {
  color: #f6f8f9;
}
.bg-blue-feint {
  background-color: #ecf5ff;
}
.grid {
  display: flex;
  flex-wrap: wrap;
}
.grid > * {
  flex-basis: 100%;
  max-width: 100%;
  min-width: 0;
}
.grid.gap {
  margin-bottom: -0.75em;
  margin-left: -0.75em;
}
.grid.gap > * {
  padding-bottom: 0.75em;
  padding-left: 0.75em;
}
.col {
  flex-grow: 1;
  flex-basis: 0;
  max-width: 100%;
}
@media (min-width: 992px) {
  .col-4\@md {
    flex-basis: 33.333333333%;
    max-width: 33.333333333%;
  }
}
.margin-0 {
  margin: 0;
}
.margin-bottom-0,
.mb-0 {
  margin-bottom: 0;
}
.margin-bottom-xs {
  margin-bottom: 0.5em;
}
.margin-bottom-md {
  margin-bottom: 1.25em;
}
.margin-right-xxxs {
  margin-right: 0.25em;
}
.margin-right-xxs {
  margin-right: 0.375em;
}
.margin-right-xs {
  margin-right: 0.5em;
}
.margin-top-0,
.mt-0 {
  margin-top: 0;
}
.margin-top-sm,
.mt-sm {
  margin-top: 0.75em;
}
.margin-top-md,
.mt-md {
  margin-top: 1.25em;
}
.padding-xs {
  padding: 0.5em;
}
.padding-sm {
  padding: 0.75em;
}
.padding-md {
  padding: 1.25em;
}
.padding-lg {
  padding: 2em;
}
.padding-xl {
  padding: 3.25em;
}
.text-xs {
  font-size: 0.625rem;
}
.text-sm {
  font-size: 0.75rem;
}
.text-root {
  font-size: 1rem;
}
.text-base {
  font-size: 0.875rem;
}
.text-md {
  font-size: 0.9375rem;
}
.text-lg {
  font-size: 1.125rem;
}
.text-xl {
  font-size: 1.5rem;
}
.text-xxl {
  font-size: 1.625rem;
}
.text-xxxl {
  font-size: 2.5rem;
}
.text-xxxxl {
  font-size: 3.125rem;
}
.text-strong {
  font-weight: 600;
}
.font-light {
  font-weight: 300;
}
.font-normal {
  font-weight: 400;
}
.font-bold {
  font-weight: 500;
}
.font-strong {
  font-weight: 600;
}
.font-fat {
  font-weight: 700;
}
.no-break {
  white-space: nowrap;
}
.line-height-small {
  line-height: 1.5;
}
.line-height-2 {
  line-height: 2;
}
.reset {
  background-color: transparent;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: inherit;
  line-height: inherit;
  appearance: none;
}
.reset i {
  font-style: normal;
}
.icon {
  display: inline-block;
  color: inherit;
  fill: currentColor;
  height: 1em;
  width: 1em;
  line-height: 1;
  flex-shrink: 0;
  max-width: initial;
}
.relative {
  position: relative;
}
.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.break-word {
  overflow-wrap: break-word;
  min-width: 0;
}
.flex {
  display: flex;
}
.inline-flex {
  display: inline-flex;
}
.flex-grow {
  flex-grow: 1;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.justify-end {
  justify-content: flex-end;
}
.flip-horizontal {
  transform: rotate(180deg);
}
.blur3 {
  filter: blur(3px);
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  margin-top: -5px;
  margin-left: -5px;
}
.animate-to {
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: translateY(25px);
  transform-origin: bottom center;
  opacity: 0;
  visibility: hidden;
  right: auto;
}
.animate-to.shown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.visibility-toggle {
  transition: opacity 0.3s ease;
}
.visibility-toggle.invisible {
  opacity: 0;
}
.tilted-image {
  border-radius: 3px;
  border: 3px solid #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transform: rotate(-3deg);
}
.media {
  display: flex;
  align-items: flex-start;
}
.media-body {
  flex: 1;
}
.rounded-10 {
  border-radius: 10px;
}
.strike-through {
  position: relative;
}
.strike-through::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  border-top: 1px solid #677A8D;
}

/* app/frontend/src/gosurance/index.scss */
*,
::before,
::after {
  box-sizing: border-box;
}
html {
  font-family:
    Poppins,
    "Helvetica Neue",
    Helvetica,
    Arial,
    sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -o-tab-size: 4;
     tab-size: 4;
}
body {
  font-family: inherit;
  line-height: inherit;
}
body,
blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre,
ol,
ul {
  margin: 0;
}
hr {
  height: 0;
  color: inherit;
}
abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}
b,
strong {
  font-weight: bolder;
}
code,
kbd,
pre,
samp {
  font-family:
    Menlo,
    Monaco,
    Consolas,
    "Courier New",
    monospace;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
table {
  text-indent: 0;
  border-color: inherit;
}
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}
button,
select {
  text-transform: none;
}
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}
::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
:-moz-focusring {
  outline: 1px dotted ButtonText;
}
:-moz-ui-invalid {
  box-shadow: none;
}
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}
a {
  color: inherit;
  text-decoration: inherit;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  vertical-align: middle;
}
img,
video {
  max-width: 100%;
  height: auto;
}
[hidden] {
  display: none;
}
ol,
ul {
  list-style: none;
  padding: 0;
}
summary {
  display: list-item;
  position: relative;
}
summary:first-of-type {
  list-style-type: none;
}
details[open] summary:after {
  content: "-";
}
.stroke-it {
  stroke: currentColor;
}
.fill-it {
  fill: currentColor;
}
