/**
 * WEBSITE: https://themefisher.com
 * TWITTER: https://twitter.com/themefisher
 * FACEBOOK: https://www.facebook.com/themefisher
 * GITHUB: https://github.com/themefisher/
 */

/*!------------------------------------------------------------------
[MAIN STYLESHEET]

PROJECT:	Project Name
VERSION:	Versoin Number
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[TABLE OF CONTENTS]
-------------------------------------------------------------------*/
/*  typography */
@import url("https://fonts.googleapis.com/css?family=Montserrat:300,400,500,600,700,800&display=swap");
body {
  font-family: 'Inter', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

h1, .h1 {
  font-size: 50px;
  font-weight: 800;
}
@media (max-width: 575px) {
  h1, .h1 {
    font-size: 36px;
    font-weight: 600;
  }
}

h2, .h2 {
  font-size: 42px;
  font-weight: 800;
}
@media (max-width: 575px) {
  h2, .h2 {
    font-size: 32px;
    font-weight: 600;
  }
}

h3, .h3 {
  font-size: 32px;
}
@media (max-width: 575px) {
  h3, .h3 {
    font-size: 28px;
  }
}

h4, .h4 {
  font-size: 26px;
}

h5, .h5 {
  font-size: 22px;
}

h6, .h6 {
  font-size: 18px;
}

/* Button style */
.btn {
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  text-transform: capitalize;
  padding: 13px 30px;
  border-radius: 6px;
  border: 1px solid;
  position: relative;
  z-index: 1;
  transition: 0.2s ease;
  font-weight: 600;
}
.btn:hover, .btn:active, .btn:focus {
  outline: 0;
  box-shadow: none !important;
}
.btn-sm {
  font-size: 14px;
  padding: 10px 25px;
}

.btn-primary {
  background: #FF0043;
  color: #fff;
  border-color: #FF0043;
}
.btn-primary:active, .btn-primary:hover, .btn-primary:focus, .btn-primary.focus, .btn-primary.active {
  background: #cc0036 !important;
  border-color: #cc0036 !important;
}

.btn-outline-primary {
  background: transparent;
  color: #FF0043;
  border-color: #FF0043;
}
.btn-outline-primary:active, .btn-outline-primary:hover, .btn-outline-primary:focus, .btn-outline-primary.focus, .btn-outline-primary.active {
  background: #cc0036 !important;
  border-color: #cc0036 !important;
  color: #fff;
}

body {
  background-color: #fff;
  overflow-x: hidden;
}

::-moz-selection {
  background: #ff3369;
  color: #fff;
}

::selection {
  background: #ff3369;
  color: #fff;
}

/* preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

img {
  vertical-align: middle;
  border: 0;
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

a {
  color: inherit;
}

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

a,
button,
select {
  cursor: pointer;
  transition: 0.2s ease;
}
a:focus,
button:focus,
select:focus {
  outline: 0;
}

a:hover {
  color: #FF0043;
}

.slick-slide {
  outline: 0;
}

.section {
  padding-top: 80px;
  padding-bottom: 80px;
}
.section-sm {
  padding-top: 50px;
  padding-bottom: 50px;
}
.section-title {
  margin-bottom: 40px;
}

.bg-cover {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.border-default {
  border-color: #E2E2E2 !important;
}

/* overlay */
.overlay {
  position: relative;
}
.overlay::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: #000;
  opacity: 0.5;
}

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

.rounded, .card-icon, .card {
  border-radius: 12px !important;
}

.shadow, .card, .search-wrapper .form-control, .navigation.nav-bg {
  box-shadow: 0px 15px 60px rgba(62, 62, 62, 0.102) !important;
}

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

.bg-primary {
  background: #FF0043 !important;
}

.text-primary {
  color: #FF0043 !important;
}

.text-light {
  color: #999 !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.mb-70 {
  margin-bottom: 70px !important;
}

.mb-80 {
  margin-bottom: 80px !important;
}

.mb-90 {
  margin-bottom: 90px !important;
}

.mb-100 {
  margin-bottom: 100px !important;
}

.zindex-1 {
  z-index: 1;
}

.overflow-hidden {
  overflow: hidden;
}

.font-weight-medium {
  font-weight: 500;
}

.navigation {
  transition: 0.2s ease;
}
.navigation.nav-bg {
  background: #fff;
}
@media (max-width: 991px) {
  .navigation .form-inline {
    width: 100%;
  }
  .navigation .form-inline input {
    width: 100%;
  }
}

.nav-item {
  margin: 0;
}
.nav-item .nav-link {
  text-transform: capitalize;
}

.navbar-light .navbar-nav .nav-link {
  color: #222;
}
.navbar-light .navbar-nav .nav-link:hover {
  color: #FF0043;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding: 20px;
  font-size: 15px;
}
@media (max-width: 991px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 10px;
    display: block;
  }
}

