.checkout__page-block {
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100dvh;
  width: 100dvw;
  z-index: 10; }

.checkout__frame_container {
  background-color: white;
  position: relative;
  overflow: hidden;
  padding: .5rem;
  width: 100dvw;
  height: 100dvh; }
  @media (min-width: 770px) {
    .checkout__frame_container {
      border: 1px solid black;
      border-radius: 20px;
      box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.5);
      padding: 2rem;
      width: 95%;
      max-width: 800px;
      margin: auto;
      height: 90%; } }
  .checkout__frame_container.--drop-in {
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out; }
    .checkout__frame_container.--drop-in.--show-dialog {
      transform: translateY(0);
      opacity: 1; }

.checkout__frame {
  position: absolute;
  display: grid;
  grid-template-rows: 60px 1fr 90px;
  align-items: start;
  background-color: white;
  top: 0px;
  left: 0px;
  padding: .5rem;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out; }
  @media (min-width: 770px) {
    .checkout__frame {
      grid-template-rows: 50px 1fr 70px; } }
  .checkout__frame .--dim {
    opacity: 0; }
  .checkout__frame.--slide-left {
    transform: translateX(-100%); }
  .checkout__frame.--slide-right {
    transform: translateX(100%); }
  .checkout__frame.--show-frame {
    transform: translateY(0);
    opacity: 1; }
  .checkout__frame_header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 50px;
    font-size: .8rem;
    width: calc(100dvw - 1rem); }
    @media (min-width: 770px) {
      .checkout__frame_header {
        font-size: 1rem;
        height: 50px;
        width: 100%; } }
    .checkout__frame_header_btn-row {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      width: 100%; }
    .checkout__frame_header button {
      background-color: transparent;
      border: none;
      color: #4b2b57;
      cursor: pointer;
      font-size: 1rem;
      padding: 0 1rem;
      transition: color 0.3s; }
      .checkout__frame_header button:hover {
        color: #2e1a35; }
  .checkout__frame_body {
    overflow: hidden;
    overflow-y: auto;
    padding: 1rem .25rem 4rem .25rem;
    height: 100%; }
    @media (min-width: 770px) {
      .checkout__frame_body {
        padding: 1rem 2rem 4rem 2rem; } }
    .checkout__frame_body_section.--two-column {
      display: flex;
      flex-direction: column; }
    @media (min-width: 770px) {
      .checkout__frame_body_section.--two-column {
        flex-direction: row;
        gap: 1rem; } }
    .checkout__frame_body_section.--three-column {
      display: flex;
      flex-direction: column;
      margin-top: 2rem; }
    @media (min-width: 770px) {
      .checkout__frame_body_section.--three-column {
        flex-direction: row;
        gap: 1rem; } }
    .checkout__frame_body_section .--one-third-col {
      width: 30%; }
    .checkout__frame_body h4 {
      margin-top: 2.25rem; }
    .checkout__frame_body .info-box {
      border-radius: 10px;
      display: flex;
      flex-direction: row;
      font-style: italic;
      align-items: center;
      justify-content: flex-start;
      background-color: aliceblue;
      padding: .5rem 1rem; }
      .checkout__frame_body .info-box i {
        margin-right: 1rem;
        background-color: navy;
        color: white;
        border-radius: 50%;
        text-align: center;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        padding: 4px 8px; }
    .checkout__frame_body .error-header {
      font-size: 1.5rem;
      font-weight: 800;
      text-align: center;
      margin-bottom: 1.5rem; }
    .checkout__frame_body_next {
      margin-block-start: 2rem; }
      .checkout__frame_body_next li {
        margin-bottom: .5rem; }
    .checkout__frame_body .data-column {
      width: calc(100dvw - .5rem);
      order: 2; }
      @media (min-width: 770px) {
        .checkout__frame_body .data-column {
          order: 1;
          width: 60%; } }
    .checkout__frame_body .selected-col {
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      width: calc(100dvw - 1.5rem);
      order: 1; }
      @media (min-width: 770px) {
        .checkout__frame_body .selected-col {
          order: 2;
          width: 40%; } }
      .checkout__frame_body .selected-col .--inner-box {
        border: 1px solid #4b2b57;
        height: auto;
        margin: 1rem auto;
        padding: 1rem;
        width: 100%; }
      .checkout__frame_body .selected-col-hdr {
        font-size: 1.2rem;
        font-weight: bold;
        text-align: center; }
      .checkout__frame_body .selected-col-size {
        white-space: nowrap;
        text-transform: uppercase;
        color: #5CB3FF;
        font-family: "Oswald", sans-serif;
        font-size: 2.5rem;
        line-height: 1;
        padding: 1.4rem 0;
        font-weight: 700; }
      .checkout__frame_body .selected-col-stdprice {
        font-size: 1.4rem;
        color: #4b2b57;
        padding: 0 0 1rem 0; }
      .checkout__frame_body .selected-col-address {
        display: flex;
        flex-direction: column;
        padding: 1rem 0 0 0;
        width: 100%; }
        .checkout__frame_body .selected-col-address-hours {
          display: flex;
          flex-direction: row;
          gap: 2rem; }
      .checkout__frame_body .selected-col-features {
        text-align: left;
        width: 100%; }
    .checkout__frame_body .autopay-msg {
      display: grid;
      grid-template-columns: 25px 1fr;
      justify-content: flex-start;
      align-items: center;
      gap: 1rem;
      font-weight: bold;
      width: calc(100% - 3rem); }
      .checkout__frame_body .autopay-msg input {
        height: 25px; }
  .checkout__frame_footer {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: .5rem;
    height: 100%;
    margin: 0rem 0rem;
    width: 100%; }
    @media (min-width: 770px) {
      .checkout__frame_footer {
        justify-content: space-between;
        align-items: end;
        margin: 1.5rem 2.5rem;
        flex-direction: row;
        margin: 1.5rem 2.5rem;
        width: calc(100% - 5rem);
        height: calc(100% - 1.5rem); } }
    .checkout__frame_footer-ackmsg {
      display: flex;
      flex-direction: row;
      font-size: .8rem;
      align-items: center;
      margin-right: 1rem; }
      .checkout__frame_footer-ackmsg input {
        width: 28px;
        height: 20px;
        margin-right: .5rem; }
    .checkout__frame_footer button {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #79b31d;
      border: none;
      border-radius: 4px;
      color: white;
      cursor: pointer;
      font-size: 1.25rem;
      padding: .25rem 1.5rem;
      transition: background-color 0.3s;
      width: 100%;
      max-width: 300px;
      height: 38px; }
      .checkout__frame_footer button[disabled] {
        background-color: #ccc;
        cursor: not-allowed; }
      .checkout__frame_footer button.--purple::after {
        content: '';
        position: absolute;
        right: -12px;
        background-color: #79b31d;
        border-left-color: transparent;
        border-bottom-color: transparent;
        border-radius: 0 4px 0 0;
        display: block;
        width: 26px;
        height: 26px;
        transform: rotate(45deg); }
      .checkout__frame_footer button[disabled].--purple::after {
        background-color: #ccc;
        cursor: not-allowed; }
      .checkout__frame_footer button.--clear {
        background-color: white;
        color: #4b2b57;
        border: 1px solid #4b2b57; }
        .checkout__frame_footer button.--clear::after {
          content: '';
          position: absolute;
          top: 5px;
          right: -12px;
          background-color: white;
          border-left-color: #4b2b57;
          border-bottom-color: #4b2b57;
          border-right: 1px solid #4b2b57;
          border-top: 1px solid #4b2b57;
          border-radius: 0 4px 0 0;
          display: block;
          width: 26px;
          height: 26px;
          transform: rotate(45deg); }
      .checkout__frame_footer button.--done {
        background-color: #4b2b57;
        border: none;
        border-radius: 4px;
        color: white;
        cursor: pointer;
        font-size: 1.25rem;
        padding: .25rem 1.5rem;
        transition: background-color 0.3s;
        width: 100%;
        max-width: 100px;
        height: 38px; }
    .checkout__frame_footer .review-lease-btn {
      border-radius: 10px;
      display: inline-block;
      color: white;
      background-color: #dc3545;
      font-weight: bold;
      padding: .5rem 1rem;
      margin: 1rem 0;
      text-decoration: none; }

.checkout__container_body {
  width: calc(100dvw - .5rem); }
  @media (min-width: 770px) {
    .checkout__container_body {
      width: calc(100% - 2rem); } }

.checkout__form-group {
  display: flex;
  flex-direction: column;
  margin: 0; }
  .checkout__form-group label {
    color: #4b2b57;
    font-size: .9rem;
    margin: .25rem .5rem; }
    .checkout__form-group label.--error {
      color: #b10417;
      font-weight: 600;
      font-style: italic; }
  .checkout__form-group input, .checkout__form-group select {
    background-color: #f5f0f7;
    border: none;
    border-radius: .75rem;
    color: #4b2b57;
    font-size: 1rem;
    padding: .5rem 1rem;
    outline: 1px solid lightgrey;
    transition: background-color 0.3s; }
    .checkout__form-group input:focus, .checkout__form-group select:focus {
      background-color: #faf3fa; }
    .checkout__form-group input.--error, .checkout__form-group select.--error {
      background-color: #f8d7da;
      border: 1px solid #f5c6cb;
      color: #721c24; }

.checkout__form-row {
  display: flex;
  flex-direction: column;
  justify-content: start;
  margin: .5rem 1rem;
  gap: 1rem; }
  @media (min-width: 770px) {
    .checkout__form-row {
      flex-direction: row;
      margin: .5rem 0; }
      .checkout__form-row .--third {
        width: 30%; }
      .checkout__form-row .--two-thirds {
        width: 60%; }
      .checkout__form-row .--half {
        width: 48%; }
      .checkout__form-row .--quater {
        width: 23%; }
      .checkout__form-row .--full {
        width: 100%; } }
  .checkout__form-row.--buttons {
    justify-content: space-between; }
  .checkout__form-row.--check-row {
    flex-direction: row;
    margin-top: 1.5rem; }
  .checkout__form-row.--no-show {
    display: none; }

.checkout__form-pass-btn {
  position: relative; }
  .checkout__form-pass-btn input {
    width: 100%; }
  .checkout__form-pass-btn button {
    background-color: transparent;
    border: none;
    color: #4b2b57;
    cursor: pointer;
    font-size: 1rem;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%); }

.checkout__sum {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: calc(100% - 2rem); }
  .checkout__sum h4 {
    margin-top: .75rem; }
  .checkout__sum-wait {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 1rem;
    font-size: 1.2rem;
    font-weight: bold;
    color: #4b2b57; }
  .checkout__sum-promo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 1rem;
    font-size: 1.2rem;
    font-weight: bold;
    color: #4b2b57; }
    .checkout__sum-promo select {
      width: 100%;
      max-width: 300px;
      margin-bottom: .5rem; }
    .checkout__sum-promo-planname {
      font-size: 1.5rem;
      font-weight: bold;
      color: #5CB3FF;
      padding-left: 1rem;
      text-align: center; }
  .checkout__sum-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: .5rem 0;
    width: 100%; }
    .checkout__sum-row.--header {
      border-bottom: 3px double #4b2b57;
      padding: .5rem;
      font-weight: bold; }
    .checkout__sum-row.--total-row {
      border-top: 3px double #4b2b57;
      padding: .5rem;
      font-weight: bold; }
  .checkout__sum-col-descrp {
    width: 70%; }
  .checkout__sum-col-amt {
    text-align: right;
    width: 30%; }
  .checkout__sum-msg {
    background-color: aliceblue;
    padding: .5rem 1rem;
    font-size: .8rem;
    font-style: italic; }

.checkout__spinner {
  display: inline-block;
  width: 48px;
  height: 48px;
  border: 4px solid #eee;
  border-top: 4px solid #5CB3FF;
  /* Use your brand color */
  border-radius: 50%;
  animation: checkout-spinner-spin 1s linear infinite;
  margin: 0 auto; }

@keyframes checkout-spinner-spin {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

.checkout__progress {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: 2rem; }
  .checkout__progress-step {
    color: #4b2b57;
    font-size: .8rem;
    font-weight: bold;
    border: 1px solid #4b2b57;
    border-radius: 1rem;
    padding: .15rem .5rem;
    white-space: nowrap; }
    @media (min-width: 770px) {
      .checkout__progress-step {
        font-size: 1rem;
        padding: .35rem 1.5rem; } }
    .checkout__progress-step.--active {
      background-color: #4b2b57;
      color: white; }
    .checkout__progress-step.--done {
      background-color: #77448a;
      color: white; }
  .checkout__progress-sep {
    width: 30px;
    height: 2px;
    border-top: 2px solid #4b2b57; }
    @media (min-width: 770px) {
      .checkout__progress-sep {
        width: 70px; } }

.autopay__dlg-back {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100dvh;
  width: 100dvw;
  z-index: 100; }
  .autopay__dlg-back .--show {
    display: flex; }

.autopay__dlg-container {
  display: flex;
  flex-direction: column;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.5);
  padding: 2rem;
  max-width: 400px; }

.autopay__dlg-btns {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 2rem;
  margin-top: .5rem; }
  .autopay__dlg-btns button {
    background-color: #79b31d;
    border: none;
    border-radius: 4px;
    color: white;
    cursor: pointer;
    font-size: .9rem;
    padding: .25rem 1.5rem;
    transition: background-color 0.3s; }
    .autopay__dlg-btns button:hover {
      background-color: #2e1a35; }

.cr-form {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1rem;
  width: 100%; }
  .cr-form h2 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #4b2b57; }
  .cr-form-dialog-header {
    display: flex;
    flex-direction: row;
    font-size: 1.5rem;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: 1rem; }
    .cr-form-dialog-header button {
      position: absolute;
      top: -25px;
      right: -25px;
      background-color: transparent;
      border: none;
      color: #4b2b57;
      cursor: pointer;
      font-size: 1.5rem;
      padding: 0 1rem; }
      .cr-form-dialog-header button:hover {
        color: #2e1a35; }
    .cr-form-dialog-header h2 {
      font-size: 1.5rem; }
  .cr-form__frame_container {
    width: fit-content;
    height: fit-content;
    min-width: 300px; }
  .cr-form__picker {
    background-color: whitesmoke;
    border: 1px solid #4b2b57;
    border-radius: 5px; }
    .cr-form__picker-title {
      background-color: #4b2b57;
      color: white;
      font-size: 1.1rem;
      font-weight: bold;
      text-align: center; }
    .cr-form__picker-list {
      background-color: white;
      display: flex;
      flex-direction: column;
      flex: 0 1 fit-content;
      gap: .5rem;
      padding: .5rem; }
  .cr-form__area {
    flex: 1; }
    .cr-form__area-msg {
      font-size: .9rem; }
    .cr-form__area-btnrow {
      margin: 2rem .5rem;
      padding: 0 1rem;
      text-align: center;
      width: 100%; }
      .cr-form__area-btnrow button {
        background-color: #f5f0f7;
        border: 1px solid #4b2b57;
        border-radius: 8px;
        color: #4b2b57;
        cursor: pointer;
        font-size: 1.5rem;
        padding: 0 1rem;
        width: 100%; }
        .cr-form__area-btnrow button:hover {
          color: #2e1a35; }
    .cr-form__area-footermsg {
      font-size: .8rem;
      font-style: italic;
      padding: .5rem; }
    .cr-form__area-reshdr {
      color: #4b2b57;
      font-size: 2.75rem;
      font-weight: 700;
      text-transform: uppercase; }
    .cr-form__area-ressubhdr {
      color: rgba(48, 48, 48, 0.5);
      font-size: 1.35rem;
      font-weight: 600;
      margin-bottom: 1rem;
      text-transform: uppercase; }
    .cr-form__area-resmsg {
      font-size: .9rem;
      font-weight: 900;
      margin-bottom: .5rem; }
  .cr-form__location {
    background-color: white;
    border: 1px solid #4b2b57;
    border-radius: 3px;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    transition: all 0.5s cubic-bezier(0.7, 0, 0.3, 1); }
    .cr-form__location.--selected-loc {
      background-color: rgba(255, 255, 0, 0.2);
      border: 2px solid rgba(75, 43, 87, 0.5);
      box-shadow: rgba(75, 43, 87, 0.1) 3px 3px;
      margin: .75rem 0;
      transform: translateX(5px); }
    .cr-form__location-addblock {
      padding: .25rem .5rem .25rem 0; }
    .cr-form__location-name {
      display: block;
      font-size: .9rem; }
    .cr-form__location-add {
      display: block;
      font-size: .8rem;
      line-height: 1; }
  .cr-form__container {
    padding: 0 1rem; }
    .cr-form__container p {
      font-size: .9rem; }
    .cr-form__container label {
      display: block;
      font-size: .8rem;
      font-weight: bold; }
    .cr-form__container input {
      width: 100%;
      padding-block: 1px;
      padding-inline: 2px; }
    .cr-form__container select {
      padding-block: 2px;
      padding-inline: 2px; }
    .cr-form__container textarea {
      padding-block: 2px;
      padding-inline: 2px;
      width: 100%; }
    .cr-form__container-row {
      margin-bottom: .5rem; }
      .cr-form__container-row.two-col {
        display: flex;
        flex-direction: row;
        gap: .5rem; }
  .cr-form__infoarea {
    background-color: whitesmoke;
    border: 1px solid gainsboro;
    border-radius: 3px;
    display: flex;
    flex-direction: column;
    flex: 0 1 fit-content;
    gap: .5rem;
    padding: 1rem;
    max-width: 45%; }
    .cr-form__infoarea-hours {
      display: flex;
      margin-top: .5rem; }
      .cr-form__infoarea-hours-col {
        flex: 1;
        font-size: .9rem;
        font-weight: 600; }
        .cr-form__infoarea-hours-col span {
          display: block; }
    .cr-form__infoarea-unit {
      display: flex;
      flex-direction: column;
      gap: 2rem;
      margin-top: 1rem; }
      .cr-form__infoarea-unit-columns {
        display: flex;
        flex-direction: row;
        gap: 1rem; }
        .cr-form__infoarea-unit-columns-col.--size {
          white-space: nowrap;
          text-transform: uppercase;
          color: #5CB3FF;
          font-family: "Oswald", sans-serif;
          font-size: 4rem;
          line-height: 1;
          font-weight: 700;
          flex: 1; }
        .cr-form__infoarea-unit-columns-col.--features {
          flex: 2; }
          .cr-form__infoarea-unit-columns-col.--features ul {
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            margin: 0; }
          .cr-form__infoarea-unit-columns-col.--features li {
            font-size: .8rem;
            color: #333;
            margin-bottom: 0.25rem; }
          .cr-form__infoarea-unit-columns-col.--features li:before {
            margin-right: 3px;
            content: "\f00c";
            font-family: FontAwesome;
            color: #79b31d; }
        .cr-form__infoarea-unit-columns-col.--price1 {
          color: #acacac;
          flex: 1;
          font-size: 2.5rem;
          font-weight: 700;
          text-align: center; }
        .cr-form__infoarea-unit-columns-col.--price2 {
          color: #dc3545;
          flex: 1;
          font-size: 2.5rem;
          font-weight: 700;
          text-align: center; }
          .cr-form__infoarea-unit-columns-col.--price2 .--splabel {
            color: #acacac;
            font-size: .7rem;
            text-transform: uppercase; }
        .cr-form__infoarea-unit-columns-col-label {
          color: #acacac;
          font-size: .7rem;
          font-weight: 300;
          text-decoration: none; }
    .cr-form__infoarea-footer {
      font-size: .8rem;
      font-weight: 700;
      margin-top: .5rem; }

.location-features {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  background-color: #E6E0EE;
  color: #4b2b57;
  padding: .5rem;
  gap: .5rem;
  row-gap: .25rem;
  transform: translateX(-1rem);
  width: calc(100dvw + 1rem); }
  .location-features.sticky {
    position: fixed;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); }
  .location-features .feature-item {
    padding: .15rem .5rem;
    width: fit-content; }
    .location-features .feature-item i {
      color: #79b31d; }
    .location-features .feature-item span {
      font-weight: 600; }

.rental-features-2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: .15rem;
  list-style: none;
  padding-left: 15px;
  margin-left: 2rem; }
  @media (min-width: 770px) {
    .rental-features-2 {
      flex-direction: row;
      gap: 1rem;
      margin-left: 0; } }
  .rental-features-2 li {
    margin-bottom: 1rem;
    padding-top: .5rem;
    padding-left: 2rem;
    font-weight: 900;
    font-size: .75rem;
    line-height: 1;
    position: relative; }
    .rental-features-2 li:before {
      position: absolute;
      left: 0;
      top: 0;
      font-family: FontAwesome;
      content: '\f058';
      font-size: 1.5rem;
      color: #edb867; }
      @media (min-width: 770px) {
        .rental-features-2 li:before {
          font-size: 2.125rem; } }
    @media (min-width: 770px) {
      .rental-features-2 li {
        font-size: 1.125rem;
        padding-left: 2.75rem; } }
  .location .rental-features-2 {
    margin-top: 2rem;
    margin-bottom: 0; }
    .location .rental-features-2 li {
      color: #303030; }
