.cbWidget {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 100; }

.cbDialog {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #f5f5f5;
  text-align: center;
  font-family: Arial;
  width: 90%;
  max-width: 740px;
  padding-bottom: 2rem; }
  .cbDialog h2 {
    font-size: 2rem;
    background: #e3001b;
    background: linear-gradient(90deg, rgba(227, 0, 27, 1) 0%, rgba(173, 1, 27, 1) 100%);
    box-shadow: 0px 6px 18px -2px rgba(0, 0, 0, 0.56);
    color: #ffedf9;
    line-height: 2rem;
    padding: 1.5rem !important;
    margin: 0 0 2rem;
    font-weight: normal; }
  .cbDialog p {
    font-size: 1.4rem;
    padding: 1rem 3rem;
    margin-top: 0.4rem;
    color: #636363; }
    .cbDialog p.note {
      font-size: 0.9rem;
      margin-top: 3rem; }
  .cbDialog .cbInput {
    display: flex;
    border: 1px solid #d0d0d0;
    background-color: #fff;
    border-radius: 0.4rem;
    max-width: 400px;
    margin: 2rem auto 0 auto;
    width: 90%; }
  .cbDialog input {
    color: #636363;
    background: none !important;
    font-size: 1.4rem !important;
    border: none !important;
    height: 3rem;
    text-align: center;
    flex-grow: 1; }
  .cbDialog button {
    color: white;
    background-color: #e10819;
    font-size: 1.2rem;
    border: none;
    border-radius: 0.4rem;
    padding: 0 1.5rem;
    min-height: 3rem;
    margin-top: 2rem;
    min-width: 130px;
    cursor: pointer; }
  .cbDialog .cbSelect {
    width: 90%;
    max-width: 500px;
    text-align: left;
    margin: 0 auto; }
    .cbDialog .cbSelect label {
      display: block;
      position: relative;
      padding-left: 35px;
      margin-bottom: 12px;
      cursor: pointer;
      font-size: 22px;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none; }
      .cbDialog .cbSelect label input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0; }
      .cbDialog .cbSelect label .checkmark {
        position: absolute;
        top: 0;
        left: 0;
        height: 25px;
        width: 25px;
        background-color: white;
        border: 1px solid #d0d0d0;
        border-radius: 2px; }
        .cbDialog .cbSelect label .checkmark:after {
          content: "";
          position: absolute;
          display: none; }
      .cbDialog .cbSelect label:hover input ~ .checkmark {
        background-color: #eee; }
      .cbDialog .cbSelect label input:checked ~ .checkmark:after {
        display: block; }
      .cbDialog .cbSelect label .checkmark:after {
        left: 9px;
        top: 5px;
        width: 5px;
        height: 10px;
        border: solid #e10819;
        border-width: 0 3px 3px 0;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg); }
  .cbDialog .cbPhoneNumber {
    max-width: 500px; }
    .cbDialog .cbPhoneNumber button {
      margin-top: 0;
      min-width: unset; }
  @media (max-width: 480px) {
  .cbDialog p {
    padding: 1rem; }
    .cbDialog p.note {
      margin-top: 1rem; }
  .cbDialog .cbPhoneNumber {
    flex-direction: column; }
    .cbDialog .cbPhoneNumber button {
      border-top-left-radius: unset;
      border-top-right-radius: unset; } }

.cbStatus {
  width: 90%;
  margin: 0 auto; }
  .cbStatus p {
    font-size: 1rem;
    padding: 0;
    margin: 1rem 0 0.5rem;
    text-align: right; }
  .cbStatus .cbBg {
    position: relative;
    height: 0.5rem;
    background-color: white;
    border-radius: 0.75rem; }
    .cbStatus .cbBg .cbBar {
      position: absolute;
      width: 0;
      height: 0.5rem;
      border-radius: 0.75rem;
      transition: width 0.5s;
      background: linear-gradient(90deg, rgba(227, 0, 27, 1) 0%, rgba(173, 1, 27, 1) 100%); }
