.checkin_checkout_modal_inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #ffffff;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  border-radius: 1rem;
  width: 70%;
  padding: 1.5rem 2rem;
}

.checkin_checkout_modal_close {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.checkin_checkout_modal_close button {
  border: none !important;
  outline: none !important;
  cursor: pointer !important;
  background-color: transparent !important;
}

.checkin_checkout_modal_close button i {
  color: #2b4b1b;
  font-size: 2rem;
  font-weight: 600;
}

.check_in_details_top_wrapper {
  display: flex;
  justify-content: space-between;
}

.check_in_qrcodeImg_wrapper {
  width: 40%;
  display: flex;
  align-items: center;
}

.check_in_name_wrapper {
  width: 60%;
}

.check_in_name_wrapper h4 {
  font-size: 2rem;
  color: #101010;
}

.check_in_name_wrapper h2 {
  font-size: 4rem;
  color: #63686e;
}

.check_in_details_bottom_wrapper {
  margin: 2rem 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.check_in_details_bottom_list {
  margin: 0.5rem 0;
  display: flex;
  align-items: center;
}

.check_in_details_listItem {
  font-size: 1.25rem !important;
  font-weight: 500;
  color: #101010;
}

.check_in_details_listValue {
  margin-left: 0.5rem;
  font-size: 1.25rem !important;
  font-weight: 500;
  color: #63686e;
}

.handleGuestCheckinBtnWrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.handleGuestCheckinBtn {
  text-transform: capitalize;
  width: 40%;
  padding: 1.5rem;
  font-weight: 600;
  font-size: 1.5rem;
  color: #f2f2f2;
  background-color: #2b4b1b;
  outline: none;
  border: none;
  border-radius: 0.5rem;
  transition: background-color 200ms ease;
}

.handleGuestCheckinBtn:hover {
  cursor: pointer;
  background-color: #4d8531;
  border: none;
  outline: none;
}

/* Mobile */
@media (max-width: 700px) {
  .checkin_checkout_modal_inner {
    width: 90%;
  }

  .checkin_checkout_modal_close {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  .checkin_checkout_modal_close button i {
    font-weight: 500;
  }

  .check_in_details_top_wrapper {
    flex-direction: column;
  }

  .check_in_qrcodeImg_wrapper {
    width: 100%;
    justify-content: center;
  }

  .check_in_name_wrapper {
    width: 100%;
  }

  .check_in_name_wrapper h4,
  .check_in_name_wrapper h2,
  .check_in_name_wrapper p {
    text-align: center;
  }

  .check_in_details_bottom_wrapper {
    margin: 1rem 0;
    grid-template-columns: repeat(1, 1fr);
  }

  .handleGuestCheckinBtn {
    width: 80%;
  }
}
