:root {
  --blue-4: #00114b;
  --blue-3: #002364;
  --blue-2: #00357c;
  --blue-1: #004694;
  --blue: #0054a6;
  --blue-light: #edf5fd;
  --line: #d5dcdf;
  --line-strong: #7f95a0;
  --muted: #67818e;
  --disabled: #95a6af;
  --bg-soft: #f3f4f6;
  --cookie: #3c4950;
  --orange: #ff9f12;
  --shadow-header: 0 2px 4px -1px rgba(44, 52, 57, 0.2), 0 4px 5px rgba(44, 52, 57, 0.14), 0 1px 10px rgba(44, 52, 57, 0.12);
  --shadow-card: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px rgba(0, 0, 0, 0.14), 0 1px 5px rgba(0, 0, 0, 0.12);
  --shadow-menu: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px rgba(0, 0, 0, 0.14), 0 3px 14px rgba(0, 0, 0, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: var(--blue-4);
}

a {
  color: inherit;
}

.v-application {
  background: linear-gradient(113.47deg, var(--blue-light), #fff);
  color: var(--blue-4);
  min-height: 100vh;
  display: flex;
}

.v-application--wrap {
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.header-content {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background: #fff;
  box-shadow: var(--shadow-header);
}

.header-container-top {
  width: 100%;
  height: 48px;
  background: var(--bg-soft);
}

.header-container {
  width: 100%;
  height: 96px;
}

.nusz-back-btn {
  border: 0;
  text-decoration: none;
  border-radius: 4px;
  color: var(--blue);
  transition: background-color 0.2s ease;
}

.nusz-back-btn:hover {
  background: rgba(44, 52, 57, 0.04);
}

.skip-link {
  top: 0;
  left: 0;
  position: fixed;
  opacity: 0;
  z-index: 20;
  width: 203px;
  height: 56px;
  color: #fff;
  background: #2c3439;
  padding: 16px 24px;
  pointer-events: none;
  text-decoration: none;
}

.skip-link:focus {
  opacity: 1;
  pointer-events: auto;
  border-radius: 0 0 4px 0;
}

.language-selector-content {
  padding: 0 12px;
  border-radius: 4px;
  max-width: 140px;
  position: relative;
  transition: background-color 0.2s ease;
}

.language-selector-content:hover {
  background: rgba(44, 52, 57, 0.04);
}

.language-selector {
  height: 34px;
  border-radius: 4px;
  cursor: pointer;
}

.flag {
  width: 20px;
  height: 14px;
  object-fit: cover;
}

.header-logo {
  height: 60px;
  display: flex;
  align-items: center;
}

.header-logo img {
  height: 64px;
}

.nusz-logo {
  width: auto;
}

.header-title .text-subtitle-1 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
}

.header-title .text-caption {
  font-size: 14px;
  line-height: 20px;
}

.header-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 4px;
}

.routerLink {
  border-radius: 4px;
  padding: 6px 16px;
  line-height: 36px;
  font-weight: 500;
  color: var(--blue-4);
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.routerLink:hover {
  background: rgba(44, 52, 57, 0.04);
}

.routerLinkActive {
  color: var(--blue);
  cursor: default;
}

.routerLinkActive:hover {
  background: transparent;
}

.menu-drop .v-btn {
  height: inherit;
  padding: 6px 16px;
}

.v-main.main {
  margin-top: 144px;
}

.v-main {
  display: flex;
  flex: 1 0 auto;
  max-width: 100%;
}

.v-main__wrap {
  flex: 1 1 auto;
  max-width: 100%;
  position: relative;
}

.main-content-page {
  padding: 64px 0;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0;
}

.main-content-padding {
  padding-left: 0;
  padding-right: 0;
}

.sticker-purchase-content .stepper-content {
  max-width: 676px;
  margin: auto;
}

.stepper-pointer-content {
  margin: auto;
  display: flex;
  width: calc(100% - 116px);
  height: 14px;
  justify-content: space-between;
  align-items: center;
}

.stepper-pointer {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid #fff;
  background: var(--muted);
  transition: width 0.28s ease, height 0.28s ease, border-color 0.28s ease, background-color 0.28s ease;
}

.stepper-pointer.active {
  width: 14px;
  height: 14px;
  border: 2px solid var(--blue);
  background: #fff;
}

.stepper-pointer.complete {
  width: 7px;
  height: 7px;
  border: 1px solid var(--blue);
  background: var(--blue);
}

.stepper-line {
  flex: 1;
  height: 2px;
  background: var(--muted);
  margin: 0 2px;
  border-radius: 1px;
  transition: background-color 0.28s ease;
}

.stepper-line.complete {
  background: var(--blue);
}

.stepper-step-content {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.stepper-step {
  flex-basis: 130px;
  text-align: center;
  color: var(--muted);
}

.stepper-step.active {
  color: var(--blue);
}

.stepper-step.text--darken-2 {
  color: var(--muted);
}

.card-content {
  max-width: 676px;
  margin: auto;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border-radius: 6px;
  background: #fff;
}

.v-stepper {
  border-radius: 6px;
  position: relative;
}

.v-stepper__content {
  width: 100%;
  display: none;
  animation: step-in 0.24s ease;
}

.v-stepper__content.is-active {
  display: block;
}

@keyframes step-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.v-stepper__wrapper {
  overflow: hidden;
}

.text-h4 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
  margin: 0;
}

.text-h5 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
  margin: 0;
}

.body-1,
.text-body-1 {
  font-size: 16px;
  line-height: 24px;
}

.text-subtitle-2 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}

