html {
  box-sizing: border-box;
  font-size: 16px;
  background-color: #101010;
  font-size: 16px;
  font-family: Verdana, Arial;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}
/* custom styles below */
#PageContainer {
  max-width: 1190px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin: 0px auto;
}
.errorMessage {
  text-align: center;
  color: red;
  display: none;
}
.errorMessage.show {
  display: block;
}
#MainHeader {
  width: 100%;
  flex-shrink: 0;
  text-align: center;
}
.Textblock {
  color: #fff;
  background-color: #1e1e1e;
  width: 100%;
  max-width: 700px;
  margin: 0px auto;
  border-radius: 8px;
  padding: 20px;
}
.blockedText {
  display: flex;
  align-items: center;
  /* border: 2px solid #fff; */
  border-radius: 8px;
  padding: 10px;
}
.BlockedImage > img {
  width: 80px;
  margin-right: 10px;
}
.BlockedMessage > p {
  font-weight: bold;
}
.BlockedMessage > p:nth-of-type(2) {
  text-align: center;
}
.topInputs {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.topInputs input {
  width: 48%;
  outline: 0px;
  font-size: 16px;
  border-radius: 8px;
  border: 2px solid #000;
  padding: 15px;
  font-family: inherit;
}
.badInput {
  text-align: center;
  color: red;
  margin-bottom: 10px;
  display: none;
}
.badInput.show {
  display: block;
}
.explain {
  width: 100%;
  margin-top: 15px;
}
.explain textarea {
  width: 100%;
  border: 2px solid #000;
  border-radius: 8px;
  font-size: 16px;
  padding: 15px;
  font-family: inherit;
}
.bottomSends {
  width: 100%;
  padding: 0px 15px;
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.send {
  background-color: #01c815;
  font-size: 22px;
  padding: 15px 25px;
  width: 100%;
  border-radius: 8px;
  max-width: 260px;
  cursor: pointer;
  text-align: center;
  position: relative;
}
.send.sending {
  background-color: #004f08;
}
.send.grey {
  background-color: #515151;
}
#Footer {
  margin-top: 15px;
  color: #b0b0b0;
}
#Footer a {
  color: #01c815;
}
.attachedLoader {
  position: absolute;
  top: 18px;
  right: 50px;
  display: none;
}
.attachedLoader.show {
  display: block;
}
@media screen and (max-width: 670px) {
  .bottomSends {
    flex-direction: column;
  }
  .send {
    margin-top: 10px;
    max-width: none;
  }
}
@media screen and (max-width: 670px) {
  .BlockedMessage > p {
    font-size: 14px;
  }
  .BlockedMessage > p:nth-of-type(2) {
    text-align: left;
  }
}
.loader {
  overflow: hidden;
  font-size: 10px;
  margin: 0px auto;
  text-indent: -9999em;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ffffff;
  background: -moz-linear-gradient(
    left,
    #ffffff 10%,
    rgba(255, 255, 255, 0) 42%
  );
  background: -webkit-linear-gradient(
    left,
    #ffffff 10%,
    rgba(255, 255, 255, 0) 42%
  );
  background: -o-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
  background: -ms-linear-gradient(
    left,
    #ffffff 10%,
    rgba(255, 255, 255, 0) 42%
  );
  background: linear-gradient(
    to right,
    #ffffff 10%,
    rgba(255, 255, 255, 0) 42%
  );
  position: relative;
  -webkit-animation: load3 1.4s infinite linear;
  animation: load3 1.4s infinite linear;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}
.loader:before {
  width: 50%;
  height: 50%;
  background: #ffffff;
  border-radius: 100% 0 0 0;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
}
.loader:after {
  background: #004f08;
  width: 75%;
  height: 75%;
  border-radius: 50%;
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
@-webkit-keyframes load3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
h3.subject {
  font-weight: bold;
  font-size: 16px;
  padding: 15px 0px 10px 10px;
}
.subject-select {
  width: 100%;
  border: 2px solid #000;
  border-radius: 8px;
  padding: 15px;
  font-size: 16px;
  font-family: inherit;
}
.subject-site {
  display: flex;
}
.subject-site div {
  width: 50%;
}
@media screen and (max-width: 670px) {
  .subject-site {
    flex-direction: column;
  }
  .subject-site div {
    width: 100%;
  }
}
