@-webkit-keyframes toOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@keyframes toOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

.form-cmp__error input[type="text"], .form-cmp__error input[type="password"], .form-cmp__error input[type="confirm_password"], .form-cmp__error textarea {
  position: relative;
  border-bottom: 1px solid #d8003f;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s; }

.form-cmp__action-hide {
  opacity: 0;
  -webkit-animation: 0.3s toOut linear;
  animation: 0.3s toOut linear; }

.aton-dropdown-close {
  position: absolute;
  right: 1px;
  top: 6px;
  width: 24px;
  height: 24px;
  z-index: 10; }
