#xmas-action {
  --white: #fff;
  --dark-blue: #033c58;
  --light-blue: #479ad5;
  --red: #cd1719;
  --gray: #5c5c5c;
}
#xmas-action .btn_row {
  text-align: center;
}
#xmas-action .btn_row button[type=submit] {
  border: 1px solid var(--red);
  outline: none;
  background: var(--red);
  color: var(--white);
  min-height: 50px;
  padding: 10px 50px;
  font-size: 12px;
  display: inline-block;
  transition: 600ms border ease-in-out;
}
@media (hover: hover) {
  #xmas-action .btn_row button[type=submit]:hover {
    border: 1px solid var(--white);
  }
}
#xmas-action .btn_row button[type=submit][disabled] {
  cursor: not-allowed;
  background-color: var(--gray);
}
#xmas-action .question {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 75px;
  position: relative;
}
#xmas-action .question h2 {
  font-size: 100%;
  font-family: Open Sans, Arial;
  font-weight: 400;
  color: var(--white);
  line-height: 24px;
  margin-bottom: 30px;
  margin-top: 0;
  margin-left: 60px;
}
#xmas-action .question .extra {
  font-weight: 900;
  font-size: 18px;
  color: var(--light-blue);
  text-transform: uppercase;
}
#xmas-action .question_header {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 10px;
  align-items: center;
  margin-bottom: 30px;
}
#xmas-action .question_header span:first-child {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  width: 50px;
  height: 50px;
  border: 5px solid rgba(255, 255, 255, 0.3);
  font-weight: 600;
}
#xmas-action .question_header span:last-child {
  background-color: rgba(255, 255, 255, 0.3);
  font-size: 11px;
  padding: 0 5px;
  text-transform: uppercase;
}
#xmas-action .answers {
  position: relative;
  display: grid;
  margin: 10px 0 75px;
  grid-template-columns: 1fr 165px 35px 165px 1fr;
  width: calc(100% - 60px);
  align-items: flex-start;
  margin-left: 60px;
}
#xmas-action .answers::before {
  content: "";
  background-image: linear-gradient(to right, var(--white) 33%, rgba(255, 255, 255, 0) 0%);
  background-position: bottom;
  background-size: 4px 1px;
  background-repeat: repeat-x;
  height: 1px;
  width: 365px;
  position: absolute;
  top: 12.5px;
  z-index: -1;
  left: 50%;
  transform: translateX(-50%);
}
#xmas-action .answers label {
  display: grid;
  position: relative;
  cursor: pointer;
  height: 50px;
  grid-template-rows: 25px 1fr;
  column-gap: 10px;
}
#xmas-action .answers label input {
  visibility: hidden;
  height: 0;
  width: 0;
  position: absolute;
}
#xmas-action .answers label input:checked + span.icon {
  background-color: var(--light-blue);
}
@media (hover: hover) {
  #xmas-action .answers label:hover span.icon {
    background-color: var(--light-blue);
  }
}
#xmas-action .answers label span.icon {
  display: inline-block;
  border-radius: 100%;
  width: 25px;
  height: 25px;
  background-color: var(--white);
  border: 3px solid var(--white);
  justify-self: center;
  transition: 600ms background-color ease-in-out;
}
#xmas-action .answers label span.label {
  grid-column: 1;
  grid-row: 2;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
