body,
html {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-size: 16px;
}

body {
  z-index: 0 !important;
}

.backgroundOverlay {
  background-image: linear-gradient(180deg, #101010 5.21%, rgba(16, 16, 16, 0.9) 16.15%, rgba(16, 16, 16, 0.78) 43.23%, #333333 76.04%), url("../images/bgphoto.png");
  background-position-x: center;
  background-position-y: top;
  background-size: auto 100%;
  background-attachment: fixed;
  overflow-y: hidden;
}

* {
  box-sizing: border-box;
}

a,
a:visited,
a:active {
  color: #C4942A;
  white-space: nowrap;
  text-decoration: none;
}

.border {
  border-color: #C4942A;
  border-image: linear-gradient(#C4942A, rgba(0, 0, 0, 0)) 30;
  border-style: solid;
  border-bottom: none;
}

.bodyWrapper {
  padding-left: 48px;
  padding-right: 48px;
  height: 100%;
}

.pageWrapper {
  font-family: "Avenir Next", Helvetica, Arial, sans-serif;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 12px;
  margin: 0 auto;
  position: relative;
  max-width: 500px;
}
@media (min-width: 1025px) {
  .pageWrapper {
    width: 500px;
  }
}
.pageWrapper .logo {
  height: 48px;
  margin-top: 20px;
  position: absolute;
}
@media (min-width: 1025px) {
  .pageWrapper .logo {
    height: 76.6px;
    margin-top: 40px;
  }
}
.pageWrapper .content {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  align-items: center;
  padding: 30px 24px;
  margin-top: 116px;
  overflow-y: auto;
}
@media (min-width: 1025px) {
  .pageWrapper .content {
    margin-top: 190px;
    padding: 30px 0 0 0;
    justify-content: initial;
  }
}
.pageWrapper .content .bodyText {
  color: #CECECE;
  font-size: 14px;
}
@media (max-width: 375px) {
  .pageWrapper .content .bodyText {
    font-size: 12px;
  }
}
.pageWrapper .content .title {
  color: #C4942A;
  font-weight: 400;
  font-size: 36px;
  letter-spacing: 8px;
  width: fit-content;
  text-transform: uppercase;
}
.pageWrapper .content .buttonBase {
  font-size: 16px;
  line-height: 22px;
  color: #C4942A;
  border: #C4942A 2px solid;
  background: none;
  padding: 16px;
  width: 100%;
  cursor: pointer;
}
.pageWrapper .content .buttonBase:hover {
  background: rgba(255, 255, 255, 0.1);
}
.pageWrapper .content .buttonBase:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  color: #868685;
  border-color: #868685;
  pointer-events: none;
}

.infoRow {
  color: #ffffff;
  display: flex;
  flex-direction: column;
  padding: 16px;
  justify-content: space-between;
  font-size: 12px;
}
@media (min-width: 1025px) {
  .infoRow {
    flex-direction: row;
  }
}
.infoRow .label {
  text-align: left;
}
.infoRow .value {
  text-align: left;
}
@media (min-width: 1025px) {
  .infoRow .value {
    text-align: right;
  }
}

.not-found {
  font-size: 160px;
  color: var(--antique-gold);
  font-family: "Avenir Next", Helvetica, Arial, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
  padding-top: 150px;
}
.not-found__code {
  font-size: 160px;
  font-weight: 600;
}
.not-found__text {
  color: white;
  font-size: 40px;
  font-weight: 400;
}

.uppercase {
  text-transform: uppercase;
}

.inputLabel {
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  color: #808087;
}
.inputLabel.disabled {
  opacity: 0.64;
}
.inputLabel.hasError {
  color: #DD4A54;
}
.inputLabel--v2 {
  font-weight: 700;
  color: #8A8A8A;
  font-size: 14px;
  margin-bottom: 4px;
}
@media (min-width: 768px) {
  .inputLabel--v2 {
    font-size: 16px;
  }
}

.inputComponent,
.autocompleteComponent,
.checkComponent,
.selectComponent {
  display: block;
  position: relative;
  font-size: 14px;
  width: 100%;
  margin-bottom: 30px;
}
.inputComponent:focus, .inputComponent:active, .inputComponent.in-focus,
.autocompleteComponent:focus,
.autocompleteComponent:active,
.autocompleteComponent.in-focus,
.checkComponent:focus,
.checkComponent:active,
.checkComponent.in-focus,
.selectComponent:focus,
.selectComponent:active,
.selectComponent.in-focus {
  outline: none;
  border: 1px solid #C4942A;
  box-shadow: 0 0 0 3px rgba(195, 147, 41, 0.2);
}
.inputComponent.disabled,
.autocompleteComponent.disabled,
.checkComponent.disabled,
.selectComponent.disabled {
  opacity: 0.64;
}
.inputComponent + .errorMessage,
.autocompleteComponent + .errorMessage,
.checkComponent + .errorMessage,
.selectComponent + .errorMessage {
  color: #DD4A54;
  font-size: 12px;
  margin: -10px 0 12px 0;
  white-space: normal;
}
.inputComponent + .errorMessage img,
.autocompleteComponent + .errorMessage img,
.checkComponent + .errorMessage img,
.selectComponent + .errorMessage img {
  vertical-align: bottom;
}
.inputComponent + .errorMessage:empty,
.autocompleteComponent + .errorMessage:empty,
.checkComponent + .errorMessage:empty,
.selectComponent + .errorMessage:empty {
  display: none;
}

.inputComponent,
.autocompleteComponent,
.selectComponent {
  height: 56px;
  line-height: 20px;
  background: none;
  background-size: cover;
  transition: opacity 0.3s ease-in-out;
  border: 1px solid #B3B3BA;
  border-radius: 0;
}
.inputComponent.error,
.autocompleteComponent.error,
.selectComponent.error {
  background-image: url("../../images/input-error.svg");
}
.inputComponent.hasError,
.autocompleteComponent.hasError,
.selectComponent.hasError {
  color: #DD4A54;
  border-color: #FE7475 !important;
  background-color: #FFF1F1;
}
.inputComponent + .errorMessage,
.autocompleteComponent + .errorMessage,
.selectComponent + .errorMessage {
  margin-top: -25px;
}
.inputComponent.open .dropdown,
.autocompleteComponent.open .dropdown,
.selectComponent.open .dropdown {
  display: block;
}

.inputComponent,
.autocompleteComponent {
  display: flex;
  flex-flow: row;
  padding: 16px;
}
.inputComponent.filled .inputPlaceholder, .inputComponent.in-focus .inputPlaceholder,
.autocompleteComponent.filled .inputPlaceholder,
.autocompleteComponent.in-focus .inputPlaceholder {
  /*transform: scale(.75);
  top: 9px;
  opacity: 0.5;*/
  display: none;
}
.inputComponent .inputPlaceholder,
.autocompleteComponent .inputPlaceholder {
  pointer-events: none;
  position: absolute;
  color: #B3B3BA;
  font-size: 16px;
  opacity: 1;
  transform-origin: top left;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.inputComponent input,
.inputComponent textarea,
.autocompleteComponent input,
.autocompleteComponent textarea {
  font-size: 16px;
  color: #33333C;
  width: 100%;
  height: 24px;
  display: block;
  border: none;
  background: transparent;
}
.inputComponent input:focus,
.inputComponent textarea:focus,
.autocompleteComponent input:focus,
.autocompleteComponent textarea:focus {
  outline: none;
}
.inputComponent input::placeholder,
.inputComponent textarea::placeholder,
.autocompleteComponent input::placeholder,
.autocompleteComponent textarea::placeholder {
  opacity: 0.5;
}

.selectComponent {
  padding: 0;
  color: #B3B3BA;
}
.selectComponent.disabled {
  pointer-events: none;
}
.selectComponent.filled {
  color: #33333C;
}
.selectComponent.open {
  border: 1px solid #C4942A;
  box-shadow: 0 0 0 3px rgba(195, 147, 41, 0.2);
}
.selectComponent.open:after {
  transform: rotate(45deg);
}
.selectComponent:after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-top: 1px solid #808087;
  border-left: 1px solid #808087;
  transform: translateY(-50%) rotate(225deg);
  transition: transform 0.3s linear;
  position: absolute;
  top: 50%;
  right: 22px;
  pointer-events: none;
}
.selectComponent .selectedValue {
  cursor: pointer;
  padding: 16px 44px 18px 16px;
  display: flex;
  align-items: center;
  line-height: 22px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.selectComponent .selectedValue .listItemFlag {
  width: 30px;
  height: 20px;
  margin-right: 12px;
  vertical-align: middle;
}
.selectComponent .selectedValue .listItemFlag--v2 {
  width: 21px;
  height: 15px;
  margin-right: 10px;
}
.selectComponent .selectedValue .listItemText {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.selectComponent .selectedValue .listItemText--v2 {
  color: #3A3A3C;
  font-size: 16px;
  line-height: 24px;
  font-family: Helvetica;
}
.selectComponent .selectedValue--v2 {
  line-height: 16px;
  color: #9CA3AF;
  font-size: 16px;
  font-weight: 400;
}
.selectComponent .selectedValue .listItem__check {
  display: none !important;
}
.selectComponent--v2 {
  border: none;
  border-bottom: 1px solid #E2E8F0;
  border-radius: 0;
  margin-bottom: 0;
  height: auto;
  color: #2D2B2B;
  font-size: 16px;
}
.selectComponent--v2:focus, .selectComponent--v2:active, .selectComponent--v2.in-focus {
  border: none;
  border-bottom: 1px solid #E2E8F0;
  box-shadow: none;
}
.selectComponent--v2.open {
  border: none;
  border-bottom: 1px solid #E2E8F0;
  box-shadow: none;
}
.selectComponent--v2:after {
  content: "";
  width: 24px;
  height: 24px;
  border: none;
  background: url("../../images/chevron.svg") no-repeat center;
  background-size: contain;
  top: 11px;
  transform: none;
  transition: transform 0.3s linear;
}
.selectComponent--v2.open:after {
  transform: rotate(180deg);
}
.selectComponent--v2 .selectedValue {
  padding: 12px 44px 12px 8px;
}
.selectComponent--v2 .dropdown {
  position: relative;
  top: auto;
  bottom: auto;
  margin-top: 4px;
  border-radius: 8px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.selectComponent--v2 .dropdown input {
  border-radius: 8px;
  font-family: Helvetica;
}
.selectComponent--v2 .dropdown input::placeholder {
  padding-left: 0;
  background-image: none;
  font-family: inherit;
}
.selectComponent--v2 .dropdown input:focus {
  border-color: #3B82F6;
  outline: none;
}
.selectComponent--v2 .dropdown .listWrapper .listItem {
  position: relative;
  padding: 12px 40px 12px 16px;
}
.selectComponent--v2 .dropdown .listWrapper .listItem.checked {
  background-color: #F5F5F5;
}
.selectComponent--v2 .dropdown .listWrapper .listItem .listItem__check {
  display: none;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
}
.selectComponent--v2 .dropdown .listWrapper .listItem.checked .listItem__check {
  display: block;
}
.selectComponent--v2 + .errorMessage {
  margin-top: -4px;
}

.dropdown {
  display: none;
  background: #FFFFFF;
  border: none;
  border-radius: 0;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 60px;
  max-height: 285px;
  color: #33333C;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.dropdown.down {
  top: 60px;
  bottom: initial;
}
.dropdown input {
  background: #FFFFFF;
  border: 1px solid #B3B3BA;
  border-radius: 0;
  width: calc(100% - 32px);
  padding: 8px 16px;
  height: 40px;
  color: #33333C;
  margin: 12px 16px 16px 16px;
  font-size: 14px;
}
.dropdown input::placeholder {
  color: #B3B3BA;
  padding-left: 24px;
  background-image: url("../../images/search.svg");
  background-position: center left;
  background-repeat: no-repeat;
}
.dropdown__search {
  position: relative;
  margin: 4px;
}
.dropdown__search input {
  width: 100%;
  margin: 0;
  padding-right: 40px;
  box-sizing: border-box;
}
.dropdown__search-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  pointer-events: none;
}
.dropdown .listWrapper {
  overflow-y: auto;
  max-height: 205px;
}
.dropdown .listWrapper .listItem {
  display: flex;
  align-items: center;
  cursor: pointer;
  line-height: 22px;
  padding: 6px 16px;
  background-color: #fff;
  transition: background-color 150ms;
}
.dropdown .listWrapper .listItem.selected {
  background-color: #CECECE;
}
.dropdown .listWrapper .listItem:last-child {
  margin-bottom: 0;
}
.dropdown .listWrapper .listItem.hidden {
  display: none;
}
.dropdown .listWrapper .listItem .listItemFlag {
  width: 30px;
  height: 20px;
  margin-right: 12px;
  vertical-align: middle;
}
.dropdown .listWrapper .listItem .listItemText {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.checkComponent {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  padding: 4px 0;
}
.checkComponent .checkboxContainer {
  position: relative;
  user-select: none;
}
.checkComponent .checkboxContainer input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.checkComponent .checkboxContainer input:focus ~ .customCheckBox, .checkComponent .checkboxContainer input:active ~ .customCheckBox {
  outline: 1px solid #C4942A;
}
.checkComponent .checkboxContainer:hover input ~ .customCheckBox {
  background-color: #868685;
}
.checkComponent .checkboxContainer input ~ .customCheckBox {
  display: block;
  width: 18px;
  height: 18px;
  cursor: pointer;
  font-size: 16px;
  user-select: none;
  margin: 0;
  background-color: transparent;
  border: solid 1px #CCCCD1;
  border-radius: 2px;
  position: relative;
}
.checkComponent .checkboxContainer input ~ .customCheckBox:after {
  content: "";
  position: absolute;
  display: none;
  left: 6px;
  top: 3px;
  width: 3px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.checkComponent .checkboxContainer input:checked ~ .customCheckBox {
  background-color: #C4942A;
  border: none;
}
.checkComponent .checkboxContainer input:checked ~ .customCheckBox:after {
  display: block;
}
.checkComponent .checkLabel {
  font-size: 12px;
  padding-left: 16px;
}
.checkComponent .checkLabel a[href] {
  color: #C4942A;
  text-decoration: none;
}
.checkComponent .checkLabel a[href]:hover {
  text-decoration: underline;
}

@keyframes frame {
  0% {
    opacity: 0;
  }
}
.frameWrapper {
  position: absolute;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  max-width: 596px;
}
@media (min-width: 1025px) {
  .frameWrapper.hideWide {
    display: none;
  }
}
.frameWrapper.animateMe {
  animation-duration: 1s;
  animation-fill-mode: backwards;
  animation-timing-function: ease-in;
  animation-delay: 0.5s;
  animation-name: frame;
  animation-duration: 0.3s;
  animation-delay: 1.5s;
}
.frameWrapper .frameContainer {
  display: flex;
  height: 80%;
  margin: 87px 12px 0 12px;
}
@media (min-width: 1025px) {
  .frameWrapper .frameContainer {
    margin: 157px auto 0 auto;
  }
}
.frameWrapper .frameContainer .frame {
  height: 100%;
}
.frameWrapper .frameContainer .frame .outerBorder, .frameWrapper .frameContainer .frame .innerBorder {
  height: 100%;
}
.frameWrapper .frameContainer .frame.left div {
  border-right: none;
  border-right-width: 0;
}
.frameWrapper .frameContainer .frame.left .outerBorder {
  padding-right: 0;
}
.frameWrapper .frameContainer .frame.left {
  flex-grow: 2;
}
.frameWrapper .frameContainer .frame.right div {
  border-left: none;
  border-left-width: 0;
}
.frameWrapper .frameContainer .frame.right .outerBorder {
  padding-left: 0;
}
.frameWrapper .frameContainer .frame.right {
  flex-grow: 2;
}

.outerBorder, .innerBorder {
  border-color: #C4942A;
  border-image: linear-gradient(#C4942A, rgba(0, 0, 0, 0)) 30;
  border-style: solid;
  border-bottom: none;
}

.outerBorder {
  border-width: 2px;
  padding: 8px;
}

.innerBorder {
  border-width: 1px;
}

.pageWrapper.homePage {
  justify-content: center;
}
.pageWrapper.homePage .content {
  justify-content: center;
}
.pageWrapper.homePage .content img.logo {
  height: 84px;
}
@media (min-width: 1025px) {
  .pageWrapper.homePage .content img.logo {
    height: 160px;
  }
}

@keyframes welcomeLogoSmall {
  0% {
    height: 80px;
    transform: translate(0, 250px);
  }
}
@keyframes welcomeLogoLarge {
  0% {
    height: 200px;
    transform: translate(0, 300px);
  }
}
@keyframes welcomeContent {
  0%, 90% {
    overflow-y: hidden;
  }
  100% {
    overflow-y: auto;
  }
}
@keyframes welcomeTitle {
  0% {
    opacity: 0;
    transform: translate(0, 280px);
  }
  20% {
    opacity: 0;
  }
}
@keyframes welcomeBody {
  0% {
    opacity: 0;
    transform: translate(0, 380px);
  }
}
@keyframes welcomeButton {
  0% {
    opacity: 0;
    transform: translate(0, 480px);
  }
  10% {
    opacity: 1;
  }
}
.pageWrapper.welcomePage .logo {
  animation-name: welcomeLogoSmall;
}
@media (min-width: 1025px) {
  .pageWrapper.welcomePage .logo {
    animation-name: welcomeLogoLarge;
  }
}
.pageWrapper.welcomePage .logo {
  animation-duration: 1s;
  animation-fill-mode: backwards;
  animation-timing-function: ease-in;
  animation-delay: 0.5s;
}
.pageWrapper.welcomePage .content {
  padding: 30px 36px;
  justify-content: flex-end;
}
@media (min-width: 1025px) {
  .pageWrapper.welcomePage .content {
    justify-content: unset;
  }
}
.pageWrapper.welcomePage .content {
  animation-name: welcomeContent;
  animation-duration: 1s;
  animation-fill-mode: backwards;
  animation-timing-function: ease-in;
  animation-delay: 0.5s;
}
.pageWrapper.welcomePage .content .title {
  animation-name: welcomeTitle;
  animation-duration: 1s;
  animation-fill-mode: backwards;
  animation-timing-function: ease-in;
  animation-delay: 0.5s;
}
.pageWrapper.welcomePage .content .bodyText {
  margin-top: 20px;
  text-align: center;
  animation-name: welcomeBody;
  animation-duration: 1s;
  animation-fill-mode: backwards;
  animation-timing-function: ease-in;
  animation-delay: 0.5s;
}
.pageWrapper.welcomePage .content .buttonBase.continue {
  margin-top: 48px;
  animation-name: welcomeButton;
  animation-duration: 1s;
  animation-fill-mode: backwards;
  animation-timing-function: ease-in;
  animation-delay: 0.5s;
  animation-delay: 0.5s;
}

@media (min-width: 1025px) {
  .pageWrapper.paymentPage {
    max-width: 1080px;
    width: 1080px;
  }
}
.pageWrapper.paymentPage .content {
  align-items: unset;
  margin-top: 157px;
  padding-top: 0;
}
@media (min-width: 1025px) {
  .pageWrapper.paymentPage .content {
    flex-direction: row;
    padding: 0;
    overflow-y: hidden;
  }
}
.pageWrapper.paymentPage .content .companyInfo a, .pageWrapper.paymentPage .content .companyInfo a:visited, .pageWrapper.paymentPage .content .companyInfo a:hover {
  color: #ffffff;
  pointer-events: none;
}
.pageWrapper.paymentPage .content .boxDivider {
  display: block;
  background: #ffffff;
  opacity: 0.2;
  height: 1px;
  width: 100%;
  margin-bottom: 20px;
}
@media (min-width: 1025px) {
  .pageWrapper.paymentPage .content .boxDivider {
    display: none;
  }
}
.pageWrapper.paymentPage .content .paymentBox {
  width: 100%;
}
@media (min-width: 1025px) {
  .pageWrapper.paymentPage .content .paymentBox {
    width: 530px;
  }
}
.pageWrapper.paymentPage .content .paymentBox:first-child {
  margin-right: 20px;
}
.pageWrapper.paymentPage .content .paymentBox .infoRowContainer {
  display: flex;
  flex-direction: column;
  padding: 0;
}
@media (min-width: 1025px) {
  .pageWrapper.paymentPage .content .paymentBox .infoRowContainer {
    padding: 20px;
  }
}
.pageWrapper.paymentPage .content .paymentBox .infoRowContainer .divider {
  display: none;
}
@media (min-width: 1025px) {
  .pageWrapper.paymentPage .content .paymentBox .infoRowContainer .divider {
    display: block;
    background: #ffffff;
    opacity: 0.2;
    height: 1px;
  }
}
.pageWrapper.paymentPage .content .paymentBox .infoRowContainer .infoRow {
  font-size: 14px;
  padding: 0;
  margin-bottom: 20px;
}
@media (min-width: 1025px) {
  .pageWrapper.paymentPage .content .paymentBox .infoRowContainer .infoRow {
    padding: 16px;
    margin-bottom: 0;
  }
}
.pageWrapper.paymentPage .content .paymentBox .infoRowContainer .infoRow .label {
  font-weight: 400;
  opacity: 0.6;
  margin-bottom: 4px;
}
@media (min-width: 1025px) {
  .pageWrapper.paymentPage .content .paymentBox .infoRowContainer .infoRow .label {
    opacity: 1;
    margin-bottom: 0;
    font-weight: 600;
  }
}
.pageWrapper.paymentPage .content .paymentBox .infoRowContainer .infoRow .value {
  font-weight: 600;
}
@media (min-width: 1025px) {
  .pageWrapper.paymentPage .content .paymentBox .infoRowContainer .infoRow .value {
    font-weight: 400;
    opacity: 0.6;
  }
}
.pageWrapper.paymentPage .content .paymentBox .infoRowContainer .infoRow.items {
  flex-direction: column;
  padding: 0;
  margin-bottom: 0;
}
@media (min-width: 1025px) {
  .pageWrapper.paymentPage .content .paymentBox .infoRowContainer .infoRow.items {
    padding: 12px 16px 0 16px;
  }
}
.pageWrapper.paymentPage .content .paymentBox .infoRowContainer .infoRow.items .label {
  margin-bottom: 0;
}
.pageWrapper.paymentPage .content .paymentBox .infoRowContainer .infoRow.items .itemsContainer {
  display: flex;
  flex-direction: column;
  padding: 4px 0 16px 0;
}
@media (min-width: 1025px) {
  .pageWrapper.paymentPage .content .paymentBox .infoRowContainer .infoRow.items .itemsContainer {
    padding-left: 4px;
  }
}
.pageWrapper.paymentPage .content .paymentBox .infoRowContainer .infoRow.items .itemsContainer .item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.pageWrapper.paymentPage .content .paymentBox .infoRowContainer .infoRow.items .itemsContainer .item .itemRef {
  opacity: 1;
  font-weight: 600;
}
@media (min-width: 1025px) {
  .pageWrapper.paymentPage .content .paymentBox .infoRowContainer .infoRow.items .itemsContainer .item .itemRef {
    opacity: 1;
    font-weight: 600;
  }
}
.pageWrapper.paymentPage .content .paymentBox .infoRowContainer .infoRow.items .itemsContainer .item .value {
  opacity: 0.6;
  font-weight: 400;
}
@media (min-width: 1025px) {
  .pageWrapper.paymentPage .content .paymentBox .infoRowContainer .infoRow.items .itemsContainer .item .value {
    font-weight: 600;
    opacity: 0.6;
  }
}
.pageWrapper.paymentPage .content .paymentBox .infoRowContainer .infoRow.note {
  font-size: 12px;
  opacity: 0.5;
}
.pageWrapper.paymentPage .content .paymentBox .infoRowContainer .infoRow.companyInfo {
  display: none;
}
@media (min-width: 1025px) {
  .pageWrapper.paymentPage .content .paymentBox .infoRowContainer .infoRow.companyInfo {
    font-size: 10px;
    font-weight: 400;
    display: flex;
    margin-top: 8px;
    padding: 0 8px;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    color: #ffffff;
  }
  .pageWrapper.paymentPage .content .paymentBox .infoRowContainer .infoRow.companyInfo p {
    margin: 2px 0;
  }
  .pageWrapper.paymentPage .content .paymentBox .infoRowContainer .infoRow.companyInfo .rightBox {
    text-align: right;
  }
}
.pageWrapper.paymentPage .content .paymentBox .formContainer {
  padding: 0;
}
@media (min-width: 1025px) {
  .pageWrapper.paymentPage .content .paymentBox .formContainer {
    padding: 20px;
  }
}
.pageWrapper.paymentPage .content .paymentBox .formContainer {
  color: #868685;
}
.pageWrapper.paymentPage .content .paymentBox .formContainer .errorMessage {
  color: #DD4A54;
  font-size: 12px;
}
.pageWrapper.paymentPage .content .paymentBox .formContainer .errorMessage.hidden {
  visibility: hidden;
}
.pageWrapper.paymentPage .content .paymentBox .formContainer .errorMessage#emailError {
  margin: -20px 0 20px 0;
}
.pageWrapper.paymentPage .content .paymentBox .formContainer .errorMessage#mainError {
  margin-bottom: 8px;
}
.pageWrapper.paymentPage .content .paymentBox .formContainer .logos {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: column;
  margin-top: 46px;
}
.pageWrapper.paymentPage .content .paymentBox .formContainer .logos div {
  margin: 4px auto;
}
.pageWrapper.paymentPage .content .paymentBox .formContainer .logos div img {
  display: inline-block;
  margin: 0 2px;
  height: 20px;
}
@media (min-width: 1025px) {
  .pageWrapper.paymentPage .content .paymentBox .formContainer .logos div img {
    height: 38px;
    margin: 0 8px;
  }
}
.pageWrapper.paymentPage .content .paymentBox .formContainer .formRow.inputWrap {
  font-size: 16px;
  line-height: 20px;
  background-image: url("../images/input.svg");
  padding: 16px;
}
.pageWrapper.paymentPage .content .paymentBox .formContainer .formRow.inputWrap input {
  font-size: 16px;
  color: white;
  width: 100%;
  display: block;
  border: none;
  background: transparent;
}
.pageWrapper.paymentPage .content .paymentBox .formContainer .formRow.inputWrap input:focus {
  outline: none;
}
.pageWrapper.paymentPage .content .paymentBox .formContainer .formRow.inputWrap input::placeholder {
  color: #aaaaaa;
}
.pageWrapper.paymentPage .content .paymentBox .formContainer .formRow.disclaimer {
  display: flex;
  font-size: 12px;
}
@media (min-width: 1025px) {
  .pageWrapper.paymentPage .content .paymentBox .formContainer .formRow.disclaimer {
    margin-bottom: 12px;
    font-size: 14px;
  }
}
.pageWrapper.paymentPage .content .paymentBox .formContainer .formRow.disclaimer .checkBoxWrap {
  display: flex;
  align-items: center;
  padding-right: 16px;
}
.pageWrapper.paymentPage .content .paymentBox .formContainer .formRow.disclaimer .checkBoxWrap .checkboxContainer {
  position: relative;
  width: 18px;
  height: 18px;
  cursor: pointer;
  font-size: 16px;
  user-select: none;
}
.pageWrapper.paymentPage .content .paymentBox .formContainer .formRow.disclaimer .checkBoxWrap .checkboxContainer:hover input ~ .customCheckBox {
  background-color: #868685;
}
.pageWrapper.paymentPage .content .paymentBox .formContainer .formRow.disclaimer .checkBoxWrap .checkboxContainer input:checked ~ .customCheckBox {
  background-color: #C4942A;
  border: none;
}
.pageWrapper.paymentPage .content .paymentBox .formContainer .formRow.disclaimer .checkBoxWrap .checkboxContainer input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.pageWrapper.paymentPage .content .paymentBox .formContainer .formRow.disclaimer .checkBoxWrap .checkboxContainer .customCheckBox {
  position: absolute;
  top: 0;
  left: 0;
  height: 18px;
  width: 18px;
  border: solid 1px #ffffff;
  border-radius: 2px;
}
.pageWrapper.paymentPage .content .paymentBox .formContainer .formRow.disclaimer .checkBoxWrap .checkboxContainer .customCheckBox:after {
  content: "";
  position: absolute;
  display: none;
}
.pageWrapper.paymentPage .content .paymentBox .formContainer .formRow.disclaimer .checkBoxWrap .checkboxContainer input:checked ~ .customCheckBox:after {
  display: block;
}
.pageWrapper.paymentPage .content .paymentBox .formContainer .formRow.disclaimer .checkBoxWrap .checkboxContainer .customCheckBox:after {
  left: 6px;
  top: 3px;
  width: 3px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.pageWrapper.paymentPage .content .paymentBox .formContainer .formRow.companyInfo {
  padding: 32px 0 0 0;
  font-size: 12px;
  font-weight: 400;
  flex-direction: column;
  opacity: 0.5;
  color: #ffffff;
}
.pageWrapper.paymentPage .content .paymentBox .formContainer .formRow.companyInfo p {
  margin: 2px 0;
}
@media (min-width: 1025px) {
  .pageWrapper.paymentPage .content .paymentBox .formContainer .formRow.companyInfo {
    display: none;
  }
}
.pageWrapper.paymentPage .content .paymentBox .formContainer .formRow {
  margin-bottom: 24px;
}
@media (max-width: 1025px) {
  .pageWrapper.paymentPage .content .paymentBox.outerBorder,
  .pageWrapper.paymentPage .content .paymentBox .innerBorder {
    border: none;
    padding: 0;
  }
  .pageWrapper.paymentPage .content .paymentBox:first-child {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

.terms-link {
  color: #C4942A;
  text-decoration: none;
}

.terms-link:hover {
  text-decoration: underline;
}

@keyframes resultIcon {
  0% {
    transform: translate(0, 200px);
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
}
@keyframes resultContent {
  0% {
    opacity: 0;
  }
}
@media (min-width: 1025px) {
  .pageWrapper.resultPage {
    padding: 0;
  }
}
.pageWrapper.resultPage .content .resultIcon {
  animation-name: resultIcon;
  animation-duration: 1s;
  animation-fill-mode: backwards;
  animation-timing-function: ease-in;
  animation-delay: 0.5s;
  animation-duration: 0.5s;
}
.pageWrapper.resultPage .content .resultContent {
  text-align: center;
  align-items: center;
  width: 100%;
  animation-name: resultContent;
  animation-duration: 1s;
  animation-fill-mode: backwards;
  animation-timing-function: ease-in;
  animation-delay: 0.5s;
  animation-delay: 1s;
  animation-duration: 0.5s;
}
.pageWrapper.resultPage .content .resultContent .resultMessage {
  margin: 20px auto;
  text-transform: uppercase;
}
.pageWrapper.resultPage .content .resultContent .bodyText {
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 20px;
}
.pageWrapper.resultPage .content .resultContent .resultSubTemplate {
  width: 100%;
  margin-bottom: 30px;
}
.pageWrapper.resultPage .content .resultContent .resultSubTemplate .infoRow {
  padding: 8px 0;
}
.pageWrapper.resultPage .content .resultContent .resultSubTemplate.portal .label {
  font-weight: normal;
  opacity: 0.6;
  font-size: 14px;
  margin-bottom: 4px;
}
@media (min-width: 1025px) {
  .pageWrapper.resultPage .content .resultContent .resultSubTemplate.portal .label {
    opacity: 1;
    margin-bottom: 0;
    font-weight: 600;
  }
}
.pageWrapper.resultPage .content .resultContent .resultSubTemplate.portal .value {
  color: #ffffff;
  opacity: 1;
  font-weight: 600;
  font-size: 14px;
}
@media (min-width: 1025px) {
  .pageWrapper.resultPage .content .resultContent .resultSubTemplate.portal .value {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.5;
  }
}

.pageWrapper.legalPage {
  padding: 0 20px 30px 20px;
}
@media (min-width: 1025px) {
  .pageWrapper.legalPage {
    width: auto;
    max-width: unset;
  }
}
.pageWrapper.legalPage a:hover {
  text-decoration: underline;
}
.pageWrapper.legalPage .legalContent {
  margin: 76px auto 0 auto;
  color: #ffffff;
  width: 100%;
  max-width: 768px;
  overflow-y: auto;
  padding: 0;
}
@media (min-width: 1025px) {
  .pageWrapper.legalPage .legalContent {
    margin-top: 140px;
    padding: 0 48px;
  }
}
.pageWrapper.legalPage .legalContent h1, .pageWrapper.legalPage .legalContent h2, .pageWrapper.legalPage .legalContent h3 {
  margin-bottom: 1em;
  font-weight: normal;
}
.pageWrapper.legalPage .legalContent h1 {
  color: #C4942A;
  margin-top: 1em;
  font-size: 2em;
  text-align: center;
}
.pageWrapper.legalPage .legalContent h2 {
  font-size: 1.25em;
  margin-top: 1.5em;
}
.pageWrapper.legalPage .legalContent h3 {
  font-size: 1em;
  margin-top: 1em;
}
.pageWrapper.legalPage .legalContent p {
  font-size: 0.8rem;
  margin-bottom: 0.5em;
}
.pageWrapper.legalPage .legalContent ul {
  margin: 1em 0 1.5em 2em;
  list-style: disc;
}
.pageWrapper.legalPage .legalContent table {
  width: 100%;
  border: 1px solid #cdc9c9;
  background-color: white;
  margin: 1em 0 1.5em 0;
}
.pageWrapper.legalPage .legalContent table th,
.pageWrapper.legalPage .legalContent table td {
  padding: 0.5em 1em;
}
.pageWrapper.legalPage .legalContent table th {
  background-color: #E9F1EC;
}
.pageWrapper.legalPage .footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #ffffff;
  font-size: 12px;
  margin-top: 16px;
}
.pageWrapper.legalPage .footer .links {
  margin-bottom: 0.5rem;
}
.pageWrapper.legalPage .footer .impressum {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.loginPage {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
}
.loginPage .logo {
  display: block;
  margin-bottom: 40px;
}
.loginPage .loginButton {
  font-family: "Inter-SemiBold", Helvetica, Arial, sans-serif;
  width: 167px;
  height: 40px;
  background: #435BDE;
  border-radius: 4px;
  margin-top: 40px;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 15px;
  line-height: 22px;
  border: none;
  cursor: pointer;
}

.generateQRCode {
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.generateQRCode .generateQRCodeHeader {
  margin-top: 36px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.generateQRCode .generateQrCodeLogoutIcon {
  position: absolute;
  right: 28px;
}
.generateQRCode .generateQRCodeContent {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.generateQRCode .generateQRCodeContent .generateQRCodeImage {
  margin-bottom: 40px;
  width: 250px !important;
  height: 250px !important;
}
.generateQRCode .generateQRCodeContent .generateQRCodeButton {
  font-family: "Inter-SemiBold", Helvetica, Arial, sans-serif;
  width: 202px;
  height: 40px;
  background: #435BDE;
  border-radius: 4px;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 15px;
  line-height: 22px;
  border: none;
  cursor: pointer;
  padding: 12px 16px 12px 14px;
  display: flex;
  align-items: center;
}
.generateQRCode .generateQRCodeContent .generateQrCodeRefreshIcon {
  margin-right: 10px;
}
.generateQRCode .generateQRCodeButtonLabel {
  font-family: "Inter-SemiBold", Helvetica, Arial, sans-serif;
  background: #CEE9D2;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
  color: #33333C;
  padding: 12px;
  position: absolute;
  bottom: 24px;
  animation-name: resultIcon;
  animation-duration: 1s;
  animation-fill-mode: backwards;
  animation-timing-function: ease-in;
  animation-delay: 0.5s;
  animation-duration: 1.5s;
}

@keyframes resultIcon {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 0.7;
  }
  70% {
    opacity: 0.4;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes circularProgress {
  0% {
    stroke-dasharray: 1px, 200px;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 100px, 200px;
    stroke-dashoffset: -15px;
  }
  100% {
    stroke-dasharray: 100px, 200px;
    stroke-dashoffset: -125px;
  }
}
@keyframes circularProgress {
  0% {
    stroke-dasharray: 1px, 200px;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 100px, 200px;
    stroke-dashoffset: -15px;
  }
  100% {
    stroke-dasharray: 100px, 200px;
    stroke-dashoffset: -125px;
  }
}
.circularProgress {
  stroke: #C4942A;
  stroke-dasharray: 80px, 200px;
  stroke-dashoffset: 0;
  -webkit-animation: circularProgress 1.4s ease-in-out infinite;
  animation: circularProgress 1.4s ease-in-out infinite;
}

body {
  overflow: visible;
}

.pageWrapper.clientPage {
  height: unset;
}
.pageWrapper.clientPage .content {
  padding: 30px 36px;
  justify-content: flex-start;
}
@media (min-width: 1025px) {
  .pageWrapper.clientPage .content {
    justify-content: unset;
  }
}
.pageWrapper.clientPage .content .bodyText {
  margin-top: 20px;
  text-align: center;
}
.pageWrapper.clientPage .content .buttonBase.continue {
  margin-top: 48px;
}
.pageWrapper.clientPage .content .buttonBase.square {
  width: 58px;
  margin-right: 12px;
}
.pageWrapper.clientPage .content .buttonGroup {
  width: 100%;
  display: flex;
}

.pageWrapper .content {
  overflow: visible;
}

.formContainer {
  margin-top: 32px;
  width: 100%;
  color: #868685;
  position: relative;
}
.formContainer.transition .formSection {
  display: block;
}
.formContainer .formSection {
  top: 0;
  left: -100%;
  width: 100%;
  transition: left 0.5s ease-in-out, opacity 0.5s ease-in-out;
  position: absolute;
  opacity: 0;
  display: none;
}
.formContainer .formSection.active {
  position: relative;
  opacity: 1;
  left: 0;
  display: block;
}
.formContainer .formSection.active + .formSection {
  left: 100%;
}
.formContainer .formSection .loader {
  display: flex;
  align-content: center;
  justify-content: center;
}
.formContainer .formSection .loader > svg {
  display: block;
  width: 64px;
}

.stepper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  margin: 16px 0;
}
.stepper .step {
  width: 6px;
  height: 6px;
  background: #D9D9D9;
  opacity: 1;
  border-radius: 50%;
}
.stepper .step.active {
  opacity: 1;
  background: #C4942A;
}
.stepper .step:not(:last-of-type) {
  margin-right: 6px;
}

.inputComponent.zero-prefix.filled:before,
.inputComponent.zero-prefix.in-focus:before {
  content: attr(data-prefix) "";
  opacity: 1;
  color: #B3B3BA;
  line-height: 24px;
  margin-right: 5px;
  display: inline-block;
}
.inputComponent.zero-prefix.filled input,
.inputComponent.zero-prefix.in-focus input {
  display: inline-block;
  width: auto;
  height: 24px;
  line-height: 24px;
  max-width: 150px;
}

.flex-row {
  display: flex;
}
.flex-row .title_input {
  width: 125px;
  white-space: nowrap;
  margin-right: 8px;
}
.flex-row > div {
  width: 100%;
}

.intervention-offer {
  width: 100%;
  height: 100%;
  font-size: 18px;
  font-family: Helvetica, Arial, sans-serif;
}
.intervention-offer__carousel {
  margin: 20px 0;
  width: 100%;
}
.intervention-offer__carousel .owl-stage-outer .owl-stage {
  display: flex !important;
  align-items: center !important;
}
.intervention-offer__carousel .owl-nav {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  margin-top: 0 !important;
  pointer-events: none; /* Allows clicks to pass through to items beneath */
  padding: 0 10px;
}
.intervention-offer__carousel .owl-nav .owl-next {
  margin-right: -19px !important;
}
.intervention-offer__carousel .owl-nav .owl-prev {
  margin-left: -24px !important;
}
.intervention-offer__carousel .owl-nav .disabled {
  opacity: 0 !important;
  cursor: default;
}
.intervention-offer__carousel .owl-nav button {
  pointer-events: all; /* Re-enable clicks on buttons */
  width: 44px;
  height: 44px;
  border-radius: 50% !important;
  background: rgba(138, 138, 138, 0.6980392157) !important;
  color: white !important;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  position: relative;
}
.intervention-offer__carousel .owl-nav button span {
  display: none;
}
.intervention-offer__carousel .owl-nav button::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url('data:image/svg+xml;utf8,<svg width="25" height="25" viewBox="0 0 25 25" fill="none" xmlns="http://www.w3.org/2000/svg"><mask id="mask0" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="25" height="25"><rect x="0.078125" y="0.521484" width="24" height="24" fill="%23D9D9D9"/></mask><g mask="url(%23mask0)"><path d="M13.5367 12.6414L8.07812 7.1828L9.73944 5.52148L16.8594 12.6414L9.73944 19.7613L8.07812 18.1L13.5367 12.6414Z" fill="white"/></g></svg>');
  background-size: contain;
  background-repeat: no-repeat;
}
.intervention-offer__carousel .owl-nav button:hover {
  background: #8a8a8a !important;
}
.intervention-offer__carousel .owl-nav button.owl-prev::before {
  transform: rotate(180deg);
}
.intervention-offer__carousel .item {
  display: flex;
  justify-content: center;
  align-items: center;
  height: min-content;
  padding: 10px;
}
.intervention-offer__carousel-img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.intervention-offer--first-step {
  background: linear-gradient(180deg, var(--charcoal-blue) 0%, var(--rich-black) 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: auto;
}
.intervention-offer__header {
  position: sticky;
  height: 4.58em;
  top: 0;
  width: 100%;
  display: none;
  z-index: 2;
}
.intervention-offer__header__logo {
  height: 44px;
  padding-left: 1.3em;
}
.intervention-offer__header__content-wrapper {
  background-color: var(--dark-blue);
  display: flex;
  justify-content: center;
}
.intervention-offer__header__content {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 1.3em 0 0.9em 0;
  max-width: 1480px;
  width: 100%;
}
.intervention-offer__header__progress-bar {
  height: 0.32em;
  width: 100%;
  background-color: var(--cloud-gray);
  position: relative;
  overflow: hidden;
}
.intervention-offer__header__progress-bar__indicator {
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 0 4em 4em 0;
  background-color: var(--brown);
  transition: all ease-in-out 0.3s;
}
.intervention-offer__footer {
  position: fixed;
  height: fit-content;
  bottom: 0;
  width: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  background-color: white;
  padding: 1.2em 2.3em;
  font-size: 18px;
  z-index: 3;
}
.intervention-offer__footer__buttons {
  align-items: center;
  justify-content: flex-end;
  display: flex;
  width: 100%;
  gap: 1.11em;
  max-width: 1440px;
}
@media (max-width: 650px) {
  .intervention-offer__footer__buttons {
    justify-content: center;
    gap: 2.5em;
  }
}
@media (max-width: 650px) {
  .intervention-offer__footer {
    justify-content: center;
    border-top: 1px solid var(--cloud-gray);
  }
}
.intervention-offer__welcome {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  width: 100%;
  max-width: 27.2em;
  padding: 0 2.5em;
}
.intervention-offer__welcome__product {
  padding-top: 0.5em;
  letter-spacing: 3.6px;
  font-size: 18px;
  text-transform: uppercase;
  height: 12%;
  display: flex;
  justify-content: flex-end;
  align-items: end;
  gap: 0.6em;
  text-align: center;
}
.intervention-offer__welcome__continue {
  position: relative;
  font-size: 20px;
  height: 3.1em;
  width: 100%;
  margin-top: auto;
  width: 100%;
  padding-bottom: 6em;
  border-radius: 0.5em;
}
.intervention-offer__welcome__images {
  display: flex;
  padding-top: 1.74em;
  gap: 1.5em;
  flex-direction: column;
  align-items: center;
}
.intervention-offer__welcome__intervention {
  border: 1px solid white;
  padding: 1.3em 0;
  width: 100%;
  font-size: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2.22em;
  margin-bottom: 0.5em;
}
.intervention-offer__welcome__intervention__item {
  line-height: 1.55em;
}
.intervention-offer__welcome__title {
  font-size: 32px;
  font-weight: 600;
  font-family: helvetica;
  letter-spacing: 0.64px;
  margin-top: 0.88em;
  width: 120%;
  text-align: center;
  text-transform: uppercase;
}
.intervention-offer__welcome__title--font-hu {
  font-size: 26px;
}
.intervention-offer__steps {
  color: white;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-transform: uppercase;
  gap: 0.2em;
  text-align: right;
  padding-right: 1.3em;
}
.intervention-offer__steps__count {
  font-size: 13px;
}
.intervention-offer__steps__text {
  font-weight: 700;
  font-size: 15px;
}
.intervention-offer__step-wrapper {
  width: 100%;
  height: calc(100% - 9.8em);
  display: none;
  align-items: baseline;
  padding-top: 1.6em;
  justify-content: center;
  overflow: auto;
}
@media (max-width: 650px) {
  .intervention-offer__step-wrapper {
    padding-top: 0;
  }
}
.intervention-offer__step {
  display: flex;
  max-width: 46.22em;
  flex-direction: column;
  border-radius: 0.8em;
  background-color: white;
  width: 100%;
  height: fit-content;
  padding: 3.33em 2.22em 1.11em 2.22em;
  position: relative;
  min-height: calc(100% - 1em);
  margin-bottom: 1em;
}
.intervention-offer__step--p-0 {
  padding: 0;
}
.intervention-offer__step__header {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.2em;
}
.intervention-offer__step__header__subtitle {
  line-height: 28px;
  color: var(--dark-blue);
}
.intervention-offer__step__header__m-bottom {
  margin-bottom: 2.22em;
}
.intervention-offer__step__header--p {
  padding: 3.33em 2.22em 0 2.22em;
}
.intervention-offer__step__header__label {
  color: var(--antique-gold);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  line-height: 18px;
  display: flex;
  gap: 0.7em;
}
.intervention-offer__step__header__title {
  font-size: 32px;
  font-weight: 700;
  color: var(--dark-blue);
}
.intervention-offer__step__video {
  position: relative;
  overflow: hidden;
  border-radius: 1em 1em 0 0;
  max-height: 53vh;
}
.intervention-offer__step__video__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  color: white;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  container-type: size;
  resize: horizontal;
  gap: 0.6em;
  background-color: rgba(0, 0, 0, 0.1254901961);
}
.intervention-offer__step__video__overlay__label {
  font-size: 2.4cqw;
  letter-spacing: 2.5cqh;
  text-align: center;
}
.intervention-offer__step__video__overlay__title {
  font-size: 5cqw;
  font-weight: 700;
  text-align: center;
  line-height: 14cqh;
  letter-spacing: 1cqh;
}
.intervention-offer__step__video video {
  scale: 1.4;
  object-fit: cover;
  border-radius: 1em 1em 0 0;
  height: auto;
}
@media screen and (max-width: 650px) {
  .intervention-offer__step__video video {
    border-radius: 0;
  }
}
@media screen and (max-width: 650px) {
  .intervention-offer__step__video {
    border-radius: 0;
  }
}
@media (max-width: 650px) {
  .intervention-offer__step {
    min-height: 100%;
    border-radius: 0;
    margin-bottom: 0;
    width: 100%;
  }
}
.intervention-offer__assessment {
  padding: 3.33em 2.22em 2.22em 2.22em;
  color: var(--dark-blue);
  line-height: 28px;
  letter-spacing: 0.36px;
}
.intervention-offer__assessment__estimate {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
  padding-top: 2em;
}
.intervention-offer__assessment__estimate__date {
  display: flex;
  justify-content: space-between;
  padding: 0.66em;
  border: 1px solid var(--brown);
  flex-wrap: wrap;
  text-align: center;
  font-family: Helvetica;
  font-size: 16px;
  letter-spacing: 0.8px;
  align-items: flex-start;
  gap: 8px;
}
.intervention-offer__assessment__estimate__date-label {
  line-height: 22px;
}
@media screen and (max-width: 800px) {
  .intervention-offer__assessment__estimate__date {
    justify-content: center;
  }
}
.intervention-offer__assessment__estimate__note {
  font-style: italic;
  font-size: 14px;
  line-height: 22px;
}
.intervention-offer__assessment__estimate__repair-date-week {
  text-align: right;
  line-height: 12pt;
  font-weight: 700;
  line-height: 22px;
}
@media screen and (max-width: 800px) {
  .intervention-offer__assessment__estimate__repair-date-week {
    text-align: center;
  }
}
.intervention-offer__assessment__estimate__repair-date-week-note {
  font-size: 9pt;
  font-style: italic;
  font-weight: 700;
  text-align: right;
  line-height: 22px;
}
.intervention-offer__product-info {
  display: flex;
  gap: 1.5em 0;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 4em;
}
.intervention-offer__product-info__item {
  display: flex;
  flex-direction: column;
  gap: 0.4em;
  width: 33%;
  padding-right: 0.4em;
}
@media screen and (max-width: 650px) {
  .intervention-offer__product-info__item {
    width: 50%;
  }
}
.intervention-offer__product-info__item__label {
  font-weight: 400;
  color: var(--dark-blue);
}
.intervention-offer__product-info__item__value {
  font-weight: 300;
  color: var(--charcoal-blue);
}
.intervention-offer__unavailable {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 1px;
}
.intervention-offer__unavailable__ty {
  text-transform: uppercase;
  color: var(--brown);
  letter-spacing: 3px;
}
.intervention-offer__unavailable__title {
  font-weight: 700;
  font-size: 32px;
  line-height: 36px;
  margin: 0.3em 0 0.8em 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.3em;
  flex-direction: row;
  align-content: flex-start;
  color: var(--dark-blue);
}
@media screen and (max-width: 650px) {
  .intervention-offer__unavailable__title__item--brown {
    color: var(--antique-gold);
    white-space: unset;
  }
  .intervention-offer__unavailable__title__item--brown:first-letter {
    text-transform: capitalize;
  }
}
.intervention-offer__unavailable__content {
  background-color: white;
  width: 70%;
  height: calc(100% - 2.6em);
  padding: 1em 1.6em;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 1em;
  max-width: 46.2em;
  justify-content: safe center;
  overflow: auto;
}
@media (max-width: 650px) {
  .intervention-offer__unavailable__content {
    width: 100%;
    height: 100%;
  }
}
.intervention-offer__unavailable__logo {
  height: 2.6em;
  margin-bottom: 4em;
}
.intervention-offer__p-1 {
  color: var(--dark-blue);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.36px;
}
.intervention-offer__p-2 {
  color: var(--dark-blue);
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 28px;
  letter-spacing: 0.36px;
}
.intervention-offer__contact {
  margin-top: 1.2em;
  display: flex;
  flex-direction: column;
  gap: 0.4em;
  color: var(--dark-blue);
}
.intervention-offer__contact__item {
  display: flex;
  gap: 1em;
  font-weight: 300;
  letter-spacing: 0.36px;
}
.intervention-offer__price-table {
  padding: 3.33em 1.67em 3.33em 1.67em;
  display: flex;
  flex-direction: column;
  gap: 4.44em;
  align-items: center;
  letter-spacing: 2.7px;
  color: var(--charcoal-black);
}
.intervention-offer__price-table__table {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.66em;
  width: 100%;
}
.intervention-offer__price-table__table__title {
  text-align: center;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 2.16px;
}
.intervention-offer__price-table__table__title--bold {
  font-weight: 500;
}
.intervention-offer__price-table__interventions {
  display: flex;
  flex-direction: column;
  gap: 1.38em;
  letter-spacing: 0;
  width: 100%;
  padding: 0 0.55em;
}
.intervention-offer__price-table__item {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  width: 100%;
  line-height: 25px;
  letter-spacing: 0.32px;
}
.intervention-offer__price-table__item__price {
  font-weight: 400;
}
.intervention-offer__price-table__small-comment {
  padding-top: 0.7em;
  font-size: 14px;
}
.intervention-offer__price-table__price {
  white-space: nowrap;
  padding-left: 1em;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 0.32px;
}
.intervention-offer__price-table__spare-parts {
  padding-top: 1em;
  display: flex;
  flex-direction: column;
  line-height: 25px;
  letter-spacing: 0.32px;
  padding-left: 0.55em;
  gap: 1.33em;
}
.intervention-offer__price-table__total {
  display: flex;
  justify-content: space-between;
  padding: 0.66em;
  border: 0.04em solid var(--gray-base);
  text-transform: uppercase;
  flex-wrap: wrap;
  width: 100%;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 0.32px;
}
.intervention-offer__price-table__total--final {
  border: 0.1em solid var(--antique-gold);
}
.intervention-offer__client-form {
  width: 100%;
  background-color: var(--dark-blue);
  padding: 3.33em 2.22em 6.66em 2.22em;
  display: flex;
  flex-direction: column;
  gap: 2.22em;
  align-items: center;
  color: white;
  line-height: 28px;
  letter-spacing: 0.36px;
}
.intervention-offer__client-form__title {
  text-align: center;
  text-transform: uppercase;
  font-weight: 400;
}
.intervention-offer__client-form__sub-options {
  padding: 1.11em;
  display: none;
  flex-direction: column;
  gap: 1.38em;
  padding-left: 2.8em;
}
.intervention-offer__client-form__sub-options__options {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 1.38em;
}
.intervention-offer__client-form__optional-option {
  cursor: pointer;
  width: 100%;
  border: 1px solid var(--dim-white);
}
.intervention-offer__client-form__optional-option.checked {
  background-color: var(--gold-transparent);
  border: 1px solid var(--brown);
}
.intervention-offer__client-form__option {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 1.11em;
  border: 1px solid var(--dim-white);
  cursor: pointer;
  gap: 25px;
}
.intervention-offer__client-form__option--no-border {
  border: none;
}
.intervention-offer__client-form__option__label {
  min-height: 3.11em;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.3em;
}
.intervention-offer__client-form__option__label__note {
  font-style: italic;
  color: var(--gray-light);
}
.intervention-offer__client-form__option__label--400 {
  font-weight: 400;
}
.intervention-offer__client-form__option__label--refuse {
  min-height: unset;
}
.intervention-offer__client-form__option__checkbox {
  margin-bottom: auto;
}
.intervention-offer__client-form__option.checked {
  background-color: var(--gold-transparent);
  border: 1px solid var(--brown);
}
.intervention-offer__client-form__option.checked-red {
  background-color: var(--red-transparent);
  border: 1px solid var(--red);
}
.intervention-offer__additional-comment {
  padding: 3.33em 2.22em 6.7em 2.22em;
}
.intervention-offer__additional-comment__text {
  color: var(--dark-blue);
  line-height: 28px;
  letter-spacing: 0.36px;
  font-weight: 300;
  color: var(--charcoal-blue);
  padding-bottom: 2.22em;
}
.intervention-offer__additional-comment textarea.custom-textarea {
  width: 100%;
  padding: 0.5em;
  border: 1px solid var(--gray-transparent);
  border-radius: 0;
  font-size: 1em;
  resize: none;
  box-sizing: border-box;
  height: 6em;
  font-family: helvetica;
  color: var(--dark-blue);
  font-weight: 300;
  line-height: 28px;
  letter-spacing: 0.36px;
  transition: all 0.3s ease-in-out;
}
.intervention-offer__additional-comment textarea.custom-textarea:focus-visible {
  border: 1px solid var(--brown);
  outline: none;
}
.intervention-offer__additional-comment textarea.custom-textarea::placeholder {
  color: var(--gray);
  font-weight: 300;
}
.intervention-offer__modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
@media (max-width: 650px) {
  .intervention-offer__modal {
    align-items: end;
  }
}
.intervention-offer__modal__content {
  background-color: white;
  padding: 60px 40px 30px 40px;
  border-radius: 20px;
  width: 700px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  position: relative;
}
@media (max-width: 650px) {
  .intervention-offer__modal__content {
    width: 100%;
    border-radius: 20px 20px 0 0;
    max-height: 90vh;
    margin-top: 10vh;
  }
}
.intervention-offer__modal__close {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 24px;
  right: 24px;
  cursor: pointer;
}
.intervention-offer__modal__header {
  margin-bottom: 30px;
  margin-right: 80px;
}
.intervention-offer__modal__body {
  margin-bottom: 40px;
  font-weight: 300;
  height: 420px;
  overflow: auto;
  font-family: Helvetica;
}
@media (max-width: 650px) {
  .intervention-offer__modal__body::-webkit-scrollbar {
    display: none; /* Chrome */
  }
  .intervention-offer__modal__body {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
    overflow-y: auto;
  }
}
.intervention-offer__modal__body__disclaimer {
  color: var(--dark-blue);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  text-transform: uppercase;
}
.intervention-offer__modal__body p {
  color: var(--dark-blue);
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 28px;
  padding-bottom: 30px;
}
.intervention-offer__modal__footer {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  gap: 20px;
}
@media (max-width: 650px) {
  .intervention-offer__modal__footer .intervention-button__secondary {
    display: none;
  }
}
.intervention-offer__modal__footer button {
  flex: 1;
  max-width: none;
}

.intervention-button {
  border: none;
  height: 2.8em;
  background-color: var(--dark-blue);
  color: white;
  padding: 0.8em 1em;
  border-radius: 0.4em;
  font-size: 18px;
  cursor: pointer;
  opacity: 1;
  transition: all ease-in-out 0.2s;
  font-family: Helvetica, Arial, sans-serif;
}
.intervention-button:hover {
  opacity: 0.9;
}
.intervention-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.intervention-button__default {
  max-width: 14.5em;
  width: 100%;
}
.intervention-button__default.min-220 {
  min-width: 220px;
}
@media screen and (max-width: 650px) {
  .intervention-button__default {
    max-width: unset;
  }
}
.intervention-button__secondary {
  background-color: white;
  border: 1px solid var(--border);
  color: var(--dark-blue);
  width: 100%;
}
.intervention-button__previous {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  width: fit-content;
  padding: 20px 28px 20px 22px;
}
.intervention-button__previous__text {
  padding-top: 0.1em;
}
.intervention-button__previous__text::before {
  margin-left: 0.66em;
}
@media (max-width: 650px) {
  .intervention-button__previous__text::before {
    margin-left: 0;
  }
}
.intervention-button__previous__icon {
  display: inline-block;
}
@media (max-width: 650px) {
  .intervention-button__previous__icon {
    display: none;
  }
}
@media (max-width: 650px) {
  .intervention-button__previous {
    border: none;
    padding: 0;
  }
}

.checkbox-container input[type=checkbox] {
  appearance: none;
  font-size: 18px;
  -webkit-appearance: none;
  width: 1.11em;
  height: 1.11em;
  outline: 1px solid var(--dim-white);
  border-radius: 50%;
  background: transparent;
  margin-left: auto;
  cursor: pointer;
  position: relative;
}

.checkbox-container input[type=checkbox]:checked {
  outline: none;
}

.checkbox-container input[type=checkbox]:checked::before {
  content: "";
  position: absolute;
  top: -0.2em;
  left: -0.16em;
  width: 1.54em;
  height: 1.44em;
  border: none;
  background-repeat: no-repeat;
}

.checkbox-container.gold input[type=checkbox]:checked::before {
  background-image: url("../images/checked-gold.svg");
}

.checkbox-container.red input[type=checkbox]:checked::before {
  background-image: url("../images/checked-red.svg");
}

.new-design.backgroundOverlay {
  background-image: none;
}
.new-design .frameWrapper .frameContainer {
  display: none;
}
.new-design .pageWrapper {
  font-family: "Inter", Helvetica, Arial, sans-serif;
}
.new-design .pageWrapper .logo {
  height: 38px;
  margin: 25px auto;
  position: relative;
}
.new-design .pageWrapper .content {
  margin-top: 0;
  padding: 0 20px 32px 20px;
}
@media (min-width: 1025px) {
  .new-design .pageWrapper .content {
    margin-top: 0;
  }
}
.new-design .pageWrapper .content .bodyText {
  margin-top: 8px;
  color: #33333C;
  font-size: 13px;
  line-height: 20px;
}
.new-design .pageWrapper .content .title {
  font-size: 28px;
  line-height: 42px;
  font-weight: 700;
  color: #33333C;
  text-align: center;
  text-transform: none;
  letter-spacing: initial;
}
.new-design .pageWrapper .content .title:before {
  content: "";
  display: block;
  width: 60px;
  margin: 0 auto 10px auto;
  border-top: 2px solid #C4942A;
}
.new-design .pageWrapper .content .buttonBase {
  color: #33333C;
  border: 2px solid #33333C;
}
.new-design .pageWrapper .content .buttonBase:hover {
  background: rgba(255, 255, 255, 0.1);
}
.new-design .pageWrapper .content .buttonBase:disabled {
  opacity: 1;
  color: #CCCCD1;
  border-color: #CCCCD1;
}
.new-design .pageWrapper .content .buttonBase.noBorder {
  border: none;
}
.new-design .pageWrapper .content .buttonBase.primary {
  position: relative;
}
.new-design .pageWrapper .content .buttonBase.primary:before, .new-design .pageWrapper .content .buttonBase.primary:after {
  content: "";
  position: absolute;
  width: 15px;
  height: 0;
  border-top: 1px solid #33333C;
}
.new-design .pageWrapper .content .buttonBase.primary:before {
  left: 15px;
  bottom: 5px;
}
.new-design .pageWrapper .content .buttonBase.primary:after {
  top: -8px;
  right: 15px;
}
.new-design .pageWrapper .content .buttonBase.primary:disabled:before, .new-design .pageWrapper .content .buttonBase.primary:disabled:after {
  border-top-color: #CCCCD1;
}

.new-design.result.backgroundOverlay {
  background-image: url(/images/result_bg.png);
}
.new-design.result.backgroundOverlay:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.64);
}

@media (min-width: 1025px) {
  .new-design .pageWrapper.resultPage {
    padding: 0;
  }
}
.new-design .pageWrapper.resultPage .content {
  justify-content: center;
}
.new-design .pageWrapper.resultPage .content .resultIcon {
  animation-name: resultIcon;
  animation-duration: 1s;
  animation-fill-mode: backwards;
  animation-timing-function: ease-in;
  animation-delay: 0.5s;
  animation-duration: 0.5s;
}
.new-design .pageWrapper.resultPage .content .resultContent {
  text-align: center;
  align-items: center;
  width: 100%;
  animation-name: resultContent;
  animation-duration: 1s;
  animation-fill-mode: backwards;
  animation-timing-function: ease-in;
  animation-delay: 0.5s;
  animation-delay: 1s;
  animation-duration: 0.5s;
}
.new-design .pageWrapper.resultPage .content .resultContent .resultMessage {
  margin: 20px auto;
  text-transform: uppercase;
  color: #FFF;
}
.new-design .pageWrapper.resultPage .content .resultContent .title {
  color: #FFF;
  text-transform: none;
}
.new-design .pageWrapper.resultPage .content .resultContent .bodyText {
  margin-bottom: 35px;
  font-size: 14px;
  line-height: 20px;
  color: #FFF;
}
.new-design .pageWrapper.resultPage .content .resultContent .buttonBase {
  color: #FFF;
  border-color: #FFF;
}
.new-design .pageWrapper.resultPage .content .resultContent .buttonBase:before, .new-design .pageWrapper.resultPage .content .resultContent .buttonBase:after {
  border-top-color: #FFF;
}
.new-design .pageWrapper.resultPage .content .resultContent .resultSubTemplate {
  width: 100%;
  margin-bottom: 30px;
}
.new-design .pageWrapper.resultPage .content .resultContent .resultSubTemplate .infoRow {
  padding: 8px 0;
}
.new-design .pageWrapper.resultPage .content .resultContent .resultSubTemplate.portal .label {
  font-weight: normal;
  opacity: 0.6;
  font-size: 14px;
  margin-bottom: 4px;
}
@media (min-width: 1025px) {
  .new-design .pageWrapper.resultPage .content .resultContent .resultSubTemplate.portal .label {
    opacity: 1;
    margin-bottom: 0;
    font-weight: 600;
  }
}
.new-design .pageWrapper.resultPage .content .resultContent .resultSubTemplate.portal .value {
  color: #ffffff;
  opacity: 1;
  font-weight: 600;
  font-size: 14px;
}
@media (min-width: 1025px) {
  .new-design .pageWrapper.resultPage .content .resultContent .resultSubTemplate.portal .value {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.5;
  }
}

.new-design .legalPage {
  font-family: "Inter", Helvetica, Arial, sans-serif;
  height: 100%;
  min-height: auto;
  display: flex;
  flex-direction: column;
}
.new-design .legalPage h1, .new-design .legalPage h2, .new-design .legalPage h3 {
  margin-bottom: 1em;
  font-weight: normal;
}
.new-design .legalPage h1 {
  color: #C4942A;
  margin-top: 1em;
  font-size: 2em;
  text-align: center;
}
.new-design .legalPage h2 {
  font-size: 1.25em;
  margin-top: 1.5em;
}
.new-design .legalPage h3 {
  font-size: 1em;
  margin-top: 1em;
}
.new-design .legalPage p {
  font-size: 0.8rem;
  margin-bottom: 0.5em;
}
.new-design .legalPage ul {
  margin: 0 0 32px 0;
  padding-left: 20px;
  font-size: 0.8rem;
}
.new-design .legalPage table {
  width: 100%;
  border: 1px solid #cdc9c9;
  background-color: white;
  margin: 1em 0 1.5em 0;
}
.new-design .legalPage table th,
.new-design .legalPage table td {
  padding: 0.5em 1em;
}
.new-design .legalPage table th {
  background-color: #E9F1EC;
}

.new-design .legalPage .legalHeader {
  width: 100%;
  text-align: center;
  padding: 20px 32px;
}
.new-design .legalPage .legalHeader .logo {
  height: 48px;
  margin: auto;
}
.new-design .legalPage .legalHeader .goBack {
  top: 32px;
  left: 32px;
  width: 24px;
  height: 24px;
  border: none;
  padding: 0;
  background: none;
  position: absolute;
}

.new-design .legalPage .legalContent {
  padding: 0 32px;
  color: #33333C;
  overflow: visible;
  max-width: 768px;
  margin: auto;
}
.new-design .legalPage .legalContent .title {
  color: #000;
  font-size: 28px;
  font-weight: 700;
  line-height: 42px;
  margin: 0 auto;
}
.new-design .legalPage .legalContent .title:before {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  margin: 0 auto 10px auto;
  background: #C4942A;
}
.new-design .legalPage .legalContent .subTitle {
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  margin: 6px auto 12px auto;
}
.new-design .legalPage .legalContent .textCenter {
  text-align: center;
}

.new-design .legalPage .spacer {
  flex-grow: 1;
}

.new-design .legalPage .legalFooter {
  width: 100%;
  padding: 20px 32px;
  margin: 20px 0 0 0;
  text-align: center;
  background: #F9F9FA;
}
.new-design .legalPage .legalFooter .impressum {
  font-size: 13px;
  line-height: 20px;
}
.new-design .legalPage .legalFooter .info {
  font-size: 13px;
  line-height: 20px;
}
.new-design .legalPage .legalFooter .info a {
  white-space: normal;
  display: inline-block;
}
@media (max-width: 480px) {
  .new-design .legalPage .legalFooter .info a {
    max-width: 260px;
  }
}

.proforma {
  width: 100%;
  min-width: 360px;
  height: 100%;
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
  font-family: Helvetica;
  font-weight: 400;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: var(--dark-blue);
  color: var(--gray-870);
}
.proforma::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  height: 70%;
  min-height: 500px;
  width: calc(300% - 100vw);
  left: 50%;
  transform: translateX(-50%);
  background: repeating-radial-gradient(ellipse at 50% 50%, transparent 0, var(--white-line) 0.4vw, var(--white-line) 0.5vw, transparent 0.8vw, transparent 2.5vw);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 60%);
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 60%);
  pointer-events: none;
}
.proforma__header {
  height: 50px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 10px 40px;
  color: var(--white);
  border-bottom: 1px solid var(--border-dark-gray);
  font-size: 16px;
}
@media (max-width: 768px) {
  .proforma__header {
    padding: 16px 24px;
  }
}
.proforma__header__language-dropdown {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
}
.proforma__header__language-dropdown-btn {
  background: none;
  border: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  font-size: 16px;
  cursor: pointer;
  color: var(--white);
}
.proforma__header__language-dropdown__menu {
  position: absolute;
  top: 100%;
  right: 0;
  width: 175px;
  border-radius: 8px;
  display: none;
}
.proforma__header__language-dropdown__menu__link {
  color: var(--gray-980);
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 200;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
}
.proforma__header__language-dropdown__menu__link:visited {
  color: var(--gray-980);
}
.proforma__header__language-dropdown__menu__link.active, .proforma__header__language-dropdown__menu__link:hover {
  background-color: var(--menu-item-background);
}
.proforma__header__language-dropdown.open .proforma__header__language-dropdown__menu {
  display: flex;
  flex-direction: column;
  padding: 4px;
  gap: 4px;
  background-color: var(--white);
  z-index: 2;
  box-shadow: 2px 2px 16px 0px var(--shadow-black);
}
.proforma__body {
  display: flex;
  flex-direction: column;
  padding: 0 20% 24px 20%;
  position: relative;
}
@media (max-width: 1200px) {
  .proforma__body {
    padding: 0 15% 24px 15%;
  }
}
@media (max-width: 768px) {
  .proforma__body {
    padding: 0 7% 24px 7%;
  }
}
.proforma__body::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  right: 0;
  top: 140px;
  bottom: 0;
  width: 300%;
  transform: translateX(-50%);
  background-color: var(--background-white);
  border-top-left-radius: 45%;
  border-top-right-radius: 45%;
  pointer-events: none;
}
.proforma__body__unavailable {
  background-color: var(--background-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
}
.proforma__body__unavailable__wrapper {
  max-width: 470px;
  display: flex;
  flex-direction: column;
  margin: 40px;
}
.proforma__body__unavailable__title {
  color: var(--gray-900);
  font-weight: 700;
  font-size: 32px;
  margin-top: 20px;
  margin-bottom: 25px;
}
.proforma__body__unavailable__title--no-rp {
  text-align: center;
  max-width: 100%;
}
.proforma__body__unavailable__body {
  color: var(--gray-700);
  font-size: 16px;
  line-height: 30px;
  max-width: 380px;
  margin-bottom: 32px;
}
.proforma__body__unavailable__body--no-rp {
  text-align: center;
  max-width: 100%;
}
.proforma__body__unavailable__rp-section {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border-gray);
  padding-top: 20px;
  padding-bottom: 12px;
  gap: 12px;
}
.proforma__body__unavailable__rp-section__rp-name {
  font-weight: 400;
  color: var(--dark-blue);
  font-size: 18px;
}
.proforma__body__unavailable__rp-section__row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
.proforma__body__unavailable__rp-section__text {
  color: var(--blue-600);
  font-size: 16px;
  font-weight: 300;
}
.proforma__body__title-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  color: var(--white);
}
@media (max-width: 600px) {
  .proforma__body__title-wrapper {
    padding-top: 10px;
  }
}
.proforma__body__title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  height: 80px;
}
.proforma__body__title__number {
  font-size: 28px;
}
@media (max-width: 768px) {
  .proforma__body__title__number {
    font-size: 20px;
  }
}
.proforma__body__title__prepared-by {
  font-size: 18px;
  color: var(--blue-200);
  letter-spacing: 0%;
}
@media (max-width: 768px) {
  .proforma__body__title__prepared-by {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .proforma__body__logo {
    display: none;
  }
}
.proforma__content {
  display: flex;
  flex-direction: column;
  margin: 5% 0;
  gap: 36px;
}
.proforma__card {
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  box-shadow: 0px 5px 9.5px 3px var(--shadow-gray);
  border-radius: 20px;
}
.proforma__card__header {
  height: 60px;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px 32px;
  border-bottom: 1px solid var(--gray-50);
  color: var(--blue-900);
}
.proforma__card__header__title {
  font-size: 20px;
}
.proforma__card__body {
  display: flex;
  flex-direction: column;
}
.proforma__summary-card {
  padding: 30px 40px;
}
@media (max-width: 600px) {
  .proforma__summary-card {
    padding: 20px;
  }
}
.proforma__total-amount {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.proforma__total-amount__wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
@media (max-width: 600px) {
  .proforma__total-amount__wrapper {
    align-items: start;
  }
}
.proforma__total-amount__title {
  font-size: 16px;
  color: var(--gray-500);
}
@media (max-width: 600px) {
  .proforma__total-amount__title {
    font-size: 14px;
  }
}
.proforma__total-amount__amount {
  font-size: 32px;
}
@media (max-width: 600px) {
  .proforma__total-amount__amount {
    font-size: 16px;
  }
}
.proforma__total-amount__amount__currency {
  font-size: 20px;
  font-weight: 300;
}
@media (max-width: 600px) {
  .proforma__total-amount__amount__currency {
    font-size: 14px;
  }
}
.proforma__total-amount__badge {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: var(--gray-200);
  color: var(--gray-750);
  border-radius: 27px;
  height: 40px;
  padding: 0 20px;
  font-size: 16px;
  text-align: center;
}
@media (max-width: 600px) {
  .proforma__total-amount__badge {
    height: 27px;
    font-size: 13px;
    padding: 0 12px;
  }
}
.proforma__total-amount__badge--invoiceDetailsPendingPayment {
  background-color: var(--gray-200);
  color: var(--gray-750);
}
.proforma__total-amount__badge--invoiceDetailsPartiallyPaid {
  background-color: var(--blue-100);
  color: var(--blue-700);
}
.proforma__total-amount__badge--invoiceDetailsPaidFully {
  background-color: var(--green-100);
  color: var(--green-600);
}
.proforma__progress-container {
  height: 10px;
  border-radius: 20px;
  background-color: var(--gray-250);
}
.proforma__progress-container__wrapper {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 600px) {
  .proforma__progress-container__wrapper {
    flex-direction: column-reverse;
  }
}
.proforma__progress-container__progress-bar {
  height: 100%;
  border-radius: 20px;
  background: linear-gradient(to right, var(--blue-400), var(--dark-blue));
}
.proforma__progress-container__data {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-size: 16px;
}
@media (max-width: 600px) {
  .proforma__progress-container__data {
    flex-direction: column;
    gap: 8px;
  }
}
.proforma__progress__info {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
}
@media (max-width: 600px) {
  .proforma__progress__info {
    justify-content: space-between;
  }
}
.proforma__progress__info__type {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
.proforma__progress__info__circle {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.proforma__progress__info__circle--filled {
  background: linear-gradient(to right, var(--blue-400), var(--dark-blue));
}
.proforma__progress__info__circle--empty {
  background-color: var(--gray-250);
}
.proforma__progress__info__text {
  color: var(--gray-500);
}
@media (max-width: 600px) {
  .proforma__progress__info__text {
    font-size: 14px;
  }
}
.proforma__progress__info__amount {
  color: var(--gray-850);
}
@media (max-width: 600px) {
  .proforma__progress__info__amount {
    font-size: 14px;
  }
}
.proforma__progress__info__amount__currency {
  font-weight: 300;
}
.proforma__info {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 40px 0;
}
@media (max-width: 600px) {
  .proforma__info {
    flex-direction: column;
    gap: 8px;
    margin: 20px 0;
  }
}
.proforma__info__client-column {
  width: 40%;
}
@media (max-width: 600px) {
  .proforma__info__client-column {
    width: 100%;
  }
}
.proforma__info__column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 600px) {
  .proforma__info__column {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.proforma__info__column__title {
  color: var(--gray-450);
  font-size: 16px;
}
@media (max-width: 600px) {
  .proforma__info__column__title {
    font-size: 14px;
  }
}
.proforma__info__column__value {
  color: var(--gray-800);
  font-size: 18px;
}
@media (max-width: 600px) {
  .proforma__info__column__value {
    font-size: 14px;
  }
}
.proforma__info__column__client {
  font-weight: 600;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
@media (max-width: 600px) {
  .proforma__info__column__client {
    width: 75%;
    text-align: right;
  }
}
.proforma__go-to-payment-btn {
  height: 56px;
  background: linear-gradient(to right, var(--green-300) 50%, var(--green-800) 100%);
  background-size: 200% 100%;
  background-position: 100% 50%;
  transition: background-position 0.6s ease;
  color: var(--white);
  font-size: 20px;
  font-weight: 500;
  border-radius: 60px;
  border: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
}
.proforma__go-to-payment-btn:hover {
  background-position: 0% 50%;
}
@media (max-width: 600px) {
  .proforma__go-to-payment-btn {
    height: 36px;
    font-size: 14px;
  }
}
.proforma__items__row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 32px 40px;
  font-size: 16px;
}
@media (max-width: 950px) {
  .proforma__items__row {
    flex-direction: column;
    padding: 20px;
    align-items: end;
    font-size: 14px;
    gap: 8px;
  }
}
@media (max-width: 450px) {
  .proforma__items__row {
    gap: 4px;
  }
}
@media (max-width: 950px) {
  .proforma__items__row__service {
    gap: 12px;
  }
}
@media (max-width: 450px) {
  .proforma__items__row__service {
    gap: 8px;
  }
}
.proforma__items__row:not(:last-child) {
  border-bottom: 1px solid var(--border-light-gray);
}
.proforma__items__row__wrapper {
  width: 50%;
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media (max-width: 950px) {
  .proforma__items__row__wrapper {
    width: 100%;
    align-items: center;
  }
}
.proforma__items__row__number {
  color: var(--gray-450);
}
.proforma__items__row__item {
  display: flex;
  flex-direction: row;
  align-items: start;
  justify-content: start;
  gap: 24px;
}
@media (max-width: 950px) {
  .proforma__items__row__item {
    gap: 16px;
  }
}
.proforma__items__row__item__img {
  width: 87px;
  height: 87px;
  border: 1px solid var(--gray-300);
  border-radius: 12px;
  object-fit: contain;
  flex-shrink: 0;
}
.proforma__items__row__item__img__wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
@media (max-width: 950px) {
  .proforma__items__row__item__img__wrapper {
    width: 74px;
  }
}
.proforma__items__row__item__img__wrapper__service {
  width: 10px;
}
@media (max-width: 950px) {
  .proforma__items__row__item__img {
    width: 54px;
    height: 54px;
  }
}
.proforma__items__row__item__info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--gray-820);
}
@media (max-width: 950px) {
  .proforma__items__row__item__info {
    gap: 4px;
  }
}
.proforma__items__row__item__info__type {
  font-size: 18px;
}
@media (max-width: 950px) {
  .proforma__items__row__item__info__type {
    font-size: 15px;
  }
}
.proforma__items__row__item__info__description {
  line-height: 22px;
  color: var(--gray-450);
}
.proforma__items__row__details-wrapper {
  width: 50%;
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media (max-width: 950px) {
  .proforma__items__row__details-wrapper {
    width: calc(100% - 90px);
    justify-content: space-between;
  }
}
@media (max-width: 450px) {
  .proforma__items__row__details-wrapper {
    flex-direction: column;
    align-items: start;
    gap: 8px;
  }
}
@media (max-width: 950px) {
  .proforma__items__row__details-wrapper__service {
    width: calc(100% - 26px);
    justify-content: space-between;
  }
}
.proforma__items__row__quantity {
  width: 50%;
  text-align: center;
  color: var(--gray-450);
}
@media (max-width: 950px) {
  .proforma__items__row__quantity {
    width: auto;
    text-align: start;
  }
}
.proforma__items__row__price {
  width: 50%;
  display: flex;
  flex-direction: row;
  justify-content: end;
  gap: 5px;
  color: var(--gray-850);
}
@media (max-width: 950px) {
  .proforma__items__row__price {
    width: auto;
  }
}
.proforma__items__row__price__currency {
  font-weight: 300;
  color: var(--gray-600);
}
@media (max-width: 950px) {
  .proforma__payment-links__card {
    background-color: transparent;
    box-shadow: none;
  }
  .proforma__payment-links__card__header {
    padding: 0 12px;
    font-size: 18px;
    height: fit-content;
    margin-bottom: 24px;
    border: none;
  }
  .proforma__payment-links__card__body {
    gap: 16px;
  }
}
.proforma__payment-links__row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 32px;
  font-size: 16px;
  color: var(--gray-920);
  border: 1px solid var(--border-white);
}
@media (min-width: 950px) {
  .proforma__payment-links__row:not(:last-child) {
    border-bottom: 1px solid var(--border-light-gray);
  }
}
@media (max-width: 950px) {
  .proforma__payment-links__row {
    flex-direction: column;
    gap: 20px;
    background-color: var(--white);
    padding: 16px 20px 20px 20px;
    border-radius: 24px;
    gap: 19px;
  }
  .proforma__payment-links__row--paymentLinksUnpaid {
    border: 1px solid transparent;
    background: linear-gradient(white, white) padding-box, linear-gradient(150deg, var(--blue-300) 50%, var(--gray-250) 100%) border-box;
  }
}
.proforma__payment-links__row__text {
  font-size: 16px;
}
@media (max-width: 1200px) {
  .proforma__payment-links__row__text {
    font-size: 14px;
  }
}
.proforma__payment-links__row__link-info {
  display: contents;
}
@media (max-width: 950px) {
  .proforma__payment-links__row__link-info {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.proforma__payment-links__row__badge {
  height: 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  padding: 12px 16px;
  background-color: var(--gray-100);
  color: var(--gray-650);
  text-align: center;
}
@media (max-width: 950px) {
  .proforma__payment-links__row__badge {
    height: 32px;
    padding: 8px 16px;
  }
}
@media (max-width: 600px) {
  .proforma__payment-links__row__badge {
    font-size: 14px;
  }
}
.proforma__payment-links__row__badge--paymentLinksUnpaid {
  background-color: var(--gray-100);
  color: var(--gray-650);
}
.proforma__payment-links__row__badge--paymentLinksPaid {
  background-color: var(--green-100);
  color: var(--green-600);
}
.proforma__payment-links__row__price {
  color: var(--gray-950);
}
@media (max-width: 1200px) {
  .proforma__payment-links__row__price {
    font-size: 14px;
  }
}
.proforma__payment-links__row__price__title {
  display: none;
}
@media (max-width: 950px) {
  .proforma__payment-links__row__price__title {
    display: block;
    font-size: 14px;
    color: var(--gray-550);
  }
}
.proforma__payment-links__row__price__wrapper {
  width: 20%;
  text-align: center;
}
@media (max-width: 950px) {
  .proforma__payment-links__row__price__wrapper {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
  }
}
.proforma__payment-links__row__price__currency {
  font-weight: 300;
}
.proforma__payment-links__row__link {
  width: 210px;
  height: 48px;
  background: linear-gradient(to right, var(--dark-blue) 0%, var(--blue-400) 70%);
  background-size: 200% 100%;
  background-position: 0% 50%;
  transition: background-position 0.6s ease;
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  border-radius: 60px;
  border: none;
  padding: 14px 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.proforma__payment-links__row__link:hover {
  background-position: 100% 50%;
}
.proforma__payment-links__row__link:visited {
  color: var(--white);
}
@media (max-width: 950px) {
  .proforma__payment-links__row__link {
    width: 100%;
  }
}
.proforma__payment-links__row__link--disabled {
  background-image: none;
  background-color: var(--gray-150);
  color: var(--gray-400);
}
.proforma__payment-links__row__link--disabled:hover {
  background: none;
  background-color: var(--gray-150);
  color: var(--gray-400);
}
@media (max-width: 950px) {
  .proforma__payment-links__row__link--disabled {
    display: none;
  }
}
.proforma__footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 32px 10%;
  background-color: var(--dark-blue);
  color: var(--white);
  font-size: 16px;
}
@media (max-width: 600px) {
  .proforma__footer {
    flex-direction: column;
    gap: 46px;
    align-items: start;
  }
}
.proforma__footer__info-box {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.proforma__footer__info-box__info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 300;
}
.proforma__footer__info-box__info a {
  color: inherit !important;
  text-decoration: none !important;
  outline: none !important;
  box-shadow: none !important;
  transition: none !important;
}
.proforma__footer__info-box__info a:link,
.proforma__footer__info-box__info a:visited,
.proforma__footer__info-box__info a:hover,
.proforma__footer__info-box__info a:active,
.proforma__footer__info-box__info a:focus {
  color: inherit !important;
  text-decoration: none !important;
  background: none !important;
  box-shadow: none !important;
}
.proforma__footer__info-box__info a:-webkit-any-link:visited {
  color: inherit !important;
  text-decoration: none !important;
}
.proforma__footer__info-box__info__title {
  font-weight: 400;
  font-size: 20px;
}
@media (max-width: 600px) {
  .proforma__footer__info-box__info__title {
    font-size: 16px;
  }
}
.proforma__footer__info-box__info__text {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
.proforma__footer__info-box__info__link:visited {
  color: var(--white);
}
.proforma__footer__info-box__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (max-width: 600px) {
  .proforma__footer__info-box__links {
    font-size: 14px;
  }
}
.proforma__footer__info-box__links__info-text {
  font-weight: 300;
}
.proforma__footer__info-box__links__icons {
  display: flex;
  flex-direction: row;
  gap: 6px;
}
.proforma__footer__info-box__links__icons__icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--slate-600);
}

.no-phone-detect a[href^=tel] {
  color: inherit;
  text-decoration: none;
  pointer-events: none;
}

.desktop-only {
  display: none;
}
@media (min-width: 768px) {
  .desktop-only {
    display: inline;
  }
}

html:has(body.authorisation-page),
body.authorisation-page {
  height: auto;
  min-height: 100vh;
  min-height: 100dvh;
}
@media (max-width: 767px) {
  html:has(body.authorisation-page),
  body.authorisation-page {
    height: 100dvh;
    overflow: hidden;
  }
}
@media (max-width: 767px) and (orientation: landscape) {
  html:has(body.authorisation-page),
  body.authorisation-page {
    height: auto;
    min-height: 100dvh;
    overflow-y: auto;
  }
}
html:has(body.authorisation-page) input,
html:has(body.authorisation-page) textarea,
html:has(body.authorisation-page) select,
body.authorisation-page input,
body.authorisation-page textarea,
body.authorisation-page select {
  font-family: Helvetica;
}
html:has(body.authorisation-page) input::placeholder,
html:has(body.authorisation-page) textarea::placeholder,
html:has(body.authorisation-page) select::placeholder,
body.authorisation-page input::placeholder,
body.authorisation-page textarea::placeholder,
body.authorisation-page select::placeholder {
  font-family: inherit;
}

html:has(body.authorisation-page) {
  background-color: var(--dark-blue);
}

body.authorisation-page {
  background: none;
  overflow-y: auto;
}
@media (max-width: 767px) {
  body.authorisation-page {
    overflow: hidden;
  }
}
@media (max-width: 767px) and (orientation: landscape) {
  body.authorisation-page {
    overflow-y: auto;
  }
}

.authorisation-portrait-lock {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--dark-blue);
  z-index: 99999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 24px;
}
@media (max-width: 767px) and (orientation: landscape) {
  .authorisation-portrait-lock {
    display: flex;
  }
}
.authorisation-portrait-lock__icon {
  width: 64px;
  height: 64px;
  animation: rotatePhone 2s ease-in-out infinite;
}
.authorisation-portrait-lock__text {
  color: #fff;
  font-family: Helvetica, sans-serif;
  font-size: 18px;
  text-align: center;
  line-height: 1.4;
}

@keyframes rotatePhone {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-15deg);
  }
  75% {
    transform: rotate(15deg);
  }
}
.authorisation:has(.authorisation__main--signature) .authorisation-portrait-lock {
  display: none !important;
}

.authorisation-header {
  width: 100%;
  background-color: var(--dark-blue);
  flex-shrink: 0;
  padding-top: env(safe-area-inset-top);
}
.authorisation-header__container {
  max-width: 1480px;
  margin: 0 auto;
  padding: 20px 20px 25px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .authorisation-header__container {
    padding: 30px 40px;
  }
}
.authorisation-header__logo {
  height: 50px;
  width: auto;
}
.authorisation-header__step-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.authorisation-header__step {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.5px;
}
@media (min-width: 768px) {
  .authorisation-header__step {
    font-size: 16px;
  }
}
.authorisation-header__step-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .authorisation-header__step-title {
    font-size: 17px;
  }
}

.authorisation {
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  font-family: Helvetica;
  position: relative;
}
@media (max-width: 767px) {
  .authorisation {
    height: 100dvh;
    max-height: 100dvh;
    overflow: hidden;
  }
}
@media (max-width: 767px) and (orientation: landscape) {
  .authorisation {
    height: auto;
    max-height: none;
    overflow-y: auto;
  }
}
.authorisation--welcome {
  background: linear-gradient(180deg, rgba(30, 36, 44, 0.9) 0%, rgba(12, 15, 19, 0.85) 100%), url("../images/authorisation/welcome-background.jpg");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  display: flex;
  justify-content: center;
}
.authorisation--step {
  background-color: var(--white);
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .authorisation--step {
    height: 100vh;
  }
}
.authorisation__main {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background: #F6F6F6;
}
@media (max-width: 767px) {
  .authorisation__main {
    background: #FFF;
    overflow: hidden;
  }
}
@media (max-width: 767px) and (orientation: landscape) {
  .authorisation__main {
    overflow-y: visible;
    flex: none;
    min-height: 0;
  }
}
@media (min-width: 768px) {
  .authorisation__main {
    padding: 20px 200px 60px;
    overflow-y: auto;
  }
}
.authorisation__card {
  width: 100%;
  max-width: 500px;
  background: #FFF;
}
@media (max-width: 767px) {
  .authorisation__card {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 767px) and (orientation: landscape) {
  .authorisation__card {
    height: auto;
    min-height: 100%;
  }
}
@media (min-width: 768px) {
  .authorisation__card {
    border-radius: 12px;
    max-width: 720px;
    overflow: hidden;
  }
}
@media (min-width: 768px) {
  .authorisation__card--upload {
    max-width: 780px;
  }
}
.authorisation__content {
  padding: 40px;
}
@media (min-width: 768px) {
  .authorisation__content {
    min-height: 280px;
  }
}
.authorisation__content--centered {
  text-align: center;
}
.authorisation__content--mobile-centered {
  text-align: center;
  padding: 40px 25px;
}
@media (min-width: 768px) {
  .authorisation__content--mobile-centered {
    text-align: left;
    padding: 40px;
  }
}
.authorisation__image {
  width: 100%;
  flex-shrink: 0;
}
.authorisation__image img {
  width: 100%;
  height: 35dvh;
  object-fit: cover;
  display: block;
}
@media (min-width: 767px) {
  .authorisation__image img {
    height: 230px;
  }
}
.authorisation__title {
  font-size: 28px;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 16px;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .authorisation__title {
    font-size: 32px;
    margin-bottom: 24px;
  }
}
.authorisation__title--small {
  font-size: 24px;
}
@media (min-width: 768px) {
  .authorisation__title--small {
    font-size: 32px;
  }
}
.authorisation__subtitle {
  font-size: 16px;
  font-weight: 400;
  color: var(--dark-blue);
  margin: 0 0 24px 0;
  line-height: 24px;
}
@media (min-width: 768px) {
  .authorisation__subtitle {
    font-size: 18px;
    line-height: 28px;
  }
}
.authorisation__text {
  font-size: 14px;
  font-weight: 300;
  color: #838383;
  margin: 0 0 20px 0;
  line-height: 22px;
}
@media (max-width: 767px) {
  .authorisation__text {
    margin: 0;
  }
}
@media (min-width: 768px) {
  .authorisation__text {
    font-size: 16px;
    line-height: 24px;
  }
}
.authorisation__contact {
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.authorisation__contact__name {
  font-size: 16px;
  font-weight: 500;
  color: var(--dark-blue);
  margin-bottom: 12px;
  line-height: 24px;
}
@media (min-width: 768px) {
  .authorisation__contact__name {
    font-size: 18px;
    line-height: 28px;
  }
}
.authorisation__contact__item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 300;
  color: var(--dark-blue);
  line-height: 22px;
}
@media (min-width: 768px) {
  .authorisation__contact__item {
    font-size: 16px;
    line-height: 24px;
  }
}
.authorisation__contact__item img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.authorisation__contact__item:last-child {
  margin-bottom: 0;
}
.authorisation__info-box {
  margin-top: 32px;
  padding: 20px 24px;
  border: 1px solid #a17e56;
  background-color: #ffffff;
}
@media (min-width: 768px) {
  .authorisation__info-box {
    margin-top: 40px;
    padding: 24px 32px;
  }
}
.authorisation__info-box__text {
  margin: 0;
  font-size: 14px;
  font-weight: 300;
  color: #a17e56;
  text-align: center;
  line-height: 22px;
}
@media (min-width: 768px) {
  .authorisation__info-box__text {
    font-size: 16px;
    line-height: 24px;
  }
}
.authorisation__welcome {
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 24px 40px 24px;
}
@media (max-width: 767px) {
  .authorisation__welcome {
    height: 100%;
    padding: 5dvh 24px 4dvh 24px;
    justify-content: space-between;
  }
}
@media (max-width: 767px) and (orientation: landscape) {
  .authorisation__welcome {
    height: auto;
    min-height: 100%;
    padding: 24px;
    gap: 24px;
    justify-content: flex-start;
  }
}
@media (min-width: 768px) {
  .authorisation__welcome {
    max-width: 600px;
    padding: 60px 40px;
  }
}
.authorisation__welcome__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.authorisation__welcome__header__logo {
  width: 144px;
  height: 48px;
}
.authorisation__welcome__header__retailer {
  width: 98px;
  height: 49px;
}
.authorisation__welcome__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.authorisation__welcome__title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 16px 0;
  line-height: 1.3;
  font-family: Helvetica;
}
@media (max-width: 767px) {
  .authorisation__welcome__title {
    font-size: 28px;
    margin: 0 0 12px 0;
  }
}
.authorisation__welcome__title__second-line {
  display: block;
}
.authorisation__welcome__subtitle {
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 32px 0;
  max-width: 320px;
  line-height: 24px;
}
@media (min-width: 768px) {
  .authorisation__welcome__subtitle {
    max-width: 400px;
  }
}
.authorisation__welcome__product-card {
  border: 1px solid rgba(238, 238, 238, 0.55);
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 5px 15.8px 3px rgba(221, 221, 221, 0.09);
  backdrop-filter: blur(6.8px);
  border-radius: 8px;
  display: flex;
  align-items: center;
  padding: 16px;
  width: 100%;
  max-width: 340px;
  gap: 16px;
}
@media (min-width: 768px) {
  .authorisation__welcome__product-card {
    padding: 20px;
    max-width: 400px;
  }
}
.authorisation__welcome__product-card__image {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFF;
}
@media (min-width: 768px) {
  .authorisation__welcome__product-card__image {
    width: 100px;
    height: 100px;
  }
}
.authorisation__welcome__product-card__image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.authorisation__welcome__product-card__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: var(--dark-blue);
}
.authorisation__welcome__product-card__rmc, .authorisation__welcome__product-card__collection, .authorisation__welcome__product-card__description {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #fff;
}
.authorisation__welcome__product-card__collection {
  color: #bfbfbf;
}
.authorisation__welcome__product-card__description::first-letter {
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .authorisation__welcome__product-card__reference {
    display: block;
  }
}
.authorisation__welcome__footer {
  width: 100%;
  max-width: 340px;
  margin-top: auto;
  padding-top: 32px;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .authorisation__welcome__footer {
    padding-top: 0;
  }
}
@media (min-width: 768px) {
  .authorisation__welcome__footer {
    max-width: 400px;
  }
}
.authorisation__button {
  width: 100%;
  height: 60px;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
  font-family: Helvetica;
  padding: 14px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.authorisation__button--primary {
  background-color: var(--white);
  color: var(--dark-blue);
  border: 1px solid var(--border);
}
.authorisation__button--secondary {
  background: #fff;
  color: #1E242C;
  border: 1px solid #DADADA;
}
.authorisation__button--secondary:hover {
  border-color: #979797;
  background: #FAFCFF;
}
.authorisation__button--secondary:disabled {
  background: #E9E9E9;
  border-color: #E9E9E9;
  color: #999;
  cursor: not-allowed;
}
.authorisation__button--secondary:disabled:hover {
  background: #E9E9E9;
  border-color: #E9E9E9;
}
.authorisation__button--dark {
  background-color: #2B3440;
  color: #fff;
}
.authorisation__button--dark:hover {
  background-color: #445060;
}
.authorisation__button--dark:disabled {
  background: #E9E9E9;
  color: #999;
  cursor: not-allowed;
}
.authorisation__button--dark:disabled:hover {
  background: #E9E9E9;
}
.authorisation__button--dark--loading {
  background-color: #0D1522;
  pointer-events: none;
}
.authorisation__button--dark--loading:hover {
  background-color: #0D1522;
}
.authorisation__button--outline {
  background: #fff;
  color: #1E242C;
  border: 1px solid #DADADA;
}
.authorisation__button--outline:hover {
  border-color: #979797;
  background: #FAFCFF;
}
.authorisation__button--outline:disabled {
  background: #E9E9E9;
  border-color: #E9E9E9;
  color: #999;
  cursor: not-allowed;
}
.authorisation__button--outline:disabled:hover {
  background: #E9E9E9;
  border-color: #E9E9E9;
}
.authorisation__button:disabled {
  cursor: not-allowed;
}
.authorisation__footer {
  padding: 20px 24px;
  background: #fff;
  display: flex;
  justify-content: center;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .authorisation__footer {
    padding: 20px 40px;
    justify-content: flex-end;
  }
}
.authorisation__footer--desktop-only {
  display: none;
}
@media (min-width: 768px) {
  .authorisation__footer--desktop-only {
    display: flex;
  }
}
.authorisation__footer .authorisation__button {
  width: 100%;
}
@media (min-width: 768px) {
  .authorisation__footer .authorisation__button {
    width: auto;
    min-width: 200px;
    max-width: none;
  }
}
.authorisation__button--disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.authorisation__button--disabled:hover {
  opacity: 0.4;
}

.authorisation-progress {
  display: flex;
  gap: 8px;
  padding: 8px;
  background: #FFF;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .authorisation-progress {
    padding: 4px 8px;
    height: 13px;
  }
}
.authorisation-progress__bar {
  flex: 1;
  height: 4px;
  background: #EBEBEB;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.authorisation-progress__bar--completed {
  background: #fff;
}
.authorisation-progress__fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: #826633;
  border-radius: 2px;
}

.upload-dropzone {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  border: 2px dashed #D1D5DB;
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
@media (min-width: 768px) {
  .upload-dropzone {
    display: flex;
  }
}
.upload-dropzone:hover {
  border-color: #9CA3AF;
  background-color: #F9FAFB;
}
.upload-dropzone--dragover {
  border-color: var(--dark-blue);
  background-color: #F3F4F6;
}
.upload-dropzone__icon {
  margin-bottom: 16px;
}
.upload-dropzone__icon img {
  width: 32px;
  height: 32px;
}
.upload-dropzone__text {
  font-size: 18px;
  font-weight: 400;
  color: #888;
  text-align: center;
  margin: 0;
  line-height: 24px;
}
.upload-dropzone__input {
  display: none;
}

.upload-options {
  display: flex;
  gap: 12px;
}
@media (min-width: 768px) {
  .upload-options {
    display: none;
  }
}

.upload-option {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 20px 12px;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.upload-option:hover {
  border-color: #D1D5DB;
  background-color: #F9FAFB;
}
.upload-option__icon {
  margin-bottom: 8px;
}
.upload-option__icon img {
  width: 32px;
  height: 32px;
}
.upload-option__text {
  font-size: 13px;
  font-weight: 400;
  color: #888;
  text-align: center;
  margin: 0;
  line-height: 16px;
}

.upload-divider {
  font-size: 13px;
  font-weight: 400;
  color: #AEAEAE;
  text-align: center;
}
@media (min-width: 768px) {
  .upload-divider {
    font-size: 14px;
    font-weight: 300;
  }
}

.upload-manual-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 20px;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
  font-family: Helvetica;
}
.upload-manual-btn:hover:not(:disabled) {
  border-color: #D1D5DB;
  background-color: #F9FAFB;
}
.upload-manual-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.upload-manual-btn svg {
  flex-shrink: 0;
}
.upload-manual-btn span {
  font-size: 14px;
  font-weight: 400;
  color: #646464;
}
@media (min-width: 768px) {
  .upload-manual-btn span {
    font-size: 18px;
  }
}

.upload-content {
  padding: 27px 20px;
}
@media (max-width: 767px) {
  .upload-content {
    flex: 1;
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 767px) and (orientation: landscape) {
  .upload-content {
    flex: none;
    padding-bottom: 40px;
  }
}
@media (min-width: 768px) {
  .upload-content {
    padding: 40px;
  }
}
@media (min-width: 768px) {
  .upload-content__wrapper {
    gap: 30px;
    display: flex;
    flex-direction: column;
  }
}
.upload-content__title {
  font-size: 24px;
  font-weight: 700;
  color: #2D2B2B;
  line-height: 34px;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .upload-content__title {
    font-size: 32px;
    margin-bottom: 30px;
  }
}
.upload-content__subtitle {
  font-size: 16px;
  font-weight: 400;
  color: #838383;
  margin-bottom: 32px;
  line-height: 24px;
}
@media (min-width: 768px) {
  .upload-content__subtitle {
    font-weight: 300;
    font-size: 18px;
    margin-bottom: 24px;
  }
}

.photo-preview-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, #171F28 0%, #171F28 100%), rgba(0, 0, 0, 0.81);
  z-index: 1000;
  display: none;
  flex-direction: column;
}
.photo-preview-modal--visible {
  display: flex;
}
.photo-preview-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
  z-index: 10;
}
@media (min-width: 768px) {
  .photo-preview-modal__close {
    top: 24px;
    right: 24px;
  }
}
.photo-preview-modal__close:hover {
  background: rgba(0, 0, 0, 0.7);
}
.photo-preview-modal__close svg {
  width: 24px;
  height: 24px;
}
.photo-preview-modal__content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0 0;
  overflow: hidden;
}
@media (max-width: 767px) and (orientation: landscape) {
  .photo-preview-modal__content {
    padding: 60px 24px 24px;
  }
}
@media (min-width: 768px) {
  .photo-preview-modal__content {
    padding: 100px 200px 60px;
  }
}
.photo-preview-modal__image-container {
  max-width: 100%;
  max-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
@media (min-width: 768px) {
  .photo-preview-modal__image-container {
    max-width: 960px;
    max-height: 600px;
    width: auto;
  }
}
.photo-preview-modal__image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  width: 100%;
}
@media (min-width: 768px) {
  .photo-preview-modal__image {
    width: auto;
  }
}
.photo-preview-modal__actions {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: linear-gradient(0deg, #171F28 0%, #171F28 100%), rgba(0, 0, 0, 0.81);
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .photo-preview-modal__actions {
    justify-content: flex-end;
    padding: 24px 40px;
    border-top: 1px solid rgba(209, 209, 209, 0.44);
  }
}
.photo-preview-modal__btn {
  height: 50px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 400;
  font-family: Helvetica;
  cursor: pointer;
  transition: opacity 0.2s ease;
  padding: 0 24px;
}
@media (max-width: 767px) {
  .photo-preview-modal__btn {
    flex: 1;
    padding: 0 16px;
  }
}
@media (min-width: 768px) {
  .photo-preview-modal__btn {
    min-width: 160px;
  }
}
.photo-preview-modal__btn:hover {
  opacity: 0.9;
}
.photo-preview-modal__btn--secondary {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}
.photo-preview-modal__btn--primary {
  background: #fff;
  color: #1E242C;
  border: 1px solid #fff;
}

.image-viewer-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 1000;
  display: none;
  flex-direction: column;
}
.image-viewer-modal--visible {
  display: flex;
}
.image-viewer-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
  z-index: 10;
}
@media (min-width: 768px) {
  .image-viewer-modal__close {
    top: 24px;
    right: 24px;
  }
}
.image-viewer-modal__close:hover {
  background: rgba(255, 255, 255, 0.2);
}
.image-viewer-modal__close svg {
  width: 24px;
  height: 24px;
}
.image-viewer-modal__content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 16px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .image-viewer-modal__content {
    padding: 80px;
  }
}
.image-viewer-modal__image-container {
  max-width: 100%;
  max-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.image-viewer-modal__image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.image-viewer-modal__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 22px;
  background: rgba(96, 96, 96, 0.31);
  backdrop-filter: blur(4.2px);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.image-viewer-modal__nav img {
  width: 24px;
  height: 24px;
}
.image-viewer-modal__nav--prev {
  left: 16px;
}
@media (min-width: 768px) {
  .image-viewer-modal__nav--prev {
    left: 24px;
  }
}
.image-viewer-modal__nav--prev img {
  transform: rotate(180deg);
}
.image-viewer-modal__nav--next {
  right: 16px;
}
@media (min-width: 768px) {
  .image-viewer-modal__nav--next {
    right: 24px;
  }
}

.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, #171F28 0%, #171F28 100%), rgba(0, 0, 0, 0.81);
  z-index: 2000;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.loading-overlay--visible {
  display: flex;
}
.loading-overlay__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.loading-overlay__spinner {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.15);
  border-top-color: rgba(255, 255, 255, 0.9);
  animation: loading-spin 1s linear infinite;
}
.loading-overlay__text {
  font-family: Helvetica;
  font-size: 18px;
  font-weight: 300;
  color: #fff;
  margin: 0;
}
@media (min-width: 768px) {
  .loading-overlay__text {
    font-size: 24px;
  }
}

