@-webkit-keyframes blink {
  0% {
    opacity: 0.25;
    transform: scale(1);
  }
  100% {
    opacity: 1;
    transform: scale(1.005);
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 0.25;
    transform: scale(1);
  }
  100% {
    opacity: 1;
    transform: scale(1.005);
  }
}
@-ms-keyframes blink {
  0% {
    opacity: 0.25;
    transform: scale(1);
  }
  100% {
    opacity: 1;
    transform: scale(1.005);
  }
}
@-o-keyframes blink {
  0% {
    opacity: 0.25;
    transform: scale(1);
  }
  100% {
    opacity: 1;
    transform: scale(1.005);
  }
}
@keyframes blink {
  0% {
    opacity: 0.25;
    transform: scale(1);
  }
  100% {
    opacity: 1;
    transform: scale(1.005);
  }
}
@-webkit-keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@-moz-keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@-ms-keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@-o-keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@-webkit-keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@-moz-keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@-ms-keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@-o-keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

.blink {
  -webkit-animation-name: blink;
  animation-name: blink;
}

.rotation {
  -webkit-animation-name: rotation;
  animation-name: rotation;
  animation-iteration-count: infinite;
}

.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  *zoom: 1;
}

[hidden] {
  display: none;
}
[hidden].current, [hidden].active {
  display: inherit;
}

.processing {
  position: relative;
}
.processing:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  z-index: 1;
}
.processing:after {
  content: "\f463";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 50px;
  font-size: 50px !important;
  margin: auto;
  z-index: 2;
  font: normal 20px/1 dashicons;
  text-align: center;
  -webkit-animation: rotation 2s infinite linear;
  -moz-animation: rotation 2s infinite linear;
  -ms-animation: rotation 2s infinite linear;
  -o-animation: rotation 2s infinite linear;
  animation: rotation 2s infinite linear;
}
.processing.success:after {
  content: "\f147";
  color: forestgreen;
  -webkit-animation: blink 0.25s ease-in;
  -moz-animation: blink 0.25s ease-in;
  -ms-animation: blink 0.25s ease-in;
  -o-animation: blink 0.25s ease-in;
  animation: blink 0.25s ease-in;
}

.button-danger {
  color: #a00 !important;
  background: #fff !important;
}
.button-danger:hover, .button-danger:focus {
  border-color: #a00 !important;
}
.button .dashicons {
  line-height: 170%;
  font-size: 125%;
  width: auto;
  height: auto;
  margin-right: 4px;
}
.button.widefat {
  text-align: center;
}

#totalcontest-submission-editor {
  box-sizing: border-box;
  margin: 2rem auto;
}
#totalcontest-submission-editor * {
  box-sizing: inherit;
}
#totalcontest-submission-editor [tab="submission>preview"] video, #totalcontest-submission-editor [tab="submission>preview"] audio, #totalcontest-submission-editor [tab="submission>preview"] img {
  max-width: 100%;
}