.isCheckin_isCheckout_container {
  width: 95%;
  max-height: 95%;
}

.isCheckin_isCheckout_tab_wrapper {
  height: 8rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.left_tab_active,
.right_tab_active {
  margin-right: 1rem;
  width: 10%;
  height: 70%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background-color: #f1f1f1;
  color: #2b4b1b;
  border-bottom: 0.3rem solid #2b4b1b;

  transition: background-color 300ms ease;
  transition: color 300ms ease;
  /* transition: border-bottom 300ms ease; */
}

.left_tab,
.right_tab {
  margin-right: 1rem;
  width: 10%;
  height: 70%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 300ms ease;
  transition: color 300ms ease;
  /* transition: border-bottom 300ms ease; */
}

.left_tab:hover,
.right_tab:hover {
  background-color: #f1f1f1;
  color: #2b4b1b;
}

.left_tab p,
.right_tab p,
.left_tab_active p,
.right_tab_active p {
  font-weight: 700;
  font-size: 1.125rem;
  text-transform: uppercase;
}

.isCheckin_isCheckout_content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.isCheckin_isCheckout_content h3 {
  font-weight: 700;
  font-size: 2rem;
  line-height: 3rem;
}

.isCheckin_isCheckout_content > section {
  width: 100%;
  display: flex;
  justify-content: center;
}

.isCheckin_isCheckout_wrapper {
  width: 60%;
  padding: 3rem;
  margin-top: 3rem;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
    rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.isCheckin_isCheckout_wrapper label {
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 2rem;
}

.isCheckin_isCheckout_wrapper input[type='text'] {
  margin: 1rem 0 1.5rem 0;
  padding: 1.5rem;
  font-weight: 600;
  font-size: 1.5rem;
  color: #7a7a7a;
  outline: none;
  border: 0.5px solid #7a7a7a;
  border-radius: 0.5rem;
}
.isCheckin_isCheckout_wrapper button[type='button'] {
  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;
}
.isCheckin_isCheckout_wrapper button[type='button']:hover {
  cursor: pointer;
  background-color: #4d8531;
}

/* Mobile */
@media (max-width: 700px) {
  .isCheckin_isCheckout_tab_wrapper {
    height: 7rem;
  }

  .left_tab_active,
  .right_tab_active {
    margin-right: 0.5rem;
    width: 25%;
    border-bottom: 0.2rem solid #2b4b1b;
  }

  .left_tab,
  .right_tab {
    margin-right: 0.5rem;
    width: 25%;
  }

  .left_tab p,
  .right_tab p,
  .left_tab_active p,
  .right_tab_active p {
    font-weight: 700;
    font-size: 1rem;
  }

  .isCheckin_isCheckout_content h3 {
    font-size: 1.8rem;
    line-height: 2.5rem;
  }

  .isCheckin_isCheckout_wrapper {
    width: 90%;
    padding: 2rem;
    margin-top: 2rem;
  }

  .isCheckin_isCheckout_wrapper label {
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 1.8rem;
  }

  .isCheckin_isCheckout_wrapper input[type='text'] {
    margin: 0.875rem 0 1rem 0;
    padding: 1.4rem;
    font-weight: 600;
  }
  .isCheckin_isCheckout_wrapper button[type='button'] {
    padding: 1.4rem;
    font-weight: 600;
    font-size: 1.25rem;
  }
}

/* Tablet and Smaller Desktop */
@media (min-width: 701px) and (max-width: 1120px) {
}