.search-wrapper {
  position: relative;
}
.search-wrapper .form-control {
  height: 46px;
  border: 0;
  outline: 0;
}
.search-wrapper .form-control::-moz-placeholder {
  color: #999;
  font-size: 15px;
}
.search-wrapper .form-control::placeholder {
  color: #999;
  font-size: 15px;
}
.search-wrapper .form-control-lg {
  height: 70px;
}
.search-wrapper .form-control.active.focus-visible {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.search-wrapper button {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.search-wrapper button i {
  color: #FF0043;
}

.card {
  transition: 0.2s ease;
  border: 0;
}
.card-lg .card-body {
  padding: 35px;
}
.card-icon {
  background: #FF0043;
  color: #fff;
  height: 55px;
  width: 60px;
  line-height: 55px;
  text-align: center;
  font-size: 27px;
  display: block;
  margin-top: 40px;
}
.card-text {
  margin-bottom: 0;
}
.card-title {
  font-weight: 700;
}
.card-body {
  padding: 25px;
}
.card:hover {
  box-shadow: 0px 15px 60px rgba(62, 62, 62, 0.2) !important;
}

.social-icons {
  margin-bottom: 0;
}
.social-icons a {
  display: block;
  height: 42px;
  width: 42px;
  line-height: 42px;
  text-align: center;
  color: #fff;
  background: #FF0043;
  border-radius: 6px;
}

.footer-menu {
  margin-bottom: 0;
}
.footer-menu a {
  display: block;
  padding: 10px;
  color: #333;
  transition: 0.2s ease;
}
.footer-menu a:hover {
  color: #FF0043;
}

/* sidenav */
.sidenav {
  border-right: 1px solid #E2E2E2;
  padding-right: 20px;
}
.sidenav ul {
  padding-left: 10px;
}
.sidenav > li a {
  padding: 20px 0;
  color: #222;
  display: block;
  font-size: 18px;
  font-weight: 500;
}
.sidenav > li:not(:last-child) {
  border-bottom: 1px solid #E2E2E2;
}
.sidenav .sidelist ul {
  display: none;
}
.sidenav .parent > a {
  color: #FF0043 !important;
  position: relative;
  margin-left: 10px;
}
.sidenav .parent > a::before {
  position: absolute;
  content: "";
  left: -10px;
  top: 25%;
  height: 50%;
  width: 1px;
  background: #FF0043;
}
.sidenav .parent ul {
  display: block;
  margin-bottom: 10px;
}
.sidenav .parent ul a {
  padding: 5px 0;
  font-size: 14px;
  font-weight: 400;
  color: #222;
}
.sidenav .parent ul li.active > a {
  margin-left: 10px;
}
.sidenav .parent ul li.active > a::before {
  height: 5px;
  width: 5px;
  border-radius: 50%;
  display: block;
  top: 13px;
}

/* /sidenav */
.page-list {
  list-style-type: none;
}
.page-list a {
  display: none;
}
.page-list ul {
  padding: 0;
}
.page-list ul a {
  display: inline-block;
  padding: 7px 0;
  font-size: 20px;
  color: #222;
}

.pagination {
  margin-top: 50px;
  justify-content: space-between;
}
.pagination a {
  color: #FF0043;
  font-size: 18px;
  font-weight: 500;
}
.pagination i {
  line-height: 1.6;
}

.code-tabs {
  border: 1px solid #E2E2E2;
  overflow: hidden;
  margin-bottom: 20px;
}
.code-tabs .nav-tabs {
  margin-bottom: 0;
}
.code-tabs .nav-tabs .nav-item {
  padding-left: 0;
  border-right: 1px solid #E2E2E2;
}
.code-tabs .nav-tabs .nav-item .nav-link {
  text-decoration: none;
  font-weight: 500;
  border: 0;
}
.code-tabs .nav-tabs .nav-item::before {
  display: none;
}
.code-tabs .nav-tabs .nav-item.active {
  background: #FF0043;
}
.code-tabs .nav-tabs .nav-item.active .nav-link {
  color: #fff;
}
.code-tabs .tab-content {
  padding: 20px 15px;
}

pre {
  position: relative;
}
pre .copy-to-clipboard {
  background: #FF0043;
  color: #fff;
  cursor: pointer;
  padding: 4px 5px;
  line-height: 1;
  font-size: 12px;
  font-weight: 500;
  border-radius: 4px;
  position: absolute;
  right: 10px;
  top: 10px;
}

:not(pre) > code + span.copy-to-clipboard {
  display: none;
}

.autocomplete-suggestions {
  border: 0;
  border-radius: 0 0 6px 6px;
  box-shadow: 0px 50px 60px rgba(62, 62, 62, 0.102) !important;
  background: #fff;
}
.autocomplete-suggestions .autocomplete-suggestion {
  transition: 0.2s ease;
  padding: 10px;
  font-weight: 500;
}
.autocomplete-suggestions .autocomplete-suggestion.selected {
  background: #FF0043;
}

.search-item a {
  color: #222;
  display: block;
}
.search-item a:hover {
  color: #FF0043;
}
.search-item:not(:last-child) {
  border-bottom: 1px solid #E2E2E2;
}

.form-group label {
  font-size: 15px;
  font-weight: 500;
}
.form-group .form-control {
  height: 40px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #E2E2E2;
  border-radius: 0;
  padding: 10px 0;
}
.form-group .form-control::-moz-placeholder {
  font-size: 13px;
  color: #999;
}
.form-group .form-control::placeholder {
  font-size: 13px;
  color: #999;
}
.form-group .form-control:focus {
  outline: 0;
  border-color: #FF0043;
  box-shadow: none;
}
.form-group .custom-select {
  font-size: 13px;
  color: #999;
}
.form-group textarea.form-control {
  height: 100px;
}

.badge {
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 15px;
  padding: 5px 10px;
}
.badge.added {
  background: #3778FF;
  color: #fff;
}
.badge.fixed {
  background: #F54773;
  color: #fff;
}
.badge.changed {
  background: #3AAA55;
  color: #fff;
}
.badge.depricated {
  background: #343434;
  color: #fff;
}
.badge.removed {
  background: #3bbfe4;
  color: #fff;
}
.badge.security {
  background: #F53535;
  color: #fff;
}
.badge.unreleased {
  background: #A037FF;
  color: #fff;
}

.collapse-wrapper {
  padding: 5px 15px;
}
.collapse-wrapper .collapse-head {
  text-decoration: none;
  color: #333;
  font-size: 18px;
  font-weight: 500;
  align-items: center;
}

:not(.highlight) pre {
  background: #FBFBFB;
}

.content h1,
.content h2,
.content h3,
.content h4,
.content h5,
.content h6 {
  font-weight: 500;
}
.content strong {
  font-weight: 600;
}
.content a {
  text-decoration: underline;
  color: #FF0043;
}
.content ol,
.content ul {
  padding-left: 20px;
}
.content ol li,
.content ul li {
  margin-bottom: 10px;
}
.content ul {
  padding-left: 0;
  margin-bottom: 20px;
}
.content ul li {
  padding-left: 20px;
  position: relative;
}
.content ul li::before {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background: #FF0043;
  left: 3px;
  top: 8px;
}
.content table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 1rem;
  border: 1px solid #EEEEEE;
}
.content table td,
.content table th {
  padding: 0.75rem;
  vertical-align: top;
  margin-bottom: 0;
}
.content tr:not(:last-child) {
  border-bottom: 1px solid #EEEEEE;
}
.content th {
  font-weight: 500;
}
.content thead {
  background: #FBFBFB;
  margin-bottom: 0;
}
.content thead tr {
  border-bottom: 1px solid #EEEEEE;
}
.content tbody {
  background: #fff;
  margin-bottom: 0;
}
.content .notices {
  margin: 2rem 0;
  position: relative;
  overflow: hidden;
}
.content .notices p {
  padding: 10px;
  margin-bottom: 0;
}
.content .notices p::before {
  position: absolute;
  top: 2px;
  color: #fff;
  font-family: "themify";
  font-weight: 900;
  content: "\e717";
  left: 10px;
}
.content .notices.note p {
  border-top: 30px solid #6ab0de;
  background: #e7f2fa;
}
.content .notices.note p::after {
  content: "Note";
  position: absolute;
  top: 2px;
  color: #fff;
  left: 2rem;
}
.content .notices.tip p {
  border-top: 30px solid #78C578;
  background: #E6F9E6;
}
.content .notices.tip p::after {
  content: "Tip";
  position: absolute;
  top: 2px;
  color: #fff;
  left: 2rem;
}
.content .notices.info p {
  border-top: 30px solid #F0B37E;
  background: #FFF2DB;
}
.content .notices.info p::after {
  content: "Info";
  position: absolute;
  top: 2px;
  color: #fff;
  left: 2rem;
}
.content .notices.warning p {
  border-top: 30px solid #E06F6C;
  background: #FAE2E2;
}
.content .notices.warning p::after {
  content: "Warning";
  position: absolute;
  top: 2px;
  color: #fff;
  left: 2rem;
}
.content blockquote {
  font-size: 20px !important;
  color: #222;
  padding: 20px 40px;
  border-left: 2px solid #FF0043;
  margin: 40px 0;
  font-weight: bold;
  background: #FBFBFB;
}
.content blockquote p {
  margin-bottom: 0 !important;
}
.content pre {
  display: block;
  padding: 9.5px;
  margin: 10px 0px 10px;
}
.content code {
  margin-bottom: 0 !important;
  font-size: 100%;
}
/*# sourceMappingURL=style.css.map */
header.optA {
    padding-bottom: 0;
}
.optA {
    background: #FAFAF7;
    color: #141414;
    padding: 0 0 48px;
}
.optA .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5vw;
    border-bottom: 1px solid #E8E6E0;
}
.optA .brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 17px;
    letter-spacing: -0.3px;
}
.optA .lmark {
    width: 34px;
    height: 34px;
    background: #fff;
    border: 2.5px solid #141414;
    border-radius: 6px;
    display: grid;
    place-items: center;
    font-family: 'Archivo Black', sans-serif;
    color: #E31B23;
    font-size: 20px;
    line-height: 1;
}
.optA .nav .btn {
    background: #141414;
    color: #fff;
    font-family: 'Archivo', sans-serif;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 8px;
}
.optA .hero {
    max-width: 1100px;
    margin: 0 auto;
    padding: 44px 5vw 0;
}
.optA .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #4B4A46;
    background: #fff;
    border: 1px solid #E8E6E0;
    border-radius: 100px;
    padding: 7px 14px;
}
.optA .eyebrow .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #E31B23;
    animation: pulseA 1.6s infinite;
}
.optA h1 {
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    letter-spacing: -2px;
    font-size: clamp(38px, 6.2vw, 74px);
    line-height: 1.02;
    margin: 18px 0 14px;
    max-width: 14ch;
}
.optA .sub {
    font-size: 18px;
    line-height: 1.55;
    color: #4B4A46;
    max-width: 52ch;
}
.optA .options2 {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: stretch;
    gap: 12px;
    margin-top: 24px;
    max-width: 840px;
}
.optA .opt-card {
    background: #E7E7E5;
    border: 1px solid #D8D8D5;
    border-radius: 14px;
    padding: 20px 22px;
}
.optA .opt-card .opt-tag {
    color: #96958F;
}
.optA .opt-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #807E77;
    margin-bottom: 10px;
}
.optA .opt-card h4 {
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -.3px;
    margin-bottom: 10px;
}
.optA .opt-card h4 {
    color: #63625D;
}
.optA .opt-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.optA .opt-card .opt-list li {
    color: #84837D;
}
.optA .opt-list li {
    font-size: 14px;
    line-height: 1.45;
    color: #4B4A46;
    display: flex;
    gap: 9px;
    align-items: baseline;
}
.optA .opt-list li.no::before {
    content: "✕";
    color: #B0AEA6;
    font-weight: 700;
    font-size: 13px;
}
.optA .vs {
    align-self: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #141414;
    color: #fff;
    display: grid;
    place-items: center;
    font-family: 'Archivo Black', sans-serif;
    font-size: 14px;
    letter-spacing: 1px;
}
.optA .opt-card.featured {
    background: #fff;
    border: 2px solid #E31B23;
    box-shadow: 0 6px 22px rgba(227, 27, 35, .10);
}
.optA .opt-tag.red-tag, .optA .opt-card.featured .opt-tag {
    color: #E31B23;
}
.optA .opt-card.featured h4 {
    color: #141414;
}
.optA .opt-card h4 {
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -.3px;
    margin-bottom: 10px;
}
.optA .opt-list li.yes::before {
    content: "✓";
    color: #E31B23;
    font-weight: 700;
    font-size: 13px;
}
.optA h1 .red {
    color: #E31B23;
}
.optA .cta-row {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 24px;
    flex-wrap: wrap;
}
.optA .cta {
    background: #E31B23;
    color: #fff;
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 17px;
    padding: 16px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 0 #A80F15;
    transition: transform .12s, box-shadow .12s;
}
.optA .cta-note {
    font-size: 14px;
    color: #807E77;
}
.optA .sub {
    font-size: 18px;
    line-height: 1.55;
    color: #4B4A46;
    max-width: 52ch;
}
.optA .stats {
    max-width: 1100px;
    margin: 40px auto 0;
    padding: 0 5vw;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.optA .stat {
    background: #fff;
    border: 1px solid #E8E6E0;
    border-radius: 14px;
    padding: 22px 22px;
}
.optA .stat b {
    display: block;
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 26px;
    letter-spacing: -1px;
}
.optA .stat b::after {
    content: "";
    display: block;
    width: 26px;
    height: 3px;
    background: #E31B23;
    border-radius: 2px;
    margin: 10px 0 8px;
}
.optA .stat span {
    font-size: 14px;
    color: #807E77;
}
.optA .swaps {
    max-width: 1100px;
    margin: 36px auto 0;
    padding: 0 5vw;
}
.optA .swaps h3 {
    font-family: 'Archivo', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #4B4A46;
    margin-bottom: 14px;
    display: flex;
    gap: 8px;
    align-items: center;
}
.optA .swaps h3 .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #E31B23;
    animation: pulseA 1.6s infinite;
}
@supports ((mask-image:linear-gradient(#000,#000)) or (-webkit-mask-image:linear-gradient(#000,#000))) {
    .optA .drift-wrap {
        -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
        mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    }
}
.optA .drift-wrap {
    overflow: hidden;
    padding: 2px 0;
    min-height: 44px;
}
.optA .drift {
    display: flex;
    gap: 10px;
    width: max-content;
    flex-wrap: nowrap;
    animation: driftA 48s linear infinite;
}
.optA .drift .chip {
    flex: none;
    white-space: nowrap;
}
.optA .chip {
    background: #fff;
    border: 1px solid #E8E6E0;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 14px;
    display: flex;
    gap: 8px;
    align-items: center;
}
.optA .chip b {
    color: #E31B23;
    font-weight: 700;
}
.optA .how {
    max-width: 1100px;
    margin: 44px auto 0;
    padding: 0 5vw;
}
.optA .how-title {
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: clamp(26px, 3.4vw, 36px);
    letter-spacing: -1px;
    margin-bottom: 16px;
}
.optA .steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.optA .step {
    background: #fff;
    border: 1px solid #E8E6E0;
    border-radius: 14px;
    padding: 24px 22px;
    position: relative;
}
.optA .step-num {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: #E31B23;
    color: #fff;
    font-family: 'Archivo Black', sans-serif;
    font-size: 16px;
    margin-bottom: 14px;
}
.optA .step h4 {
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -.3px;
    margin-bottom: 8px;
}
.optA .step p {
    font-size: 14.5px;
    line-height: 1.55;
    color: #4B4A46;
}
.optA .closer {
    max-width: 1100px;
    margin: 44px auto 0;
    padding: 0 5vw;
}
.optA .closer-inner {
    background: #221D19;
    border-radius: 18px;
    padding: 44px 6vw;
    text-align: center;
    color: #FAF8F4;
}
.optA .closer-eyebrow {
    background: rgba(250, 248, 244, .06);
    border-color: rgba(250, 248, 244, .15);
    color: #CFC9C0;
}
.optA .closer-inner h2 {
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    letter-spacing: -1.5px;
    font-size: clamp(30px, 4.6vw, 52px);
    line-height: 1.08;
    margin: 16px auto 12px;
    max-width: 18ch;
}
.optA .closer-inner {
    background: #221D19;
    border-radius: 18px;
    padding: 44px 6vw;
    text-align: center;
    color: #FAF8F4;
}
.optA .closer-inner h2 .red {
    color: #FF3B42;
}
.optA .closer-inner p {
    font-size: 17px;
    line-height: 1.6;
    color: #B9B2A8;
    max-width: 48ch;
    margin: 0 auto;
}
.optA .closer-inner .cta {
    display: inline-block;
    margin-top: 22px;
}
.optA .closer-note {
    display: block;
    margin-top: 16px;
    font-size: 13.5px;
    color: #8C857B;
}
.optA .faq {
    max-width: 760px;
    margin: 40px auto 0;
    padding: 0 5vw;
}
.optA .faq-title {
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: clamp(24px, 3vw, 32px);
    letter-spacing: -1px;
    margin-bottom: 18px;
}
.optA .faq-item {
    background: #fff;
    border: 1px solid #E8E6E0;
    border-radius: 14px;
    margin-bottom: 10px;
}
.optA .faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 16px 20px;
    font-family: 'Archivo', sans-serif;
    font-weight: 600;
    font-size: 15.5px;
    letter-spacing: -.2px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
}
.optA .faq-item summary::after {
    content: "+";
    color: #E31B23;
    font-family: 'Archivo Black', sans-serif;
    font-size: 18px;
    flex: none;
    transition: transform .15s;
}
.optA .faq-item[open] summary::after {
    transform: rotate(45deg);
}
.optA .faq-item p {
    padding: 0 20px 18px;
    font-size: 14.5px;
    line-height: 1.6;
    color: #4B4A46;
}
.optA .sticky-bar {
    position: sticky;
    bottom: 12px;
    z-index: 50;
    max-width: 560px;
    margin: 28px auto 0;
    padding: 10px 10px 10px 18px;
    background: #fff;
    border: 1px solid #E8E6E0;
    border-radius: 100px;
    box-shadow: 0 8px 30px rgba(20, 20, 20, .14);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}
.optA .sticky-msg {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #4B4A46;
    white-space: nowrap;
}
.optA .sticky-msg .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #E31B23;
    animation: pulseA 1.6s infinite;
}
@media (max-width: 640px) {
    .optA .options2 {
        grid-template-columns: 1fr;
    }
    .optA .vs {
        justify-self: center;
    }
    .optA .stats {
        grid-template-columns: 1fr;
    }
        .optA .steps {
        grid-template-columns: 1fr;
    }

}
@media (max-width: 480px) {
    .optA .sticky-msg {
        display: none;
    }
    .optA .sticky-cta {
        width: 100%;
        text-align: center;
    }
    .optA .sticky-bar {
        margin-left: 12px;
        margin-right: 12px;
    }
}
.footer {
    background: #221D19;
    color: #8C857B;
    text-align: center;
    padding: 26px 5vw;
    font-size: 12.5px;
    line-height: 1.7;
}
.footer .fbrand {
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #FAF8F4;
    display: block;
    margin-bottom: 6px;
}
.footer a {
    color: #B9B2A8;
}
.nav-note {
    font-size: 13.5px;
    color: #807E77;
}
.progress {
    max-width: 640px;
    width: 100%;
    margin: 24px auto 0;
    padding: 0 5vw;
}
.progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 600;
    color: #807E77;
    margin-bottom: 8px;
}
.progress-label b {
    color: #141414;
    font-family: 'Archivo', sans-serif;
}
.progress-track {
    height: 6px;
    background: #E8E6E0;
    border-radius: 100px;
    overflow: hidden;
}
.main {
    flex: 1;
    max-width: 640px;
    width: 100%;
    margin: 0 auto;
    padding: 24px 5vw 44px;
}
.main h1 {
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    letter-spacing: -1.5px;
    font-size: clamp(28px, 5vw, 42px);
    line-height: 1.08;
    margin-bottom: 16px;
}
.main h1 .red {
    color: #E31B23;
}
.search-box {
    position: relative;
}
.search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    pointer-events: none;
}
.search-icon circle {
    stroke: #807E77;
    stroke-width: 2.5;
    fill: none;
}
.search-icon line {
    stroke: #807E77;
    stroke-width: 2.5;
    stroke-linecap: round;
}
.search-input {
    width: 100%;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    padding: 18px 20px 18px 52px;
    background: #fff;
    color: #141414;
    border: 2.5px solid #141414;
    border-radius: 14px;
    outline: none;
    transition: border-color .12s, box-shadow .12s;
}
.suggestions {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 20;
    background: #fff;
    border: 1px solid #E8E6E0;
    border-radius: 14px;
    box-shadow: 0 12px 34px rgba(20, 20, 20, .10);
    overflow: hidden;
    max-height: 270px;
    overflow-y: auto;
}
.suggestions.open {
    display: block;
}
.suggestion {
    padding: 14px 18px;
    font-size: 15.5px;
    cursor: pointer;
    display: block;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}
