:root {
  --hel-blue: #08569a;
  --hel-bright-blue: #2586da;
  --hel-placeholder: #b3b3b3;
  --hel-border: #dddddd;
  --hel-brand-grey: #3a3c3c;
  --hel-danger-red: #ed0024;
  --hel-alert-yellow: #ffe100;
  --hel-label: #757575;
  --hel-blue-hover: #0072d4;
  --hel-gray-hover: #757575;
  --hel-danger-button-red: #c91010;
  --hel-danger-button-hover-red: #ed0024;
}

.btn-primary {
  background-image: unset;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
  padding: 10px 16px 10px 16px;
  margin: 0 0 0 0;
  background-color: var(--hel-blue);
  border: solid 1px var(--hel-blue);
  color: #ffffff;
  outline: 0;
  border: 0;
  outline: 0;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
}

.btn-primary:disabled {
  border: 1px solid var(--hel-border) !important;
  color: var(--hel-placeholder) !important;
}

.btn-default {
  background-image: unset;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
  padding: 10px 16px 10px 16px;
  margin: 0 0 0 0;
  background-color: var(--hel-placeholder);
  border: solid 1px var(--hel-blue);
  color: #ffffff;
  outline: 0;
  border: 0;
  outline: 0;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
}

.btn-default:hover {
  background-color: #cccccc;
  color: #ffffff;
}

.btn-danger {
  background-image: unset;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
  padding: 10px 16px 10px 16px;
  margin: 0 0 0 0;
  background-color: var(--hel-danger-red);
  border: solid 1px var(--hel-danger-red);
  color: #ffffff;
  outline: 0;
  border: 0;
  outline: 0;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
}

.btn-danger:hover {
  background-color: #d60020;
  color: #ffffff;
}

a {
  color: var(--hel-blue);
}

input {
  outline: none;
  border: solid 1px var(--hel-border);
}

input:focus-visible {
  outline: none;
  border: var(--hel-bright-blue) solid 1px;
}

input::placeholder {
  color: var(--hel-placeholder);
}

input:focus::placeholder {
  color: var(--hel-brand-grey);
}

.alert {
  border-radius: 6px;
}

.alert-warning {
  background-color: #fffce5;
  border-color: var(--hel-alert-yellow);
}

.alert-warning .pficon-warning-triangle-o:before {
  color: var(--hel-alert-yellow);
}

.alert-danger {
  background-color: unset;
  color: var(--hel-danger-red);
}

.alert-danger .pficon-warning-triangle-o:before {
  color: var(--hel-danger-red);
}

.alert .pficon {
  top: 50%;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.delete-account-text {
  margin-bottom: 30px;
}

/* Accordion styles */
.tab > input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

.tab-label {
  margin-bottom: unset;
}

.tabs {
  overflow: hidden;
}

.tab {
  width: 100%;
  overflow: hidden;
  line-height: 1.15;
  font-size: 14px;
}

.tab .tab-label {
  display: flex;
  padding: 1em;
  cursor: pointer;
  color: var(--hel-bright-blue);
}

.tab .tab-label::before {
  content: "\276F";
  width: 1em;
  height: 1em;
  text-align: center;
  transition: all 0.35s;
  margin-right: 1em;
}

.tab-content {
  max-height: 0;
  padding: 0 1em;
  transition: all 0.35s;
  font-size: 12px;
}

.tab-close {
  display: flex;
  justify-content: flex-end;
  padding: 1em;
  font-size: 0.75em;
  cursor: pointer;
}

input:checked + .tab-label::before {
  transform: rotate(90deg);
}

input:checked ~ .tab-content {
  max-height: 100vh;
  padding: 1em;
}

.tab-button-container {
  margin-top: 1em;
}
