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

.container-1350 {
  max-width: 1382px;
  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: auto 1fr auto;
  grid-template-areas:
    "menu   menu"
    "box    visual"
    "footer footer";
  min-height: 100vh;
  min-height: 100dvh;
}

.site-header {
  grid-area: menu;
  min-width: 0;
  background-color: #000;
  width: 100%;
  position: static;

  .site-options {
    position: static;
    flex-wrap: wrap;
  }

  .site-branding {
    padding: 5px 0;
  }
}

.site-header .container {
  display: flex;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.site-footer {
  grid-area: footer;
  min-width: 0;
  background-color: #000;
}

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

.button-icon {
  display: inline-flex;
}

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

.login-box-title {
  font-size: 27px;
  font-weight: 200;
  margin-bottom: 40px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;

  a {
    color: #3567ff;
  }

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

.btn-wrapper {
  padding-top: 10px;
}

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

.login-box-title-large {
  font-size: 32px;
}

.login-box-subtitle {
  font-size: 16px;
  font-weight: 200;
  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;
  color: #000;
  text-align: center;
  width: 300px;
  min-height: 50px;
  font-size: 15px;
  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: #000;
  -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: #000;
}

.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 !important;
  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;
  font-size: 15px;
}

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

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

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

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

.form-box {
  form {
    margin-bottom: 0;
  }

  .form-title,
  .form-subtitle {
    max-width: 500px;
  }

  .form-bottom {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;

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

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

.button.btn-action-tri {
  border-radius: 7px;
  width: 100%;
  min-width: 210px;
  height: 50px;
  margin: 0;
  font-family: "Noto Sans", sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #fff;
  border: none;
  padding-top: 12px;
  padding-bottom: 11px;
  background-color: #3567ff;
  background-image: linear-gradient(
    90deg,
    #56b918 0%,
    #3567ff 25%,
    #7a1fa6 50%,
    #3567ff 75%,
    #56b918 100%
  );
  background-size: 200% 100%;
  background-position: 0% 50%;
}

.button.btn-action-tri:hover,
.button.btn-action-tri:focus {
  color: #fff;
  border: none;
  background-color: #3567ff;
  background-image: linear-gradient(
    90deg,
    #56b918 0%,
    #3567ff 25%,
    #7a1fa6 50%,
    #3567ff 75%,
    #56b918 100%
  );
  background-size: 200% 100%;
  animation: btn-tri-shift 3s ease infinite;
}

@keyframes btn-tri-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.button.btn-action-duo {
  border-radius: 7px;
  width: 100%;
  min-width: 210px;
  height: 50px;
  margin: 0;
  font-family: "Noto Sans", sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #fff;
  border: none;
  padding-top: 12px;
  padding-bottom: 11px;
  background-color: #56b918;
  background-image: linear-gradient(
    90deg,
    #56b918 0%,
    #3567ff 50%,
    #56b918 100%
  );
  background-size: 200% 100%;
  background-position: 0% 50%;
}

.button.btn-action-duo:hover,
.button.btn-action-duo:focus {
  color: #fff;
  border: none;
  background-color: #56b918;
  background-image: linear-gradient(
    90deg,
    #56b918 0%,
    #3567ff 50%,
    #56b918 100%
  );
  background-size: 200% 100%;
  animation: btn-duo-shift 3s ease infinite;
}

@keyframes btn-duo-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.button.btn-action-duo-2 {
  border-radius: 7px;
  width: 100%;
  min-width: 210px;
  height: 50px;
  margin: 0;
  font-family: "Noto Sans", sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #fff;
  border: none;
  padding-top: 12px;
  padding-bottom: 11px;
  background-color: #3567ff;
  background-image: linear-gradient(
    90deg,
    #3567ff 0%,
    #7a1fa6 50%,
    #3567ff 100%
  );
  background-size: 200% 100%;
  background-position: 0% 50%;
}

.button.btn-action-duo-2:hover,
.button.btn-action-duo-2:focus {
  color: #fff;
  border: none;
  background-color: #3567ff;
  background-image: linear-gradient(
    90deg,
    #3567ff 0%,
    #7a1fa6 50%,
    #3567ff 100%
  );
  background-size: 200% 100%;
  animation: btn-duo-2-shift 3s ease infinite;
}

@keyframes btn-duo-2-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.login-visual {
  grid-area: visual;
  min-width: 0;
  position: relative;
  overflow: hidden;
  background-color: #000;
  background-image: url("../assets/images/ploom-aura-bg.jpg");
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.login-visual-grey {
  background-image: none;
  background-color: #f4f4f4;
  padding: 0;
  display: flex;
  align-items: end;
}

.login-visual-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.login-visual-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 40px 60px;
}

.hero {
  display: block;
  margin-bottom: 85px;
}

.hero-video-desktop {
  display: block;
  width: 100%;
  height: auto;
}

.hero-video-mobile {
  display: none;
}

.hero .container-1350 {
  display: none;
}

.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-content-2col {
  grid-template-areas: "sogood packs";
  grid-template-columns: minmax(0, 846px) minmax(0, 1fr);
}

.hero-content-2col .hero-sogood {
  align-self: center;
  margin-top: -25px;
}

@media only screen and (min-width: 901px) and (max-width: 1300px) {
  .hero-content-2col {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

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

.hero-sogood {
  grid-area: sogood;
}

.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;
  font-weight: 700;
}

.footer-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  flex-wrap: wrap;
  font-weight: 700;
}

.footer-text {
  margin: 0;
  font-size: 11px;
  margin-top: 2px;
}

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

  li {
    margin-bottom: 0;
    position: relative;
    padding-left: 6px;
  }

  li:first-child {
    padding-left: 0;
  }

  li:first-child::before {
    display: none;
  }

  li::before {
    content: "";
    width: 1px;
    height: 10px;
    background-color: #fff;
    position: absolute;
    left: 0;
    top: 10px;
  }
}

.footer-links a {
  color: #fff;
  text-decoration: underline;
  font-size: 11px;
}

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

.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;
  font-weight: 200;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.main-subtitle {
  font-size: 24px;
  margin-bottom: 25px;
  text-align: center;
  font-weight: 200;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.form-title {
  font-size: 32px;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 200;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.form-subtitle {
  font-size: 16px;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 200;
}

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

.questions-list {
  max-height: 95%;
  max-width: 100%;
  display: flex;
  gap: 25px;
}

.questions-list-item {
  flex: 1;
  border-radius: 30px;
  overflow: hidden;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.q-item-image {
  position: relative;
  display: block;
  overflow: hidden;
  flex: 1 1 auto;
  min-height: 0;
}

.q-item-image > img:not(.q-item-image-play) {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.q-item-image:hover > img:not(.q-item-image-play),
.q-item-image:focus > img:not(.q-item-image-play) {
  transform: scale(1.08);
}

.q-item-image-play {
  position: absolute;
  display: block;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 136px;
}

.q-item-info {
  flex: 0 0 auto;
  padding: 40px;
  text-align: center;

  .button {
    max-width: 180px;
  }
}

.q-item-info-title {
  font-size: 27px;
  font-weight: 200;
}

.new-login {
  background-color: #f4f4f4;
  background-image: url("../assets/images/ploom-club-kv1.png");
  background-position: right center;
  background-repeat: no-repeat;
  background-size: contain;

  .login-box {
    min-height: 1080px;
    padding-top: 150px;
    padding-left: 150px;
    padding-bottom: 150px;
    text-align: left;
    justify-content: space-between;
    align-items: flex-start;

    .logo {
      margin-bottom: 0;
    }
  }

  .login-box-subtitle {
    margin-bottom: 25px;
  }

  .form-wrapper {
    form {
      flex-direction: row;
      gap: 10px;
      flex-wrap: nowrap !important;
    }

    .btn-action {
      align-self: flex-end;
      width: auto !important;
    }
  }
}

.new-login-small {
  background-image: url("../assets/images/ploom-club-kv2.png");
  min-height: auto;

  .login-box {
    min-height: 733px;
  }
}

@media only screen and (min-width: 1811px) {
  .new-login-small {
    background-size: auto 90%;
  }
}

.new-login-account {
  background-position: right top;

  .login-box {
    min-height: 640px;
  }

  .how-it-works-inner {
    gap: 50px;
  }
}

.prizes-go {
  font-size: 32px;
  font-weight: 300;
  text-transform: uppercase;
  color: #000;
  background-image: url("../assets/images/arrow-left.svg");
  padding-left: 70px;
  background-position: 12px center;
  background-repeat: no-repeat;
  background-size: 44px auto;
  line-height: 1.2;
  position: relative;
  padding-bottom: 10px;
}

.prizes-go::after {
  content: "";
  width: 80px;
  height: 2px;
  background-color: #000;
  position: absolute;
  left: 70px;
  bottom: 0;
}

.prizes-go:hover {
  animation: prizes-go-arrow 0.7s ease-in-out infinite;
}

@keyframes prizes-go-arrow {
  0%,
  100% {
    background-position: 12px center;
  }
  50% {
    background-position: left center;
  }
}

.login-wrapper.new-login {
  grid-template-rows: auto 1fr auto auto auto;
  grid-template-areas:
    "menu menu"
    "box visual"
    "benefits benefits"
    "how-it-works how-it-works"
    "footer footer";
}

.how-it-works {
  grid-area: how-it-works;
  width: 100%;
  background-color: #fff;
  padding: 50px 0;
}

.how-it-works-inner {
  display: flex;
  gap: 150px;
}

.how-it-works-info {
  max-width: 310px;
  width: 100%;

  p {
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 200;
  }
}

.how-it-works-title {
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 4px;
}

.hiw-prizes {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.how-it-works-prize {
  border-top: 2px solid rgba(0, 0, 0, 0.2);
  border-bottom: 2px solid rgba(0, 0, 0, 0.2);
  padding: 20px 0;
  display: flex;
  gap: 30px;
  align-items: center;
}

.how-it-works-prize:first-child:nth-last-child(3)
  ~ .how-it-works-prize:nth-child(2) {
  border-top: none;
  border-bottom: none;
}

.hiw-prize-box {
  width: 100px;
  min-width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;

  img {
    display: block;
    max-width: 80px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
  }
}

.hiw-info-title {
  font-size: 18px;
  margin-bottom: 5px;
}

.hiw-info-subtitle {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 8px;
}

.hiw-info-text {
  margin-bottom: 0;
  font-size: 12px;
  font-weight: 700;
}

.hiw-info-text.status {
  font-weight: 400;
}

.hiw-info-text.status em {
  font-style: italic;
}

.hiw-info-desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.4;
  margin: 5px 0 0 0;
}

.hiw-info-small {
  display: block;
  font-size: 12px;
  margin-top: 4px;
}

.hiw-info-small a,
.hiw-info-desc a {
  color: #fff;
  text-decoration: underline;
}

.hiw-info .button-alegere {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 20px;
  background: #fff;
  color: #000;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
}

.hiw-info .copy {
  cursor: pointer;
  margin-left: 4px;
}

.hiw-no-prize h4 {
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 10px;
}

.hiw-no-prize {
  flex: 1;
}

.hiw-no-prize p {
  font-size: 14px;
  font-weight: 200;
}

.benefits {
  grid-area: benefits;
  width: 100%;
  background-color: #fff;
  padding-top: 50px;
  padding-bottom: 50px;

  [class^="column"],
  [class*=" column"] {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
  }
}

.benefits-title {
  display: none;
}

.benefits-info {
  p {
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 200;
  }
}

.benefits-info-title {
  font-size: 20px;
  font-weight: 200;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  margin-bottom: 8px;
}

.input-field-wrap {
  width: 70%;

  label {
    font-size: 12px;
    font-weight: 200;
  }
}

.input-field-wrap .input-field {
  width: 100%;
  padding-right: 50px;
  color: #000 !important;
  background-image: url("../assets/images/small-phone.svg") !important;
  background-repeat: no-repeat !important;
  background-position: right 18px center !important;
  background-size: 16px auto !important;
  background-color: #fff !important;
  text-align: left !important;
  font-size: 16px !important;
}

.input-field-wrap .input-field::placeholder {
  color: #969695 !important;
}

.perioada {
  font-size: 14px;
  font-weight: 200;
  margin-top: 30px;
}

.how-it-works-prize-real {
  border: none;
}

.how-it-works-inner-bordered {
  border-bottom: 2px solid rgba(0, 0, 0, 0.2);
}

.login-footnote {
  font-size: 14px;
  font-weight: 200;
  margin-top: 10px;

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

  a:hover {
    text-decoration: none;
  }
}

.login-box-down {
  width: 100%;
}

@media only screen and (max-width: 1810px) {
  .new-login {
    background-position: right bottom;

    .login-box {
      min-height: auto;
      padding-left: 100px;
      padding-bottom: 70px;
      padding-top: 100px;
    }
  }

  .new-login-small {
    .login-box {
      min-height: 733px;
    }
  }

  .new-login-account {
    background-position: right top;

    .login-box {
      min-height: 640px;
    }
  }
}

.color-red {
  color: #f00;
}

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

  .new-login {
    .logo {
      max-width: 250px;
      margin-bottom: 40px;
    }
  }

  .sm-button {
    width: 220px;
  }

  .q-item-info {
    padding: 20px;
  }

  .q-item-info-title {
    font-size: 24px;
  }

  .q-item-image-play {
    max-width: 90px;
  }
}

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

  .footer-inner {
    gap: 0;
  }
}

@media only screen and (max-width: 1275px) {
  .new-login {
    .login-box {
      padding-left: 50px;
      padding-bottom: 50px;
      padding-top: 50px;
    }
  }
}

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

  .sm-button {
    width: 100%;
  }

  .hero {
    min-height: 0;
  }

  .how-it-works-inner {
    gap: 30px;
  }
}

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

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

  .footer-text {
    margin-top: 0;
    text-align: center;
  }

  .footer-text span {
    display: none;
  }

  .button.btn-action-duo,
  .button.btn-action-duo-2 {
    min-width: auto;
  }

  .q-item-image-play {
    max-width: 60px;
  }

  .q-item-info-title {
    font-size: 20px;
  }

  .login-wrapper.new-login {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto auto;
    grid-template-areas:
      "menu"
      "box"
      "benefits"
      "how-it-works"
      "footer";
  }

  .new-login {
    background-image: url("../assets/images/ploom-club-kv-md.png");
    background-position: center top;
    background-size: 100% auto;
    background-repeat: no-repeat;
  }

  .new-login {
    .login-box {
      /* padding-top: 120.533%; */
      margin-top: 75%;
      background-color: #f0f0f0;
      padding: 20px;
    }

    .login-box-title {
      display: none;
    }
  }

  .new-login .logo {
    display: none;
  }

  .new-login-small {
    background-image: none;
  }

  .new-login-small .login-box {
    margin-top: 0;
    padding-bottom: 120.533%;
    padding-top: 50px;
    background-image: url("../assets/images/ploom-club-kv-md.png");
    background-position: center bottom;
    background-size: 100% auto;
    background-repeat: no-repeat;
  }

  .new-login .form-wrapper {
    width: 100%;

    .btn-action {
      width: 30% !important;
    }
  }

  .new-login .input-field-wrap {
    width: 70%;

    .input-field {
      width: 100%;
    }
  }

  .new-login-account {
    background-image: url(../assets/images/ploom-club-kv-md.png);
  }

  .new-login-account .login-box {
    margin-top: 0;
    padding: 20px;
    background-color: transparent;
    background-image: none;
  }
}

@media only screen and (max-width: 992px) {
  .benefits-title {
    display: block;
    padding: 0 16px;
    font-size: 32px;
    font-weight: 200;
    position: relative;
    padding-bottom: 8px;
    margin-bottom: 25px;
  }

  .benefits-title::after {
    content: "";
    width: 75px;
    height: 1px;
    background-color: #000;
    position: absolute;
    left: 16px;
    bottom: 0;
  }

  .benefits {
    padding-top: 40px;
    padding-bottom: 40px;

    .row {
      display: flex;
      flex-direction: column;
      gap: 30px;
    }

    [class^="column"],
    [class*=" column"] {
      width: 100%;
      justify-content: flex-start;

      img {
        width: 62px;
      }
    }
  }
}

@media only screen and (max-width: 980px) {
  .new-login {
    .form-wrapper {
      form {
        display: flex !important;
      }
    }

    .input-field-wrap {
      .input-field {
        margin-bottom: 0 !important;
      }
    }
  }
}

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

  .login-wrapper-box-first {
    grid-template-areas:
      "menu"
      "box"
      "visual"
      "footer";

    .login-visual {
      background-image: none;
      background-color: transparent;
      margin-bottom: 40px;
    }

    .logo {
      display: none;
    }
  }

  .questions-list-item {
    background-color: #f2f2f2;
  }

  .questions-list {
    max-height: none;
  }

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

  .hero {
    margin-bottom: 40px;
  }

  .hero-video-desktop {
    display: none;
  }

  .hero-video-mobile {
    display: block;
    width: 100%;
    height: auto;
  }

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

  .hero-content-2col {
    grid-template-areas:
      "sogood"
      "packs";
  }

  .hero-content-2col .hero-sogood {
    max-width: 100%;
    margin-bottom: 30px;
    margin-top: 0;
  }

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

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

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

    br {
      display: none;
    }
  }

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

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

  .form-box {
    form {
      width: 100%;
    }

    .row {
      display: flex;
    }

    .column-6 {
      width: 50%;
    }

    .form-title,
    .form-subtitle {
      max-width: none;
    }
  }
}

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

  .how-it-works-inner {
    flex-direction: column;
  }

  .how-it-works-info {
    max-width: none;
  }

  .hiw-prize-box {
    width: 70px;
    min-width: 70px;
    height: 70px;

    img {
      max-width: 55px;
      max-height: 55px;
    }
  }

  .hiw-info-title {
    font-size: 15px;
  }

  .hiw-info-subtitle {
    font-size: 12px;
  }

  .hiw-info-desc {
    font-size: 12px;
  }
}