@keyframes loading-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.document-error-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.document-error-modal--visible {
  display: flex;
}
.document-error-modal__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}
.document-error-modal__dialog {
  position: relative;
  background: #fff;
  border-radius: 12px;
  max-width: 360px;
  width: 100%;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}
@media (min-width: 768px) {
  .document-error-modal__dialog {
    max-width: 630px;
  }
}
.document-error-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px 20px 24px;
  border-bottom: 1px solid #E3E3E3;
}
@media (min-width: 768px) {
  .document-error-modal__header {
    padding: 20px 30px;
  }
}
.document-error-modal__close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #F5F5F5;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
  flex-shrink: 0;
}
.document-error-modal__close:hover {
  background: #EBEBEB;
}
.document-error-modal__close img {
  width: 20px;
  height: 20px;
}
.document-error-modal__title {
  font-family: Helvetica;
  font-size: 20px;
  font-weight: 700;
  color: #B91717;
  margin: 0;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .document-error-modal__title {
    font-size: 32px;
  }
}
.document-error-modal__body {
  padding: 24px;
}
@media (min-width: 768px) {
  .document-error-modal__body {
    padding: 30px 40px;
  }
}
.document-error-modal__text {
  font-family: Helvetica;
  font-size: 14px;
  font-weight: 400;
  color: #898989;
  margin: 0 0 24px 0;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .document-error-modal__text {
    font-size: 16px;
    margin-bottom: 28px;
  }
}
.document-error-modal__text__bold {
  font-weight: 700;
}
.document-error-modal__actions {
  display: flex;
  gap: 12px;
}
.document-error-modal__btn {
  flex: 1;
  height: 46px;
  border-radius: 8px;
  font-family: Helvetica;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  transition: opacity 0.2s ease, background-color 0.2s ease;
}
@media (min-width: 768px) {
  .document-error-modal__btn {
    height: 50px;
    font-size: 16px;
  }
}
.document-error-modal__btn:hover {
  opacity: 0.9;
}
.document-error-modal__btn--secondary {
  background: #fff;
  color: #1E242C;
  border: 1px solid #D1D5DB;
}
.document-error-modal__btn--secondary:hover {
  background: #F9FAFB;
}
.document-error-modal__btn--primary {
  background: #1E242C;
  color: #fff;
  border: 1px solid #1E242C;
}

