p.TextComponent {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  display: flex;
  align-items: center;
  white-space: pre-wrap;
  margin: 0;
  color: rgba(0, 0, 0, 0.6);
  line-height: 24px;
}
p.TextComponent a {
  color: #3166e9;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  outline: 0px solid rgba(0, 72, 255, 0.0705882353);
  border-radius: 4px;
  background: rgba(0, 72, 255, 0);
}
p.TextComponent a:hover {
  background: rgba(0, 72, 255, 0.0705882353);
  outline: 8px solid rgba(0, 72, 255, 0.0705882353);
}

h1.TextComponent {
  font-family: "Inter";
  font-weight: 900;
  font-size: 40px;
  line-height: 48px;
  color: rgba(0, 0, 0, 0.8);
}

h2.TextComponent {
  font-family: "Inter";
  font-weight: 600;
  font-size: 32px;
  line-height: 40px;
  color: rgba(0, 0, 0, 0.8);
}

h3.TextComponent {
  font-family: "Inter";
  font-weight: 600;
  font-size: 24px;
  line-height: 29px;
  color: rgba(0, 0, 0, 0.8);
}

h4.TextComponent {
  font-family: "Inter";
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  color: rgba(0, 0, 0, 0.8);
}

h5.TextComponent {
  font-family: "Inter";
  margin: 0;
  display: block;
  padding: 0;
  font-size: 15px;
  line-height: 19px;
  font-weight: 400;
  color: #777e8b;
}

