/**
 * @file
 * Embed code paragraph.
 */
/* There is a padding-left on .container that forces to move this to the left and prevents cover all the area. That is the reason for this adjustment */
/* There is a padding-left on .container that forces to move this to the left and prevents cover all the area. That is the reason for this adjustment */
@layer drupal {
  #questionButton .btn--action {
    display: inline-block;
    padding: 12px 24px;
    border: 0;
    border-radius: 30px;
    background-color: #0046b4;
    color: #fff;
    font-size: 14px;
    font-family: 700;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
  }
  @media (min-width: 768px) {
    #questionButton .btn--action + .btn {
      margin-top: 10px;
    }
  }
  #questionButton .btn--action:focus {
    outline: none;
  }
  #questionButton .btn--action:hover {
    color: #fff;
  }
  #questionButton .btn--action:disabled, #questionButton .disabled.btn--action, #questionButton [disabled].btn--action {
    opacity: 0.5;
    pointer-events: none;
  }
  #questionButton .btn--action {
    padding: 12px 24px;
    font-size: 14px;
  }
  #questionButton .btn--action {
    background-color: #0046b4;
    color: #fff;
  }
  #questionButton .btn--action:hover {
    background-color: #336bc3;
  }
  #questionButton .btn--action:active, #questionButton .active.btn--action {
    background-color: #002a6c;
  }
  .btn-close {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
  }
  .btn-close:after, .btn-close:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 2px;
    height: 33px;
    background: #808080;
  }
  .btn-close:after {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .btn-close:before {
    transform: translate(-50%, -50%) rotate(135deg);
  }
}
#questionDefinition {
  text-align: center;
  font-size: 18px;
}
#questionDefinition strong {
  font-weight: 700;
}
#questionDefinition a {
  color: #0046b4;
  text-decoration: none;
}
#questionDefinition b {
  display: block;
  margin-top: 1em;
  font-weight: 700;
  font-size: 14px;
}

#questionButton {
  text-align: center;
}
#questionButton .btn--action {
  font-weight: 400;
}

#questionOptions {
  text-align: left;
  margin: 0 auto;
  width: 100%;
  max-width: 750px;
}
#questionOptions .form-item {
  display: flex;
  position: relative;
  margin: 15px 0;
}
#questionOptions p {
  margin-bottom: 1em;
  padding-left: 30px;
}
#questionOptions .error {
  color: #C63434;
  position: relative;
}
#questionOptions .error::after,
#questionOptions .error::before {
  content: "";
  display: block;
  width: 2px;
  height: 20px;
  background-color: #C63434;
  position: absolute;
  left: -20px;
  top: 1px;
}
#questionOptions .error::after {
  transform: rotate(45deg);
}
#questionOptions .error::before {
  transform: rotate(-45deg);
}
#questionOptions .correct {
  color: #59CB59;
  position: relative;
}
#questionOptions .correct::before {
  content: "";
  display: block;
  width: 7px;
  height: 14px;
  border: solid #59CB59;
  border-width: 0 2px 2px 0;
  position: absolute;
  left: -25px;
  top: 2px;
}
#questionOptions .correct::before {
  transform: rotate(45deg);
}

#questionTitle {
  font-size: 18px;
  font-weight: 700;
  margin: 2em 0 1em;
  text-align: center;
}

#questionOptions input[type=radio],
#questionOptions input[type=checkbox] {
  position: relative;
  opacity: 1;
  margin-right: 5px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}

/*# sourceMappingURL=embed-code-quiz.css.map */