.side-success-content {
  padding: 27px 20px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .side-success-content {
    padding: 40px;
  }
}
.side-success-content__title {
  color: #2D2B2B;
  font-family: Helvetica;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 34px;
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "liga" off, "clig" off;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .side-success-content__title {
    font-size: 32px;
    margin-bottom: 30px;
  }
}
.side-success-content__subtitle {
  font-size: 16px;
  font-weight: 400;
  color: #838383;
  margin-bottom: 32px;
  line-height: 24px;
}
@media (min-width: 768px) {
  .side-success-content__subtitle {
    font-weight: 300;
    margin-bottom: 24px;
    font-size: 18px;
  }
}
.side-success-content__preview {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  background: #FAFAFA;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .side-success-content__preview {
    padding: 20px;
  }
}
.side-success-content__image {
  max-width: 100%;
  max-height: 25vh;
  object-fit: contain;
}
@media (min-width: 768px) {
  .side-success-content__image {
    max-height: 35vh;
  }
}
.side-success-content__replace {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 400;
  color: #646464;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s ease;
}
.side-success-content__replace, .side-success-content__replace * {
  cursor: pointer;
}
.side-success-content__replace:hover {
  color: #1E242C;
}
.side-success-content__replace img {
  width: 16px;
  height: 16px;
}
@media (min-width: 768px) {
  .side-success-content__replace img {
    width: 18px;
    height: 18px;
  }
}
.side-success-content__replace span {
  cursor: pointer;
}