.text-caption {
  font-size: 14px;
  line-height: 20px;
}

.text-body-2 {
  font-size: 14px;
  line-height: 20px;
}

.v-input {
  width: 100%;
}

.v-input__control {
  display: flex;
  flex-direction: column;
}

.v-input__slot {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 56px;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid var(--line);
  border-radius: 4px;
  position: relative;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.language-selector .v-input__slot {
  min-height: 26px;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
}

.language-selector .v-select__slot {
  padding: 0;
}

.language-selector .v-select__selections {
  justify-content: center;
  min-height: 24px;
  padding-left: 6px;
  padding-right: 4px;
}

.language-selector .v-select__selection {
  margin: 0;
}

.language-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  left: auto;
  min-width: 140px;
  max-width: 140px;
  max-height: 180px;
  overflow-y: auto;
  border-radius: 4px;
  background: #fff;
  box-shadow: var(--shadow-menu);
  z-index: 220;
  padding: 4px 0;
}

.language-option {
  width: 100%;
  min-height: 40px;
  border: 0;
  background: transparent;
  color: var(--blue-4);
  font-family: inherit;
  font-size: 14px;
  text-align: left;
  padding: 8px 12px;
  cursor: pointer;
}

.language-option:hover,
.language-option[aria-selected="true"] {
  background: rgba(44, 52, 57, 0.08);
}

.v-input.v-input--is-focused .v-input__slot {
  box-shadow: inset 0 -2px 0 var(--blue);
  border-color: var(--blue);
}

.v-select__slot,
.v-text-field__slot {
  display: flex;
  width: 100%;
  align-items: center;
  position: relative;
  padding: 0 12px;
}

.v-label {
  color: rgba(0, 0, 0, 0.6);
  font-size: 16px;
  line-height: 20px;
  position: absolute;
  left: 12px;
  top: 18px;
  pointer-events: none;
  transform-origin: left top;
  transition: transform 0.2s ease, color 0.2s ease, font-size 0.2s ease;
}

.v-select .v-label {
  top: 50%;
  transform: translateY(-50%);
}

.v-input--active-label .v-label,
.v-input--is-focused .v-label {
  transform: translateY(-11px) scale(0.75);
  color: var(--blue-4);
}

.v-select.v-input--active-label .v-label,
.v-select.v-input--is-focused .v-label {
  top: 18px;
  transform: translateY(-11px) scale(0.75);
}

.v-label--is-disabled {
  color: rgba(0, 0, 0, 0.38);
}

.v-select__slot input,
.v-text-field__slot input {
  margin-top: 22px;
  margin-bottom: 6px;
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  color: var(--blue-4);
  font-family: inherit;
  font-size: 16px;
  line-height: 20px;
  padding: 0;
}

.v-select .v-select__slot input {
  margin-top: 12px;
  margin-bottom: 10px;
}

.v-select.v-input--active-label .v-select__slot input,
.v-select.v-input--is-focused .v-select__slot input {
  margin-top: 22px;
  margin-bottom: 6px;
}