@media only screen and (max-width: 600px) {
  .new-login {
    background-image: url("../assets/images/ploom-club-kv-xs.png");
    background-position: center top;
    background-size: 100% auto;
    background-repeat: no-repeat;
  }

  .new-login .login-box {
    margin-top: 120.426%;
    background-color: transparent;
  }

  .new-login-small {
    background-image: none;
  }

  .new-login-small .login-box {
    margin-top: 0;
    padding-bottom: 120.426%;
    background-image: url("../assets/images/ploom-club-kv-xs.png");
    background-position: center bottom;
    background-size: 100% auto;
    background-repeat: no-repeat;
  }

  .new-login-account {
    background-image: none;

    .login-box {
      padding-bottom: 20px;
      padding-top: 113%;
      min-height: auto;
    }
  }

  .logo {
    max-width: 120px;
    margin-bottom: 20px;
  }

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

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

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

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

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

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

  .hero-packs {
    gap: 20px;
    max-width: 80%;
  }

  .login-visual-box {
    padding-left: 30px;
    padding-right: 30px;
  }

  .site-header .button-account {
    padding-left: 5px;
    padding-right: 5px;
    margin-right: 20px !important;
  }

  .site-header .button-account:last-of-type {
    margin-right: 0 !important;
  }

  .questions-list {
    flex-direction: column;
    gap: 15px;
  }

  .q-item-image {
    max-height: 210px;
  }

  .q-item-image > img:not(.q-item-image-play) {
    width: auto;
    max-width: 100%;
    margin: 0 auto;
    object-fit: contain;
    object-position: center;
    margin-top: -100px;
  }

  .q-item-image-play {
    max-width: 80px;
  }

  .packs-join {
    max-width: 330px;
  }

  .new-login .form-wrapper {
    form {
      flex-direction: column;
    }

    .btn-action {
      width: 100% !important;
    }
  }

  .new-login .input-field-wrap {
    width: 100%;
  }

  .how-it-works-prize {
    gap: 10px;
    flex-direction: column;
    align-items: flex-start;
  }

  .how-it-works-prize-real {
    flex-direction: row;
  }

  .hiw-prize-box {
    width: 80px;
    min-width: 80px;
    height: 80px;

    img {
      max-width: 65px;
      max-height: 65px;
    }
  }

  .hiw-info {
    width: 100%;
  }

  .prizes-go {
    background-image: none;
    padding-left: 0;
  }

  .prizes-go::after {
    left: 0;
  }

  .login-wrapper-box-first {
    .login-box {
      padding-bottom: 0;
    }

    .q-item-info {
      padding: 15px 20px;
    }

    .q-item-info-title {
      margin-bottom: 15px;
    }
  }
}

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

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

  .login-visual-box {
    padding-left: 15px;
    padding-right: 15px;
  }
}

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

