.simplert {
  box-sizing: border-box;
  font-size: 14px;
  line-height: 1.15;
}

.simplert *,
.simplert :after,
.simplert :before {
  box-sizing: inherit;
}

.simplert {
  position: fixed !important;
  z-index: 999;
  top: 0;
  left: 0;
  display: none;
  overflow: auto;
  width: 100%;
  height: 100%;
  text-align: center;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.4);
  color: black;
}

.simplert--shown {
  display: flex;
  align-items: center;
}

.simplert--shown .simplert__content {
  animation-name: zoomIn;
  animation-duration: 0.3s;
  animation-fill-mode: both;
}

.simplert__x {
  position: absolute;
  right: 15px;
  top: 15px;
  cursor: pointer;
  color: #b3aaaa;
  font-weight: 700;
  font-size: 11px;
}

.simplert__header {
  padding: 2em 0;
}

.simplert__title {
  font-size: 30px;
  display: block;
}

.simplert__content {
  position: relative;
  width: 90%;
  max-width: 400px;
  margin: 0 auto;
  padding: 0 20px;
  background-color: #fff;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

@media only screen and (min-width: 768px) {
  .simplert__content {
    width: 30%;
  }
}

.simplert__content--radius {
  border-radius: 0.3em;
}

.simplert__body {
  padding-bottom: 1em;
}

.simplert__icon {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 10px auto;
  border-radius: 50%;
}

.simplert__icon--info {
  border: 4px solid #c9dae1;
}

.simplert__icon--success {
  border: 4px solid #a5dc86;
}

.simplert__icon--warning {
  border: 4px solid #f8bb86;
}

.simplert__icon--error {
  border: 4px solid #f27474;
}

.simplert__icon img {
  width: 80px;
  height: 80px;
}

.simplert__line {
  position: absolute;
  z-index: 2;
  display: block;
  height: 5px;
  border-radius: 2px;
}

.simplert__line--info {
  top: 19px;
  width: 7px;
  height: 7px;
  margin-left: -3px;
  border-radius: 50%;
}

.simplert__line--info,
.simplert__line--info-2 {
  position: absolute;
  left: 50%;
  background-color: #c9dae1;
}

.simplert__line--info-2 {
  bottom: 15px;
  width: 5px;
  height: 29px;
  margin-left: -2px;
  border-radius: 2px;
}

.simplert__line--success {
  top: 44px;
  left: 6px;
  width: 25px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background-color: #a5dc86;
}

.simplert__line--success-2 {
  top: 38px;
  right: 6px;
  width: 47px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  background-color: #a5dc86;
}

.simplert__line--warning {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 5px;
  height: 35px;
  margin-left: -2px;
  border-radius: 2px;
  background-color: #f8bb86;
}

.simplert__line--warning-2 {
  position: absolute;
  bottom: 10px;
  left: 50%;
  width: 7px;
  height: 7px;
  margin-left: -3px;
  border-radius: 50%;
  background-color: #f8bb86;
}

.simplert__line--error {
  top: 35px;
  left: 13px;
  width: 47px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background-color: #f27474;
}

.simplert__line--error-2 {
  top: 35px;
  right: 13px;
  width: 47px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  background-color: #f27474;
}

.simplert__footer {
  padding: 1em 0;
}

.simplert__close,
.simplert__confirm {
  display: inline-block;
  margin: 0 0.5em;
  padding: 10px 20px;
  cursor: pointer;
  text-align: center;
  color: #fff;
  border: none;
  outline: none;
  background-color: #068ac9;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.simplert__close--radius,
.simplert__confirm--radius {
  border-radius: 0.3em;
}

@keyframes zoomIn {
  0% {
    transform: scale3d(0.3, 0.3, 0.3);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
.spinner {
  width: 70px;
  text-align: center;
  position: absolute;
  left: 50%;
  top: 53%;
  transform: translate(-50%, -50%);
}

.spinner > div {
  width: 13px;
  height: 13px;
  background-color: #fff;

  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
  }
}

@keyframes sk-bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.form--user input,
.form--user select {
  max-width: calc(50% - 0.5rem);
  flex: 0 0 calc(50% - 0.5rem);
  margin: 0.25rem;
}
@media (max-width: 767.98px) {
  .form--user input,
  .form--user select {
    max-width: 100%;
    flex: 0 0 100%;
    width: 100%;
  }
}
.ul--winner__wrapper p {
  font-size: 14px;
}
.ul--winner__wrapper .winner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.ul--winner__wrapper .winner div {
  max-width: 33.333%;
  flex: 0 0 33.333%;
  width: 33.333%;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid white;
  padding-bottom: 0.3rem;
  text-align: center;
}