#xmas-action .answers label:first-child {
  display: grid;
  grid-template-columns: 1fr 25px;
  align-items: flex-start;
}
#xmas-action .answers label:first-child span.icon {
  grid-column: 2;
  grid-row: 1;
}
#xmas-action .answers label:first-child div.extra {
  grid-column: 1;
  grid-row: 1;
  max-width: calc(100% - 35px);
}
#xmas-action .answers label:nth-child(3) span.label {
  position: absolute;
  white-space: nowrap;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
}
#xmas-action .answers label:last-child {
  display: grid;
  grid-template-columns: 25px 1fr;
  align-items: flex-start;
}
#xmas-action .answers label:last-child span.icon {
  grid-column: 1;
  grid-row: 1;
  justify-self: end;
}
#xmas-action .answers label:last-child span.label {
  grid-column: 2;
}
#xmas-action .answers label:last-child div.extra {
  grid-column: 2;
  max-width: 100%;
  grid-row: 1;
}
#xmas-action .answers label div.extra {
  position: absolute;
  width: 100%;
  bottom: 25px;
  line-height: 1.1;
  text-align: center;
}
#xmas-action div#answer {
  text-align: center;
  margin: 40px 0;
  color: var(--white);
  font-size: 20px;
}
#xmas-action div#answer h2 {
  color: var(--red);
  font-size: 30px;
  font-weight: 900;
}
#xmas-action p#info {
  font-size: 11px;
  color: var(--white);
  line-height: 1.4;
  text-align: center;
  position: relative;
  margin: 10px auto;
  display: none;
}
#xmas-action #xmas-questions .formError {
  position: relative !important;
  top: initial !important;
  left: 0 !important;
  margin: -20px 0 30px 60px !important;
  font-size: 11px !important;
  width: 100%;
  bottom: initial !important;
  color: var(--red) !important;
  text-transform: uppercase;
  font-weight: 500 !important;
  opacity: 1 !important;
}
#xmas-action .center-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 40px 0;
}
#xmas-action .loading {
  width: 4rem;
  height: 4rem;
  background-color: transparent;
  background-image: url(../images/snowflake.png);
  background-size: cover;
  align-self: center;
  justify-content: center;
  margin: 0.5rem 0;
  animation: loaderAnim 2.1s linear infinite alternate forwards;
  display: none;
}
#xmas-action .loading.active {
  display: flex;
}
@keyframes loaderAnim {
  to {
    opacity: 1;
    transform: scale3d(0.5, 0.5, 1);
  }
}
@media only screen and (max-width: 880px) {
  #xmas-action .question {
    margin-bottom: 40px;
  }
  #xmas-action .question h2 {
    margin-bottom: 0;
  }
  #xmas-action #xmas-questions .formError {
    margin: 0 0 10px 60px !important;
  }
  #xmas-action .answers {
    margin: 10px 0 40px;
    grid-template-columns: 1fr;
    width: 100%;
    align-items: flex-start;
    margin-left: 60px;
    grid-template-rows: auto;
    max-width: calc(100% - 60px);
  }
  #xmas-action .answers::before {
    content: "";
    background-image: linear-gradient(to bottom, var(--white) 33%, rgba(255, 255, 255, 0) 0%);
    background-position: left;
    background-size: 1px 4px;
    background-repeat: repeat-y;
    height: 200px;
    width: 1px;
    position: absolute;
    top: 12.5px;
    z-index: -1;
    left: 25px;
    transform: translateX(-50%);
  }
  #xmas-action .answers label:last-child {
    grid-template-columns: 50px 1fr;
    align-items: center;
  }
  #xmas-action .answers label:last-child span.icon {
    justify-self: center;
  }
  #xmas-action .answers label:first-child {
    grid-template-columns: 50px 1fr;
    align-items: center;
  }
  #xmas-action .answers label:first-child span.icon {
    grid-column: 1;
  }
  #xmas-action .answers label:first-child div.extra {
    grid-column: 2;
    text-align: left;
  }
  #xmas-action .answers label:nth-child(3) span.label {
    position: relative;
    white-space: nowrap;
    bottom: initial;
    left: initial;
    transform: initial;
    grid-column: 2;
    text-align: left;
    justify-content: flex-start;
    align-items: center;
    grid-row: 1;
  }
  #xmas-action .answers label {
    min-height: 50px;
    grid-template-rows: 1fr;
    grid-template-columns: 50px 1fr;
    column-gap: 10px;
    align-items: center;
  }
  #xmas-action .answers label span.label {
    grid-column: 2;
    grid-row: 1;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
  }
  #xmas-action .answers label div.extra {
    text-align: left;
  }
}
@media only screen and (max-width: 480px) {
  #xmas-action .question h2 {
    margin-left: 0;
  }
  #xmas-action .answers {
    margin-left: 0;
    max-width: 100%;
  }
  #xmas-action .answers label div.extra {
    max-width: 100% !important;
  }
  #xmas-action .btn_row button[type=submit] {
    width: 100%;
    padding: 10px 20px;
  }
  #xmas-action #xmas-questions .formError {
    margin: 0 0 20px 0px !important;
  }
}

/*# sourceMappingURL=crewxmas-public.css.map */