@media (min-width: 768px) {
  .authorisation__card--verify {
    max-width: 1080px;
  }
}

.authorisation__footer--two-button {
  gap: 12px;
  padding: 12px 20px;
}
@media (min-width: 768px) {
  .authorisation__footer--two-button {
    gap: 16px;
    padding: 16px 40px;
  }
}
.authorisation__footer--two-button .authorisation__button {
  flex: 1;
  max-width: none;
}
@media (min-width: 768px) {
  .authorisation__footer--two-button .authorisation__button {
    flex: none;
    min-width: 180px;
  }
}

.verify-content {
  padding: 27px 20px;
}
@media (max-width: 767px) {
  .verify-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
}
@media (min-width: 768px) {
  .verify-content {
    padding: 40px;
  }
}
.verify-content__title {
  font-size: 24px;
  font-weight: 700;
  color: #2D2B2B;
  line-height: 34px;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .verify-content__title {
    font-size: 32px;
    margin-bottom: 30;
  }
}
.verify-content__subtitle {
  font-size: 16px;
  font-weight: 400;
  color: #838383;
  margin-bottom: 20px;
  line-height: 24px;
}
@media (min-width: 768px) {
  .verify-content__subtitle {
    font-weight: 300;
    font-size: 18px;
    margin-bottom: 24px;
  }
}