label.TextComponent {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  display: flex;
  align-items: center;
  letter-spacing: 0.1px;
  cursor: pointer;
  /* body */
  color: #777e8b;
  /* Inside auto layout */
  flex: none;
  order: 0;
  flex-grow: 0;
}
label.TextComponent.error {
  background: rgb(255, 246, 246);
  border-radius: 5px;
  font-size: 13px;
  padding: 0 10px;
  text-align: left;
  color: rgb(187, 56, 56);
  font-weight: normal;
  margin: 10px;
}
.AutocompleteComponent {
  position: relative;
  font-size: 16px;
  min-width: 96px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  /* Track */
  /* Handle */
}
.AutocompleteComponent.open {
  z-index: 10000;
}
.AutocompleteComponent > label {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 16px;
  display: flex;
  align-items: center;
  pointer-events: none;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.AutocompleteComponent > label > div {
  transition: all 0.15s ease-out;
}
.AutocompleteComponent > label:before {
  content: attr(title);
  position: absolute;
  left: 15px;
  font-size: 14px;
  color: #777;
  transition: 300ms all;
}
.AutocompleteComponent > .ButtonComponent.small.icon {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 8px;
  margin: 6px 0;
  display: flex;
  align-items: center;
  background-color: #fff;
  color: rgba(0, 0, 0, 0.8);
  padding: 0;
  min-width: 0;
}
.AutocompleteComponent > .ButtonComponent.small.icon > i:before {
  font-size: 20px;
}
.AutocompleteComponent > input {
  /* Remove First */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 40px;
  border: none;
  border-radius: 8px;
  box-sizing: border-box;
  padding: 8px 16px;
  font-size: 16px;
  width: 100%;
}
.AutocompleteComponent > input:focus {
  outline: none;
  border: 2px solid blue;
}
.AutocompleteComponent > input:valid + label::before {
  content: attr(data-title);
  line-height: 20px;
  font-size: 12px;
  top: -10px;
  padding: 0 6px;
  left: 8px;
}
.AutocompleteComponent > input:focus + label > div {
  font-size: 12px;
  transform: translate(0, -50%);
  background-color: white;
  padding-left: 4px;
  padding-right: 4px;
  color: blue;
}
.AutocompleteComponent > input:-moz-placeholder-shown + label > div {
  font-size: 12px;
  transform: translate(0, -150%);
  background-color: white;
  padding-left: 4px;
  padding-right: 4px;
}
.AutocompleteComponent > input:focus + label > div, .AutocompleteComponent > input:not(input[value=""]) + label > div, .AutocompleteComponent > input:placeholder-shown + label > div {
  font-size: 12px;
  transform: translate(0, -150%);
  background-color: white;
  padding-left: 4px;
  padding-right: 4px;
}
.AutocompleteComponent > input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.3);
}
.AutocompleteComponent > input::placeholder {
  color: rgba(0, 0, 0, 0.3);
}
.AutocompleteComponent ::-webkit-scrollbar {
  width: 8px;
}
.AutocompleteComponent ::-webkit-scrollbar-track {
  background: transparent;
}
.AutocompleteComponent ::-webkit-scrollbar-thumb {
  background: #a5a5a5;
  border-radius: 8px;
}
.AutocompleteComponent ul {
  background-color: #fff;
  padding: 0;
  margin: 4px 0;
  top: 100%;
  width: 100%;
  position: absolute;
  border: #1c64f2 solid 2px;
  border-radius: 8px;
  box-shadow: rgba(60, 64, 67, 0.25) 0px 2px 12px 0px;
  overflow: auto;
  z-index: 100000;
  animation: AutocompleteAnimation 800ms cubic-bezier(0.075, 0.82, 0.165, 1) forwards;
  transform-origin: top;
  max-height: 160px;
}
@keyframes AutocompleteAnimation {
  0% {
    opacity: 0;
    transform: scale(0.5) translateY(40px);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.AutocompleteComponent ul li {
  display: block;
  text-align: left;
  padding: 0px 10px;
  line-height: 36px;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  cursor: pointer;
  font-size: 16px;
}
.AutocompleteComponent ul li:hover {
  background-color: #eee;
}
.IconComponent {
  text-align: center;
  display: inline-block;
}
.IconComponent.primary {
  background: blue;
}
.IconComponent.clickable {
  cursor: pointer;
}
.IconComponent.medium {
  font-size: 45px;
}
.ButtonComponent {
  padding: 8px 16px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  position: relative;
  font-size: 16px;
  box-sizing: border-box;
  border: 1px solid transparent;
  transition: all 500ms cubic-bezier(0.075, 0.82, 0.165, 1);
  outline: 0px solid rgba(0, 0, 0, 0.1);
  height: -moz-fit-content;
  height: fit-content;
  min-width: 64px;
  line-height: 20px;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.ButtonComponent.expand {
  justify-content: space-between;
}
.ButtonComponent.primary {
  background-color: #fff;
  color: #1c64f2;
  border-color: #1c64f2;
}
.ButtonComponent.adaptative {
  mix-blend-mode: difference;
}
.ButtonComponent > b {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #1c64f2;
  color: #fff;
  height: 24px;
  font-size: 14px;
  border-radius: 100px;
  line-height: 24px;
  text-align: center;
  width: 24px;
}
.ButtonComponent.small {
  font-size: 14px;
}
.ButtonComponent.small.icon {
  padding: 8px;
  min-width: 36px;
  align-items: center;
  justify-content: center;
}
.ButtonComponent.small.icon > i {
  font-size: 18px;
}
.ButtonComponent.large {
  font-size: 20px;
}
.ButtonComponent.large.icon {
  padding: 12px;
  min-width: 54px;
  align-items: center;
  justify-content: center;
}
.ButtonComponent.large.icon > i {
  font-size: 30px;
}
.ButtonComponent:focus {
  outline: 10px solid rgba(0, 0, 0, 0.1);
}
.ButtonComponent:hover {
  transform: scale(1.1);
}
.ButtonComponent[text=">"] {
  color: red;
}
.ButtonComponent.outlined {
  background-color: transparent;
  align-items: center;
  display: flex;
  border: 1px solid #fff;
  color: #fff;
}
.ButtonComponent.outlined .IconComponent:last-child {
  margin-right: -14px;
}
.ButtonComponent.next {
  margin-left: auto;
  background: #1c64f2;
  color: #fff;
  font-family: "Inter";
  font-style: normal;
  align-items: center;
  display: flex;
  font-weight: 500;
  font-size: 16px;
  border: 1px solid #1c64f2;
}
.ButtonComponent.next .IconComponent:last-child {
  margin-right: -14px;
}
.ButtonComponent[type=submit] {
  border-radius: 100px;
  display: flex;
  margin-left: 16px;
  background: #1c64f2;
  color: #fff;
  font-weight: 500;
  border: 1px solid #1c64f2;
  transform: scale(1);
}
.ButtonComponent[type=submit]::after {
  margin-right: -5px;
  margin-left: 10px;
  margin-top: -1px;
  font-weight: 900;
  font-size: 24px;
  content: "\f061";
  font-family: "Line Awesome Free";
  transition: all 500ms cubic-bezier(0.075, 0.82, 0.165, 1);
  transition-delay: 0ms;
}
.ButtonComponent[type=submit]:hover {
  filter: brightness(1.2);
  transform: scale(1.1);
}
.ButtonComponent[type=submit]:hover::after {
  transform: scale(1.1);
  margin-right: -5px;
  margin-left: 15px;
}
.ButtonComponent.back {
  border-radius: 100px;
  display: flex;
  background: #fff;
  color: #333;
  font-weight: 500;
  border: 1px solid #333;
}
.ButtonComponent.back::before {
  margin-left: -5px;
  margin-right: 10px;
  font-weight: 900;
  font-size: 22px;
  content: "\f060";
  font-family: "Line Awesome Free";
}
.ButtonComponent.back:hover {
  transform: scale(1.1);
}
.ButtonComponent[type=reset] {
  border-radius: 100px;
  display: flex;
  background: #fff;
  color: #333;
  font-weight: 500;
  border: 1px solid #333;
}
.ButtonComponent[type=reset]::before {
  margin-left: -5px;
  margin-right: 10px;
  font-weight: 900;
  font-size: 20px;
  padding: 0.5px;
  content: "\f2f9";
  font-family: "Line Awesome Free";
  transition: all 500ms cubic-bezier(0.075, 0.82, 0.165, 1);
}
.ButtonComponent[type=reset]:hover {
  transform: scale(1.1);
}
.ButtonComponent[type=reset]:hover::before {
  transform: rotate(225deg);
}
.ButtonComponent.delete {
  border-radius: 100px;
  display: flex;
  color: rgb(197, 93, 93);
  font-weight: 500;
  border: 1px solid rgb(197, 93, 93);
  background: rgb(255, 246, 246);
}
.ButtonComponent.delete::before {
  margin-left: -5px;
  margin-right: 10px;
  color: rgb(197, 93, 93);
  font-size: 22px;
  content: "\f2ed";
  font-family: "Line Awesome Free";
  font-weight: 900;
}
.ButtonComponent.delete > b {
  background-color: rgb(197, 93, 93);
}
.ButtonComponent.delete:hover {
  transform: scale(1.1);
}
.ButtonComponent.perspective {
  padding: 16px 16px;
  min-width: 210px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  margin: 0 25px;
  align-self: center;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  transform: scale(1.1);
  position: relative;
  z-index: 10;
  color: #021120;
}
.ButtonComponent.perspective.active {
  background: #1c64f2;
  color: #fff;
}
.ButtonComponent.perspective:after, .ButtonComponent.perspective:before {
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  border: 1px solid #eee;
  border-top: none;
  border-radius: 0 0 8px 8px;
  position: absolute;
  background: #fff;
  left: 8px;
  right: 8px;
  bottom: -5px;
  content: "";
  height: 3px;
  display: block;
  opacity: 0.8;
  pointer-events: none;
  transition: all 500ms cubic-bezier(0.075, 0.82, 0.165, 1);
}
.ButtonComponent.perspective:before {
  transition: all 500ms cubic-bezier(0.075, 0.82, 0.165, 1);
  left: 16px;
  right: 16px;
  bottom: -9px;
  opacity: 0.5;
}
.ButtonComponent.perspective:hover, .ButtonComponent.perspective:focus {
  transform: scale(1.1);
  outline: none;
}
.ButtonComponent.perspective:hover:after, .ButtonComponent.perspective:hover:before, .ButtonComponent.perspective:focus:after, .ButtonComponent.perspective:focus:before {
  bottom: -10px;
  height: 8px;
  opacity: 0.8;
}
.ButtonComponent.perspective:hover:before, .ButtonComponent.perspective:focus:before {
  bottom: -19px;
  opacity: 0.3;
}
.ButtonComponent.important {
  border-radius: 100px;
  background: #1c64f2;
  color: #fff;
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  border: 1px solid #1c64f2;
}
.ButtonComponent.important:hover {
  filter: brightness(1.2);
  transform: scale(1.1);
}
.ButtonComponent.icon {
  padding: 12px;
  min-width: 48px;
  vertical-align: top;
  align-items: center;
  justify-content: center;
}
.ButtonComponent.icon .adaptative {
  mix-blend-mode: difference;
}
.ButtonComponent.icon i {
  font-size: 24px;
}
.ButtonComponent.iconAndChildren {
  padding: 8px 16px;
  align-items: center;
}
.ButtonComponent.iconAndChildren i {
  padding-right: 8px;
  font-size: 22px;
}
.ButtonComponent.simple {
  font-size: 16px;
  border: transparent;
}
.ButtonComponent.simple i {
  margin-left: -15px;
  transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.ButtonComponent.simple:hover {
  filter: brightness(1.2);
  transform: scale(1.1);
}
.ButtonComponent.flat {
  background-color: transparent;
}
.BreadcrumbsComponent > div {
  align-items: center;
}
.BreadcrumbsComponent > div > h1 {
  font-weight: 800;
  font-size: 20px;
  margin: 0 0 8px;
}
.BreadcrumbsComponent > div > h1::after {
  margin: 0 16px;
  font-weight: 900;
  content: "\f061";
  font-family: "Line Awesome Free";
}
.BreadcrumbsComponent > div > h1:last-child {
  color: #003e6f;
}
.BreadcrumbsComponent > div > h1:last-child::after {
  content: "";
}
.BreadcrumbsComponent > div > h1:first-child {
  color: #000;
}
@media (min-width: 576px) {
  .BreadcrumbsComponent > div > h1 {
    font-size: 40px;
  }
}
.PieComponent {
  width: 200px;
  height: 200px;
  border-radius: 100px;
  /* shadow-md */
  margin: 0 auto;
  box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1), 0px 2px 4px -2px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  margin-bottom: 10px;
}
.PieComponent > span {
  color: rgba(0, 0, 0, 0.2);
}
.PieComponent > .TextComponent:first-child {
  margin-bottom: 4px;
  font-weight: 600;
  font-size: 32px;
  line-height: 40px;
  color: rgba(0, 0, 0, 0.8);
}
.EditorComponent {
  position: relative;
  font-size: 16px;
}
.EditorComponent > label {
  font-size: 16px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 16px;
  display: flex;
  align-items: center;
  pointer-events: none;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.EditorComponent > label > div {
  transition: all 0.15s ease-out;
}
.EditorComponent > label:before {
  content: attr(title);
  position: absolute;
  left: 15px;
  font-size: 14px;
  color: #777;
  transition: 300ms all;
}
.EditorComponent input {
  height: 48px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  box-sizing: border-box;
  padding: 8px 16px;
  font-size: 16px;
  width: 100%;
}
.EditorComponent input:focus {
  outline: none;
  border: 2px solid #1c64f2;
}
.EditorComponent input:valid + label::before {
  content: attr(data-title);
  line-height: 20px;
  font-size: 12px;
  top: -10px;
  padding: 0 6px;
  left: 8px;
}
.EditorComponent input:focus + label > div {
  font-size: 12px;
  transform: translate(0, -50%);
  background-color: white;
  padding-left: 4px;
  padding-right: 4px;
  color: #1c64f2;
}
.EditorComponent input:-moz-placeholder-shown + label > div {
  font-size: 12px;
  transform: translate(0, -150%);
  background-color: white;
  padding-left: 4px;
  padding-right: 4px;
}
.EditorComponent input:focus + label > div, .EditorComponent input:not(input[value=""]) + label > div, .EditorComponent input:placeholder-shown + label > div {
  font-size: 12px;
  transform: translate(0, -150%);
  background-color: white;
  padding-left: 4px;
  padding-right: 4px;
}
.EditorComponent input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.3);
}
.EditorComponent input::placeholder {
  color: rgba(0, 0, 0, 0.3);
}
.DonutComponent {
  width: 25px;
  height: 25px;
  overflow: hidden;
}
.DonutComponent svg {
  width: 25px;
  height: 25px;
  overflow: hidden;
}
.HolderComponent {
  font-family: "Inter", sans-serif;
  text-decoration: none;
  color: #021120;
  font-size: 16px;
  padding: 50px 0;
  display: flex;
  align-items: center;
}
.HolderComponent .IconComponent {
  border-radius: 25px;
  align-items: center;
  display: flex;
  justify-content: center;
  margin-right: 20px;
  height: 50px;
  width: 50px;
  color: #fff;
  display: flex;
  align-items: center;
  background: #4BA5FC;
}
.HolderComponent b {
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 29px;
  color: #021120;
  flex: none;
  order: 1;
  flex-grow: 0;
}
.WidgetComponent {
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  background-color: #fff;
  flex: 1;
}
.WidgetComponent .title {
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: #171725;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  padding: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  background: #fff;
  position: relative;
}
.WidgetComponent.banner {
  border-radius: 50px;
}
.WidgetComponent.banner > .Box {
  padding: 50px;
}
.MeterComponent {
  display: flex;
  flex: 1;
}
.MeterComponent ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  flex: 1;
  justify-content: center;
}
.MeterComponent ul li {
  max-width: 240px;
  width: 240px;
  max-width: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 30px;
}
.MeterComponent ul li:last-child {
  margin-right: 0;
}
.MeterComponent ul li .IconComponent {
  font-size: 30px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: #e6f2fc;
  margin-bottom: 20px;
}
.MeterComponent ul li strong {
  font-style: normal;
  font-weight: 900;
  font-size: 40px;
  line-height: 48px;
  color: #021120;
}
.MeterComponent ul li span {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #021120;
  text-align: center;
  white-space: pre-line;
}
.BoxComponent {
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
  box-sizing: border-box;
}
.BoxComponent.between {
  justify-content: space-between;
}
.BoxComponent.start {
  justify-content: flex-start;
  align-items: flex-start;
}
.BoxComponent.center {
  justify-content: center;
  align-items: center;
}
.BoxComponent.horizontal {
  flex-direction: row;
}
.BoxComponent.none {
  padding: 0;
}
.ZoneComponent {
  background: #f5f5f5;
  border-radius: 8px;
  padding: 30px;
  flex: 1;
}
.BlurComponent {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.BlurComponent > *::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  -webkit-backdrop-filter: blur(8px) grayscale(0) brightness(1);
          backdrop-filter: blur(8px) grayscale(0) brightness(1);
  z-index: 40;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
}
.CardComponent {
  display: flex;
  flex: 1;
  animation: CardAnimation 1200ms cubic-bezier(0.075, 0.82, 0.165, 1) forwards;
  opacity: 0;
}
.CardComponent > .ColumnComponent {
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition-property: transform, box-shadow;
  transition-duration: 1s;
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  cursor: pointer;
  padding: 16px;
}
.CardComponent > .ColumnComponent:hover {
  transform: scale(1.05);
  box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.2);
  outline: rgba(0, 72, 255, 0.1647058824) solid 4px;
}
.CardComponent > .ColumnComponent > h3.TextComponent {
  margin: 8px 0;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  color: rgba(0, 0, 0, 0.8);
}
.CardComponent > .ColumnComponent > p.TextComponent {
  margin: 0;
  font-size: 14px;
  color: #666;
}

