/*!
  * Republika CSS
  * https://republika.ro
  *
  * Copyright (c) 2021 Republika
  *
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

body {
  margin: 0;
}

main {
  display: block;
}

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

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

img {
  border-style: none;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

button,
input {
  /* 1 */
  overflow: visible;
}

button,
select {
  /* 1 */
  text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

/* Root Start */

:root {
  --font-family:
    -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial,
    sans-serif, "Apple Color Emoji", "Segoe UI Emoji", Segoe UI Symbol;
  --color-primary: #a40e4c;
  --color-secondary: #2c2c54;
  --color-dark: #000000;
  --color-white: #ffffff;
  --color-danger: #cc0000;
  --color-warning: #fd7e14;
  --color-info: #1193ad;
  --color-success: #1a8a55;
  --color-border: #dddddd;
  --color-grey: #999999;
  --color-blue: #0d6efd;
  --color-indigo: #6610f2;
  --color-purple: #6f42c1;
  --color-pink: #d63384;
  --color-red: #dc3545;
  --color-orange: #fd7e14;
  --color-yellow: #ffc107;
  --color-green: #198754;
  --color-teal: #20c997;
  --color-cyan: #0dcaf0;
  --rp-gutter-x: 1.5rem;
  --rp-gutter-y: 0;
}

.color-primary {
  color: var(--color-primary);
}

.color-secondary {
  color: var(--color-secondary);
}

.color-dark {
  color: var(--color-dark);
}

.color-white {
  color: var(--color-white);
}

.color-danger {
  color: var(--color-danger);
}

.color-success {
  color: var(--color-success);
}

.color-success-hover {
  color: var(--color-success);
}

.color-border {
  color: var(--color-border);
}

.color-grey {
  color: var(--color-grey);
}

.color-warning {
  color: var(--color-warning);
}

.bg-primary {
  background-color: var(--color-primary);
}

.bg-seconary {
  background-color: var(--color-secondary);
}

.bg-dark {
  background-color: var(--color-dark);
}

.bg-danger {
  background-color: var(--color-danger);
}

.bg-white {
  background-color: var(--color-white);
}

.bg-border {
  background-color: var(--color-border);
}

.bg-success {
  background-color: var(--color-success);
}

.shadow-sm {
  box-shadow: 0 0.225rem 0.45rem rgba(0, 0, 0, 0.075) !important;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.shadow-none {
  box-shadow: none !important;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.mh-100 {
  max-height: 100% !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.shadow-sm {
  box-shadow: 0 0.225rem 0.45rem rgba(0, 0, 0, 0.075) !important;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.border-radius-1 {
  border-radius: 1rem !important;
}

.border-radius-2 {
  border-radius: 2rem !important;
}

.border-radius-3 {
  border-radius: 3rem !important;
}

.border-radius-4 {
  border-radius: 4rem !important;
}

.border-radius-5 {
  border-radius: 5rem !important;
}

.shadow-none {
  box-shadow: none !important;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.mh-100 {
  max-height: 100% !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.vw-100 {
  width: 100vw !important;
}

.vh-100 {
  height: 100vh !important;
}

.vw-100 {
  width: 100vw !important;
}

.vh-100 {
  height: 100vh !important;
}

.m-0 {
  margin: 0 !important;
}

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: 1rem !important;
}

.mt-1,
.my-1 {
  margin-top: 1rem !important;
}

.mr-1,
.mx-1 {
  margin-right: 1rem !important;
}

.mb-1,
.my-1 {
  margin-bottom: 1rem !important;
}

.ml-1,
.mx-1 {
  margin-left: 1rem !important;
}

.m-2 {
  margin: 2rem !important;
}

.mt-2,
.my-2 {
  margin-top: 2rem !important;
}

.mr-2,
.mx-2 {
  margin-right: 2rem !important;
}

.mb-2,
.my-2 {
  margin-bottom: 2rem !important;
}

.ml-2,
.mx-2 {
  margin-left: 2rem !important;
}

.m-3 {
  margin: 3rem !important;
}

.mt-3,
.my-3 {
  margin-top: 3rem !important;
}

.mr-3,
.mx-3 {
  margin-right: 3rem !important;
}

.mb-3,
.my-3 {
  margin-bottom: 3rem !important;
}

.ml-3,
.mx-3 {
  margin-left: 3rem !important;
}

.m-4 {
  margin: 4rem !important;
}

.mt-4,
.my-4 {
  margin-top: 4rem !important;
}

.mr-4,
.mx-4 {
  margin-right: 4rem !important;
}

.mb-4,
.my-4 {
  margin-bottom: 4rem !important;
}

.ml-4,
.mx-4 {
  margin-left: 4rem !important;
}

.m-5 {
  margin: 5rem !important;
}

.mt-5,
.my-5 {
  margin-top: 5rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 5rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 5rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 5rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
  padding-left: 0 !important;
}

.p-1 {
  padding: 1rem !important;
}

.pt-1,
.py-1 {
  padding-top: 1rem !important;
}

.pr-1,
.px-1 {
  padding-right: 1rem !important;
}

.pb-1,
.py-1 {
  padding-bottom: 1rem !important;
}

.pl-1,
.px-1 {
  padding-left: 1rem !important;
}

.p-2 {
  padding: 2rem !important;
}

.pt-2,
.py-2 {
  padding-top: 2rem !important;
}

.pr-2,
.px-2 {
  padding-right: 2rem !important;
}

.pb-2,
.py-2 {
  padding-bottom: 2rem !important;
}

.pl-2,
.px-2 {
  padding-left: 2rem !important;
}

.p-3 {
  padding: 3rem !important;
}

.pt-3,
.py-3 {
  padding-top: 3rem !important;
}

.pr-3,
.px-3 {
  padding-right: 3rem !important;
}

.pb-3,
.py-3 {
  padding-bottom: 3rem !important;
}

.pl-3,
.px-3 {
  padding-left: 3rem !important;
}

.p-4 {
  padding: 4rem !important;
}

.pt-4,
.py-4 {
  padding-top: 4rem !important;
}

.pr-4,
.px-4 {
  padding-right: 4rem !important;
}

.pb-4,
.py-4 {
  padding-bottom: 4rem !important;
}

.pl-4,
.px-4 {
  padding-left: 4rem !important;
}

.p-5 {
  padding: 5rem !important;
}

.pt-5,
.py-5 {
  padding-top: 5rem !important;
}

.pr-5,
.px-5 {
  padding-right: 5rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 5rem !important;
}

.pl-5,
.px-5 {
  padding-left: 5rem !important;
}

.m-n1 {
  margin: -0.25rem !important;
}

.mt-n1,
.my-n1 {
  margin-top: -0.25rem !important;
}

.mr-n1,
.mx-n1 {
  margin-right: -0.25rem !important;
}

.mb-n1,
.my-n1 {
  margin-bottom: -0.25rem !important;
}

.ml-n1,
.mx-n1 {
  margin-left: -0.25rem !important;
}

.m-n2 {
  margin: -0.5rem !important;
}

.mt-n2,
.my-n2 {
  margin-top: -0.5rem !important;
}

.mr-n2,
.mx-n2 {
  margin-right: -0.5rem !important;
}

.mb-n2,
.my-n2 {
  margin-bottom: -0.5rem !important;
}

.ml-n2,
.mx-n2 {
  margin-left: -0.5rem !important;
}

.m-n3 {
  margin: -1rem !important;
}

.mt-n3,
.my-n3 {
  margin-top: -1rem !important;
}

.mr-n3,
.mx-n3 {
  margin-right: -1rem !important;
}

.mb-n3,
.my-n3 {
  margin-bottom: -1rem !important;
}

.ml-n3,
.mx-n3 {
  margin-left: -1rem !important;
}

.m-n4 {
  margin: -1.5rem !important;
}

.mt-n4,
.my-n4 {
  margin-top: -1.5rem !important;
}

.mr-n4,
.mx-n4 {
  margin-right: -1.5rem !important;
}

.mb-n4,
.my-n4 {
  margin-bottom: -1.5rem !important;
}

.ml-n4,
.mx-n4 {
  margin-left: -1.5rem !important;
}

.m-n5 {
  margin: -3rem !important;
}

.mt-n5,
.my-n5 {
  margin-top: -3rem !important;
}

.mr-n5,
.mx-n5 {
  margin-right: -3rem !important;
}

.mb-n5,
.my-n5 {
  margin-bottom: -3rem !important;
}

.ml-n5,
.mx-n5 {
  margin-left: -3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto,
.my-auto {
  margin-top: auto !important;
}

.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

.float-left {
  float: left !important;
}

.float-right {
  float: right !important;
}

.float-none {
  float: none !important;
}

.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.border {
  border: 1px solid var(--color-border) !important;
}

.border-top {
  border-top: 1px solid var(--color-border) !important;
}

.border-right {
  border-right: 1px solid var(--color-border) !important;
}

.border-bottom {
  border-bottom: 1px solid var(--color-border) !important;
}

.border-left {
  border-left: 1px solid var(--color-border) !important;
}

.border-0 {
  border: 0 !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-right-0 {
  border-right: 0 !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-left-0 {
  border-left: 0 !important;
}

.border-primary {
  border-color: var(--color-primary) !important;
}

.border-secondary {
  border-color: var(--color-secondary) !important;
}

.border-success {
  border-color: var(--color-success) !important;
}

.border-info {
  border-color: var(--color-info) !important;
}

.border-warning {
  border-color: #ffc107 !important;
}

.border-danger {
  border-color: #dc3545 !important;
}

.border-light {
  border-color: #f8f9fa !important;
}

.border-dark {
  border-color: #343a40 !important;
}

.border-white {
  border-color: #fff !important;
}

*,
*:after,
*:before {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  font-size: 68.5%;
}

body {
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    Segoe UI,
    Roboto,
    Helvetica Neue,
    Arial,
    sans-serif,
    "Apple Color Emoji",
    "Segoe UI Emoji",
    Segoe UI Symbol;
  font-size: 1.5rem;
  background: var(--color-white);
  color: var(--color-dark);
  font-weight: 400;
  overflow-x: hidden;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  height: 100%;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.6;
}

blockquote {
  border-left: 0.3rem solid var(--color-primary);
  margin-left: 0;
  margin-right: 0;
  padding: 1rem 1.5rem;
}

blockquote *:last-child {
  margin-bottom: 0;
}

blockquote cite {
  font-size: 80%;
  font-style: normal;
  color: rgba(0, 0, 0, 0.5);
}

[type="button"],
[type="reset"],
[type="submit"],
button {
  -webkit-appearance: button;
}

button:not(:disabled),
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled) {
  cursor: pointer;
}

.disabled,
.button.disabled,
.button:disabled {
  opacity: 0.5 !important;
  pointer-events: none;
}

.button.disabled:hover,
.button:disabled:hover {
  opacity: 0.5 !important;
  pointer-events: none;
}

.button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  background-color: transparent;
  border: 0.1rem solid transparent;
  border-radius: 0.4rem;
  color: var(--color-primary);
  cursor: pointer;
  display: inline-block;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    Segoe UI,
    Roboto,
    Helvetica Neue,
    Arial,
    sans-serif,
    "Apple Color Emoji",
    "Segoe UI Emoji",
    Segoe UI Symbol;
  font-weight: 400;
  font-size: 1.4rem;
  letter-spacing: 0.1rem;
  padding: 1rem 3rem;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.3;
  transition:
    color 0.15s ease-in-out,
    background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out,
    opacity 0.15s ease-in-out;
}

.button:focus,
.button:hover,
button:focus,
button:hover,
input[type="button"]:focus,
input[type="button"]:hover,
input[type="reset"]:focus,
input[type="reset"]:hover,
input[type="submit"]:focus,
input[type="submit"]:hover {
  background-color: transparent;
  border-color: transparent;
  color: var(--color-primary);
  transition: 0.15s;
}

.button[disabled],
button[disabled],
input[type="button"][disabled],
input[type="reset"][disabled],
input[type="submit"][disabled] {
  cursor: default;
  opacity: 0.5;
}

input[type="color"]:disabled,
input[type="date"]:disabled,
input[type="datetime"]:disabled,
input[type="datetime-local"]:disabled,
input[type="email"]:disabled,
input[type="month"]:disabled,
input[type="number"]:disabled,
input[type="password"]:disabled,
input[type="search"]:disabled,
input[type="tel"]:disabled,
input[type="text"]:disabled,
input[type="url"]:disabled,
input[type="week"]:disabled,
input:not([type]):disabled,
textarea:disabled,
select:disabled {
  background: var(--color-border);
}

input[type="color"]::placeholder,
input[type="date"]::placeholder,
input[type="datetime"]::placeholder,
input[type="datetime-local"]::placeholder,
input[type="email"]::placeholder,
input[type="month"]::placeholder,
input[type="number"]::placeholder,
input[type="password"]::placeholder,
input[type="search"]::placeholder,
input[type="tel"]::placeholder,
input[type="text"]::placeholder,
input[type="url"]::placeholder,
input[type="week"]::placeholder,
input:not([type])::placeholder,
textarea::placeholder,
select::placeholder {
  color: var(--color-grey);
}

.button-primary {
  background-color: var(--color-primary) !important;
  color: var(--color-white) !important;
  border: 1px solid var(--color-primary) !important;
}

.button-secondary {
  background-color: var(--color-secondary) !important;
  color: var(--color-white) !important;
  border: 1px solid var(--color-secondary) !important;
}

.button-warning {
  background-color: var(--color-warning) !important;
  color: var(--color-white) !important;
  border: 1px solid var(--color-warning) !important;
}

.button-success {
  background-color: var(--color-success) !important;
  color: var(--color-white) !important;
  border: 1px solid var(--color-success) !important;
}

.button-info {
  background-color: var(--color-info) !important;
  color: var(--color-white) !important;
  border: 1px solid var(--color-info) !important;
}

.button-danger {
  background-color: var(--color-danger) !important;
  color: var(--color-white) !important;
  border: 1px solid var(--color-danger) !important;
}

.button-link {
}

.button-outline-primary {
  color: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
}

.button-outline-secondary {
  color: var(--color-secondary) !important;
  border-color: var(--color-secondary) !important;
}

.button-outline-warning {
  color: var(--color-warning) !important;
  border-color: var(--color-warning) !important;
}

.button-outline-success {
  color: var(--color-success) !important;
  border-color: var(--color-success) !important;
}

.button-outline-info {
  color: var(--color-info) !important;
  border-color: var(--color-info) !important;
}

.button-outline-danger {
  color: var(--color-danger) !important;
  border-color: var(--color-danger) !important;
}

.button-primary:hover {
  opacity: 0.9;
  background-color: var(--color-primary) !important;
  color: var(--color-white) !important;
}

.button-secondary:hover {
  opacity: 0.9;
  background-color: var(--color-secondary) !important;
  color: var(--color-white) !important;
}

.button-warning:hover {
  opacity: 0.9;
  background-color: var(--color-warning) !important;
  color: var(--color-white) !important;
}

.button-success:hover {
  opacity: 0.9;
  background-color: var(--color-success) !important;
  color: var(--color-white) !important;
}

.button-info:hover {
  opacity: 0.9;
  background-color: var(--color-info) !important;
  color: var(--color-white) !important;
}

.button-danger:hover {
  opacity: 0.9;
  background-color: var(--color-danger) !important;
  color: var(--color-white) !important;
}

.button-outline-primary:hover {
  background-color: var(--color-primary) !important;
  color: var(--color-white) !important;
}

.button-outline-secondary:hover {
  background-color: var(--color-secondary) !important;
  color: var(--color-white) !important;
}

.button-outline-warning:hover {
  background-color: var(--color-warning) !important;
  color: var(--color-white) !important;
}

.button-outline-success:hover {
  background-color: var(--color-success) !important;
  color: var(--color-white) !important;
}

.button-outline-danger:hover {
  background-color: var(--color-danger) !important;
  color: var(--color-white) !important;
}

.button-outline-info:hover {
  background-color: var(--color-info) !important;
  color: var(--color-white) !important;
}

.button-small {
  font-size: 1.2rem;
  padding: 1rem 1.5rem;
}

.button-large {
  font-size: 1.4rem;
  padding: 2rem 5rem;
}

code {
  background: var(--color-border);
  border-radius: 0.4rem;
  font-size: 86%;
  margin: 0 0.2rem;
  padding: 0.2rem 0.5rem;
  white-space: nowrap;
}

pre {
  background: var(--color-border);
  border-left: 0.3rem solid var(--color-primary);
  overflow-y: hidden;
  padding: 1rem;
}

pre > code {
  border-radius: 0;
  display: block;
  padding: 1rem 1.5rem;
  white-space: pre;
}

address {
  font-style: normal;
  margin-bottom: 1rem;
}

figcaption,
caption {
  font-size: 75%;
}

figure {
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
}

summary {
  cursor: pointer;
}

hr {
  border: 0;
  border-top: 0.1rem solid var(--color-border);
  margin: 3rem 0;
}

small,
.small {
  font-size: 80%;
  font-weight: 400;
}

input[type="color"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="email"],
input[type="month"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="url"],
input[type="week"],
input:not([type]),
textarea,
select {
  -webkit-appearance: none;
  background-color: transparent;
  border: 0.1rem solid var(--color-border);
  border-radius: 0.4rem;
  box-shadow: none;
  box-sizing: inherit;
  padding: 1.05rem 1.25rem;
  font-size: 1.4rem;
  line-height: 1.3;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    Segoe UI,
    Roboto,
    Helvetica Neue,
    Arial,
    sans-serif,
    "Apple Color Emoji",
    "Segoe UI Emoji",
    Segoe UI Symbol;
}

input[type="color"]:focus,
input[type="date"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="email"]:focus,
input[type="month"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="text"]:focus,
input[type="url"]:focus,
input[type="week"]:focus,
input:not([type]):focus,
textarea:focus,
select:focus {
  border-color: var(--color-primary);
  outline: 0;
}

select {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 8" width="30"><path fill="%23d1d1d1" d="M0,0l6,8l6-8"/></svg>')
    center right no-repeat;
  padding-right: 3rem;
}

select:focus {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 8" width="30"><path fill="%239b4dca" d="M0,0l6,8l6-8"/></svg>');
}

select[multiple] {
  background: none;
  height: auto;
}

textarea {
  min-height: 6.5rem;
}

label,
legend {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

fieldset {
  border-width: 0;
  padding: 0;
}

input[type="checkbox"],
input[type="radio"] {
  display: inline;
}

.label-inline {
  display: inline-block;
  font-weight: normal;
  margin-left: 0.5rem;
}

.container-fluid {
  margin: 0 auto;
  padding-right: var(--rp-gutter-x, 0.75rem);
  padding-left: var(--rp-gutter-x, 0.75rem);
  position: relative;
  width: 100%;
}

.container {
  margin: 0 auto;
  padding-right: var(--rp-gutter-x, 0.75rem);
  padding-left: var(--rp-gutter-x, 0.75rem);
  position: relative;
  max-width: 1320px;
}

.container-small {
  margin: 0 auto;
  padding-right: var(--rp-gutter-x, 0.75rem);
  padding-left: var(--rp-gutter-x, 0.75rem);
  position: relative;
  max-width: 980px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--rp-gutter-y) * -1);
  margin-right: calc(var(--rp-gutter-x) / -2);
  margin-left: calc(var(--rp-gutter-x) / -2);
}

.row > * {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--rp-gutter-x) / 2);
  padding-left: calc(var(--rp-gutter-x) / 2);
  margin-top: var(--rp-gutter-y);
}

.column {
  flex: 1 0 0;
}

.column-auto {
  flex: 0 0 auto;
  width: auto;
}

.column-1 {
  flex: 0 0 auto;
  width: 8.3333333333%;
}

.column-2 {
  flex: 0 0 auto;
  width: 16.6666666667%;
}

.column-3 {
  flex: 0 0 auto;
  width: 25%;
}

.column-4 {
  flex: 0 0 auto;
  width: 33.3333333333%;
}

.column-5 {
  flex: 0 0 auto;
  width: 41.6666666667%;
}

.column-6 {
  flex: 0 0 auto;
  width: 50%;
}

.column-7 {
  flex: 0 0 auto;
  width: 58.3333333333%;
}

.column-8 {
  flex: 0 0 auto;
  width: 66.6666666667%;
}

.column-9 {
  flex: 0 0 auto;
  width: 75%;
}

.column-10 {
  flex: 0 0 auto;
  width: 83.3333333333%;
}

.column-11 {
  flex: 0 0 auto;
  width: 91.6666666667%;
}

.column-12 {
  flex: 0 0 auto;
  width: 100%;
}

.offset-1 {
  margin-left: 8.3333333333%;
}

.offset-2 {
  margin-left: 16.6666666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.3333333333%;
}

.offset-5 {
  margin-left: 41.6666666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.3333333333%;
}

.offset-8 {
  margin-left: 66.6666666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.3333333333%;
}

.offset-11 {
  margin-left: 91.6666666667%;
}

.fluid {
  width: 100%;
}

.inline {
  display: inline-block;
}

.center-text {
  text-align: center;
  margin: 0 auto;
  margin-bottom: 2.5rem;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

.user-select-all {
  user-select: all !important;
}

.user-select-auto {
  user-select: auto !important;
}

.user-select-none {
  user-select: none !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: sticky !important;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

.text-monospace {
  font-family:
    SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New",
    monospace !important;
}

.text-justify {
  text-align: justify !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

.text-muted {
  color: var(--color-grey);
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:focus,
a:hover {
  color: var(--color-secondary);
}

dl,
ol,
ul {
  list-style: none;
  margin-top: 0;
  padding-left: 0;
}

dl dl,
dl ol,
dl ul,
ol dl,
ol ol,
ol ul,
ul dl,
ul ol,
ul ul {
  font-size: 90%;
  margin: 1.5rem 0 1.5rem 3rem;
}

ol {
  list-style: decimal inside;
}

ul {
  list-style: circle inside;
}

.button,
button,
dd,
dt,
li {
  margin-bottom: 1rem;
}

fieldset,
input,
select,
textarea {
  margin-bottom: 1.5rem;
}

blockquote,
details,
dl,
figure,
form,
ol,
p,
pre,
table,
ul {
  margin-bottom: 2.5rem;
  margin-top: 0;
}

table {
  border-spacing: 0;
  display: block;
  overflow-x: auto;
  text-align: left;
  width: 100%;
}

td,
th {
  border-bottom: 0.1rem solid #e1e1e1;
  padding: 1.2rem 1.5rem;
}

th {
  background: var(--color-border);
}

b,
strong {
  font-weight: bold;
}

p {
  margin-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  margin-bottom: 2rem;
  margin-top: 0;
}

h1 {
  font-size: 4.2rem;
  line-height: 1.2;
}

h2 {
  font-size: 3.6rem;
  line-height: 1.25;
}

h3 {
  font-size: 2.8rem;
  line-height: 1.3;
}

h4 {
  font-size: 2.2rem;
  line-height: 1.35;
}

h5 {
  font-size: 1.8rem;
  line-height: 1.5;
}

h6 {
  font-size: 1.6rem;
  line-height: 1.4;
}

img {
  max-width: 100%;
  height: auto;
}

.clearfix:after {
  clear: both;
  content: " ";
  display: table;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-inline {
  padding-left: 0;
  list-style: none;
}

.list-inline-item {
  display: inline-block;
}

.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}

.img-thumbnail {
  padding: 0.25rem;
  background-color: #fff;
  border: 1px solid var(--color-border);
  border-radius: 0.375rem;
  max-width: 100%;
  height: auto;
}

/* VERTICAL MENU */

.vertical-menu {
  position: relative;
}

.vertical-menu span {
  display: inline-block;
  margin-bottom: 2.5rem;
}

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

.vertical-menu li {
  position: relative;
}

.vertical-menu li a {
  display: block;
  color: var(--color-dark);
  font-size: 90%;
  font-weight: 600;
  padding: 0.6rem 1rem;
  border-radius: 0.4rem;
}

.vertical-menu li a:hover {
  color: rgba(0, 0, 0, 0.6);
}

.vertical-menu li a.active {
  background: var(--color-border);
}

.vertical-menu li ul {
  display: none;
}

.vertical-menu li:hover > ul {
  display: block;
  position: absolute;
  background: var(--color-border);
  border-radius: 0.4rem;
  bottom: 0;
  width: 100%;
  left: 100%;
}

.vertical-menu li.has-children a:after {
  content: "+";
  display: inline-block;
  margin-left: 3px;
  float: right;
}

.vertical-menu li.has-children li a:after {
  display: none;
}

/* HORIZONTAL MENU */

.horizontal-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

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

.horizontal-menu li {
  display: inline-block;
  margin-right: 1rem;
  margin-bottom: 0;
  position: relative;
}

.horizontal-menu li ul {
  display: none;
}

.horizontal-menu li:hover > ul {
  display: block;
  position: absolute;
  background: var(--color-border);
  border-radius: 0.4rem;
  right: 0;
}

.horizontal-menu li ul li {
  display: block;
  margin-right: 0;
}

.horizontal-menu li:last-of-type {
  margin-right: 0;
}

.horizontal-menu li.has-children a:after {
  content: "+";
  display: inline-block;
  margin-left: 3px;
}

.horizontal-menu li.has-children li a:after {
  display: none;
}

.horizontal-menu li a {
  display: block;
  color: var(--color-dark);
  font-size: 90%;
  font-weight: 600;
  padding: 0.6rem 1rem;
  border-radius: 0.4rem;
}

.horizontal-menu li a:hover {
  color: rgba(0, 0, 0, 0.6);
}

.horizontal-menu li a.active {
  background: var(--color-border);
}

/* CARDS */

.card {
  border: 1px solid var(--color-border);
  border-radius: 0.4rem;
  margin-bottom: 2.5rem;
}

.card .card-header {
  padding: 2rem;
}

.card .card-body {
  padding: 2rem;
}

.card .card-body h5 {
  font-weight: 700;
}

.card .card-header img {
  display: block;
}

.card .card-header h2,
.card .card-header h3,
.card .card-header h4,
.card .card-header h5,
.card .card-header h6 {
}

.card .card-header h1 {
  font-weight: 700;
}

/* Breadcrumbs */
.breadcrumb {
  font-size: 90%;
}

.breadcrumb ol,
.breadcrumb ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumb .item {
  display: inline-block;
  margin-bottom: 0;
}

.breadcrumb .item:after {
  content: "/";
  display: inline-block;
  margin: 0 10px;
}

.breadcrumb .item:last-of-type:after {
  display: none;
}

.breadcrumb .active {
  color: var(--color-grey);
}

/* Pagination */

.pagination ol,
.pagination ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pagination .item {
  display: inline-block;
  margin-right: 2rem;
  margin-bottom: 0;
}

.pagination .item:last-of-type {
  margin-right: 0;
}

.pagination .active {
  font-weight: 700;
}

.pagination .active a {
  text-decoration: underline;
}

/* Badges */
.badge {
  padding: 0.2rem 0.7rem;
  border-radius: 0.4rem;
  font-weight: normal;
  font-size: 90%;
  margin: 0 5px;
}

/* Notification  */

.notification {
  padding: 1rem 2rem;
  margin-bottom: 2.5rem;
  position: relative;
  font-size: 90%;
  -webkit-border-radius: 0.4rem;
  -moz-border-radius: 0.4rem;
  border-radius: 0.4rem;
}

.notification-primary {
  border: 1px solid var(--color-primary);
  background: var(--color-primary);
  color: var(--color-white);
}

.notification-secondary {
  border: 1px solid var(--color-secondary);
  background: var(--color-secondary);
  color: var(--color-white);
}

.notification-success {
  border: 1px solid var(--color-success);
  background: var(--color-success);
  color: var(--color-white);
}

.notification-danger {
  border: 1px solid var(--color-danger);
  background: var(--color-danger);
  color: var(--color-white);
}

.notification-warning {
  border: 1px solid var(--color-warning);
  background: var(--color-warning);
  color: var(--color-white);
}

.notification-info {
  border: 1px solid var(--color-info);
  background: var(--color-info);
  color: var(--color-dark);
}

.notification-light {
  border: 1px solid var(--color-border);
  background: var(--color-white);
  color: var(--color-dark);
}

.notification-dark {
  border: 1px solid var(--color-dark);
  background: var(--color-dark);
  color: var(--color-white);
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

.close {
  font-weight: 400;
  font-size: 2rem;
  position: absolute;
  right: 1rem;
  top: 1rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.2);
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 18px;
  border-radius: 999rem;
  cursor: pointer;
  transform: rotate(45deg);
}

.box {
  background-color: #fff;
  border-radius: 6px;
  box-shadow:
    0 0.5em 1em -0.125em rgb(10 10 10 / 10%),
    0 0 0 1px rgb(10 10 10 / 2%);
  border: 1px solid var(--color-border);
  display: block;
  padding: 2.5rem;
  margin-bottom: 2.5rem;
}

@-webkit-keyframes animate-stripes {
  100% {
    background-position: -100px 0;
  }
}

@keyframes animate-stripes {
  100% {
    background-position: -100px 0;
  }
}

@-webkit-keyframes moveIndeterminate {
  from {
    background-position: 200% 0;
  }
  to {
    background-position: -200% 0;
  }
}

@keyframes moveIndeterminate {
  from {
    background-position: 200% 0;
  }
  to {
    background-position: -200% 0;
  }
}

progress {
  -moz-appearance: none;
  -webkit-appearance: none;
  border: none;
  border-radius: 9999px;
  display: block;
  overflow: hidden;
  padding: 0;
  width: 100%;
  height: 2rem;
}

progress[value]::-webkit-progress-bar {
  background-color: var(--color-border);
  border-radius: 0.4rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1) inset;
}

progress:not([value]) {
}

.progress::-moz-progress-bar {
  background-color: #4a4a4a;
}

.progress::-ms-fill {
  background-color: #4a4a4a;
  border: none;
}

.progress:indeterminate {
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: moveIndeterminate;
  animation-name: moveIndeterminate;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  background-color: #ededed;
  background-image: linear-gradient(to right, #4a4a4a 30%, #ededed 30%);
  background-position: top left;
  background-repeat: no-repeat;
  background-size: 150% 150%;
}

.progress-primary::-webkit-progress-value {
  background-color: var(--color-primary);
}

.progress-secondary::-webkit-progress-value {
  background-color: var(--color-secondary);
}

.progress-success::-webkit-progress-value {
  background-color: var(--color-success);
}

.progress-danger::-webkit-progress-value {
  background-color: var(--color-danger);
}

.progress-warning::-webkit-progress-value {
  background-color: var(--color-warning);
}

.progress-info::-webkit-progress-value {
  background-color: var(--color-info);
}

.progress-dark::-webkit-progress-value {
  background-color: var(--color-dark);
}

body.modal-open {
  overflow: hidden;
}

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.modal-overlay.show {
  display: block;
  opacity: 1;
}

.modal-dialog {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 400px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition:
    transform 0.3s ease-out,
    opacity 0.3s ease-out;
}

.modal-overlay.show .modal-dialog {
  opacity: 1;
  transform: translate(-50%, 50px);
}

.modal-overlay.hiding .modal-dialog {
  transform: translate(-50%, -100px);
}

.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  max-width: 980px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.close-modal {
  cursor: pointer;
}

.modal-body {
  padding: 20px;
}

.modal-footer {
  padding: 10px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

@media only screen and (max-width: 992px) {
  .row {
    display: block;
  }

  .column-1,
  .column-2,
  .column-3,
  .column-4,
  .column-5,
  .column-6,
  .column-7,
  .column-8,
  .column-9,
  .column-10,
  .column-11,
  .column-12 {
    width: 100%;
  }

  .offset-1,
  .offset-2,
  .offset-3,
  .offset-4,
  .offset-5,
  .offset-6,
  .offset-7,
  .offset-8,
  .offset-9,
  .offset-10,
  .offset-11,
  .offset-12 {
    margin: 0;
  }
}

body {
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
  position: relative;
}

.container-large {
  margin: 0 auto;
  position: relative;
  max-width: 1920px;
  width: 100%;
}

.container-1250 {
  max-width: 1282px;
  margin: 0 auto;
  position: relative;
  width: 100%;
  padding-right: var(--rp-gutter-x, 0.75rem);
  padding-left: var(--rp-gutter-x, 0.75rem);
}

.login-wrapper {
  display: grid;
  grid-template-columns: clamp(440px, 42vw, 700px) minmax(0, 1fr);
  grid-template-rows: 1fr auto;
  grid-template-areas:
    "box visual"
    "box footer";
  min-height: 100vh;
  min-height: 100dvh;
}

.login-box {
  grid-area: box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 60px;
}

.logo {
  display: inline-block;
  margin-bottom: 60px;
}

.login-box-title {
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 30px;
}

.login-box-title-final {
  line-height: 1.5;
  margin-bottom: 60px;
}

.login-box-subtitle {
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 30px;

  a {
    color: #3567ff;
  }

  a:hover,
  a:focus {
    text-decoration: underline;
  }
}

.input-field,
input[type="email"].input-field,
input[type="number"].input-field,
input[type="password"].input-field,
input[type="search"].input-field,
input[type="tel"].input-field,
input[type="text"].input-field,
input[type="url"].input-field,
textarea.input-field {
  border-radius: 7px;
  border: 1px solid #919191;
  background: #fff;
  text-align: center;
  width: 300px;
  min-height: 50px;
  font-size: 18px;
  font-weight: 300;
  font-family: "Noto Sans", sans-serif;
  margin-bottom: 0;
}

input[type="tel"].input-field::placeholder,
input[type="number"].input-field::placeholder,
input[type="text"].input-field::placeholder,
input[type="email"].input-field::placeholder {
  color: #000;
}

.claim-form-row {
  input[type="tel"].input-field::placeholder,
  input[type="number"].input-field::placeholder,
  input[type="text"].input-field::placeholder,
  input[type="email"].input-field::placeholder,
  textarea::placeholder {
    color: #666b69;
  }

  .input-field,
  input[type="email"].input-field,
  input[type="number"].input-field,
  input[type="password"].input-field,
  input[type="search"].input-field,
  input[type="tel"].input-field,
  input[type="text"].input-field,
  input[type="url"].input-field,
  textarea.input-field {
    width: 100%;
    text-align: left;
    padding-left: 20px;
    padding-right: 20px;
  }

  textarea.textarea-field {
    height: 105px;
  }
}

.input-field:-webkit-autofill,
.input-field:-webkit-autofill:hover,
.input-field:-webkit-autofill:focus,
.input-field:-webkit-autofill:active {
  -webkit-text-fill-color: #fff;
  -webkit-box-shadow: 0 0 0 1000px transparent inset;
  box-shadow: 0 0 0 1000px transparent inset;
  transition: background-color 9999s ease-in-out 0s;
  caret-color: #fff;
}

.field-wrapper {
  border-radius: 7px;
  border: 1px solid #919191;
  height: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: border-color 0.2s ease;
  position: relative;
}

.select-field,
.select-field:focus {
  margin: 0;
  flex: 1;
  width: 100%;
  height: 100%;
  font-family: "Noto Sans", sans-serif;
  font-size: 16px;
  padding-left: 20px;
  padding-right: 50px;
  color: #000;
  font-weight: 300;
  border: none;
  background: transparent none;
  background-image: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  outline: none;
  box-shadow: none;
}

.select-field::-ms-expand {
  display: none;
}

.select-field option {
  color: #000;
}

.select-field:invalid {
  color: #666b69;
}

.ce-select-arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: auto;
  pointer-events: none;
  display: block;
}

.form-wrapper form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 0;
}

.checks {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checks-row {
  display: flex;
  gap: 10px;
  align-items: center;
}

.checks-row input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  cursor: pointer;
  border: 1px solid #000;
  border-radius: 50%;
  background-color: transparent;
  position: relative;
  margin: 0;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.checks-row input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../assets/images/check-sign.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 15px 12px;
}

.checks-row label {
  font-size: 14px;
  font-weight: 300;
  cursor: pointer;
  transition: color 0.2s ease;
  margin-bottom: 0;

  a {
    color: #000;
    text-decoration: underline;
  }
}

.checks-row label a:hover {
  text-decoration: none;
}

.form-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: flex-end;

  .btn-action {
    width: 290px;
  }
}

.btn-action {
  background-color: #000;
  border-radius: 7px;
  width: 100%;
  height: 50px;
  margin: 0;
  font-family: "Noto Sans", sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #fff;
  transition: all 0.3s ease-in-out;
  padding-top: 12px;
  padding-bottom: 11px;
}

.btn-action:hover,
.btn-action:focus {
  background-color: #272626;
  color: #fff;
}

.login-visual {
  grid-area: visual;
  min-width: 0;
  display: flex;
  flex-direction: column;
  background-image: url("../assets/images/ploom-aura-bg.jpg");
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
}

.login-visual-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 45px;
  flex: 1;
  min-width: 0;
  padding: 40px 60px;
}

.login-visual-box-pack {
  min-width: 0;
}

.hero {
  background-image: url("../assets/images/ploom-banner-desktop.png");
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  min-height: 560px;
  display: flex;
  margin-bottom: 85px;
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-template-areas:
    "lyo    packs"
    "sogood packs";
  align-items: center;
  column-gap: 40px;
  row-gap: 0;
  padding: 60px 0;
  height: 100%;
}

.hero-lyo {
  grid-area: lyo;
  justify-self: center;
  align-self: end;
}

.hero-sogood {
  grid-area: sogood;
  align-self: start;
  margin-top: -40px;
}

.hero-packs {
  grid-area: packs;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
}

.color-error {
  color: #f00;
  margin: 0 0 10px;
  display: none;
}

.footer {
  grid-area: footer;
  color: #fff;
  padding: 10px 0;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  text-align: center;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
}

.footer-text {
  margin: 0;
  font-size: 12px;
  opacity: 0.9;
  font-weight: 300;
  margin-top: 2px;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;

  li {
    margin-bottom: 0;
    font-weight: 300;
  }
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  opacity: 0.9;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-social {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
  align-items: center;

  li {
    margin-bottom: 0;

    img {
      display: block;
    }
  }
}

.sm-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.sm-button {
  border-radius: 8px;
  border: 2px solid #000;
  background-color: #fff;
  width: 240px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  gap: 10px;
  font-weight: 300;
  font-size: 18px;
  color: #000;
  transition: all 0.3s ease-in-out;
}

.sm-button:hover,
.sm-button:focus {
  background-color: #000;
  color: #fff;
}

.sm-button:hover img,
.sm-button:focus img {
  filter: brightness(0) invert(1);
}

.main-title {
  font-size: 45px;
  font-weight: 300;
  margin-bottom: 20px;
  text-align: center;
}

.main-subtitle {
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 25px;
  text-align: center;
}

.form-title {
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 45px;
  text-align: center;
}

.banner-rotation {
  padding: 20px 0 0;
}

.banner-stack {
  position: relative;
}

.banner-slide {
  display: block;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.banner-slide:not(:first-child) {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.banner-slide.is-active {
  opacity: 1;
}

.banner-slide img {
  display: block;
  width: 100%;
  height: auto;
}

@media only screen and (max-width: 1780px) {
  .login-wrapper .footer {
    padding: 15px 0;
  }

  .login-wrapper .footer-inner {
    justify-content: center;

    .footer-links {
      justify-content: center;
    }
  }
}

@media only screen and (max-width: 1550px) {
  .logo {
    max-width: 150px;
    margin-bottom: 40px;
  }

  .login-visual-box-pack {
    max-width: 250px;
  }

  .sm-button {
    width: 220px;
  }
}

@media only screen and (max-width: 1400px) {
  .sm-button {
    width: 200px;
  }

  .login-wrapper .footer-inner {
    gap: 10px;
  }
}

@media only screen and (max-width: 1200px) {
  .login-visual-box,
  .login-box {
    padding: 20px;
  }

  .login-visual-box {
    gap: 25px;
  }

  .login-visual-box-pack {
    max-width: 200px;
  }

  .sm-button {
    width: 100%;
  }

  .hero {
    min-height: 400px;
  }
}

@media only screen and (max-width: 900px) {
  .login-wrapper {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas:
      "visual"
      "box"
      "footer";
  }

  .login-visual-box {
    min-height: 400px;
  }

  .hero {
    background-position: right top;
    background-image: url(../assets/images/ploom-banner-mobile.jpg);
    margin-bottom: 40px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    grid-template-areas:
      "lyo"
      "packs"
      "sogood";
    justify-items: center;
    row-gap: 24px;
  }

  .hero-lyo {
    max-width: min(225px, 100%);
  }

  .hero-sogood {
    max-width: min(390px, 100%);
    margin-top: -20px;
  }

  .main-title {
    font-size: 27px;

    br {
      display: none;
    }
  }

  .main-subtitle {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .form-title {
    font-size: 24px;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 768px) {
  .form-bottom {
    flex-direction: column;
    align-items: start;
  }

  .banner-rotation {
    margin-inline: calc(var(--rp-gutter-x) * -1);
  }

  .footer.mt-3 {
    margin-top: 0 !important;
  }
}

@media only screen and (max-width: 600px) {
  .logo {
    max-width: 120px;
    margin-bottom: 20px;
  }

  .login-box {
    padding-bottom: 35px;
  }

  .login-box-title {
    font-size: 18px;
    font-weight: 400;
  }

  .login-box-title-final {
    margin-bottom: 30px;
    font-weight: 300;
  }

  .login-box-subtitle {
    font-size: 14px;
  }

  .login-visual-box {
    gap: 20px;
  }

  .login-visual-box-pack {
    max-width: 140px;
  }

  .gift-icon {
    max-width: 100px;
  }

  .hero-content {
    padding-top: 40px;
  }

  .hero-packs {
    gap: 20px;
  }

  .footer {
    padding: 30px 0 !important;
    text-align: left;
  }

  .footer-inner,
  .footer-links {
    align-items: flex-start !important;
    flex-direction: column;
  }

  .footer-links {
    flex-direction: column;
  }

  .footer-social {
    margin-top: 10px;
  }
}

@media only screen and (max-width: 435px) {
  .login-visual {
    background-position: right -100px center;
  }

  .form-bottom {
    .btn-action {
      width: 100%;
    }
  }
}

@media only screen and (max-width: 350px) {
  .form-wrapper {
    width: 100%;
  }

  .input-field,
  input[type="email"].input-field,
  input[type="number"].input-field,
  input[type="password"].input-field,
  input[type="search"].input-field,
  input[type="tel"].input-field,
  input[type="text"].input-field,
  input[type="url"].input-field,
  textarea.input-field {
    width: 100%;
  }
}