.document-carousel {
  position: relative;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .document-carousel {
    margin-bottom: 24px;
  }
}
.document-carousel__viewport {
  overflow: hidden;
  width: 100%;
}
.document-carousel__track {
  display: flex;
  transition: transform 0.3s ease;
  cursor: grab;
  user-select: none;
  width: 200%;
}
@media (min-width: 768px) {
  .document-carousel__track {
    width: 100%;
    gap: 16px;
  }
}
.document-carousel__track:active {
  cursor: grabbing;
}
.document-carousel__track--single {
  width: 100%;
  justify-content: center;
  cursor: default;
}
.document-carousel__track--single:active {
  cursor: default;
}
@media (min-width: 768px) {
  .document-carousel__track--single {
    border-radius: 16px;
    border: 1px solid #E5E7EB;
    padding: 3px 0;
  }
}
.document-carousel__slide {
  flex: 0 0 50%;
  min-width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .document-carousel__slide {
    flex: 0 0 calc(50% - 8px);
    min-width: calc(50% - 8px);
  }
}
.document-carousel__track--single .document-carousel__slide {
  flex: 0 0 100%;
  min-width: 100%;
  max-width: 400px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .document-carousel__track--single .document-carousel__slide {
    flex: 0 0 50%;
    min-width: auto;
    max-width: 50%;
  }
}
.document-carousel__image {
  width: 100%;
  height: auto;
  max-height: 28dvh;
  border-radius: 16px;
  object-fit: cover;
}
@media (min-width: 768px) {
  .document-carousel__image {
    max-height: 35dvh;
  }
}
.document-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}
@media (min-width: 768px) {
  .document-carousel__dots {
    display: none;
  }
}
.document-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #D1D5DB;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.document-carousel__dot--active {
  background: #979797;
}
.document-carousel__dot:hover {
  background: #9CA3AF;
}
.document-carousel__dot--active:hover {
  background: #979797;
}