.suggestion:hover, .suggestion.active {
    background: #FAFAF7;
}
.suggestion .pin {
    color: #807E77;
    font-size: 13px;
    white-space: nowrap;
}
.suggestion + .suggestion {
    border-top: 1px solid #F0EEE8;
}
.when {
    display: none;
    margin-top: 14px;
}
.when.open {
    display: block;
    animation: rise .25s ease;
}
.when-label {
    display: block;
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 19px;
    letter-spacing: -.4px;
    margin-bottom: 10px;
}
.date-input {
    padding-left: 20px;
    font-family: 'Inter', sans-serif;
    color: #141414;
}
.when-rule {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.55;
    color: #807E77;
}
.when-rule b {
    color: #4B4A46;
}
.when-note {
    display: none;
    margin-top: 10px;
    font-size: 13.5px;
    line-height: 1.5;
}
.when-note.ok {
    display: block;
    color: #4B4A46;
}
.time-label {
    margin-top: 16px;
}
.label-hint {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 13.5px;
    color: #807E77;
    letter-spacing: 0;
}
.select-wrap {
    position: relative;
}
.time-input {
    appearance: none;
    -webkit-appearance: none;
    padding-left: 20px;
    padding-right: 48px;
    font-family: 'Inter', sans-serif;
    color: #141414;
    cursor: pointer;
    width: 100%;
}
.select-chev {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #807E77;
    font-size: 14px;
    pointer-events: none;
}
.main .cta {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 16px;
    background: #E31B23;
    color: #fff;
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 17px;
    padding: 17px 30px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 0 #A80F15;
    transition: transform .12s, box-shadow .12s, background .15s, color .15s;
    text-decoration: none;
}
.main .cta:disabled {
    background: #E2E0DA;
    color: #98968E;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}
.comforts {
    margin-top: 14px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}
.comfort {
    margin-top: 18px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}
.comfort-card {
    background: #fff;
    border: 1px solid #E8E6E0;
    border-radius: 14px;
    padding: 15px 18px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.comfort-card .tick {
    flex: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    margin-top: 1px;
    background: rgba(227, 27, 35, .10);
    color: #E31B23;
    display: grid;
    place-items: center;
    font-size: 12px;
    font-weight: 700;
}
.comfort-card span {
    font-size: 13.5px;
    line-height: 1.5;
    color: #4B4A46;
}
.comfort-card b {
    display: block;
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 14.5px;
    letter-spacing: -.2px;
    margin-bottom: 2px;
}
.centre-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    background: #fff;
    border: 1px solid #E8E6E0;
    border-radius: 100px;
    padding: 8px 14px;
    font-size: 13.5px;
    font-weight: 600;
    color: #4B4A46;
}
.centre-chip .pin {
    color: #E31B23;
}
.centre-chip a {
    color: #807E77;
    font-weight: 500;
    font-size: 12.5px;
    margin-left: 2px;
}
.tap-hint {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #807E77;
    margin: 10px 0 10px;
}
.choices {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}
.choice {
    background: #fff;
    border: 2px solid #E8E6E0;
    border-radius: 14px;
    padding: 20px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    cursor: pointer;
    text-align: left;
    width: 100%;
    font-family: 'Inter', sans-serif;
    transition: border-color .12s, box-shadow .12s;
}
.choice .icon-early {
    background: rgba(227, 27, 35, .07);
    border-color: rgba(227, 27, 35, .20);
}
.choice .icon {
    flex: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #FAFAF7;
    border: 1px solid #E8E6E0;
    display: grid;
    place-items: center;
}
.choice h4 {
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -.3px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.choice h4 .arrow {
    color: #E31B23;
}
.choice p {
    font-size: 14px;
    line-height: 1.5;
    color: #4B4A46;
    margin-top: 4px;
}
.choice .radio {
    flex: none;
    margin-left: auto;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid #CFCDC6;
    display: grid;
    place-items: center;
    margin-top: 2px;
}
.choice.selected {
    border-color: #E31B23;
    box-shadow: 0 6px 22px rgba(227, 27, 35, .10);
}
.choice.selected .icon {
    background: rgba(227, 27, 35, .08);
    border-color: rgba(227, 27, 35, .25);
}
.choice.selected .radio {
    border-color: #E31B23;
}
.choice.selected .radio::after {
    content: "";
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #E31B23;
}
.avail.open {
    display: block;
    animation: rise .25s ease;
}
.avail {
    display: none;
    margin-top: 16px;
}
.avail-title {
    margin-top: 0;
}
.tap-hint {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #807E77;
    margin: 10px 0 10px;
}
.range-box {
    background: #fff;
    border: 1px solid #E8E6E0;
    border-radius: 14px;
    padding: 18px 20px;
}
.range-label {
    display: block;
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: -.2px;
    margin-bottom: 8px;
}
.range-input {
    width: 100%;
    font-family: 'Inter', sans-serif;
    font-size: 16.5px;
    font-weight: 500;
    padding: 14px 16px;
    background: #FAFAF7;
    color: #141414;
    border: 2px solid #141414;
    border-radius: 12px;
    outline: none;
    transition: border-color .12s, box-shadow .12s;
}
.range-second {
    display: none;
    margin-top: 16px;
}
.range-second.open {
    display: block;
    animation: rise .25s ease;
}
.range-note {
    display: none;
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.5;
}
.local {
    margin-top: 18px;
    background: #fff;
    border: 1px solid #E8E6E0;
    border-radius: 14px;
    padding: 18px 20px;
}
.local h3 {
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: -.2px;
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 8px;
}
.local h3 .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #E31B23;
    animation: pulse 1.6s infinite;
}
.local p {
    font-size: 14px;
    line-height: 1.55;
    color: #4B4A46;
}
.local .centres {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}
.local .centre-tag.home {
    border-color: #E31B23;
    color: #E31B23;
}
.local .centre-tag {
    background: #FAFAF7;
    border: 1px solid #E8E6E0;
    border-radius: 100px;
    padding: 6px 12px;
    font-size: 12.5px;
    font-weight: 600;
    color: #4B4A46;
}
.sub {
    font-size: 15px;
    line-height: 1.55;
    color: #4B4A46;
    margin-bottom: 16px;
}
.centres {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}
.centre h4 {
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: -.3px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 0;
}
.centre p {
    font-size: 13px;
    color: #807E77;
    margin-top: 2px;
    margin-bottom: 0;
}
.centre.locked {
    cursor: default;
}
.centre.on .check {
    background: #E31B23;
    border-color: #E31B23;
}
.centre .check {
    flex: none;
    width: 24px;
    height: 24px;
    border-radius: 8px;
    border: 2px solid #CFCDC6;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    transition: all .12s;
}
.centre .info {
    flex: 1;
    min-width: 0;
}
.centre .price {
    flex: none;
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: -.3px;
}
.centre .price small {
    display: block;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 11px;
    color: #807E77;
    text-align: right;
    letter-spacing: 0;
}
.centre {
    background: #fff;
    border: 2px solid #E8E6E0;
    border-radius: 14px;
    padding: 16px 18px;
    display: flex;
    gap: 14px;
    align-items: center;
    cursor: pointer;
    text-align: left;
    width: 100%;
    font-family: 'Inter', sans-serif;
    transition: border-color .12s, box-shadow .12s;
}
.centre .yours {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 10.5px;
    letter-spacing: .8px;
    text-transform: uppercase;
    color: #E31B23;
    background: rgba(227, 27, 35, .08);
    border: 1px solid rgba(227, 27, 35, .22);
    border-radius: 100px;
    padding: 2px 8px;
}
.pool-tip {
    margin-top: 12px;
    font-size: 12.5px;
    line-height: 1.5;
    color: #807E77;
    margin-bottom: 0;
}
.summary {
    margin-top: 22px;
}
.summary h3, .pay h3 {
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -.4px;
    margin-bottom: 12px;
}
.sum-card {
    background: #fff;
    border: 1px solid #E8E6E0;
    border-radius: 14px;
    padding: 6px 18px;
}
.sum-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 14px;
    padding: 12px 0;
}
.sum-label {
    flex: none;
    font-size: 13px;
    font-weight: 600;
    color: #807E77;
}
.sum-val {
    font-size: 14px;
    font-weight: 600;
    text-align: right;
    line-height: 1.45;
}
.sum-row + .sum-row {
    border-top: 1px solid #F0EEE8;
}
.sum-total .sum-val {
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #E31B23;
    letter-spacing: -.4px;
}
.pay {
    margin-top: 22px;
}
.pay-methods {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}
.pay-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 16px;
    padding: 15px 20px;
    border-radius: 12px;
    border: 2px solid #141414;
    cursor: pointer;
    background: #141414;
    color: #fff;
    transition: transform .12s;
}
.pay-btn.alt {
    background: #fff;
    color: #141414;
}
.card-form {
    display: none;
    margin-top: 12px;
    background: #fff;
    border: 1px solid #E8E6E0;
    border-radius: 14px;
    padding: 18px 20px;
}
.card-form.open {
    display: block;
    animation: rise .25s ease;
}
.cf-label {
    display: block;
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 13.5px;
    letter-spacing: -.2px;
    margin: 12px 0 6px;
}
.cf-label:first-child {
    margin-top: 0;
}
.cf-input {
    width: 100%;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    padding: 13px 15px;
    background: #FAFAF7;
    color: #141414;
    border: 2px solid #141414;
    border-radius: 12px;
    outline: none;
    transition: border-color .12s, box-shadow .12s;
}
.cf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.pay-note {
    margin-top: 12px;
    text-align: center;
    font-size: 12.5px;
    color: #807E77;
    line-height: 1.6;
}
.total-bar {
    position: sticky;
    bottom: 12px;
    z-index: 50;
    max-width: 600px;
    margin: 24px auto 0;
    padding: 12px 12px 12px 20px;
    background: #221D19;
    border-radius: 16px;
    box-shadow: 0 10px 34px rgba(20, 20, 20, .25);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}
