.alcWidget {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 200; }

.alcDialog {
  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; }
  .alcDialog 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; }
  .alcDialog h3 {
    font-size: 24px;
    text-align: center;
    margin: 10px 0 30px 0;
    color: #444645; }
  .alcDialog a img {
    border: 4px solid #5e5e5c;
    border-radius: 12px; }
    .alcDialog a.selected img {
      border: 4px solid #e3001b; }
  .alcDialog .row {
    display: flex;
    justify-content: space-evenly; }
  .alcDialog .alcInput {
    display: flex;
    border: 1px solid #d0d0d0;
    background-color: #fff;
    border-radius: 0.4rem;
    max-width: 400px;
    margin: 1rem auto 0 auto;
    width: 90%; }
  .alcDialog input {
    color: #636363;
    background: none !important;
    font-size: 1.4rem !important;
    border: none !important;
    height: 3rem;
    text-align: center;
    flex-grow: 1; }
  .alcDialog button {
    color: white;
    background-color: #e10819;
    font-size: 1.2rem;
    border: none;
    border-radius: 0.4rem;
    padding: 0.5rem 1.5rem;
    min-height: 3rem;
    margin-top: 2rem;
    min-width: 130px;
    cursor: pointer; }
  .alcDialog form {
    max-width: 90%;
    margin: 0 auto; }
    .alcDialog form .row .alcInput {
      width: 45%; }
      .alcDialog form .row .alcInput input {
        width: 100%; }
  .alcDialog section {
    display: none; }
    .alcDialog section#start {
      display: block; }
    .alcDialog section#summary {
      max-height: 62vh;
      overflow-y: auto;
      padding: 0 2rem; }
      .alcDialog section#summary h3 {
        margin: 0 0 1rem; }
      .alcDialog section#summary h4 {
        padding: 0; }
      .alcDialog section#summary p {
        margin: 1rem 0; }
  .alcDialog .testimony {
    display: none;
    text-align: left; }
    .alcDialog .testimony img {
      float: left;
      margin: 20px; }
    .alcDialog .testimony h3 {
      font-size: 16px;
      margin-top: 0; }
    .alcDialog .testimony p {
      font-weight: normal;
      font-style: italic;
      color: #555;
      font-size: 13px;
      line-height: 15px; }
    .alcDialog .testimony small {
      color: #888; }
  @media (max-width: 640px) {
  .alcDialog section {
    padding: 1rem; }
  .alcDialog h2 {
    font-size: 9vw;
    line-height: 9.5vw;
    margin-bottom: 1rem; }
  .alcDialog img {
    width: 22vw; } }
  @media (max-width: 480px) {
  .alcDialog section#summary {
    max-height: 56vh; }
  .alcDialog form {
    max-width: unset; }
    .alcDialog form .row {
      flex-direction: column; }
      .alcDialog form .row .alcInput {
        width: 100%; } }

.alcStatus {
  width: 90%;
  margin: 0 auto; }
  .alcStatus p {
    font-size: 1rem;
    padding: 0;
    margin: 1rem 0 0.5rem;
    text-align: right; }
  .alcStatus .alcBg {
    position: relative;
    height: 0.5rem;
    background-color: white;
    border-radius: 0.75rem; }
    .alcStatus .alcBg .alcBar {
      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%); }
