@keyframes reanimate-underline-1px {
  0% {
    background-position: 100% 100%;
    background-size: 100% 1px;
  }
  49% {
    background-position: 100% 100%;
    background-size: 0% 1px;
  }
  50% {
    background-position: 0% 100%;
    background-size: 0% 1px;
  }
  100% {
    background-position: 0% 100%;
    background-size: 100% 1px;
  }
}
@keyframes reanimate-underline-2px {
  0% {
    background-position: 100% 100%;
    background-size: 100% 2px;
  }
  49% {
    background-position: 100% 100%;
    background-size: 0% 2px;
  }
  50% {
    background-position: 0% 100%;
    background-size: 0% 2px;
  }
  100% {
    background-position: 0% 100%;
    background-size: 100% 2px;
  }
}
@keyframes reanimate-underline-3px {
  0% {
    background-position: 100% 100%;
    background-size: 100% 3px;
  }
  49% {
    background-position: 100% 100%;
    background-size: 0% 3px;
  }
  50% {
    background-position: 0% 100%;
    background-size: 0% 3px;
  }
  100% {
    background-position: 0% 100%;
    background-size: 100% 3px;
  }
}
@keyframes reanimate-underline-4px {
  0% {
    background-position: 100% 100%;
    background-size: 100% 4px;
  }
  49% {
    background-position: 100% 100%;
    background-size: 0% 4px;
  }
  50% {
    background-position: 0% 100%;
    background-size: 0% 4px;
  }
  100% {
    background-position: 0% 100%;
    background-size: 100% 4px;
  }
}
@keyframes reanimate-underline-5px {
  0% {
    background-position: 100% 100%;
    background-size: 100% 5px;
  }
  49% {
    background-position: 100% 100%;
    background-size: 0% 5px;
  }
  50% {
    background-position: 0% 100%;
    background-size: 0% 5px;
  }
  100% {
    background-position: 0% 100%;
    background-size: 100% 5px;
  }
}
/** Usage

    ```scss
      .lds { 
        @include ldsRingAnimation($foreground-color: #fff, $width: 2px, $size: 25px);
      }
    ```

    ```html
      <div class="lds">
        <div></div>
        <div></div>
        <div></div>
      </div>
    ```
 */
.cope-core-hcp-account-buttons__modal {
  background: #ffffff;
}
.cope-core-hcp-account-buttons__modal--error {
  color: #e6553f;
}
.cope-core-hcp-account-buttons__modal--form-field-error {
  display: none;
  color: #e6553f;
}
.cope-core-hcp-account-buttons__modal--form-field input {
  background: #eff0f2;
  border: none;
  padding: 12px;
  font-size: 18px;
  width: 100%;
}
.cope-core-hcp-account-buttons__modal--form-field label.has-error input {
  border: #e6553f solid 2px;
}
label.has-error + .cope-core-hcp-account-buttons__modal--form-field-error {
  display: block;
}
.cope-core-hcp-account-buttons__modal .cope-core-hcp-account-buttons__modal--close {
  border: none;
  outline: none;
  position: absolute;
  cursor: pointer;
  right: 0;
  bottom: calc(100% + 28px);
  width: 30px;
  height: 30px;
  background-color: transparent;
}
@media screen and (min-width: 1000px) {
  .cope-core-hcp-account-buttons__modal .cope-core-hcp-account-buttons__modal--close {
    width: 44px;
    height: 44px;
    left: calc(100% + 8px);
    right: auto;
    bottom: calc(100% + 8px);
  }
}
.cope-core-hcp-account-buttons__modal .cope-core-hcp-account-buttons__modal--close svg {
  width: 100%;
  height: 100%;
}
.cope-core-modal-visible button.cope-core-hcp-account-buttons__signin-modal--submit:disabled {
  opacity: .5;
  cursor: not-allowed;
}
.spinloader{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-top-color: #333;
  animation: spin 1s linear infinite;
  position: relative;
}
@media only screen and (max-width: 600px)  {
  .spinloader{
      width:53px;
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}