@charset "UTF-8";
/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
body .caraworld-error {
  color: red;
  font-weight: bold;
  font-size: 1.5rem;
  border: 1px solid red;
  padding: 1rem;
}
body .caraworld-integration-form .hidden {
  display: none;
}
body .caraworld-integration-form hr {
  margin: 0.75rem 0 1rem 0;
  background-color: #a6a6a6;
  height: 0.1rem;
  max-width: 50%;
}
body .caraworld-integration-form label.main {
  font-size: 1.25rem;
}
body .caraworld-integration-form label.main small {
  font-size: 75%;
}
body .caraworld-integration-form .caraworld-footer {
  display: flex;
  justify-content: flex-start;
  max-width: 95%;
  gap: 1rem;
  margin-top: 1rem;
  align-items: center;
}
body .caraworld-integration-form .caraworld-footer .status {
  border: 1px solid #4CAF50;
  padding: 0.5rem 1rem;
}
body .caraworld-integration-form .caraworld-footer .status.error {
  border-color: red;
}
body .caraworld-integration-form .caraworld-footer .status .error {
  color: red;
}
body .caraworld-integration-form .caraworld-footer .status .success {
  color: green;
}
body .caraworld-integration-form .input-beside {
  display: flex;
  justify-content: space-between;
  max-width: 75%;
  gap: 1rem;
}
body .caraworld-integration-form .input-full {
  max-width: 75%;
}
body .caraworld-integration-form div[class*=input-]:nth-of-type(n+2) {
  margin-top: 1rem;
}
body .caraworld-integration-form .form-group {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  flex: 1;
  gap: 0.5rem;
}
body .caraworld-integration-form input.checkbox {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 1.25rem;
  height: 1.25rem;
  border: 0.125rem solid #5b5b5b;
  border-radius: 0.2rem;
  display: inline-block;
  position: relative;
  cursor: pointer;
  transform: translate(0, 0.2rem);
  margin-right: 0.5rem;
}
body .caraworld-integration-form input.checkbox:checked {
  background-color: #4CAF50;
  border: 2px solid #4CAF50;
}
body .caraworld-integration-form input.checkbox:checked::before {
  content: "✔";
  color: white;
  font-size: 1rem;
  position: absolute;
  left: 0.1rem;
  top: -0.25rem;
}