.new_button {
  display: flex;
  box-shadow: 0 0 1px grey;
  padding: 20px;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0;
}

.button_btn {
  height: 60px;
  width: 200px;
  background-color: #016998;
  font-size: 21px;
  color: #fff;
  border-radius: 3px;
  cursor: pointer;
  border: 1px solid #016998;
}
@media (max-width: 600px) {
  .new_button {
    flex-direction: column;
  }
  .button_btn {
    margin-top: 15px;
  }
}
