html, body {
  direction: rtl;
  text-align: right;
}

header img.logo {
  max-height: 50px;
}

.leftText {
  text-align: left;
}

.hidden {
  visibility: hidden !important;
}

.gone {
  display: none !important;
}

.footNote {
  font-size: small;
  font-style: italic;
  color: red;
}

.voucherDetails {
  padding: 10px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  position: relative;
}
.voucherDetails .deleteButton {
  background: transparent;
  border: 1px solid #f00;
  border-radius: 2em;
  color: #f00;
  display: inline-block;
  font-size: 12px;
  height: 20px;
  margin: 0 0 8px;
  padding: 0;
  text-align: center;
  width: 20px;
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 0;
}

.contestsTable tbody tr:not(.noData) {
  cursor: pointer;
}

.online-indicator {
  position: relative;
}
.online-indicator .circle {
  width: 15px;
  height: 15px;
  background-color: #62bd19;
  border-radius: 50%;
  position: absolute;
  top: calc(50% + 5px);
  right: calc(10% + 5px);
}
.online-indicator .ringring {
  border: 3px solid #62bd19;
  -webkit-border-radius: 30px;
  border-radius: 30px;
  height: 25px;
  width: 25px;
  position: absolute;
  right: 10%;
  top: 50%;
  -webkit-animation: pulsate 1s ease-out;
  animation: pulsate 1s ease-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  opacity: 0;
}
@keyframes pulsate {
  0% {
    -webkit-transform: scale(0.1, 0.1);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.2, 1.2);
    opacity: 0;
  }
}

.modifyContest {
  border: 1px solid black;
  border-radius: 5px;
  text-align: center;
}

.contest {
  text-align: center;
}
.contest #contestMain #loading {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  background-color: black;
  z-index: 1000;
  bottom: 0;
}
.contest #contestMain #loading .startCountdown {
  position: absolute;
  width: 100%;
}
.contest #contestMain #loading .contestPhoto {
  height: 100%;
}
.contest #contestMain #loading .contestPhoto img {
  max-width: 100%;
  max-height: 100%;
}
.contest #contestMain .questionTime {
  color: red;
}

.photoGrid {
  text-align: center;
}
.photoGrid .photoElement {
  position: relative;
  border: 1px solid black;
  border-radius: 5px;
  margin: 1%;
}
.photoGrid .photoElement.active {
  border: 1px solid blue;
}
.photoGrid .photoElement .deletePhoto {
  color: red;
  position: absolute;
  left: 0;
  top: 0;
}

.contestImageAdmin {
  max-width: 20em;
  max-height: 10em;
}

.participationsList .form-check-input {
  display: block;
}

/*# sourceMappingURL=main.css.map */
