.search_modal::-webkit-scrollbar-track {
  background: #145ead;
}
.search_modal_title {
  font-size: 54px;
  font-family: 'Adelle Cyrillic';
  font-weight: bold;
}
.search_modal_header {
  border: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: start;
  margin: 48px 0;
}
.search_modal_body {
  display: flex;
  flex-direction: row;
  align-content: start;
  flex-wrap: wrap;
}
.search_modal_body input {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 3px solid rgba(255, 255, 255, 0.75);
  padding: 1rem;
  font-size: 32px;
  text-align: center;
  color: #ffffff;
  outline: none;
  border-radius: 0;
  box-shadow: none;
  cursor: default;
}
.search_modal_body input:focus::placeholder,
.search_modal_body input:active::placeholder {
  opacity: 0;
}
.search_modal_body input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.8);
  opacity: 1;
}
.search_modal_body input::placeholder {
  color: rgba(255, 255, 255, 0.8);
  opacity: 1;
}
.search_modal_body input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.8);
  opacity: 1;
}
.search_modal_body input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.8);
  opacity: 1;
}
.search_modal_body input:-moz-placeholder {
  color: rgba(255, 255, 255, 0.8);
  opacity: 1;
}

@media (max-width: 767.98px) {
  .search_modal_header {
    margin: 16px 0 0;
  }
  .search_modal_title {
    font-weight: bold;
    font-size: 32px;
  }
  .search_modal_body input {
    font-size: 20px;
    text-align: left;
    padding: 0.5rem 0.5rem 0.5rem 0rem;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .search_modal_title {
    font-size: 44px;
  }
  .search_modal_body input {
    font-size: 24px;
    padding: 1rem 1rem 1rem 0rem;
  }
  .close img {
    width: 30px;
    height: auto;
  }
}

@media (max-width: 992px) {
  .search_modal_header {
    margin: 16px 0 0;
  }
}