@keyframes CardAnimation {
  0% {
    opacity: 0;
    transform: scale(0.9) translateY(40px) translateX(40px);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.CardComponent:nth-child(1n) {
  animation-delay: 0.1s;
}

.CardComponent:nth-child(2n) {
  animation-delay: 0.2s;
}

.CardComponent:nth-child(3n) {
  animation-delay: 0.3s;
}

.CardComponent:nth-child(4n) {
  animation-delay: 0.4s;
}

.CardComponent:nth-child(5n) {
  animation-delay: 0.5s;
}

.CardComponent:nth-child(6n) {
  animation-delay: 0.6s;
}

.CardComponent:nth-child(7n) {
  animation-delay: 0.7s;
}

.CardComponent:nth-child(8n) {
  animation-delay: 0.8s;
}

.CardComponent:nth-child(9n) {
  animation-delay: 0.9s;
}

.CardComponent:nth-child(10n) {
  animation-delay: 1s;
}
.ColumnComponent {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.ColumnComponent > * {
  margin-bottom: 10px;
}
.ColumnComponent > *:last-child {
  margin-bottom: 0;
}
.ColumnComponent.wrap {
  flex-wrap: wrap;
  flex-basis: "50%";
}
.AccordionComponent {
  padding: 0px;
  box-sizing: border-box;
  border-radius: 8px;
  background-color: #fff;
  position: relative;
  align-self: stretch;
}
.AccordionComponent:last-child {
  margin-bottom: none;
}
.AccordionComponent > span {
  display: flex;
  align-items: center;
  cursor: pointer;
  min-height: 36px;
  box-sizing: border-box;
}
.AccordionComponent > span > .TextComponent {
  margin-right: 16px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.AccordionComponent > span b {
  width: 19px;
  height: 15px;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  padding: 2px 0px;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  background-color: #1854a1;
  color: #fff;
  margin-left: auto;
}
.AccordionComponent > span > .ButtonComponent {
  background-color: transparent;
  color: rgba(0, 0, 0, 0.5);
  padding: 0;
}
.AccordionComponent > span > div {
  border-radius: 22px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
  height: 24px;
  min-width: 24px;
  margin-right: 12px;
  line-height: 24px;
  font-weight: 600;
  overflow: hidden;
}
.AccordionComponent > span > div > i {
  width: 24px;
  height: 24px;
  background-color: #003e6f;
  color: #fff;
}
.AccordionComponent > span > div > i::before {
  position: relative;
  top: -4px;
  font-size: 14px;
}
.AccordionComponent > span > strong {
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  display: block;
  overflow: hidden;
}
.AccordionComponent > span::after {
  margin-left: 10px;
  font-weight: 900;
  font-size: 16px;
  content: "\f107";
  font-family: "Line Awesome Free";
  transition: all 500ms cubic-bezier(0.075, 0.82, 0.165, 1);
}
.AccordionComponent > .description {
  padding-left: 16px;
  padding-top: 4px;
  line-height: 1.5;
}
.AccordionComponent.opened span::after {
  transform: rotate(180deg);
}
.AccordionComponent.disabled > div {
  cursor: default;
}
.AccordionComponent.disabled > div:hover {
  background-color: #fff;
}
.SelectComponent {
  border: 1px solid rgba(0, 0, 0, 0.1);
  min-width: 96px;
  display: flex;
  align-items: center;
  border-radius: 8px;
  cursor: pointer;
  height: 40px;
  position: relative;
  background-color: #fff;
  /* Track */
  /* Handle */
}
.SelectComponent > p.TextComponent {
  font-size: 16px;
  padding: 0 16px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.SelectComponent i {
  margin-left: auto;
  font-size: 16px;
}
.SelectComponent::after {
  margin-left: auto;
  padding: 0 8px;
  font-weight: 900;
  font-size: 18px;
  line-height: 36px;
  margin-right: 6px;
  content: "\f107";
  font-family: "Line Awesome Free";
  transition: all 500ms cubic-bezier(0.075, 0.82, 0.165, 1);
}
.SelectComponent.opened::after {
  transform: rotate(180deg);
}
.SelectComponent.up ul {
  top: auto;
  bottom: 20px;
}
.SelectComponent ::-webkit-scrollbar {
  width: 8px;
}
.SelectComponent ::-webkit-scrollbar-track {
  background: transparent;
}
.SelectComponent ::-webkit-scrollbar-thumb {
  background: #a5a5a5;
  border-radius: 8px;
}
.SelectComponent ul {
  background-color: #fff;
  padding: 0;
  margin: 4px 0;
  top: 100%;
  width: 100%;
  min-width: -moz-max-content;
  min-width: max-content;
  position: absolute;
  border: #1c64f2 solid 2px;
  border-radius: 8px;
  box-shadow: rgba(60, 64, 67, 0.25) 0px 2px 12px 0px;
  overflow: auto;
  z-index: 100000;
  animation: AutocompleteAnimation 800ms cubic-bezier(0.075, 0.82, 0.165, 1) forwards;
  transform-origin: top;
  max-height: 160px;
}
@keyframes AutocompleteAnimation {
  0% {
    opacity: 0;
    transform: scale(0.5) translateY(40px);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.SelectComponent ul li {
  display: block;
  text-align: left;
  padding: 0px 10px;
  line-height: 36px;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  cursor: pointer;
  font-size: 16px;
}
.SelectComponent ul li:hover {
  background-color: #eee;
}
.NumberComponent {
  display: flex;
  overflow: hidden;
  color: #000;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}
.NumberComponent.disabled > input, .NumberComponent.disabled > .measureTag {
  background-color: rgba(239, 239, 239, 0.3);
  color: #777e8b;
  cursor: not-allowed;
}
.NumberComponent > i {
  color: rgba(0, 0, 0, 0.85);
  width: 35px;
  min-height: 40px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
}
.NumberComponent > i:hover {
  background: rgba(0, 0, 0, 0.1);
}
.NumberComponent > i.disabled {
  background-color: rgba(239, 239, 239, 0.3);
  color: #777e8b;
  cursor: not-allowed;
}
.NumberComponent > div {
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  min-width: 56px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 2;
}
.NumberComponent .measureTag {
  color: #a9a9a9;
  padding-left: 5px;
  padding-right: 5px;
  font-size: 14px;
  min-width: 24px;
}
.NumberComponent.tag input[type=number] {
  text-align: end;
}
.NumberComponent input[type=number],
.NumberComponent span {
  border: none;
}
.NumberComponent input[type=number]::-webkit-outer-spin-button, .NumberComponent input[type=number]::-webkit-inner-spin-button,
.NumberComponent span::-webkit-outer-spin-button,
.NumberComponent span::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.NumberComponent input[type=number] {
  width: 2em;
  font-size: 16px;
  color: #555;
  border: none;
  outline: 0;
  text-align: center;
  text-overflow: ellipsis;
  overflow: hidden;
}
.NumberComponent > div > span {
  position: absolute;
  left: -9999px;
  display: inline-block;
  min-width: 1em;
}
.LogotypeIconComponent {
  z-index: 100;
  display: block;
  overflow: hidden;
  position: relative;
}
.LogotypeIconComponent .shapes {
  position: relative;
  width: 0px;
  margin-left: 4px;
  height: 70px;
  animation: Shape 4s cubic-bezier(0.2, 0.82, 0.165, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  animation-delay: 2s;
  animation-fill-mode: forwards;
}
@media (max-width: 668px) {
  .LogotypeIconComponent .shapes {
    height: 50px;
  }
}
@keyframes Shape {
  0% {
    width: 0;
  }
  100% {
    width: 76px;
  }
}
@keyframes ShapePhone {
  0% {
    width: 0;
  }
  100% {
    width: 56px;
  }
}
@media (max-width: 668px) {
  .LogotypeIconComponent .shapes {
    animation: ShapePhone 4s cubic-bezier(0.2, 0.82, 0.165, 1);
    animation-delay: 2s;
    animation-fill-mode: forwards;
  }
}
.LogotypeIconComponent img {
  position: absolute;
  left: 0;
  top: 0;
  width: 70px;
  height: 70px;
  display: block;
}
@media (max-width: 668px) {
  .LogotypeIconComponent img {
    width: 50px;
    height: 50px;
  }
}
.LogotypeIconComponent img:first-child {
  width: 31px;
  margin: 19.5px;
  height: 31px;
  animation: LayoutLogotypeScale 6s cubic-bezier(0.075, 0.82, 0.165, 1);
  animation-delay: 3s;
  opacity: 0;
  transform-origin: center;
  transform: rotate(0deg);
  animation-fill-mode: forwards;
}
@media (max-width: 668px) {
  .LogotypeIconComponent img:first-child {
    width: 20px;
    height: 20px;
    margin: 15.5px;
  }
}
@keyframes LayoutLogotypeScale {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  100% {
    opacity: 1;
    transform: scale(0.9);
  }
}
.LogotypeIconComponent img:last-child {
  animation: rotate 4s cubic-bezier(0.075, 0.82, 0.165, 1);
  animation-delay: 2s;
  opacity: 0;
  transform-origin: center;
  transform: rotate(0deg);
  animation-fill-mode: forwards;
}
@keyframes rotate {
  0% {
    opacity: 0;
    transform: scale(1) rotate(0deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(1800deg);
  }
}
.LogotypeComponent {
  display: flex;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}
.LogotypeComponent .layout {
  position: relative;
  color: #fff;
  display: flex;
  flex-wrap: nowrap;
  gap: 0px;
  opacity: 1;
  align-items: center;
  justify-content: flex-start;
}
.LogotypeComponent .layout.loading {
  opacity: 0;
}
.LogotypeComponent .layout .text {
  border-left: 1px solid rgba(255, 255, 255, 0.257);
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.LogotypeComponent .layout .title {
  display: flex;
  opacity: 0;
  align-items: flex-end;
  justify-content: flex-start;
}
.LogotypeComponent .layout .title img {
  width: 250px;
  display: block;
}
@media (max-width: 768px) {
  .LogotypeComponent .layout .title img {
    width: 200px;
  }
}
@media (max-width: 668px) {
  .LogotypeComponent .layout .title img {
    width: 150px;
  }
}
.LogotypeComponent .layout .version {
  font-size: 12px;
  display: flex;
  font-size: 9px;
  font-weight: 100;
  align-self: flex-start;
  color: rgba(255, 255, 255, 0.523);
  align-items: center;
  gap: 10px;
}
.LogotypeComponent .layout .version .box {
  display: flex;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 3px 3px;
  overflow: hidden;
}
.LogotypeComponent .layout .version .box .number {
  border-radius: 3px;
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.5);
  padding: 5px 10px;
  background: rgba(0, 0, 0, 0.8);
}
.LogotypeComponent .layout .version .box .release {
  padding: 5px 10px;
}
@media (max-width: 668px) {
  .LogotypeComponent .layout .version .since {
    display: none;
  }
}
.LogotypeComponent .layout .version b {
  font-weight: bold;
  color: rgb(115, 153, 255);
}
.LogotypeComponent .layout.success .title {
  animation: SucessTitle 6s cubic-bezier(0.075, 0.82, 0.165, 1);
  opacity: 0;
  transform-origin: center;
  transform: rotate(0deg);
  animation-fill-mode: forwards;
}
@keyframes SucessTitle {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}
.LogotypeComponent .layout .description {
  font-size: 16px;
  opacity: 0.8;
  margin-bottom: 5px;
  font-weight: 300;
  line-height: 1;
}
@media (max-width: 768px) {
  .LogotypeComponent .layout .description {
    font-size: 13px;
  }
}
@media (max-width: 668px) {
  .LogotypeComponent .layout .description {
    font-size: 10px;
  }
}
@media (max-width: 568px) {
  .LogotypeComponent .layout .description {
    display: none;
  }
}
.LogotypeComponent .layout.success .description {
  animation: SucessDescription 6s cubic-bezier(0.075, 0.82, 0.165, 1);
  opacity: 0;
  transform-origin: center;
  animation-delay: 1s;
  transform: rotate(0deg);
  animation-fill-mode: forwards;
}
@keyframes SucessDescription {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 0.6;
    transform: translateY(0px);
  }
}
.LogotypeComponent .layout > button {
  height: 60px;
  width: 60px;
  position: absolute;
  right: 100px;
  top: 0;
  background: rgba(255, 255, 255, 0.129);
  font-size: 25px;
  text-align: center;
  line-height: 60px;
  color: #fff;
  border-radius: 100px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .LogotypeComponent .layout > button {
    background: none;
    right: 0;
  }
}
.LogotypeComponent .layout > button:hover {
  cursor: pointer;
  background: rgba(0, 0, 0, 0.671);
}
.LogotypeComponent .burger {
  margin-left: auto;
  position: relative;
  width: 60px;
  height: 60px;
  z-index: 100;
}
.LogotypeComponent .burger > i {
  height: 60px;
  width: 60px;
  font-size: 40px;
  z-index: 1000;
  line-height: 60px;
  position: relative;
  text-align: center;
  cursor: pointer;
  color: #fff;
  z-index: 10000;
}
.LogotypeComponent .burger > i.la-times {
  border-radius: 10px;
  color: #000;
}
.LogotypeComponent .burger .menu {
  position: absolute;
  top: 0px;
  right: 0px;
  padding: 10px 10px;
  border-right: 60px solid white;
  border-radius: 10px;
  background: rgb(255, 255, 255);
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.5);
  transform-origin: center;
  transform: rotate(0deg);
  animation-fill-mode: forwards;
  animation: MenuShow 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
}
@keyframes MenuShow {
  0% {
    opacity: 0;
    transform: translateX(50px) skewX(-3deg) rotate(2deg);
  }
  100% {
    opacity: 1;
  }
}
.LogotypeComponent .burger .menu .item {
  cursor: pointer;
  align-items: center;
  padding: 9px 20px;
  display: flex;
  white-space: nowrap;
  text-decoration: none;
  font-size: 15px;
  color: rgb(0, 0, 0);
  gap: 15px;
}
.LogotypeComponent .burger .menu .item:hover {
  background: #eee;
  border-radius: 10px;
}
.LogotypeComponent .burger .menu .item:last-child {
  border-bottom: none;
}
.LogotypeComponent .burger .menu .item i {
  font-size: 30px;
  opacity: 0.5;
}

section > .LogotypeComponent {
  padding-left: 30px;
}
.LinkComponent {
  display: flex;
  align-items: center;
  font-family: "Inter", sans-serif;
  text-decoration: none;
  font-size: 16px;
}
.LogotypeComponent {
  font-size: 0;
}
.LogotypeComponent .LinkComponent {
  font-size: 0;
  display: block;
}
.CounterComponent {
  /* Auto layout */
  display: flex;
  align-items: center;
  padding: 16px;
  box-sizing: border-box;
  width: auto;
  overflow: hidden;
  /* background/green light */
  background: rgba(45, 170, 120, 0.08);
  border-radius: 8px;
}
.CounterComponent em {
  display: flex;
  align-items: center;
  padding: 0 8px;
  gap: 8px;
  width: auto;
  min-width: 80px;
  padding: 8px;
  font-weight: 600;
  font-size: 24px;
  background: #2daa78;
  border-radius: 4px;
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  flex: none;
  order: 0;
  flex-grow: 0;
  margin-right: 16px;
}
.CounterComponent b {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: #2daa78;
  /* Inside auto layout */
  flex: none;
  order: 1;
  flex-grow: 1;
}
.CounterComponent--small b {
  font-size: 12px;
  line-height: 14px;
}
.SpaceComponent {
  display: block;
  border: none;
  margin: 0;
  padding: 0;
}
.SearchComponent {
  --searchComponent-iconSize: 44px;
  padding: 0px;
  position: relative;
  min-width: 240px;
}
.SearchComponent .box {
  position: relative;
}
.SearchComponent .box::before {
  position: absolute;
  font-weight: 900;
  font-size: 20px;
  top: 50%;
  transform: scaleX(-1) translate(-50%, -50%);
  content: "\f002";
  font-family: "Line Awesome Free";
  color: rgba(0, 0, 0, 0.7);
}
.SearchComponent .box > input {
  border-radius: 24px;
  display: block;
  width: 100%;
  font-size: 16px;
  padding: 6px var(--searchComponent-iconSize);
  box-sizing: border-box;
  border: none;
  line-height: 24px;
  outline: none;
  border: 2px solid rgba(0, 0, 0, 0.1);
}
.SearchComponent .box > i {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(-50%, -50%);
  font-size: 20px;
  color: rgba(0, 0, 0, 0.7);
}
.SearchComponent.absolute {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.SearchComponent.absolute .box {
  max-width: 600px;
  width: 100%;
  box-shadow: 0px 40px 80px rgba(0, 0, 0, 0.08), 0px 16px 30px rgba(0, 0, 0, 0.08), 0px 10px 18px rgba(0, 0, 0, 0.08), 0px 5px 10px rgba(0, 0, 0, 0.08), 0px 3px 6px rgba(0, 0, 0, 0.08), 0px 1px 2px rgba(0, 0, 0, 0.08);
  border-radius: 100px;
  margin: -20px auto 0;
}
.SearchComponent.absolute .box > input {
  border: none;
  width: 100%;
}
.TooltipComponent > span {
  margin-bottom: 32px;
  position: absolute;
  background-color: #fff;
}
.TooltipComponent > span::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 8px 8px 8px;
  border-color: transparent transparent #fff transparent;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
}
.DrawerContainer {
  width: 0;
  position: fixed;
  z-index: 10000;
}

.DrawerComponent {
  height: 100vh;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
  transform: translate(-280px);
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
}
.DrawerComponent .LogotypeComponent {
  justify-content: center;
  padding: 16px;
  border-bottom: 1px solid #e0e0e0;
}
.DrawerComponent > div > ul {
  list-style: none;
  padding: 8px 0;
}
.DrawerComponent > div > ul > li :hover {
  color: #1c64f2;
}
.DrawerComponent > div > ul > li > a {
  padding: 12px 16px;
  width: 100%;
}
.DrawerComponent > div > ul > li > div > span {
  padding: 16px 16px;
  padding-right: 32px;
}
.DrawerComponent > div > ul > li > div > span > p {
  width: 100%;
}
.DrawerComponent > div > ul > li > div.opened > div {
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}
.DrawerComponent > div > ul > li > div.opened > div .BoxComponent {
  padding-bottom: 32px;
  color: rgba(0, 0, 0, 0.8);
}
.DrawerComponent > div > ul > li > div.opened > div .BoxComponent .SelectComponent {
  color: rgba(0, 0, 0, 0.8);
}
.DrawerComponent > div > ul > li > div > div {
  padding: 0 16px;
  background-color: #fafafa;
}
.DrawerComponent > div > ul > li > div > div > a {
  padding: 16px 0;
  border-top: 1px solid #e0e0e0;
  color: #1c64f2;
}
.DrawerComponent > div > ul > li > div > div > a:first-child {
  border-top: none;
}
.DrawerComponent.open {
  width: 280px;
  margin: 0;
  transform: translate(0);
  box-shadow: unset;
  box-shadow: 5px 8px 16px rgba(0, 0, 0, 0.2);
}

.DrawerOverlay {
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  overflow-y: auto;
}
.BubbleComponent {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  position: absolute;
  height: 22px;
  width: 22px;
  margin: 4px;
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  top: -12px;
  right: -12px;
  text-align: center;
  text-transform: uppercase;
  /* card/green */
}
.BubbleComponent > span {
  color: red;
}
.BubbleComponent.info {
  color: #fff;
  background: #1c64f2;
}
.BubbleComponent.completed {
  color: #fff;
  background: rgb(0, 136, 104);
}
.BubbleComponent.declined {
  color: #e31515;
  background: rgba(227, 21, 21, 0.2);
}
.BubbleComponent.waiting {
  color: #ff9900;
  background: rgba(255, 153, 0, 0.2);
}
.ListComponent {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
}
.ListComponent::before {
  content: attr(title);
  display: block;
  /* body 14 semi */
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 150%;
  /* identical to box height, or 21px */
  text-transform: uppercase;
  /* body */
  color: #777E8B;
  margin-bottom: 16px;
}
.ListComponent > li {
  margin-bottom: 16px;
  display: block;
}
.ListComponent > li:last-child {
  margin-bottom: 0;
}
.ListComponent > li > a {
  /* body */
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  /* identical to box height, or 150% */
  /* body */
  color: #777E8B;
}
.MenuComponent {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  margin: 0;
  height: 100%;
}
.MenuComponent.showArrow::after {
  margin: 2px 2px 0 14px;
  font-weight: 900;
  font-size: 14px;
  content: "\f107";
  font-family: "Line Awesome Free";
  transition: all 500ms cubic-bezier(0.075, 0.82, 0.165, 1);
}
.MenuComponent.open::after {
  transform: rotate(180deg);
}
.MenuComponent ul {
  background-color: #fff;
  padding: 8px 16px;
  top: 100%;
  width: 100%;
  min-width: -moz-max-content;
  min-width: max-content;
  position: absolute;
  border-radius: 8px;
  box-shadow: rgba(60, 64, 67, 0.25) 0px 2px 12px 0px;
  z-index: 100000;
  animation: MenuAnimation 800ms cubic-bezier(0.075, 0.82, 0.165, 1) forwards;
  transform-origin: top;
  margin-top: 8px;
}
@keyframes MenuAnimation {
  0% {
    opacity: 0;
    transform: scale(0.5) translateY(40px);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.MenuComponent ul li {
  display: block;
  text-align: left;
  padding: 12px 0;
  min-width: 96px;
  cursor: pointer;
  font-size: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.MenuComponent ul li:first-child {
  border-top: none;
}
.MenuComponent ul li .TextComponent {
  min-height: 0;
  line-height: inherit;
}
.MenuComponent ul li a .TextComponent:hover,
.MenuComponent ul li a:hover {
  color: #1c64f2;
}
.MenuComponent.open-to-left > div > ul {
  right: 0;
}
.MenuComponent.open-to-right > div > ul {
  left: 0;
}
.NavigationComponent {
  display: flex;
  align-items: center;
  justify-content: space-around;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
  font-size: 14px;
  width: 100%;
  max-width: 1280px;
  background-color: #fff;
  margin: 0 auto;
  padding: 0 16px;
  position: relative;
}
.NavigationComponent p.TextComponent {
  font-size: 14px;
}
.NavigationComponent .ButtonComponent.icon {
  color: rgba(0, 0, 0, 0.85);
}
.NavigationComponent * {
  white-space: nowrap;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.NavigationComponent > div {
  position: relative;
  display: flex;
  align-items: center;
}
.NavigationComponent > div:first-child {
  padding-right: 36px;
}
.NavigationComponent > div > .ButtonComponent {
  margin-right: 16px;
}
.NavigationComponent > div > div {
  margin-left: 36px;
}
.NavigationComponent > div > div:first-child {
  margin-left: 0;
}
.NavigationComponent > div > ul {
  display: flex;
  align-items: center;
  margin: 0;
  margin-left: 36px;
}
.NavigationComponent > div > ul > li {
  margin-left: 32px;
  display: flex;
  border-bottom: 3px solid transparent;
}
.NavigationComponent > div > ul > li > * {
  padding: 24px 0;
}
.NavigationComponent > div > ul > li > * > p:active,
.NavigationComponent > div > ul > li > * i:active {
  opacity: 0.5;
}
.NavigationComponent > div > ul > li > div > span > .BubbleComponent {
  z-index: 50;
  top: 10px;
  right: -12px;
}
.NavigationComponent > div > ul > li > a {
  color: rgba(0, 0, 0, 0.9);
}
.NavigationComponent > div > ul > li:first-child {
  margin-left: 0;
}
.NavigationComponent > div > ul > li:hover {
  border-bottom: 3px solid rgba(0, 0, 0, 0.6);
}
.NavigationComponent > div > ul > li:hover > a > p {
  color: rgba(0, 0, 0, 0.9);
}
.NavigationComponent.dark {
  background-color: #212121;
}
.NavigationComponent.dark .ButtonComponent.icon {
  color: #fff;
}
.NavigationComponent.dark div > .LogotypeComponent {
  filter: brightness(0) invert(1);
}
.NavigationComponent.dark div > .SearchComponent > div input {
  background-color: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: #fff;
}
.NavigationComponent.dark div > .SearchComponent > div input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.9);
}
.NavigationComponent.dark div > .SearchComponent > div input::placeholder {
  color: rgba(255, 255, 255, 0.9);
}
.NavigationComponent.dark div > .SearchComponent > div::before {
  color: rgba(255, 255, 255, 0.9);
}
.NavigationComponent.dark div > .SearchComponent > div > i {
  color: rgba(255, 255, 255, 0.9);
}
.NavigationComponent.transparent {
  background-color: transparent;
  box-shadow: none;
  border-bottom: none;
}
.NavigationComponent.transparent .ButtonComponent.icon {
  color: #fff;
}
.NavigationComponent.transparent div > .LogotypeComponent {
  filter: brightness(0) invert(1);
}
.NavigationComponent.transparent div > .SearchComponent > div input {
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #fff;
}
.NavigationComponent.transparent div > .SearchComponent > div input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.NavigationComponent.transparent div > .SearchComponent > div input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.NavigationComponent.transparent div > .SearchComponent > div::before {
  color: rgba(255, 255, 255, 0.9);
}
.NavigationComponent.transparent div > .SearchComponent > div > i {
  color: rgba(255, 255, 255, 0.9);
}
.NavigationComponent.tinted {
  background: linear-gradient(to bottom, rgba(0, 50, 110, 0.5), 70%, transparent);
  box-shadow: none;
  border-bottom: none;
}
.NavigationComponent.tinted > ol {
  filter: saturate(1);
  background-color: rgba(0, 0, 0, 0);
}
.NavigationComponent.tinted div > .LogotypeComponent {
  filter: brightness(0) invert(1);
}
.NavigationComponent.tinted div > .SearchComponent > div > input {
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #fff;
}
.NavigationComponent.tinted div > .SearchComponent > div > input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.NavigationComponent.tinted div > .SearchComponent > div > input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.NavigationComponent.tinted div > .SearchComponent > div::before {
  color: rgba(255, 255, 255, 0.9);
}
.NavigationComponent.tinted div > .SearchComponent > div > i {
  color: rgba(255, 255, 255, 0.9);
}
.NavigationComponent nav {
  position: absolute;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
  padding: 10px;
  border-radius: 10px;
  flex-direction: column;
  display: flex;
  min-width: 200px;
  background-color: #fff;
}
.NavigationComponent nav nav {
  filter: invert(1);
  top: 80%;
  right: -20%;
}
.NavigationComponent > .ToolboxContainer {
  background-color: #fff;
  display: flex;
  position: absolute;
  right: 0;
  top: 100%;
  left: 0;
  padding: 16px;
}
.NavigationComponent > .ToolboxContainer > div {
  width: 100%;
}
.PartComponent {
  max-width: 1440px;
  margin: 0 auto;
}
.ModalComponent {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
}
.ModalComponent > div {
  margin: 30px auto;
  max-height: calc(100vh - 60px);
  overflow: hidden;
  max-width: 960px;
  background: #fafafa;
  min-width: 400px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  display: flex;
  flex-direction: column;
}
.ModalComponent > div > div:first-child {
  border-radius: 10px 10px 0 0;
  text-align: center;
  padding: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  background: #fff;
  position: relative;
}
.ModalComponent > div > div:first-child > i {
  height: 44px;
  width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 25px;
  transition: all 1s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.ModalComponent > div > div:first-child > i:hover {
  color: #1c64f2;
  transform: rotate(90deg) scale(1.3);
}
.ModalComponent > div > div:last-child {
  flex: 1;
  height: auto;
  padding: 16px;
  overflow-y: auto;
}
@media (max-width: 400px) {
  .ModalComponent {
    min-width: 0px !important;
  }
}
@media (max-width: 840px) {
  .ModalComponent > div > div:first-child {
    text-align: left;
  }
  .ModalComponent > div:first-child {
    justify-content: flex-start;
  }
  .ModalComponent > div > div:last-child {
    padding: 10px;
  }
  .ModalComponent > div {
    position: fixed;
    top: 0;
    bottom: 0;
    bottom: 0;
    overflow-y: hidden;
    margin: 0;
    padding: 0;
    max-width: 100%;
    width: 100%;
    border-radius: 0;
    display: flex;
    flex-direction: column;
  }
  .ModalComponent > div > div:last-child {
    flex: 1;
    overflow-y: scroll;
  }
}
.RowComponent {
  display: flex;
  flex-direction: row;
  flex: 1;
  padding: 10px;
}
.RowComponent > * {
  margin: 10px;
}
.RowComponent > *:last-child {
  margin-right: 0;
}
.RowComponent.start {
  align-items: flex-start;
  justify-content: flex-start;
}
.RowComponent.center {
  justify-content: center;
  align-items: center;
}
.RowComponent.end {
  justify-content: flex-end;
}
.RowComponent.wrap {
  flex-wrap: wrap;
}
.CarrouselComponent {
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  overflow: hidden;
  width: 100%;
}
.CarrouselComponent > button {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  border: none;
  pointer-events: none;
  width: 100px;
  background: none;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.CarrouselComponent > button::before {
  pointer-events: all;
  position: absolute;
  background-color: #fff;
  font-weight: 900;
  font-size: 20px;
  font-family: "Line Awesome Free";
  transition: all 500ms cubic-bezier(0.075, 0.82, 0.165, 1);
  z-index: 1;
  height: 48px;
  width: 48px;
  background-color: #eee;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  border-radius: 50%;
  line-height: 48px;
  border: none;
  right: 5px;
}
.CarrouselComponent > button::after {
  content: "";
  display: block;
  height: 100%;
  width: 100px;
  position: absolute;
  background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
}
.CarrouselComponent > button:first-child {
  left: -20px;
}
.CarrouselComponent > button:first-child.active {
  opacity: 1;
  left: 0px;
}
.CarrouselComponent > button:first-child::before {
  content: "\f104";
}
.CarrouselComponent > button:first-child::after {
  right: 0;
  top: 0;
}
.CarrouselComponent > button:last-child {
  right: -20px;
}
.CarrouselComponent > button:last-child::before {
  content: "\f105";
}
.CarrouselComponent > button:last-child.active {
  opacity: 1;
  right: 0px;
}
.CarrouselComponent > button:last-child::after {
  right: 0;
  top: 0;
  transform: rotate(180deg);
}
.CarrouselComponent > ul {
  overflow-x: auto;
  padding: 0;
  margin: 0;
  cursor: grab;
  white-space: nowrap;
  position: relative;
  scroll-behavior: smooth;
  display: block;
  box-sizing: border-box;
  overflow: hidden;
  overflow-x: scroll;
  font-size: 0;
  padding-bottom: 30px;
}
.CarrouselComponent > ul::-webkit-scrollbar {
  width: 20px;
  height: 10px;
  background: transparent;
}
.CarrouselComponent > ul::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 10px;
}
.CarrouselComponent > ul::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}
.CarrouselComponent > ul > li {
  padding-right: 30px;
  position: relative;
  display: inline-block;
  overflow: hidden;
  transition: all 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  padding-top: 20px;
}
.CarrouselComponent > ul > li:hover {
  padding-top: 0px;
  padding-bottom: 20px;
}
.CarrouselComponent > ul > li:last-child {
  padding-right: 0;
}
.BackgroundComponent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100%;
}
/* Input */
input.CheckboxComponent[type=checkbox] {
  width: 21px;
  min-width: 21px;
  height: 21px;
  outline: none;
  display: inline-block;
  position: relative;
  margin: 8px;
  margin-right: 16px;
  cursor: pointer;
  border: 1px solid #d1d5db;
  background: #fff;
  border-radius: 6px;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.2s;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

label > input.CheckboxComponent[type=checkbox] {
  white-space: normal;
  font-size: 14px;
  line-height: 20px;
  display: inline-block;
  vertical-align: top;
  font-weight: 600;
}

label > img {
  width: 20px;
  height: 20px;
  margin: 0 8px 0 0;
  border-radius: 2px;
}

input.CheckboxComponent[type=checkbox]:after {
  border: solid #fff;
  border-width: 0 2px 2px 0;
  position: absolute;
  content: "";
  width: 5px;
  height: 10px;
  left: 6px;
  display: none;
  top: 2px;
  transform: rotate(45deg);
  transition: transform 0.6s cubic-bezier(0.2, 0.85, 0.32, 1.2), opacity 0.3s;
}

/* Disabled */
input.CheckboxComponent[type=checkbox]:disabled {
  opacity: 0.8;
}

/* Focus */
input.CheckboxComponent[type=checkbox]:focus {
  box-shadow: 0 0 0 2px rgba(157, 157, 157, 0.5);
}

input.CheckboxComponent[type=checkbox]:checked {
  background: #1c64f2;
}

input.CheckboxComponent[type=checkbox]:checked:after {
  display: block;
}
input.RadioComponent[type=radio] + label {
  margin-right: 20px;
  font-size: 14px;
  line-height: 18px;
  display: inline-block;
  margin-left: 15px;
  vertical-align: top;
  cursor: pointer;
}

input.RadioComponent[type=radio]:after {
  border-top: none;
  border-left: none;
  position: absolute;
  content: "";
  border-radius: 20px;
  background: #fff;
  display: block;
  width: 10px;
  height: 10px;
  left: 2px;
  opacity: 0;
  top: 2px;
  transform: scale(2);
  transform: scale(0.5) rotate(50deg);
  transition: transform 0.6s cubic-bezier(0.2, 0.85, 0.32, 1.2), opacity 0.3s;
}

input.RadioComponent[type=radio] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  outline: none;
  display: inline-block;
  vertical-align: top;
  position: relative;
  margin: 0;
  cursor: pointer;
  border: 1px solid #000;
  background: #fff;
  border-radius: 24px;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.2s;
}

/* Disabled */
input.RadioComponent[type=radio]:disabled {
  opacity: 0.8;
}

input.RadioComponent[type=radio]:after,
input.RadioComponent[type=radio]::before {
  box-sizing: inherit;
}

label > input.RadioComponent[type=radio] {
  white-space: nowrap;
  margin-right: 12px;
  font-weight: 600;
  cursor: pointer;
}

/* Focus */
input.RadioComponent[type=radio]:focus {
  box-shadow: 0 0 0 2px rgba(157, 157, 157, 0.5);
}

input.RadioComponent[type=radio]:checked {
  background: #444;
}

input.RadioComponent[type=radio]:checked:after {
  opacity: 1;
  transform: rotate(1) rotate(45deg);
}
img.AvatarComponent {
  margin: 15px;
  border-radius: 5px;
  -o-object-fit: cover;
     object-fit: cover;
}
img.AvatarComponent.circle {
  border-radius: 50%;
}
img.AvatarComponent.square {
  border-radius: 0;
}
.PaymentsComponent {
  display: flex;
  list-style-type: none;
}
.PaymentsComponent img {
  margin-left: 5px;
  width: 42.5px;
  height: 30px;
}
.BlockquoteComponent {
  display: block;
  padding: 15px;
  color: #07111e;
  background-color: #ffffff;
  border-left: 2px #8a8a8a solid;
  font-size: 25px;
  font-weight: 600;
}
.HeroComponent {
  flex: 1;
  background-color: #173e4b;
  background-repeat: no-repeat;
  background-size: cover;
}
.HeroComponent > div {
  padding: 35px;
}
.HeroComponent > div > .message {
  display: flex;
  flex-direction: row;
}
.HeroComponent > div > .message > .texts > h1 {
  color: #fff;
}
.HeroComponent > div > .message > .texts > h1 p {
  margin: 0;
  white-space: pre-line;
}
.HeroComponent > div > .message > .texts > h1 strong {
  color: #e0c951;
}
.HeroComponent > div > .message > .texts > h2 {
  color: #fff;
  margin-bottom: 15px;
}
.HeroComponent > div > .message > .texts > p {
  color: #fff;
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
}
.HeroComponent > div > .message > .texts > button {
  background: #ffffff;
  color: black;
  border: none;
  box-shadow: none;
  margin: 0px;
  margin-top: 20px;
}
.HeroComponent > div > .message > .lateral {
  margin-left: 35px;
  margin-bottom: 35px;
}
.HeroComponent > div .buttons {
  display: flex;
  gap: 20px;
}
.HeroComponent.haveComplement {
  margin-bottom: 100px;
}
.HeroComponent.haveComplement > div > .message {
  padding-top: 150px;
}
.HeroComponent.haveComplement > div > .message > .texts {
  width: 500px;
  margin-left: 50px;
}
.HeroComponent.haveComplement > div > .message > .texts h1 {
  font-style: normal;
  font-weight: 900;
  font-size: 40px;
  line-height: 48px;
  color: #ffffff;
}
.HeroComponent.haveComplement > div > .message > .complement {
  background-color: #fff;
  border-radius: 15px;
  flex: 1;
  display: flex;
  margin-left: auto;
  max-width: 540px;
  margin-bottom: -150px;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.2);
}
.GalleryComponent {
  display: flex;
  flex-direction: column;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently
                      supported by Chrome, Opera and Firefox */
}
.GalleryComponent > div {
  position: relative;
  z-index: 1;
}
.GalleryComponent > div > img {
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 10px;
  min-height: 440px;
}
.GalleryComponent > div .left {
  animation: slide-left 1s cubic-bezier(0.25, 0.8, 0.25, 1) both;
}
.GalleryComponent > div .right {
  animation: slide-right 1s cubic-bezier(0.25, 0.8, 0.25, 1) both;
}
@keyframes slide-right {
  0% {
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slide-left {
  0% {
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.GalleryComponent > div > span {
  z-index: -1;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  border-radius: 10px;
  background-size: cover;
  background-repeat: no-repeat;
}
.GalleryComponent > div.image {
  height: auto;
  width: auto;
}
.GalleryComponent > div > img {
  width: 100%;
  display: block;
}
.GalleryComponent > div > i {
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: absolute;
  top: 50%;
  height: 32px;
  width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  left: 20px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.06);
  -webkit-backdrop-filter: blur(13.5914px);
          backdrop-filter: blur(13.5914px);
  margin-top: -16px;
  z-index: 1;
}
.GalleryComponent > div > i:hover {
  transform: scale(1.5);
  -webkit-backdrop-filter: none;
          backdrop-filter: none;
  background: rgb(255, 255, 255);
}
.GalleryComponent > div > i:last-child {
  left: auto;
  right: 20px;
}
.GalleryComponent > div > i:first-child {
  left: 20px;
  right: auto;
}
.GalleryComponent > div > i:first-child:last-child {
  left: auto;
  right: 20px;
}
.GalleryComponent .cover {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  overflow: hidden;
}
.GalleryComponent .contain {
  background-size: contain;
}
.GalleryComponent .none {
  background-size: auto;
}
.GalleryComponent > ul {
  display: flex;
  padding: 0;
  margin: 16px 0 0;
}
@media (max-width: 968px) {
  .GalleryComponent > ul {
    display: none;
  }
}
.GalleryComponent > ul > li {
  flex: 1;
  border-radius: 10px;
  display: flex;
  margin-bottom: 0;
  min-height: 80px;
  min-width: 121px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  z-index: 1;
  margin-right: 16px;
}
@media (max-width: 968px) {
  .GalleryComponent > ul > li {
    height: 70px;
  }
}
.GalleryComponent > ul > li span {
  display: block;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: grayscale(100%);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  opacity: 0.6;
  position: absolute;
  width: 100%;
  z-index: -1;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 10px;
}
.GalleryComponent > ul > li.active span, .GalleryComponent > ul > li:hover span {
  filter: grayscale(0%);
  opacity: 1;
}
.GalleryComponent > ul > li:last-child {
  margin-right: 0;
}
.GalleryComponent > ul > li > b {
  filter: invert(1);
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
}
.RangeComponent {
  background-color: white;
  padding: 20px;
}
.RangeComponent > div:first-child {
  position: relative;
  height: 10px;
  background-color: rgb(238, 238, 238);
  border-radius: 15px;
}
.RangeComponent > div:first-child > div {
  left: 25%;
  right: 25%;
  height: 100%;
  position: absolute;
  background-color: #3166e9;
}
.RangeComponent > div:first-child > input[type=range] {
  margin: 0;
  background: none;
  color: #ffffff;
  font: inherit;
  pointer-events: none;
  position: absolute;
  top: -8px;
  left: -2px;
  width: 101%;
  -webkit-appearance: none;
}
.RangeComponent > div:first-child > input[type=range]::-webkit-slider-runnable-track {
  width: 101%;
}
.RangeComponent > div:first-child > input[type=range]::-webkit-slider-thumb {
  width: 25px;
  height: 25px;
  background: #ffffff;
  pointer-events: auto;
  -webkit-appearance: none;
  border: 6px solid #3164e3;
  cursor: pointer;
  border-radius: 50px;
}
.RangeComponent > div:first-child > input[type=range]::-moz-range-thumb {
  -moz-appearance: none;
       appearance: none;
  border: 6px solid #3164e3;
  width: 15px;
  height: 15px;
  border-radius: 50px;
  background: #ffffff;
  pointer-events: auto;
  cursor: pointer;
}
.RangeComponent > div:last-child {
  display: flex;
  justify-content: space-between;
  box-sizing: content-box;
}
.RangeComponent > div:last-child > input[type=text] {
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
          appearance: textfield;
  margin: 0;
  border: solid 1px rgb(229, 229, 229);
  border-radius: 5px;
  font-size: 30px;
  width: 40%;
  padding: 5px;
  margin-top: 40px;
  color: #0d1225;
}
.SummaryComponent {
  display: block;
  justify-content: center;
  align-items: center;
  padding: 15px;
  box-sizing: border-box;
  background-color: #fff;
}
.SummaryComponent p {
  margin-top: 40px;
  width: 400px;
  height: 70px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}
.SummaryComponent button {
  margin-top: 20px;
  margin-left: 0;
}
.CategoryComponent {
  display: flex;
  align-items: center;
  width: 100%;
}
.CategoryComponent > div {
  margin-right: auto;
  display: flex;
  align-items: center;
}
.CategoryComponent > div > i {
  height: 16px;
  width: 16px;
  border-radius: 16px;
  margin-right: 8px;
  display: block;
  position: relative;
  border: 2px solid rgba(255, 255, 255, 0.5);
}
.CategoryComponent > div > .TextComponent {
  font-size: 14px;
  font-weight: 700;
  color: white;
}
.CategoryComponent > img {
  width: 24px;
  height: 24px;
}
.PriceComponent {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.PriceComponent .TextComponent {
  font-size: 18px;
  font-weight: 300;
  color: white;
}
.PriceComponent > div > div {
  display: flex;
  align-items: center;
  border-radius: 20px;
  padding: 4px;
}
.PriceComponent > div > div > img {
  width: 32px;
  height: 32px;
  margin: 2px;
  border-radius: 100%;
}
.PriceComponent > div > div .TextComponent {
  margin: 0 16px 0 8px;
}
.DetailsComponent {
  animation: DetailsAnimation 1200ms cubic-bezier(0.075, 0.82, 0.165, 1) forwards;
  width: 288px;
  height: 288px;
  opacity: 0;
  border-radius: 10px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-size: cover;
  background-color: rgb(186, 197, 206);
}
.DetailsComponent > .TextComponent {
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  margin: 16px 0;
  color: white;
}
.DetailsComponent > .WidgetComponent {
  transition-property: transform, box-shadow;
  transition-duration: 1s;
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  cursor: pointer;
}
.DetailsComponent > .WidgetComponent:hover {
  transform: scale(1.05);
  box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.2);
  outline: rgba(0, 72, 255, 0.1647058824) solid 4px;
}

@keyframes DetailsAnimation {
  0% {
    opacity: 0;
    transform: scale(0.9) translateY(40px) translateX(40px);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.DetailsComponent:nth-child(1n) {
  animation-delay: 0.1s;
}

.DetailsComponent:nth-child(2n) {
  animation-delay: 0.2s;
}

.DetailsComponent:nth-child(3n) {
  animation-delay: 0.3s;
}

.DetailsComponent:nth-child(4n) {
  animation-delay: 0.4s;
}

.DetailsComponent:nth-child(5n) {
  animation-delay: 0.5s;
}

.DetailsComponent:nth-child(6n) {
  animation-delay: 0.6s;
}

.DetailsComponent:nth-child(7n) {
  animation-delay: 0.7s;
}

.DetailsComponent:nth-child(8n) {
  animation-delay: 0.8s;
}

.DetailsComponent:nth-child(9n) {
  animation-delay: 0.9s;
}

.DetailsComponent:nth-child(10n) {
  animation-delay: 1s;
}
.SwitchComponent {
  display: flex;
  align-items: center;
  flex: 1;
}
.SwitchComponent > label {
  font-size: 16px;
  position: relative;
  cursor: pointer;
  line-height: 26px;
  display: flex;
  flex: 1;
}
.SwitchComponent > label b {
  margin-right: auto;
}
.SwitchComponent > label > input {
  margin-left: 20px;
  width: 50px;
  height: auto;
  position: relative;
  background-color: #fff;
  border: 1px solid #ccc;
  transition: 0.4s;
  border-radius: 26px;
  box-sizing: border-box;
}
.SwitchComponent > label > input::after {
  display: none;
}
.SwitchComponent > label > input:before {
  content: "";
  height: 16px;
  width: 16px;
  display: block;
  margin: 3px;
  background-color: #ccc;
  transition: 700ms margin cubic-bezier(0.075, 0.82, 0.165, 1);
  border-radius: 10px;
}
.SwitchComponent > label > input:checked {
  background-color: #1c64f2;
}
.SwitchComponent > label > input:checked:before {
  margin-left: 29px;
  background-color: #fff;
}
.LoremComponent {
  margin: 0;
  color: rgb(61, 61, 61);
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: -10px;
  box-sizing: border-box;
}
.MainLayout {
  display: flex;
  margin: 0 auto;
  flex-direction: column;
}
.AsideLayout {
  width: 300px;
  min-width: 300px;
  position: sticky;
  top: 100px;
  z-index: 0;
  margin-left: 20px;
}
.FooterLayout {
  margin: 0 auto;
  min-height: 400px;
  position: relative;
  display: flex;
}

.FooterLayout::before {
  content: "";
  top: 0;
  display: block;
  position: absolute;
  left: 50%;
  z-index: -1;
  transform: translateX(-50%);
  background-color: #e2e2e2;
}
.SectionLayout {
  display: flex;
  margin: 50px 0;
}
.NavLayout {
  width: 300px;
  min-width: 300px;
  margin-right: 20px;
  z-index: 0;
  padding: 0;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 0;
}
.HeaderLayout {
  max-width: 1440px;
  height: 400px;
  margin: 0 auto;
  padding: 0;
  position: relative;
  display: flex;
  padding: 0 10px;
}
.LocationMenu > .BoxComponent {
  gap: 8px;
}
.LocationMenu > .BoxComponent > .SelectComponent > ul,
.LocationMenu > .BoxComponent .AutocompleteComponent > ul {
  padding: 0;
}
.LocationMenu > .BoxComponent > .SelectComponent > ul > li,
.LocationMenu > .BoxComponent .AutocompleteComponent > ul > li {
  padding: 8px 16px;
}
.CartItemComponent {
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 12px 0;
  width: 280px;
}
.CartItemComponent > .ImageComponent {
  width: 48px;
  height: 48px;
  margin-right: 16px;
}
.CartItemComponent > .ImageComponent > img {
  width: 48px;
  height: 48px;
  border-radius: 4px;
}
.CartItemComponent > .BoxComponent .BoxComponent:first-child {
  align-items: center;
  margin-bottom: 4px;
}
.CartItemComponent > .BoxComponent .BoxComponent:first-child p.TextComponent {
  font-weight: 600;
  color: rgba(0, 0, 0, 0.8);
}
.CartItemComponent > .BoxComponent .BoxComponent:last-child {
  align-items: center;
}
.CartItemComponent > .BoxComponent .BoxComponent:last-child p.TextComponent:last-child {
  font-weight: 600;
  color: rgba(0, 0, 0, 0.8);
}
.CartMenu {
  display: flex;
  align-items: center;
  justify-content: center;
}
.CartMenu > p.TextComponent {
  margin-bottom: 24px;
}
.CartMenu > .BoxComponent > .ColumnComponent {
  padding: 8px 0;
}
.CartMenu > .BoxComponent > .ColumnComponent > .BoxComponent {
  margin: 8px 0;
}
.CartMenu > .BoxComponent > .RowComponent {
  padding: 0;
}
.CartMenu > .BoxComponent > .RowComponent > .ButtonComponent {
  margin-bottom: 0;
}
.CartMenu > .BoxComponent > .RowComponent > .ButtonComponent:first-child {
  margin-left: 0;
  min-width: 80px;
}
.CartMenu > .BoxComponent > .RowComponent > .ButtonComponent.important {
  flex: 1;
}
.CartMenu > .BoxComponent > .CartItemComponent:first-child {
  padding-top: 0;
}

#total-container {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding: 16px 0;
  margin: 0;
}
#total-container > p.TextComponent {
  color: rgba(0, 0, 0, 0.8);
  font-weight: 600;
}

#empty-state-text {
  text-align: center;
  margin-bottom: 0;
}
.ImageComponent {
  position: relative;
}
.ImageComponent > span {
  position: absolute;
  width: 50%;
  height: 100%;
  background: transparent radial-gradient(circle at left, rgba(0, 131, 192, 0.85) 20%, transparent 80%);
  box-sizing: border-box;
  display: flex;
  align-items: center;
}
.ImageComponent > span * {
  border-radius: 120px;
  border: 20px solid #fff;
  transform: translateX(-50%);
  max-width: 120px;
  position: absolute;
}
.ImageComponent > img {
  background-position: center;
  background-size: cover;
  width: 100%;
}
.CaseStudiesMenu {
  width: 100%;
}
@media (min-width: 576px) {
  .CaseStudiesMenu {
    width: 590px;
  }
}
.CaseStudiesMenu > div {
  -moz-column-gap: 32px;
       column-gap: 32px;
}
.CaseStudiesMenu > div > .ColumnComponent {
  min-width: 160px;
}
.CaseStudiesMenu > div > .ColumnComponent > .LinkComponent {
  display: flex;
  align-items: center;
  margin: 0;
  border-top: 1px solid #eaeaea;
}
.CaseStudiesMenu > div > .ColumnComponent > .LinkComponent:active {
  opacity: 0.5;
}
.CaseStudiesMenu > div > .ColumnComponent > .LinkComponent > .TextComponent {
  padding: 16px 0;
  flex: 1;
  margin-left: 8px;
}
.CaseStudiesMenu > div > .ColumnComponent > .LinkComponent > h3.TextComponent {
  flex: 1;
  padding: 0;
  margin-left: 0;
}
.CaseStudiesMenu > div > .ColumnComponent:first-child .LinkComponent {
  border: none;
}
.CaseStudiesMenu > div > .ColumnComponent > .LinkComponent > h3.TextComponent,
.CaseStudiesMenu > div > .ColumnComponent h3.TextComponent {
  font-size: 16px;
  margin-bottom: 8px;
  position: relative;
}
.CaseStudiesMenu > div > .ColumnComponent > .LinkComponent > h3.TextComponent::after,
.CaseStudiesMenu > div > .ColumnComponent h3.TextComponent::after {
  right: 0;
  font-weight: 900;
  stroke-width: 30px;
  position: absolute;
  font-size: 16px;
  content: "\f105";
  font-family: "Line Awesome Free";
  transition: all 500ms cubic-bezier(0.075, 0.82, 0.165, 1);
  transition-delay: 0ms;
}
.CaseStudiesMenu img > div > div {
  width: 100%;
}
@media (min-width: 576px) {
  .CaseStudiesMenu img > div > div {
    width: 33%;
    max-width: 196.6666666667px;
    padding-right: 48px;
  }
  .CaseStudiesMenu img > div > div:nth-last-child(-n+3) {
    padding-right: 0;
  }
}
.CaseStudiesMenu .ImageComponent {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}
.UserMenu {
  position: relative;
}
.UserMenu > div {
  display: flex;
  flex-direction: column;
}
.UserMenu > div a .TextComponent:hover,
.UserMenu > div a:hover {
  color: #1c64f2;
}
.UserMenu > ul {
  position: relative;
  padding: 0;
  margin: 0;
  box-shadow: none;
}
.UserMenu > ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.UserMenu > ul li .BubbleComponent {
  position: relative;
  top: 0;
}
.UserMenu > ul > li > a,
.UserMenu > ul li {
  color: rgba(0, 0, 0, 0.6);
}
.UserMenu > ul > li > a:hover,
.UserMenu > ul li:hover {
  color: #1c64f2;
}
.CenterLayout {
  display: flex;
  align-items: center;
  justify-content: center;
}
.TeamComponent.row {
  display: flex;
  align-items: center;
}
.TeamComponent.row > div > p {
  order: 3;
}
.TeamComponent.row > div > img {
  order: 2;
  margin: 12px 0 0;
}
.TeamComponent.column {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.TeamComponent.column > div {
  align-items: center;
}
.TeamComponent > div {
  display: flex;
  flex-direction: column;
}
.TeamComponent > div > b {
  font-weight: 500;
  font-size: 18px;
}
.TeamComponent > div > p {
  color: rgba(0, 0, 0, 0.5);
  margin: 12px 0;
  font-size: 16px;
}
.MessageComponent {
  flex: 1;
  background-color: #173e4b;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 8px;
}
.MessageComponent > div {
  padding: 8px;
  border-radius: 8px;
}
.MessageComponent > div > .message {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 36px 0;
}
.MessageComponent > div > .message > i {
  background-color: #fff;
  border-radius: 50%;
  padding: 24px;
  font-size: 24px;
}
.MessageComponent > div > .message > h1 {
  color: #ffffff;
  font-size: 30px;
  font-weight: 500;
  white-space: pre-line;
}
.MessageComponent > div > .message > h1 p {
  margin: 0;
  white-space: pre-line;
}
.MessageComponent > div > .message > h1 strong {
  color: #e0c951;
}
.MessageComponent > div > .message > p {
  color: #ffffff;
  font-weight: 300;
  font-size: 18px;
  margin: 2px 0;
}
.MessageComponent > div > .message > .lateral {
  margin-left: 35px;
  margin-bottom: 35px;
}
.MessageComponent > div .buttons {
  display: flex;
  justify-content: space-between;
  filter: saturate(1);
  background-color: rgba(0, 0, 0, 0);
}
.MessageComponent > div .buttons button {
  padding: 12px 40px;
}
.MessageComponent.haveComplement {
  margin-bottom: 100px;
}
.MessageComponent.haveComplement > div > .message {
  padding-top: 150px;
}
.MessageComponent.haveComplement > div > .message > .texts {
  width: 500px;
  margin-left: 50px;
}
.MessageComponent.haveComplement > div > .message > .texts h1 {
  font-style: normal;
  font-weight: 900;
  font-size: 40px;
  line-height: 48px;
  color: #ffffff;
}
.MessageComponent.haveComplement > div > .message > .complement {
  background-color: #fff;
  border-radius: 15px;
  flex: 1;
  display: flex;
  margin-left: auto;
  max-width: 540px;
  margin-bottom: -150px;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.2);
}
.CollageComponent {
  position: relative;
  display: flex;
}
.CollageComponent > * {
  border-radius: 8px;
  box-shadow: 2px 2px 24px 8px rgba(0, 0, 0, 0.2);
}
.CollageComponent > *:last-child {
  position: absolute;
  top: 0;
  margin-top: 50%;
  margin-left: 75%;
}
.CoverComponent {
  flex: 1;
  background-color: #173e4b;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 35px;
  color: #fff;
}
.DefinitionComponent {
  display: flex;
  flex: 1;
  align-items: flex-start;
}
.DefinitionComponent > span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 40px;
  border-radius: 20px;
  margin-right: 24px;
  background-color: #e6f2fc;
  font-size: 20px;
  font-weight: 600;
}
.DefinitionComponent > span > img {
  max-width: 40px;
  border-radius: 50%;
}
.DefinitionComponent > div > h3 {
  margin-top: 0;
  margin-bottom: 16px;
}
.DefinitionComponent > div > p {
  color: rgba(0, 0, 0, 0.6);
  line-height: 24px;
}
.SecureComponent {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  background-color: #fff;
  border-radius: 22px;
  padding: 8px 16px;
  min-width: 244px;
}
.SecureComponent::before {
  font-weight: 900;
  margin-right: 4px;
  font-size: 16px;
  color: #008868;
  content: "\f023";
  font-family: "Line Awesome Free";
  transition: all 500ms cubic-bezier(0.075, 0.82, 0.165, 1);
  transition-delay: 0ms;
}
.SecureComponent p {
  color: #008868;
  margin: 0;
}
.SecureComponent label {
  margin-left: auto;
  font-size: 12px;
  font-weight: 600;
}
.ResultComponent {
  padding-top: 80px;
  display: flex;
  height: 100%;
  box-sizing: border-box;
  justify-content: center;
  max-width: 300px;
}
.ResultComponent > .PieComponent {
  position: absolute;
  background-color: #fff;
  transform: translateY(-40%);
}
.ResultComponent > span {
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px;
  padding-top: 120px;
}

.LoaderComponent {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.LoaderComponent > div {
  position: absolute;
  transform: rotate(0);
  animation: antRotate 600ms infinite linear;
  display: block;
  height: 24px;
  width: 24px;
  padding: 2px;
  display: block;
  font-size: 0;
  margin: 0 auto;
  z-index: 50;
  box-sizing: content-box;
}
@keyframes antRotate {
  to {
    transform: rotate(360deg);
  }
}
.LoaderComponent > div > i {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 2px;
  background-color: #163e6b;
  border-radius: 100%;
  opacity: 0.3;
  animation: antSpinMove 1s infinite linear alternate;
  z-index: 60;
}
.LoaderComponent > div > i:nth-child(2) {
  animation-delay: 0.4s;
}
.LoaderComponent > div > i:nth-child(3) {
  animation-delay: 0.8s;
}
.LoaderComponent > div > i:nth-child(4) {
  animation-delay: 0.12s;
}
@keyframes antSpinMove {
  to {
    opacity: 1;
  }
}
.GridComponent {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 16px;
  grid-auto-rows: minmax(16px, auto);
}
.FieldsetComponent {
  display: flex;
  flex-direction: row;
  align-items: center;
  border: none;
  padding: 0;
  margin: 0;
}
.FieldsetComponent > label {
  margin-right: 16px;
  justify-content: flex-end;
  text-align: end;
}
.FieldsetComponent > div {
  flex: 1;
}
@media (max-width: 800px) {
  .FieldsetComponent {
    flex-direction: column !important;
    align-items: flex-start;
    width: 100%;
  }
  .FieldsetComponent > label {
    width: 100%;
    margin-right: 0;
    text-align: left;
    justify-content: flex-start;
  }
}