.comment-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  margin: 0.5em;
  padding: 0.3em;
  width: 80%;
  max-width: 30em;
  min-height: 25vh;
}

.comment-box h3 {
  text-shadow: 0px 0px 20px #f72585;
  -webkit-text-stroke: 1px #f72585;
  color: #ff00ee00;
  -webkit-animation-name: flickerHighlite;
          animation-name: flickerHighlite;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
  font-size: 2.5em;
  text-align: center;
  margin: 0em;
  padding: 0.4em;
  width: 100%;
}

.comment-box p {
  font-size: 1.7em;
  margin: 0em;
  padding: 0.4em;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}

.comment-box h4 {
  font-size: 1.25em;
  text-align: center;
  margin: 0em;
  padding: 0.4em;
  color: #ffe45a;
  width: 100%;
}

.comment-box h4 i {
  font-size: 1.25em;
  color: #ffe45a;
}

.comment-box-big {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  margin: 0.5em;
  padding: 0.3em;
  width: 100%;
  min-height: 25vh;
}

.comment-box-big h3 {
  text-shadow: 0px 0px 20px #f72585;
  -webkit-text-stroke: 1px #f72585;
  color: #ff00ee00;
  -webkit-animation-name: flickerHighlite;
          animation-name: flickerHighlite;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
  font-size: 2.5em;
  text-align: center;
  margin: 0em;
  padding: 0.4em;
  width: 100%;
}

.comment-box-big p {
  font-size: 1.7em;
  margin: 0.2em;
  padding: 0.4em;
  width: 100%;
  max-width: 80%;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  word-wrap: break-word;
}

.comment-box-big h4 {
  font-size: 1.25em;
  text-align: center;
  margin: 0em;
  padding: 0.4em;
  color: #ffe45a;
  width: 100%;
}

.comment-box-big h4 i {
  font-size: 1.25em;
  color: #ffe45a;
}

.comment-box-big hr {
  width: 80%;
  margin-left: 10%;
  padding: 0;
  margin-top: 4em;
}

.form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  margin: 0.5em;
  padding: 0.3em;
}

.form h3 {
  font-size: 1.7em;
  margin: 0.1em;
  padding: 0.05em;
}

.form label {
  font-size: 1.3em;
  margin: 0.3em;
  padding: 0.1em;
}

.form input {
  border: solid 0.05em #3e0664;
  background-color: #140625af;
  border-radius: 0.15em;
  font-size: 1.25em;
}

.form textarea {
  border: solid 0.05em #3e0664;
  background-color: #140625af;
  border-radius: 0.15em;
  font-size: 1.25em;
}

.form button {
  border: solid 0.05em #3e0664;
  background-color: #140625af;
  border-radius: 0.15em;
  padding: 0.5em;
  font-size: 1.5em;
  font-weight: bolder;
  -webkit-box-shadow: 0px 0px 5px #140625af;
          box-shadow: 0px 0px 5px #140625af;
  -webkit-transition: ease-in-out 0.15s;
  transition: ease-in-out 0.15s;
  cursor: pointer;
}

.form button:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transition: ease-in-out 0.25s;
  transition: ease-in-out 0.25s;
  -webkit-box-shadow: 0px 0px 20px rgba(255, 255, 255, 0.402);
          box-shadow: 0px 0px 20px rgba(255, 255, 255, 0.402);
}

@-webkit-keyframes flickerHighlite {
  0% {
    text-shadow: 0px 0px 20px #f72585;
  }
  100% {
    text-shadow: 0px 0px 25px #f72585;
  }
}

@keyframes flickerHighlite {
  0% {
    text-shadow: 0px 0px 20px #f72585;
  }
  100% {
    text-shadow: 0px 0px 25px #f72585;
  }
}

.rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
}

.rating > input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  display: none;
}

.rating > label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  position: relative;
  width: 0.1em;
  font-size: 3em;
  color: #ffe45a;
  cursor: pointer;
}

.rating > label::before {
  content: "\2605";
  position: absolute;
  opacity: 0;
}

.rating > label:hover:before,
.rating > label:hover ~ label:before {
  opacity: 1 !important;
}

.rating > input:checked ~ label:before {
  opacity: 1;
}

.rating:hover > input:checked ~ label:before {
  opacity: 0.4;
}
/*# sourceMappingURL=comments.css.map */