/* ===== Video modal + custom player ===== */
body.video-modal-open {
  overflow: hidden;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.video-modal.is-open {
  display: flex;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.8);
}

.video-modal-dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 960px;
}

.video-modal-close {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 1;
  width: 32px;
  height: 32px;
  padding: 0;
  margin: 0;
  border: none;
  background: transparent url("../assets/images/close.png") center / contain
    no-repeat !important;
  cursor: pointer;
}

.video-modal-close:hover,
.video-modal-close:focus {
  background-color: transparent;
  border: none;
}

.video-player {
  position: relative;
  width: 100%;
  background-color: #000;
  border-radius: 8px;
  overflow: hidden;
  line-height: 0;
}

.video-player-media {
  display: block;
  width: 100%;
  height: auto;
  max-height: 80vh;
}

/* fullscreen: let the video fit the whole screen */
.video-player:fullscreen {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
}

.video-player:fullscreen .video-player-media {
  width: 100%;
  height: 100%;
  max-height: 100vh;
  object-fit: contain;
}

.video-player-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  line-height: normal;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
}

.vp-btn {
  position: relative;
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  padding: 0;
  margin: 0;
  border: none;
  background: none;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
}

.vp-btn:hover,
.vp-btn:focus {
  opacity: 0.75;
  background: none;
  color: #fff;
}

.vp-btn .vp-i,
.vp-btn > svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  display: block;
}

.vp-skip-num {
  position: absolute;
  bottom: 4px;
  right: 2px;
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}

/* icon swapping based on player state */
.video-player:not(.is-paused) .vp-i-play {
  display: none;
}

.video-player.is-paused .vp-i-pause {
  display: none;
}

.video-player:not(.is-muted) .vp-i-muted {
  display: none;
}

.video-player.is-muted .vp-i-volume {
  display: none;
}

.vp-time {
  flex-shrink: 0;
  color: #fff;
  font-size: 13px;
  font-family: "Noto Sans", sans-serif;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.vp-progress {
  position: relative;
  flex: 1 1 auto;
  min-width: 60px;
  height: 6px;
  border-radius: 3px;
  background-color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
}

.vp-progress-filled {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0%;
  border-radius: 3px;
  background-color: #fff;
}

@media only screen and (max-width: 600px) {
  .video-player-controls {
    gap: 8px;
    padding: 10px;
  }

  .vp-btn {
    width: 30px;
    height: 30px;
  }

  .vp-time {
    font-size: 11px;
  }
}

.loading-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

.loading-overlay.is-active {
  display: flex;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
