* {
  box-sizing: border-box;
}
*:focus {
  outline: none;
}
.ox__btn {
  cursor: pointer;
  border-radius: 6px;
  padding: 10px;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 400;
  text-decoration: none;
  display: inline-block;
  border: 0px solid transparent;
  line-height: 1;
  background: #ff0000;
  color: #fff;
  border: 1px solid #e60000;
  transition: all 250ms ease-out;
}
.ox__btn:focus {
  box-shadow: 0px 0px transparent;
}
.ox__btn:hover {
  background: #cc0000;
  color: #fff;
}
.ox__btn:active,
.ox__btn:focus {
  background: #ff0000;
  color: #fff;
  border: 1px solid #e60000;
}
.ox__btn:active:hover,
.ox__btn:focus:hover {
  background: #cc0000;
  color: #fff;
}
.ox__input {
  padding: 0.5rem 1rem 0.5rem;
  display: inline-block;
  background: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
}
.ox__title {
  text-align: center;
  margin: 15px 0;
  padding: 0;
}
.ox__names {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 15px;
  -ms-grid-rows: auto;
      grid-template-rows: auto;
}
.ox__names-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.ox__names-item label {
  margin-bottom: 5px;
}
.ox__rezult {
  padding: 15px;
}
.btns {
  text-align: center;
  margin: 20px auto;
}
@media (max-width: 767px) {
  .ox__names {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.big__text {
  font-size: 22px;
  font-weight: 700;
}