.total-info {
    color: #FAF8F4;
}
.total-info b {
    display: block;
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: -.5px;
}
.total-info span {
    font-size: 12px;
    color: #B9B2A8;
}
.total-cta {
    background: #E31B23;
    color: #fff;
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 16px;
    padding: 14px 24px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 0 #A80F15;
    transition: transform .12s, box-shadow .12s;
    white-space: nowrap;
}
.big-tick {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin-bottom: 18px;
    background: #E31B23;
    color: #fff;
    display: grid;
    place-items: center;
    box-shadow: 0 8px 26px rgba(227, 27, 35, .28);
}
.lead {
    font-size: 16px;
    line-height: 1.6;
    color: #4B4A46;
    max-width: 52ch;
}
.lead b {
    color: #141414;
}
.email-note {
    margin-top: 16px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid #E8E6E0;
    border-radius: 14px;
    padding: 15px 18px;
}
.email-note .ic {
    flex: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    margin-top: 1px;
    background: rgba(227, 27, 35, .10);
    color: #E31B23;
    display: grid;
    place-items: center;
    font-size: 12px;
    font-weight: 700;
}
.email-note p {
    font-size: 14px;
    line-height: 1.55;
    color: #4B4A46;
}
.email-note b {
    color: #141414;
}
.next {
    margin-top: 24px;
}
.next h3 {
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -.4px;
    margin-bottom: 12px;
}
.steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}
.step {
    background: #fff;
    border: 1px solid #E8E6E0;
    border-radius: 14px;
    padding: 14px 18px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.step span {
    font-size: 13.5px;
    line-height: 1.5;
    color: #4B4A46;
}
.step-num {
    flex: none;
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 9px;
    background: #E31B23;
    color: #fff;
    font-family: 'Archivo Black', sans-serif;
    font-size: 13px;
}
.step b {
    display: block;
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 14.5px;
    letter-spacing: -.2px;
    margin-bottom: 2px;
}
.share {
    margin-top: 24px;
    background: #221D19;
    border-radius: 18px;
    padding: 28px 24px;
    text-align: center;
    color: #FAF8F4;
}
.share h2 {
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    letter-spacing: -1px;
    font-size: clamp(21px, 3.4vw, 26px);
    line-height: 1.15;
}
.share h2 .amber {
    color: #FF3B42;
}
.share p {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.6;
    color: #B9B2A8;
    max-width: 44ch;
    margin-left: auto;
    margin-right: auto;
}
.share-btn {
    display: inline-block;
    margin-top: 16px;
    background: #E31B23;
    color: #fff;
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 15px;
    padding: 13px 26px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 0 #A80F15;
    transition: transform .12s, box-shadow .12s;
}
.details {
    margin-top: 22px;
}
.details h3 {
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -.4px;
    margin-bottom: 12px;
}
.det-card {
    background: #fff;
    border: 1px solid #E8E6E0;
    border-radius: 14px;
    padding: 18px 20px;
}
.det-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.det-row .det-label {
    margin-top: 0;
}
.det-input {
    width: 100%;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    padding: 13px 15px;
    background: #FAFAF7;
    color: #141414;
    border: 2px solid #141414;
    border-radius: 12px;
    outline: none;
    transition: border-color .12s, box-shadow .12s;
}
.det-hint {
    margin-top: 6px;
    font-size: 12.5px;
    color: #807E77;
    line-height: 1.5;
}
.det-privacy {
    margin-top: 14px;
    font-size: 13px;
    font-weight: 600;
    color: #141414;
}