.missing-details-warning {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid #DC2626;
  border-radius: 8px;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .missing-details-warning {
    margin-bottom: 16px;
  }
}
.missing-details-warning__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}
.missing-details-warning__text {
  font-family: Helvetica;
  font-size: 14px;
  font-weight: 400;
  color: #DC2626;
  line-height: 1.4;
}

.document-details {
  position: relative;
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 768px) {
  .document-details {
    padding: 20px 24px;
  }
}
.document-details__edit-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: #fff;
  border: 1px solid #D1D5DB;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 400;
  color: #646464;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
@media (min-width: 768px) {
  .document-details__edit-btn {
    top: 18px;
    right: 22px;
    padding: 8px 16px;
    font-size: 14px;
  }
}
.document-details__edit-btn:hover {
  border-color: #9CA3AF;
  background: #F9FAFB;
}
.document-details__edit-btn svg {
  width: 14px;
  height: 14px;
}
.document-details__edit-btn img {
  width: 16px;
  height: 16px;
}
.document-details__row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.document-details__label {
  font-size: 14px;
  font-weight: 400;
  color: #B9B9B9;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .document-details__label {
    font-size: 16px;
  }
}
.document-details__value {
  font-size: 14px;
  font-weight: 500;
  color: #636363;
}
@media (min-width: 768px) {
  .document-details__value {
    font-size: 16px;
  }
}
.document-details__error {
  font-size: 12px;
  color: #DC2626;
  margin-top: -4px;
  padding-left: 0;
}

