@charset "UTF-8";
@import "../../../../../lib/craftcms-sass/mixins";

#graphic {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  @include margin(-48px, 0, 0, -24px);
  background-repeat: no-repeat;
  background-position: 50% 50%;

  &.error {
    background-image: url(images/error.png);
  }

  &.success {
    background-image: url(images/success.png);
  }
}

#status {
  position: absolute;
  top: 50%;
  margin-top: 20px;
  width: 100%;
  text-align: center;
  font-size: 16px;
  line-height: 20px;
  color: $grey500;

  #error {
    margin: 24px auto;
    border-radius: 3px;
    border: 1px solid $hairlineColor;
    padding: 24px;
    width: 600px;
    max-width: calc(100% - 96px);
    max-height: 100px;
    overflow: auto;
    text-align: left;
  }
}

#options {
  margin: 0;
  display: inline-flex;

  .btn {
    float: none !important;
  }
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (-moz-min-device-pixel-ratio: 1.5),
only screen and (-o-min-device-pixel-ratio: 3/2),
only screen and (min-device-pixel-ratio: 1.5),
only screen and (min-resolution: 1.5dppx) {
  #graphic {
    &.error {
      background-image: url(images/error_2x.png);
      background-size: 48px;
    }
    &.success {
      background-image: url(images/success_2x.png);
      background-size: 48px;
    }
  }
}