.v-input--is-disabled .v-input__slot {
  background: var(--line);
  border-color: #c5ccd3;
}

.v-input--is-disabled input {
  color: rgba(0, 0, 0, 0.38);
}

.v-text-field__details {
  min-height: 14px;
  margin-bottom: 8px;
  padding: 0 12px;
}

.v-messages__wrapper {
  min-height: 14px;
}

.v-input__append-inner {
  display: inline-flex;
  margin-left: auto;
  align-items: center;
}

.v-input__icon .v-icon {
  font-size: 24px;
}

.country-menu,
.county-menu {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  right: 0;
  z-index: 210;
  border-radius: 4px;
  background: #fff;
  box-shadow: var(--shadow-menu);
  max-height: 240px;
  overflow-y: auto;
  padding: 4px 0;
}

.country-option,
.county-option {
  min-height: 48px;
  padding: 12px 16px;
  font-size: 16px;
  line-height: 24px;
  color: var(--blue-4);
  cursor: pointer;
  display: flex;
  align-items: center;
}

.country-option:hover,
.country-option[aria-selected="true"],
.county-option:hover,
.county-option[aria-selected="true"] {
  background: rgba(44, 52, 57, 0.08);
}

.form-input-item {
  width: 100%;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -4px;
  margin-right: -4px;
}

.col-12,
.col-sm,
.col-sm-6,
.col-lg-3,
.col-4 {
  position: relative;
  width: 100%;
  padding-left: 4px;
  padding-right: 4px;
}

.col-4 {
  width: 33.333333%;
}

.selectorContent {
  display: flex;
  width: 100%;
}

.selectorContent fieldset {
  width: 100%;
}

.selectorContent--tight .selectorItem {
  min-height: 56px;
}

.selectorContent--tight .selectorItem label {
  border-radius: 6px;
}

.selectorContent .selectorItem {
  min-height: 64px;
}

.selectorContent .no-gutters > .selectorItem {
  padding-left: 4px;
  padding-right: 4px;
}

.selectorContent .selectorItem label {
  cursor: pointer;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 0 0 1px var(--line-strong);
  border-radius: 8px;
  background: var(--bg-soft);
  transition: box-shadow 0.2s ease;
}

.selectorContent .selectorItem input:focus + label,
.selectorContent .selectorItem input:hover + label {
  box-shadow: 0 0 0 1px var(--blue);
}

.selectorContent .selectorItem input:checked + label {
  box-shadow: 0 0 0 3px var(--blue);
}

.radio-toolbar {
  opacity: 0;
  position: fixed;
  width: 0;
}