.edit-details-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.edit-details-modal--visible {
  display: flex;
}
.edit-details-modal__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}
.edit-details-modal__dialog {
  position: relative;
  background: #fff;
  border-radius: 12px;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}
@media (min-width: 768px) {
  .edit-details-modal__dialog {
    max-width: 480px;
  }
}
.edit-details-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #E3E3E3;
}
@media (min-width: 768px) {
  .edit-details-modal__header {
    padding: 24px 32px;
  }
}
.edit-details-modal__title {
  font-size: 20px;
  font-weight: 700;
  color: #2D2B2B;
  margin: 0;
}
@media (min-width: 768px) {
  .edit-details-modal__title {
    font-size: 24px;
  }
}
.edit-details-modal__close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #F5F5F5;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
  flex-shrink: 0;
}
.edit-details-modal__close:hover {
  background: #EBEBEB;
}
.edit-details-modal__close img {
  width: 20px;
  height: 20px;
}
.edit-details-modal__body {
  padding: 24px;
}
@media (min-width: 768px) {
  .edit-details-modal__body {
    padding: 32px;
  }
}
.edit-details-modal__field {
  margin-bottom: 20px;
}
.edit-details-modal__field:last-of-type {
  margin-bottom: 28px;
}
.edit-details-modal__label {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: #646464;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .edit-details-modal__label {
    font-size: 16px;
  }
}
.edit-details-modal__input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #D1D5DB;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 400;
  color: #2D2B2B;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
  font-family: Helvetica;
}
.edit-details-modal__input:focus {
  outline: none;
  border-color: var(--dark-blue);
}
.edit-details-modal__input::placeholder {
  color: #9CA3AF;
  font-family: inherit;
}
.edit-details-modal__actions {
  display: flex;
  gap: 12px;
}
.edit-details-modal__btn {
  flex: 1;
  height: 50px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  transition: opacity 0.2s ease, background-color 0.2s ease;
}
.edit-details-modal__btn:hover {
  opacity: 0.9;
}
.edit-details-modal__btn--secondary {
  background: #fff;
  color: #1E242C;
  border: 1px solid #D1D5DB;
}
.edit-details-modal__btn--secondary:hover {
  background: #F9FAFB;
}
.edit-details-modal__btn--primary {
  background: #1E242C;
  color: #fff;
  border: 1px solid #1E242C;
}

.authorisation--edit {
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
  background: #F6F6F6;
}
@media (max-width: 767px) {
  .authorisation--edit {
    background: #fff;
  }
}
@media (min-width: 768px) {
  .authorisation--edit {
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
  }
}

.authorisation__main--edit {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 0;
  overflow-y: auto;
}
@media (min-width: 768px) {
  .authorisation__main--edit {
    padding: 20px 200px 0px;
  }
}

.authorisation__card--edit {
  width: 100%;
  max-width: 100%;
  background: #fff;
}
@media (max-width: 767px) {
  .authorisation__card--edit {
    min-height: fit-content;
  }
}
@media (min-width: 768px) {
  .authorisation__card--edit {
    max-width: 1080px;
    border-radius: 12px;
  }
}

.authorisation__footer--edit {
  padding-top: 16px;
  padding-bottom: 16px;
  background: #fff;
  border-top: 1px solid #E5E7EB;
}

.edit-document {
  padding: 27px 20px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
@media (min-width: 768px) {
  .edit-document {
    padding: 40px;
  }
}
.edit-document__header {
  display: flex;
  align-items: center;
  position: relative;
}
.edit-document__back {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--dark-blue);
  padding: 0;
  margin-right: 8px;
}
@media (max-width: 767px) {
  .edit-document__back {
    display: none;
  }
}
.edit-document__back:hover {
  opacity: 0.7;
}
.edit-document__title {
  font-size: 24px;
  font-weight: 700;
  color: #2D2B2B;
  margin-bottom: 32px;
  flex: 1;
}
@media (min-width: 768px) {
  .edit-document__title {
    font-size: 32px;
    margin-bottom: 24px;
  }
}
.edit-document__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #F5F5F5;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: #646464;
  padding: 0;
}
@media (min-width: 768px) {
  .edit-document__close {
    display: none;
  }
}
.edit-document__close:hover {
  background: #EBEBEB;
}
.edit-document__carousel-container .document-carousel {
  margin-bottom: 14px;
}
@media (min-width: 768px) {
  .edit-document__carousel-container .document-carousel {
    background: transparent;
    border: none;
    padding: 0;
    margin-bottom: 24px;
  }
}
.edit-document__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.edit-document__field {
  margin-bottom: 0;
}
.edit-document__field:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.edit-document__label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #8A8A8A;
  margin-bottom: 4px;
}
@media (min-width: 768px) {
  .edit-document__label {
    font-size: 16px;
  }
}
.edit-document__required {
  color: #838383;
}
.edit-document__input {
  width: 100%;
  padding: 12px 8px;
  border: none;
  font-size: 16px;
  font-weight: 400;
  color: #3A3A3C;
  background: transparent;
  box-sizing: border-box;
  border-bottom: 1px solid #E2E8F0;
  font-family: Helvetica;
}
.edit-document__input:focus {
  outline: none;
}
.edit-document__input::placeholder {
  color: #9CA3AF;
  font-family: inherit;
}
.edit-document__input--readonly {
  color: #2D2B2B;
  cursor: default;
}
.edit-document__input--error {
  border-bottom-color: #DC2626;
}
.edit-document__error {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: #DC2626;
  margin-top: 4px;
}
.edit-document__field--document-type .selectComponent--error {
  border-bottom-color: #DC2626;
}
.edit-document__field--document-type .selectComponent--v2 {
  position: relative;
}
.edit-document__field--document-type .selectComponent--v2 .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 10;
  margin-top: 4px;
}

@media (max-width: 767px) {
  .authorisation--scrollable .authorisation__main {
    overflow-y: auto;
    overflow-x: hidden;
  }
}

.authorisation__main--manual-doc {
  overflow-y: auto;
  overflow-x: visible;
}
@media (max-width: 767px) {
  .authorisation__main--manual-doc {
    overflow: visible;
  }
}

.authorisation__card--manual-doc {
  height: auto;
  min-height: 100%;
  overflow: visible;
}
@media (min-width: 768px) {
  .authorisation__card--manual-doc {
    max-width: 780px;
    min-height: auto;
  }
}

.manual-doc-content {
  padding: 27px 20px;
}
@media (min-width: 768px) {
  .manual-doc-content {
    padding: 40px;
  }
}
.manual-doc-content__title {
  color: #2D2B2B;
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
}
@media (min-width: 768px) {
  .manual-doc-content__title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
  }
}
.manual-doc-content__subtitle {
  margin-bottom: 32px;
  color: #838383;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
@media (min-width: 768px) {
  .manual-doc-content__subtitle {
    font-size: 18px;
    font-weight: 300;
    line-height: 28px;
  }
}

.contact-info-form__field--document-type {
  position: relative;
}
.contact-info-form__field--document-type .selectComponent--v2 {
  position: relative;
}
.contact-info-form__field--document-type .selectComponent--v2 .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 4px;
  z-index: 10;
}

.authorisation__main--contact-info {
  overflow-y: auto;
  overflow-x: visible;
}
@media (max-width: 767px) {
  .authorisation__main--contact-info {
    overflow: visible;
  }
}

.authorisation__card--contact-info {
  height: auto;
  min-height: 100%;
  overflow: visible;
}
@media (min-width: 768px) {
  .authorisation__card--contact-info {
    max-width: 1080px;
    min-height: auto;
  }
}

.contact-info-content--hidden {
  display: none;
}

.contact-info-content {
  padding: 27px 20px;
  overflow: visible;
}
@media (min-width: 768px) {
  .contact-info-content {
    padding: 40px;
  }
}
.contact-info-content__title {
  font-size: 24px;
  font-weight: 700;
  color: #2D2B2B;
  line-height: 34px;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .contact-info-content__title {
    font-size: 32px;
    margin-bottom: 30px;
  }
}
.contact-info-content__subtitle {
  font-size: 16px;
  font-weight: 400;
  color: #8A8A8A;
  margin-bottom: 32px;
  line-height: 24px;
}
@media (min-width: 768px) {
  .contact-info-content__subtitle {
    margin-bottom: 40px;
    font-size: 18px;
    font-weight: 300;
  }
}

.contact-info-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: visible;
}
.contact-info-form__field {
  margin-bottom: 0;
}
.contact-info-form__field--autocomplete {
  position: relative;
}
.contact-info-form__label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #8A8A8A;
  margin-bottom: 4px;
}
@media (min-width: 768px) {
  .contact-info-form__label {
    font-size: 16px;
  }
}
.contact-info-form__required {
  color: #838383;
}
.contact-info-form__input {
  width: 100%;
  padding: 12px 8px;
  border: none;
  font-size: 16px;
  font-weight: 400;
  color: #2D2B2B;
  background: transparent;
  box-sizing: border-box;
  border-bottom: 1px solid #E2E8F0;
  caret-color: #2D2B2B;
  font-family: Helvetica;
}
.contact-info-form__input:focus {
  outline: none;
}
.contact-info-form__input::placeholder {
  color: #9CA3AF;
  font-family: inherit;
}
.contact-info-form__input--error {
  border-bottom-color: #DC2626;
}
.contact-info-form__error {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: #DC2626;
  margin-top: 4px;
}
.contact-info-form__phone-row {
  display: flex;
  gap: 16px;
  align-items: flex-end;
}
.contact-info-form__phone-code {
  flex-shrink: 0;
  width: 120px;
}
.contact-info-form__phone-code .inputLabel {
  display: none;
}
.contact-info-form__phone-code .selectComponent--v2 {
  position: relative;
}
.contact-info-form__phone-code .selectComponent--v2 .selectedValue {
  padding: 11px 44px 11px 8px;
}
.contact-info-form__phone-code .selectComponent--v2 .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: auto;
  width: calc(100vw - 72px);
  max-width: 280px;
  margin-top: 4px;
}
.contact-info-form__phone-number {
  flex: 1;
  min-width: 0;
}

.authorisation__main--review-info {
  overflow-y: auto;
}

.authorisation__card--review-info {
  height: auto;
  min-height: 100%;
}
@media (min-width: 768px) {
  .authorisation__card--review-info {
    max-width: 1080px;
    min-height: auto;
  }
}

.authorisation__footer--review-info {
  gap: 12px;
  padding: 12px 20px;
}
@media (min-width: 768px) {
  .authorisation__footer--review-info {
    gap: 16px;
    padding: 12px 40px;
  }
}
.authorisation__footer--review-info .authorisation__button {
  flex: 1;
  max-width: none;
}
@media (min-width: 768px) {
  .authorisation__footer--review-info .authorisation__button {
    flex: none;
    min-width: 180px;
  }
}

.review-info-content {
  padding: 27px 20px;
}
@media (min-width: 768px) {
  .review-info-content {
    padding: 40px;
  }
}
.review-info-content__title {
  font-size: 24px;
  font-weight: 700;
  color: #2D2B2B;
  line-height: 34px;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .review-info-content__title {
    font-size: 32px;
    margin-bottom: 16px;
  }
}
.review-info-content__subtitle {
  font-size: 16px;
  font-weight: 400;
  color: #838383;
  margin-bottom: 32px;
  line-height: 24px;
}
@media (min-width: 768px) {
  .review-info-content__subtitle {
    margin-bottom: 24px;
    font-size: 18px;
    font-weight: 300;
  }
}

.review-info-card {
  background: rgba(246, 246, 246, 0.7411764706);
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .review-info-card {
    padding: 16px 24px;
    margin-bottom: 24px;
  }
}
.review-info-card__row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
}
.review-info-card__label {
  font-size: 14px;
  font-weight: 400;
  color: #B9B9B9;
  line-height: 24px;
}
@media (min-width: 768px) {
  .review-info-card__label {
    font-size: 16px;
  }
}
.review-info-card__value {
  font-size: 14px;
  font-weight: 400;
  color: #636363;
}
@media (min-width: 768px) {
  .review-info-card__value {
    font-size: 16px;
  }
}
.review-info-card__actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}
@media (min-width: 768px) {
  .review-info-card__actions {
    gap: 16px;
  }
}
.review-info-card__btn {
  flex: 1;
  height: 44px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 400;
  font-family: Helvetica;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
  background: rgba(246, 246, 246, 0.7411764706);
  color: #646464;
  border: 1px solid #D1D5DB;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
@media (min-width: 768px) {
  .review-info-card__btn {
    height: 46px;
    font-size: 14px;
  }
}
.review-info-card__btn:hover {
  background: #F9FAFB;
  border-color: #9CA3AF;
}
.review-info-card__btn--icon {
  flex: 0 0 auto;
  padding: 0 12px;
}
@media (min-width: 768px) {
  .review-info-card__btn--icon {
    flex: 1;
    padding: 0;
  }
}
.review-info-card__btn--icon img {
  width: 20px;
  height: 20px;
}

.review-info-section {
  margin-bottom: 24px;
}
.review-info-section__header {
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .review-info-section__header {
    margin-bottom: 4px;
  }
}
.review-info-section__label {
  font-size: 16px;
  font-weight: 700;
  color: #8A8A8A;
}
@media (min-width: 768px) {
  .review-info-section__label {
    font-size: 14px;
  }
}
.review-info-section__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid #E5E7EB;
}
.review-info-section__value {
  font-size: 16px;
  font-weight: 400;
  color: #2D2B2B;
  flex: 1;
  min-width: 0;
  word-break: break-word;
  padding: 6px 0;
}
.review-info-section__edit {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: background-color 0.2s ease;
}
.review-info-section__edit:hover {
  background: #F5F5F5;
}
.review-info-section__edit img {
  width: 20px;
  height: 20px;
}
.review-info-section__error {
  display: block;
  color: #DC2626;
  font-size: 12px;
  margin-top: 4px;
  min-height: 0;
}
.review-info-section__error:empty {
  display: none;
}

.address-autocomplete {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 100;
  max-height: 200px;
  overflow-y: auto;
}
.address-autocomplete--visible {
  display: block;
}
.address-autocomplete__item {
  padding: 12px 16px;
  font-size: 14px;
  color: #2D2B2B;
  cursor: pointer;
}
.address-autocomplete__item:hover {
  background: #F5F5F5;
}
.address-autocomplete__item + .address-autocomplete__item {
  border-top: 1px solid #F0F0F0;
}

@media (max-width: 767px) {
  .authorisation__card--verification-complete {
    justify-content: center;
  }
}

.verification-complete-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 27px;
}
@media (min-width: 768px) {
  .verification-complete-content {
    padding: 40px;
  }
}
.verification-complete-content__icon {
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .verification-complete-content__icon {
    width: 100%;
    height: 100%;
    padding-bottom: 40px;
  }
}
.verification-complete-content__icon img {
  width: 250px;
  height: 250px;
}
@media (min-width: 768px) {
  .verification-complete-content__icon img {
    height: 200px;
  }
}
.verification-complete-content__title {
  font-size: 24px;
  font-weight: 700;
  color: #2D2B2B;
  line-height: 34px;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .verification-complete-content__title {
    font-size: 32px;
    margin-bottom: 30px;
  }
}
.verification-complete-content__subtitle {
  font-size: 16px;
  font-weight: 400;
  color: #838383;
  line-height: 24px;
  max-width: 340px;
}
@media (min-width: 768px) {
  .verification-complete-content__subtitle {
    font-size: 18px;
    max-width: 400px;
    line-height: 28px;
    font-weight: 300;
    margin-bottom: 60px;
  }
}

.authorisation__card--identity-confirmed {
  padding-top: 0;
}
@media (max-width: 767px) {
  .authorisation__card--identity-confirmed {
    overflow-y: auto;
    padding-bottom: 100px;
  }
}
@media (min-width: 768px) {
  .authorisation__card--identity-confirmed {
    max-height: calc(100vh - 140px);
  }
}

.identity-confirmed-content {
  padding: 24px;
}
@media (min-width: 768px) {
  .identity-confirmed-content {
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
  }
}
.identity-confirmed-content__title {
  font-size: 24px;
  font-weight: 700;
  color: #2D2B2B;
  margin-bottom: 14px;
}
@media (min-width: 768px) {
  .identity-confirmed-content__title {
    font-size: 32px;
    margin-bottom: 30px;
  }
}
.identity-confirmed-content__subtitle {
  font-size: 16px;
  font-weight: 400;
  color: #838383;
  line-height: 24px;
  margin-bottom: 24px;
  max-width: 80%;
}

