#error_page {
  width: 100%;
  height: 960px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #121921 url(../img/pattern_2.svg) repeat;
  color: #fff;
}
@media (max-width: 767px) {
  #error_page img {
    width: 250px;
    height: auto;
  }
}
#error_page p {
  font-size: 21px;
  font-size: 1.3125rem;
}
@media (max-width: 767px) {
  #error_page p {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
@media (max-width: 767px) {
  #error_page {
    padding: 60px 0 0 0;
    height: 815px;
  }
}

.search_bar {
  position: relative;
  margin-bottom: 60px;
  padding: 5px;
}
.search_bar input[type='text'] {
  border: 0;
  height: 50px;
  font-weight: 500;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  padding-left: 15px;
}
.search_bar input[type='submit'] {
  position: absolute;
  right: 10px;
  color: #fff;
  font-weight: 600;
  top: 10px;
  border: 0;
  padding: 0 25px;
  height: 40px;
  cursor: pointer;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  background-color: #da0004;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.search_bar input[type='submit']:focus {
  outline: none;
}
.search_bar input[type='submit']:hover {
  background-color: #1f2f6a;
}
