.contactForm {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.contactForm__item {
  width: calc(100% / 4 - 1rem);
}
.contactForm__item--wide {
  width: 100%;
  margin-top: 1rem;
}
@media (max-width: 800px) {
  .contactForm__item {
    width: 100%;
  }
}
.contactForm__label {
  color: #8e8e8e;
  font-size: 0.9rem;
  margin-bottom: 2%;
}
.contactForm__input {
  width: 100%;
  border: 2px solid #8e8e8e;
  color: #8e8e8e;
  height: 40px;
  padding: 5px;
}
.contactForm__input:focus {
  outline: none;
}
.contactForm__agreements {
  margin: 1% 0;
}
.contactForm__agreements-item {
  margin-bottom: 1%;
}
.contactForm__agreements-item a {
  color: #000;
}
@media (max-width: 800px) {
  .contactForm__agreements-item {
    font-size: 0.8rem;
  }
}
.contactForm__btn {
  width: 100%;
  margin-top: 2%;
}
.contactForm__btn-text {
  border: 2px solid #01204c;
  padding: 10px;
  width: 150px;
  text-align: center;
  cursor: pointer;
}
.contactForm__btn-text:hover {
  background-color: #01204c;
  color: #fff;
}
.contactForm__accept--margin-top {
  margin-top: 1%;
}
.contactForm__checkboxInput {
  position: absolute;
  left: -1000px;
}
.contactForm__checkboxlabel {
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
.contactForm__checkboxlabel p {
  color: #000;
  margin-bottom: 0;
}
.contactForm__checkbox {
  margin-right: 10px;
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 2px solid #01204c;
  float: left;
  position: relative;
}
@media (max-width: 800px) {
  .contactForm__checkbox {
    width: 20px;
    height: 12px;
  }
}
.contactForm__checkbox p {
  color: #000;
  padding-left: 40px;
}
.contactForm__checkbox__link {
  color: #000;
  text-decoration: none;
}
.contactForm__checkbox__link:hover {
  text-decoration: underline;
}
.contactForm__checkboxInput:checked ~ label .contactForm__checkbox {
  background: #01204c;
  border-color: #01204c;
}
.contactForm__checkboxInput:checked ~ label .contactForm__checkbox:after {
  content: "";
  position: absolute;
  background: url("../../static/icons/check.svg") 50% 50% no-repeat;
  background-size: 100% 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-size: 100% 100%;
}
.contactForm__msg {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
}
.contactForm__online {
  display: none;
}