.v-btn {
  align-items: center;
  border-radius: 4px;
  display: inline-flex;
  justify-content: center;
  position: relative;
  text-decoration: none;
  border: none;
  font-family: inherit;
  font-weight: 500;
  transition-duration: 0.28s;
  transition-property: box-shadow, transform, opacity, background-color, color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.v-btn:before {
  background: currentColor;
  border-radius: inherit;
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  transition: opacity 0.2s cubic-bezier(0.4, 0, 0.6, 1);
}

.v-btn:hover:before {
  opacity: 0.08;
}

.v-btn__content {
  align-items: center;
  display: flex;
  justify-content: center;
  line-height: normal;
  position: relative;
}

.v-btn.v-size--small {
  height: 35px;
  min-width: 62px;
  font-size: 14px;
  padding: 0 15px;
}

.v-btn.v-size--default {
  height: 41px;
  min-width: 73px;
  font-size: 16px;
  padding: 0 18px;
}

.v-btn--text {
  background: transparent;
}

.v-btn--outlined {
  border: 1px solid currentColor;
  background: transparent;
}

.v-btn--has-bg {
  background: var(--line);
}

.v-btn--block {
  display: flex;
  width: 100%;
}

.theme--light.v-btn {
  color: var(--blue-4);
}

.theme--light.v-btn.v-btn--disabled,
.theme--light.v-btn.v-btn--disabled .v-icon {
  color: #fff;
}

.theme--light.v-btn.v-btn--disabled.v-btn--has-bg {
  background: var(--disabled);
}

.primary {
  background: var(--blue);
  color: #fff;
}

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

.blue--text {
  color: var(--blue);
}

.text--darken-1 {
  color: #5a717c;
}

.text--darken-2 {
  color: #5a717c;
}

.text--darken-4 {
  color: var(--blue-4);
}

.grey--text {
  color: #5a717c;
}

.orange--text {
  color: var(--orange);
}

.shades--text.text--white {
  color: #fff;
}

.text-button {
  min-width: auto;
}

.text-button:before {
  background-color: transparent;
}

.neutral-lighten-3-border-btn {
  background: var(--blue-light);
  border: 1px solid #4c78c9;
}

.neutral-lighten-3-border-btn.v-btn--has-bg {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.basket-icon {
  position: relative;
  background: transparent;
}

.v-btn--icon {
  min-width: 0;
  width: 41px;
  height: 41px;
  padding: 0;
}

.v-btn--round {
  border-radius: 50%;
}

.v-icon {
  font-size: 24px;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.v-icon--link {
  cursor: pointer;
  border: 0;
  background: transparent;
}

.sticker-shop {
  background: #fff;
  border-top: 1px solid var(--line);
}

.summary-table {
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}

.summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  color: var(--blue-4);
}

.summary-row:last-child {
  border-bottom: 0;
}

.notranslate {
  color: var(--blue-4);
}

.footer {
  background: #f3f4f6;
  padding-top: 40px;
  padding-bottom: 40px;
  margin-top: auto;
}

.footer .row {
  margin-left: -12px;
  margin-right: -12px;
}

.footer .col-12,
.footer .col-sm-6,
.footer .col-lg-3 {
  padding-left: 12px;
  padding-right: 12px;
}

.footer h2 {
  margin: 0;
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
  color: var(--blue-4);
}

.footer__menu {
  list-style: none;
  margin: 0;
}

.footer__menu a {
  color: var(--blue-4);
  text-decoration: none;
}

.footer__menu a:hover {
  text-decoration: underline;
}

.cookie-alert {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--cookie);
  box-shadow: 0 -3px 5px -1px rgba(44, 52, 57, 0.2), 0 -6px 10px rgba(44, 52, 57, 0.14), 0 -1px 18px rgba(44, 52, 57, 0.12);
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.cookie-alert.hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

.cookie-alert .container {
  padding-left: 24px;
  padding-right: 24px;
}

.cookie-alert p {
  margin: 0 0 12px;
}

.cookie-alert .file-content {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 4px;
}

.cookie-alert a {
  color: #fff;
}

.cookie-alert .orange--text {
  color: var(--orange);
}

.grey.darken-3 {
  background: var(--cookie);
}

.grey.lighten-5 {
  background: #f3f4f6;
}

.v-divider {
  border: solid rgba(0, 0, 0, 0.12);
  border-width: 0 thin 0 0;
  margin: 0 -1px;
  align-self: stretch;
}

.v-divider--vertical {
  height: inherit;
  max-height: 100%;
}

.header-menu-list .v-icon {
  font-size: 18px;
  width: 18px;
  height: 18px;
}

.v-input--hide-details .v-text-field__details {
  display: none;
}

.v-select__selections {
  display: flex;
  align-items: center;
  min-height: 24px;
  padding-left: 6px;
  padding-right: 4px;
}

.v-select__selection {
  color: var(--blue-4);
}

.mobile-top .header-title {
  display: none;
}

.d-flex {
  display: flex;
}

.d-none {
  display: none;
}

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

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

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

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

.justify-sm-space-between {
  justify-content: space-between;
}

.flex {
  flex: 1 1 auto;
}

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

.ml-auto {
  margin-left: auto;
}

.mx-n1 {
  margin-left: -4px;
  margin-right: -4px;
}

.px-0 {
  padding-left: 0;
  padding-right: 0;
}

.px-1 {
  padding-left: 4px;
  padding-right: 4px;
}

.px-4 {
  padding-left: 16px;
  padding-right: 16px;
}

.px-6 {
  padding-left: 24px;
  padding-right: 24px;
}

.pa-1 {
  padding: 4px;
}

.pa-sm-16 {
  padding: 64px;
}

.py-2 {
  padding-top: 8px;
  padding-bottom: 8px;
}

.py-3 {
  padding-top: 12px;
  padding-bottom: 12px;
}

.py-10 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.pb-1 {
  padding-bottom: 4px;
}

.pb-2 {
  padding-bottom: 8px;
}

.pb-3 {
  padding-bottom: 12px;
}

.pb-6 {
  padding-bottom: 24px;
}

.pb-8 {
  padding-bottom: 32px;
}

.pt-4 {
  padding-top: 16px;
}

.pt-8 {
  padding-top: 32px;
}

.pt-15 {
  padding-top: 60px;
}

.pl-0 {
  padding-left: 0;
}

.pl-1 {
  padding-left: 4px;
}

.pl-2 {
  padding-left: 8px;
}

.pl-4 {
  padding-left: 16px;
}

.pl-6 {
  padding-left: 24px;
}

.pr-2 {
  padding-right: 8px;
}

.mr-2 {
  margin-right: 8px;
}

.mr-3 {
  margin-right: 12px;
}

.ml-2 {
  margin-left: 8px;
}

.ml-4 {
  margin-left: 16px;
}

.ml-6 {
  margin-left: 24px;
}

.mt-4 {
  margin-top: 16px;
}

.mt-8 {
  margin-top: 32px;
}

.mb-16 {
  margin-bottom: 64px;
}

.ma-sm-0 {
  margin: 0;
}

.w-100 {
  width: 100%;
}

.w-sm-auto {
  width: auto;
}

.h-100 {
  height: 100%;
}

.remove-line-height {
  line-height: 0;
}

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

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

.text-decoration-none {
  text-decoration: none;
}

.no-gutters {
  margin-left: 0;
  margin-right: 0;
}

.no-gutters > [class*="col"] {
  padding-left: 0;
  padding-right: 0;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

@media (min-width: 600px) {
  .col-sm-6 {
    width: 50%;
    max-width: 50%;
    flex: 0 0 50%;
  }

  .col-sm {
    width: 25%;
    max-width: 25%;
    flex: 0 0 25%;
  }

  .d-sm-flex {
    display: flex;
  }

  .d-sm-none {
    display: none;
  }

  .w-sm-auto {
    width: auto;
  }

  .py-sm-4 {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .px-sm-16 {
    padding-left: 64px;
    padding-right: 64px;
  }

  .pt-sm-0 {
    padding-top: 0;
  }

  .mt-sm-0 {
    margin-top: 0;
  }

  .pb-sm-0 {
    padding-bottom: 0;
  }

  .px-sm-0 {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (min-width: 960px) {
  .d-md-flex {
    display: flex;
  }

  .d-md-none {
    display: none;
  }

  .px-md-4 {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (max-width: 959px) {
  .header-content {
    height: 80px;
  }

  .header-container {
    height: 80px;
  }

  .v-main.main {
    margin-top: 96px;
  }

  .main-content-page {
    padding-top: 32px;
    padding-bottom: 48px;
  }

  .header-logo img {
    height: 48px;
  }

  .mobile-top .header-title {
    display: block;
  }

  .mobile-top .text-subtitle-1 {
    font-size: 18px;
    line-height: 22px;
  }

  .mobile-top .text-caption {
    font-size: 12px;
    line-height: 14px;
  }

  .cookie-alert p {
    margin-bottom: 10px;
  }
}

@media (max-width: 599px) {
  .container {
    padding: 0;
  }

  .stepper-pointer-content {
    width: 100%;
  }

  .remove-card-shadow {
    box-shadow: none;
    border-radius: 0;
  }

  .pa-sm-16 {
    padding: 16px;
  }

  .selectorItem {
    width: 50%;
    max-width: 50%;
    flex: 0 0 50%;
  }

  .cookie-alert .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .text-right {
    text-align: left;
  }

  .mt-8 {
    margin-top: 16px;
  }

  .mb-16 {
    margin-bottom: 24px;
  }

  .footer {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .pt-15 {
    padding-top: 32px;
  }
}

.summary-cart ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.summary-cart .sticker-card {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 1rem;
}

.summary-cart .header-title {
  margin: 0;
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
}

.summary-cart .header-price {
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
}

.sticker-card-country-flag {
  width: 26px;
  height: auto;
}

.hyper-links {
  color: var(--blue);
}

.credit-card-icons {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.credit-card img {
  display: block;
  height: 32px;
  width: auto;
}

.summary-check .v-input {
  width: auto;
}

.summary-check .v-input__slot {
  min-height: 24px;
  border: 0;
  background: transparent;
  padding: 0;
}

.summary-check .v-input__control {
  justify-content: center;
}

.summary-check .v-input--selection-controls__input {
  width: 24px;
  height: 24px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.summary-check .v-input--selection-controls__input input {
  position: absolute;
  inset: 0;
  opacity: 0;
  margin: 0;
  cursor: pointer;
}

#summary-pay-btn.primary {
  color: #fff;
}

@media (max-width: 959px) {
  .summary-cart .header-title,
  .summary-cart .header-price {
    font-size: 22px;
    line-height: 30px;
  }
}

@media (max-width: 599px) {
  .summary-cart .header-title,
  .summary-cart .header-price {
    font-size: 20px;
    line-height: 28px;
  }
}

.step2-vehicle-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 34px;
  flex-wrap: wrap;
}

.step2-vehicle-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.step2-vehicle-value {
  font-size: 32px;
  line-height: 40px;
  color: var(--blue-4);
}

#step2-category-icon {
  font-size: 30px;
}

.vignette-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.vignette-option {
  min-width: 0;
}

.vignette-option label {
  width: 100%;
  min-height: 56px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  transition: box-shadow 0.2s ease;
}

.vignette-option input:checked + label {
  border-color: var(--blue);
  box-shadow: 0 0 0 2px var(--blue);
}

.vignette-option-text {
  color: var(--blue-4);
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
}

.sticker-shop--step2 {
  background: #f1c980;
  border-top: 1px solid #e1ba73;
  margin-top: 24px;
  padding-top: 16px;
  padding-bottom: 16px;
}

.step2-shop-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

#to-step-3 {
  min-width: 196px;
}

.step2-duration-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.step2-duration-btn {
  min-height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 9px;
  background: #fff;
  color: var(--blue-4);
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
}

.step2-duration-btn.active {
  border-color: var(--blue);
  box-shadow: 0 0 0 2px var(--blue);
}

.step2-validity {
  display: grid;
  grid-template-columns: minmax(280px, 320px) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.step2-validity-start {
  min-height: 78px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.06);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.step2-validity .v-icon {
  opacity: 1;
}

.step2-validity.no-calendar .step2-validity-start {
  cursor: default;
}

.step2-validity.no-calendar .step2-validity-start .v-icon {
  opacity: 0;
}

.step2-validity-label {
  font-size: 12px;
  line-height: 18px;
  color: #5a717c;
}

.step2-validity-value {
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  white-space: nowrap;
  color: var(--blue-4);
}

.step2-validity-end {
  min-height: 78px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
}

#step2-start-date-text,
#step2-end-date-text,
#summary-start-date,
#summary-end-date {
  white-space: nowrap;
}

.step2-start-input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.step2-shop-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.summary-contact {
  display: grid;
  gap: 16px;
}

.summary-info-card {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 24px;
}

.summary-email-field .v-input__slot {
  border-color: var(--line);
  box-shadow: none;
}

.summary-email-field .v-label,
.summary-email-field .v-messages,
.summary-email-field .v-messages__message {
  color: #5a717c;
}

.summary-email-field.has-error .v-input__slot {
  border-color: #e53935;
  box-shadow: inset 0 -1px 0 #e53935;
}

.summary-email-field.has-error .v-label,
.summary-email-field.has-error .v-messages,
.summary-email-field.has-error .v-messages__message,
.summary-email-field.has-error .summary-email-msg {
  color: #e53935;
}

@media (max-width: 959px) {
  .vignette-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .step2-duration-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .step2-validity {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }

  .step2-validity-value {
    font-size: 20px;
    line-height: 28px;
  }
}

@media (max-width: 599px) {
  .step2-vehicle-card {
    gap: 18px;
  }

  .step2-vehicle-value {
    font-size: 26px;
    line-height: 32px;
  }

  #step2-category-icon {
    font-size: 26px;
  }

  .vignette-option label {
    min-height: 56px;
  }

  .vignette-option-text {
    font-size: 14px;
    line-height: 20px;
  }

  #to-step-3 {
    min-width: 168px;
  }

  .step2-duration-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .step2-duration-btn {
    font-size: 16px;
  }

  .step2-validity-start,
  .step2-validity-end {
    min-height: 72px;
  }

  .step2-validity-value {
    font-size: 18px;
    line-height: 24px;
  }

  .summary-info-card {
    padding: 16px;
  }
}

.hidden {
  display: none;
}
