.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.--two-column {
      display: flex;
      flex-direction: column; }
    @media (min-width: 770px) {
      .checkout__frame_body.--two-column {
        flex-direction: row;
        gap: 2rem; } }
    .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 .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: auto; }
      .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-address {
        display: flex;
        flex-direction: column;
        padding: 1rem 0 0 0; }
        .checkout__frame_body .selected-col-address-hours {
          display: flex;
          flex-direction: row;
          gap: 2rem; }
    .checkout__frame_body .review-lease {
      margin: .5rem 2rem;
      text-align: center; }
      .checkout__frame_body .review-lease a {
        border-radius: 10px;
        display: inline-block;
        color: white;
        background-color: #dc3545;
        font-weight: bold;
        padding: .5rem 1rem;
        margin: 1rem 0;
        text-decoration: none; }
    .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__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; } }
