.executive-element-form__error{
    outline:1px solid red !important;
}
.executive-element-form__loader{
  border: 2px solid #f3f3f3;
  border-top: 2px solid #3D8BFF;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  animation: executive-element-form__loader-animation 1s linear infinite;
}
@keyframes executive-element-form__loader-animation{
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}