.identity-confirmed-product {
  background: #FFFFFF;
  border: 1px solid #E3E3E3;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .identity-confirmed-product {
    padding: 20px;
    gap: 20px;
    margin-bottom: 24px;
  }
}
.identity-confirmed-product__image-container {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 6px;
  overflow: hidden;
  background: #FFF;
  border: 1px solid #EBEBEB;
}
@media (min-width: 768px) {
  .identity-confirmed-product__image-container {
    width: 100px;
    height: 100px;
  }
}
.identity-confirmed-product__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.identity-confirmed-product__details {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.identity-confirmed-product__title {
  color: #58595A;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  display: none;
}
@media (min-width: 768px) {
  .identity-confirmed-product__title {
    font-size: 18px;
    display: block;
  }
}
.identity-confirmed-product__rmc {
  color: #58595A;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
}
@media (min-width: 768px) {
  .identity-confirmed-product__rmc {
    font-size: 16px;
  }
}
.identity-confirmed-product__collection {
  color: #BFBFBF;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 171.429% */
}
@media (min-width: 768px) {
  .identity-confirmed-product__collection {
    font-size: 16px;
  }
}
.identity-confirmed-product__description {
  color: #676767;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}
@media (min-width: 768px) {
  .identity-confirmed-product__description {
    color: #676767;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
  }
}

.identity-confirmed-info {
  border: 1px solid #E3E3E3;
  border-radius: 12px;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(133, 179, 125, 0.33);
  background: linear-gradient(0deg, rgba(211, 255, 222, 0.22) 0%, rgba(211, 255, 222, 0.22) 100%), rgba(255, 255, 255, 0.18);
  margin-top: 4px;
}
.identity-confirmed-info__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 14px 4px 14px;
}
@media (min-width: 768px) {
  .identity-confirmed-info__header {
    padding: 16px 16px 8px 16px;
  }
}
.identity-confirmed-info__step-label {
  color: #B7B7B7;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}
@media (min-width: 768px) {
  .identity-confirmed-info__step-label {
    font-size: 15px;
  }
}
.identity-confirmed-info__step-label-bold {
  color: #B7B7B7;
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
}
@media (min-width: 768px) {
  .identity-confirmed-info__step-label-bold {
    font-size: 15px;
    font-weight: 600;
  }
}
.identity-confirmed-info__edit {
  cursor: pointer;
  width: 20px;
  height: 20px;
}
.identity-confirmed-info__section {
  padding: 0 14px 14px;
}
@media (min-width: 768px) {
  .identity-confirmed-info__section {
    padding: 0 16px 16px;
  }
}
.identity-confirmed-info__name {
  font-weight: 700;
  color: #58595A;
  font-size: 20px;
  line-height: 30px;
}
.identity-confirmed-info__row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 4px;
}
@media (min-width: 768px) {
  .identity-confirmed-info__row--mobile-only {
    display: none;
  }
}
.identity-confirmed-info__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.6;
  filter: brightness(0) saturate(100%) invert(50%) sepia(6%) saturate(6%) hue-rotate(202deg) brightness(95%) contrast(92%);
}
@media (min-width: 768px) {
  .identity-confirmed-info__icon {
    width: 18px;
    height: 18px;
  }
}
.identity-confirmed-info__value {
  color: #A1A1A1;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px; /* 171.429% */
}
@media (min-width: 768px) {
  .identity-confirmed-info__value {
    font-size: 15px;
    line-height: 24px;
  }
}
.identity-confirmed-info__field-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.identity-confirmed-info__field {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}
.identity-confirmed-info__field:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .identity-confirmed-info__field {
    gap: 4px;
  }
}
.identity-confirmed-info__field--desktop-only {
  display: none;
}
@media (min-width: 768px) {
  .identity-confirmed-info__field--desktop-only {
    margin-top: 8px;
    display: flex;
    gap: 4px;
    align-items: center;
  }
}
.identity-confirmed-info__label {
  display: flex;
  gap: 4px;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
  color: #B9B9B9;
  line-height: 24px;
}
@media (min-width: 768px) {
  .identity-confirmed-info__label {
    font-size: 15px;
  }
}
.identity-confirmed-info__text {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #7F7F7F;
  font-size: 14px;
  font-weight: 400;
}
@media (min-width: 768px) {
  .identity-confirmed-info__text {
    font-size: 15px;
    line-height: 24px;
  }
}
.identity-confirmed-info__text--verified {
  display: flex;
  align-items: center;
  gap: 8px;
}
.identity-confirmed-info__verified-icon {
  width: 24px;
  height: 24px;
}
.identity-confirmed-info__error {
  font-size: 12px;
  color: #DC2626;
  padding-left: 24px;
  margin-bottom: 8px;
}
.identity-confirmed-info__error:empty {
  display: none;
}
.identity-confirmed-info__error--mobile-only {
  display: block;
}
@media (min-width: 768px) {
  .identity-confirmed-info__error--mobile-only {
    display: none;
  }
}
.identity-confirmed-info__error--desktop-only {
  display: none;
}
@media (min-width: 768px) {
  .identity-confirmed-info__error--desktop-only {
    display: block;
  }
}

.authorisation__main--confirm-authorisation {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.authorisation__card--confirm-authorisation {
  max-width: 1080px;
  margin: 0 auto;
  padding: 24px;
}
@media (min-width: 768px) {
  .authorisation__card--confirm-authorisation {
    padding: 40px;
  }
}

.confirm-authorisation-content {
  width: 100%;
}
.confirm-authorisation-content__title {
  font-size: 24px;
  font-weight: 700;
  color: #2D2B2B;
  margin-bottom: 30px;
  line-height: 34px;
}
@media (min-width: 768px) {
  .confirm-authorisation-content__title {
    font-size: 32px;
  }
}
.confirm-authorisation-content__subtitle {
  color: #838383;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .confirm-authorisation-content__subtitle {
    font-size: 18px;
    font-weight: 300;
    line-height: 28px;
  }
}

.confirm-authorisation-product {
  background: #FFFFFF;
  border: 1px solid #E3E3E3;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  align-items: center;
}
@media (min-width: 768px) {
  .confirm-authorisation-product {
    padding: 20px;
    gap: 20px;
    margin-bottom: 40px;
  }
}
.confirm-authorisation-product__image-container {
  flex-shrink: 0;
  width: 95px;
  height: 98px;
  border-radius: 6px;
  overflow: hidden;
  background: #FFF;
  border: 1px solid #EBEBEB;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .confirm-authorisation-product__image-container {
    width: 118px;
    height: 118px;
  }
}
.confirm-authorisation-product__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.confirm-authorisation-product__details {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.confirm-authorisation-product__name {
  color: #58595A;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
@media (min-width: 768px) {
  .confirm-authorisation-product__name {
    font-size: 18px;
  }
}
.confirm-authorisation-product__rmc {
  color: #58595A;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
}
@media (min-width: 768px) {
  .confirm-authorisation-product__rmc {
    font-size: 16px;
  }
}
.confirm-authorisation-product__collection {
  color: #BFBFBF;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .confirm-authorisation-product__collection {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
  }
}
.confirm-authorisation-product__description {
  color: #676767;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}
@media (min-width: 768px) {
  .confirm-authorisation-product__description {
    font-size: 16px;
  }
}

.confirm-authorisation-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .confirm-authorisation-steps {
    flex-direction: row;
    gap: 24px;
    align-items: stretch;
  }
}

.confirm-authorisation-section {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.confirm-authorisation-section__step-label-wrapper {
  display: flex;
  gap: 4px;
}
.confirm-authorisation-section__header {
  font-size: 14px;
  font-weight: 400;
  color: #7F7F7F;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .confirm-authorisation-section__header {
    font-size: 15px;
    margin-bottom: 16px;
  }
}

.confirm-authorisation-card {
  border-radius: 14px;
  border: 1px solid rgba(133, 179, 125, 0.33);
  background: linear-gradient(0deg, rgba(211, 255, 222, 0.22) 0%, rgba(211, 255, 222, 0.22) 100%), rgba(255, 255, 255, 0.18);
  padding: 16px 14px;
  position: relative;
}
@media (min-width: 768px) {
  .confirm-authorisation-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 16px;
  }
}
.confirm-authorisation-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
  align-items: start;
}
@media (min-width: 768px) {
  .confirm-authorisation-card__header {
    margin-bottom: 8px;
  }
}
.confirm-authorisation-card__name {
  font-size: 20px;
  font-weight: 700;
  color: #58595A;
  margin-top: 5px;
}
.confirm-authorisation-card__actions {
  display: flex;
  gap: 10px;
}
.confirm-authorisation-card__edit {
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: background-color 0.2s;
}
.confirm-authorisation-card__edit:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
.confirm-authorisation-card__edit img {
  width: 16px;
  height: 16px;
}
@media (min-width: 768px) {
  .confirm-authorisation-card__edit img {
    width: 18px;
    height: 18px;
  }
}
.confirm-authorisation-card__delete {
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: background-color 0.2s;
}
.confirm-authorisation-card__delete:hover {
  background-color: rgba(220, 38, 38, 0.1);
}
.confirm-authorisation-card__delete img {
  width: 16px;
  height: 16px;
}
.confirm-authorisation-card__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.confirm-authorisation-card__row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.confirm-authorisation-card__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  filter: brightness(0) saturate(100%) invert(55%) sepia(0%) saturate(924%) hue-rotate(343deg) brightness(87%) contrast(90%);
}
.confirm-authorisation-card__value {
  font-size: 14px;
  font-weight: 400;
  color: #A1A1A1;
  line-height: 24px;
}
@media (min-width: 768px) {
  .confirm-authorisation-card__value {
    font-size: 15px;
  }
}
.confirm-authorisation-card__field {
  display: flex;
  gap: 4px;
  align-items: center;
  margin-top: 8px;
}
.confirm-authorisation-card__field--verified {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 0;
}
.confirm-authorisation-card__field-content {
  display: flex;
  gap: 4px;
  align-items: center;
}
.confirm-authorisation-card__label {
  color: #B9B9B9;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}
@media (min-width: 768px) {
  .confirm-authorisation-card__label {
    font-size: 15px;
  }
}
.confirm-authorisation-card__text {
  font-size: 14px;
  font-weight: 400;
  color: #7F7F7F;
  line-height: 24px;
}
@media (min-width: 768px) {
  .confirm-authorisation-card__text {
    font-size: 15px;
  }
}
.confirm-authorisation-card__verified-icon {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 24px;
  height: 24px;
}

.authorisation-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3000;
  display: none;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
}
@media (min-width: 768px) {
  .authorisation-modal {
    align-items: center;
    padding: 24px;
  }
}
.authorisation-modal--visible {
  display: flex;
}
.authorisation-modal__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}
.authorisation-modal__dialog {
  position: relative;
  background: #fff;
  border-radius: 12px 12px 0 0;
  width: 100%;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.15);
}
@media (min-width: 768px) {
  .authorisation-modal__dialog {
    border-radius: 12px;
    max-width: 480px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
  }
}
.authorisation-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
}
.authorisation-modal__title {
  font-family: Helvetica;
  font-size: 20px;
  font-weight: 700;
  color: #2D2B2B;
  margin: 0;
}
@media (min-width: 768px) {
  .authorisation-modal__title {
    font-size: 24px;
  }
}
.authorisation-modal__close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #F5F5F5;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
  flex-shrink: 0;
}
.authorisation-modal__close:hover {
  background: #EBEBEB;
}
.authorisation-modal__close img {
  width: 20px;
  height: 20px;
}

.confirmation-modal__body {
  padding: 32px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .confirmation-modal__body {
    padding: 30px 32px 32px;
  }
}
.confirmation-modal__icon {
  margin-bottom: 16px;
}
.confirmation-modal__icon img {
  width: 76px;
  height: 76px;
}
.confirmation-modal__text {
  font-family: Helvetica;
  margin-bottom: 52px;
  color: #898989;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
}
@media (min-width: 768px) {
  .confirmation-modal__text {
    margin-bottom: 56px;
  }
}
.confirmation-modal__actions {
  display: flex;
  gap: 12px;
  width: 100%;
}
.confirmation-modal__btn {
  flex: 1;
  height: 60px;
  border-radius: 8px;
  font-family: Helvetica;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  padding: 14px 24px;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
}
.confirmation-modal__btn--cancel {
  background: #fff;
  color: #1E242C;
  border: 1px solid #DADADA;
}
.confirmation-modal__btn--cancel:hover {
  border-color: #979797;
  background: #FAFCFF;
}
.confirmation-modal__btn--delete, .confirmation-modal__btn--replace {
  background: #2B3440;
  color: #fff;
  border: none;
}
.confirmation-modal__btn--delete:hover, .confirmation-modal__btn--replace:hover {
  background: #445060;
}

.terms-modal__dialog {
  max-height: 70vh;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .terms-modal__dialog {
    max-width: 700px;
    max-height: 80vh;
    padding-bottom: 40px;
  }
}
.terms-modal__title {
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .terms-modal__title {
    font-size: 20px;
  }
}
.terms-modal__title--mobile {
  display: block;
}
@media (min-width: 768px) {
  .terms-modal__title--mobile {
    display: none;
  }
}
.terms-modal__title--desktop {
  display: none;
}
@media (min-width: 768px) {
  .terms-modal__title--desktop {
    display: block;
    margin-bottom: 0;
  }
}
.terms-modal__close {
  width: 36px;
  height: 36px;
  margin-left: auto;
}
.terms-modal__close img {
  width: 18px;
  height: 18px;
}
.terms-modal__body {
  padding: 0 24px 16px 24px;
  overflow-y: auto;
  flex: 1;
}
@media (min-width: 768px) {
  .terms-modal__body {
    padding: 0 40px 30px 40px;
  }
}
.terms-modal__text {
  font-family: Helvetica;
  color: #898989;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
}
@media (min-width: 768px) {
  .terms-modal__text {
    font-size: 18px;
    font-weight: 300;
  }
}
.terms-modal__list {
  font-family: Helvetica;
  font-size: 16px;
  font-weight: 400;
  color: #898989;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .terms-modal__list {
    font-size: 18px;
    font-weight: 300;
  }
}
.terms-modal__section-title {
  color: #656565;
  font-family: Helvetica;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}
@media (min-width: 768px) {
  .terms-modal__section-title {
    font-size: 20px;
    line-height: 28px;
  }
}

@media (max-width: 767px) {
  .authorisation__main--signature {
    background: #FFF;
    overflow-y: auto;
  }
}
@media (max-width: 767px) and (orientation: landscape) {
  .authorisation__main--signature {
    overflow-y: scroll;
  }
}

@media (max-width: 767px) {
  .authorisation__card--signature {
    height: 100%;
    min-height: 0;
  }
}
@media (max-width: 767px) and (orientation: landscape) {
  .authorisation__card--signature {
    height: auto;
    max-width: 90%;
  }
}

.signature-content {
  padding: 27px 20px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .signature-content {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
  }
}
@media (max-width: 767px) and (orientation: landscape) {
  .signature-content {
    flex: none;
    padding: 12px 20px;
  }
}
@media (min-width: 768px) {
  .signature-content {
    padding: 40px;
  }
}
.signature-content__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  margin-bottom: 14px;
}
@media (max-width: 767px) and (orientation: landscape) {
  .signature-content__title {
    display: none;
  }
}
@media (min-width: 768px) {
  .signature-content__title {
    font-size: 32px;
    margin-bottom: 30px;
  }
}
.signature-content__subtitle {
  color: #838383;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 24px;
}
@media (max-width: 767px) and (orientation: landscape) {
  .signature-content__subtitle {
    display: none;
  }
}
@media (min-width: 768px) {
  .signature-content__subtitle {
    font-size: 18px;
    font-weight: 300;
    line-height: 28px;
    margin-bottom: 32px;
  }
}
.signature-content__notice {
  color: #969696;
  font-size: 13px;
  font-weight: 300;
  line-height: 24px;
  margin-bottom: 6px;
}
@media (max-width: 767px) and (orientation: landscape) {
  .signature-content__notice {
    margin-bottom: 8px;
  }
}
@media (min-width: 768px) {
  .signature-content__notice {
    font-size: 15px;
  }
}

.signature-canvas-wrapper {
  width: 100%;
  height: 30vh;
  border: 1px solid #D1D5DB;
  border-radius: 8px;
  background: #F9FAFB;
  margin-bottom: 60px;
  position: relative;
  overflow: visible;
}
@media (max-width: 767px) {
  .signature-canvas-wrapper {
    flex: 1;
    height: auto;
    min-height: 120px;
  }
}
@media (max-width: 767px) and (orientation: landscape) {
  .signature-canvas-wrapper {
    flex: none;
    height: 55vh;
    min-height: 200px;
  }
}
@media (min-width: 768px) {
  .signature-canvas-wrapper {
    height: 33vh;
    margin-bottom: 24px;
  }
}
.signature-canvas-wrapper .signature-canvas {
  width: 100%;
  height: 100%;
  cursor: crosshair;
  touch-action: none;
}

.signature-clear {
  position: absolute;
  bottom: -40px;
  right: 0;
  display: flex;
  align-items: center;
  gap: 3px;
  background: none;
  border: none;
  font-family: Helvetica;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  padding: 8px 0;
  transition: opacity 0.2s ease;
  color: #515151;
}
@media (min-width: 768px) {
  .signature-clear {
    font-size: 18px;
  }
}
.signature-clear:hover {
  opacity: 0.7;
}
.signature-clear img {
  width: 20px;
  height: 20px;
}

.signature-terms {
  margin-top: 15px;
}
@media (min-width: 768px) {
  .signature-terms {
    margin-top: 30px;
  }
}
.signature-terms__label {
  display: flex;
  align-items: top;
  gap: 6px;
  cursor: pointer;
  user-select: none;
}
.signature-terms__checkbox {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: #5675A0;
}
.signature-terms__text {
  color: #808080;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}
@media (min-width: 768px) {
  .signature-terms__text {
    font-size: 16px;
  }
}
.signature-terms__link {
  color: #5675A0;
  text-decoration: none;
  cursor: pointer;
}
.signature-terms__link:hover {
  text-decoration: underline;
}

@media (max-width: 767px) {
  .authorisation__main--granted {
    align-items: stretch;
  }
}

@media (max-width: 767px) {
  .authorisation__card--granted {
    height: 100%;
    max-width: none;
  }
}

@media (max-width: 767px) {
  .authorisation__content--granted {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

.authorisation-granted__subtitle {
  color: #8F8F8F;
  text-align: center;
  font-family: Helvetica;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
@media (min-width: 768px) {
  .authorisation-granted__subtitle {
    color: #838383;
    font-size: 18px;
    font-weight: 300;
    line-height: 28px;
  }
}

.authorisation-granted__info-box {
  border: 1px solid #826633;
}

.authorisation-granted__info-box__text {
  color: #826633;
  text-align: center;
  font-family: Helvetica;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
}
@media (min-width: 768px) {
  .authorisation-granted__info-box__text {
    font-size: 18px;
    line-height: 28px;
  }
}

.toast-container {
  position: fixed;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.toast {
  display: flex;
  padding: 8px 12px;
  align-items: center;
  gap: 8px;
  background: #4A4A4A;
  border-radius: 8px;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: auto;
  backdrop-filter: blur(2px);
}
.toast--visible {
  opacity: 1;
  transform: translateY(0);
}
.toast--success {
  background: rgba(49, 49, 49, 0.8);
}
.toast--error {
  background: #DC2626;
}
.toast--info {
  background: #3B82F6;
}
.toast__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.toast__icon img {
  width: 100%;
  height: 100%;
  display: block;
}
.toast__message {
  color: #FFF;
  font-family: Helvetica;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  white-space: nowrap;
}

/*# sourceMappingURL=style.css.map */
