#cvform .cvform-required-field {
  --cvform-field-bg: #fff2bf;
  background-color: var(--cvform-field-bg) !important;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

#cvform .cvform-required-field.is-filled {
  --cvform-field-bg: #f2f3f6;
  background-color: var(--cvform-field-bg) !important;
}

#cvform .cvform-required-field.error {
  --cvform-field-bg: #ffe0e3;
  background-color: var(--cvform-field-bg) !important;
}

#cvform .cvform-required-field:-webkit-autofill,
#cvform .cvform-required-field:-webkit-autofill:hover,
#cvform .cvform-required-field:-webkit-autofill:focus,
#cvform .cvform-required-field:-webkit-autofill:active {
  -webkit-text-fill-color: inherit !important;
  transition: background-color 9999s ease 0s;
  background-color: var(--cvform-field-bg) !important;
}

#cvform select.cvform-required-field {
  background-color: var(--cvform-field-bg) !important;
}

#cvform select.cvform-required-field.is-filled {
  background-color: var(--cvform-field-bg) !important;
}

#cvform [id^="err_"].has-error {
  position: relative;
  display: inline-flex !important;
  align-items: center;
  flex-wrap: wrap;
  padding: 6px 10px;
  border-radius: 4px;
  background-color: #ED0000;
  color: #fff!important;
  font-weight: bold;
  font-size: 12px;
  line-height: 1.4;
  max-width: 100%;
  text-align: left;
  word-break: break-word;
}

#cvform [id^="err_"].has-error::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 14px;
  border-width: 0 6px 6px 6px;
  border-style: solid;
  border-color: transparent transparent #ED0000 transparent;
}

#cvform [id^="err_"].has-error .cvform-err-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  margin-left: 6px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
}

#cvform .cvform-bubble {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 12px;
  line-height: 1.4;
  max-width: 100%;
  text-align: left;
  word-break: break-word;
}

#cvform .cvform-bubble--hidden {
  display: none !important;
}

#cvform .cvform-bubble--guide {
  background-color: #A2DA62;
  color: #fff;
  font-weight: bold;
}

#cvform .cvform-bubble--guide::before {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 14px;
  border-width: 6px 6px 0 6px;
  border-style: solid;
  border-color: #A2DA62 transparent transparent transparent;
}
