.popBox {
  position: fixed;
  opacity: 0;
  z-index: 0;
  height: 0;
  width: 0;
  top: -100%;
  left: -100%;
  transition: background .3s ease-out;
  -webkit-transition: background .3s ease-out;
  background: rgba(255, 255, 255, 0); }
  .popBox .closeSpace {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: -1; }
    @media (max-width: 440px) {
      .popBox .closeSpace {
        display: none; } }
  .popBox .boxContent {
    position: absolute;
    top: 55%;
    left: -100%;
    width: 90%;
    max-width: 900px;
    overflow: hidden;
    opacity: 0;
    z-index: 100; }
    @media (max-width: 440px) {
      .popBox .boxContent {
        width: 100%;
        height: 100%; } }
  .popBox .mainContent {
    max-height: 90vh;
    overflow: hidden;
    overflow-y: auto;
    position: relative;
    z-index: 100; }
  .popBox.open {
    opacity: 1;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1000; }
    .popBox.open .boxContent {
      left: 50%;
      top: 50%;
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
      -webkit-transform: translate(-50%, -50%);
      opacity: 1; }
  .popBox .boxContent {
    transition: top .5s ease-out;
    -webkit-transition: top .5s ease-out; }
  .popBox .boxContent {
    background: white;
    padding-top: 2.5em;
    padding-bottom: 1em;
    padding-left: 16px;
    padding-right: 16px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.2); }
    .popBox .boxContent .closeBtn {
      position: absolute;
      top: 5px;
      right: 15px;
      color: #333; }
      .popBox .boxContent .closeBtn:hover {
        color: #b20216; }
  .popBox.open {
    background: rgba(255, 255, 255, 0.9); }

button, .btn-prev,
.btn-next {
  border-radius: 0;
  background: #008cd6;
  border-width: 1px;
  border-style: solid;
  border-color: #008cd6;
  letter-spacing: 1px;
  color: #fff;
  padding: 0.65em 1.5em;
  line-height: 1em;
  font-size: 16px;
  cursor: pointer;
  margin: 16px 0;
  display: inline-block; }

.searchForm form {
  padding: 32px;
  padding-top: 57.6px;
  text-align: center;
  position: relative;
  display: inline-block;
  width: 100%; }

.searchForm form input[type="text"] {
  margin-right: 2em;
  width: 500px;
  max-width: 100%; }

select,
textarea,
input {
  border: 2px solid #ebebeb;
  border-radius: 0;
  box-shadow: none;
  line-height: 45px;
  height: 45px;
  padding: 0 1em;
  color: #4d4d4d;
  font-size: 16px;
  letter-spacing: 1px; }
