.search_page {
  background: #fff;
}
.btn_search_page {
  background: url("/assets/images/Icon_search_w.svg") center center no-repeat
    #0067ab;
  width: 65px;
  height: 65px;
}
.txt_search_page {
  width: calc(100% - 70px);
  padding: 15px 30px;
  font-size: 16px;
}
.list_suggest_key {
  margin: 30px 0 20px;
}
.list_suggest_key a {
  color: #0076c0;
  font-size: 15px;
  margin: 0 15px 15px;
}
.list_suggest_link a {
  color: #0076c0;
  font-size: 15px;
  margin: 10px 15px 10px 0;
  border-right: 1px solid #ddd;
  padding-right: 15px;
}
.list_suggest_link a:last-child {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}
.list_option_search {
  justify-content: center;
}
.list_option_search a,
.list_option_search span {
  padding: 0 5px;
  margin: 0 25px;
  border-bottom: 3px solid rgba(0, 0, 0, 0);
  font-size: 16px;
  padding-bottom: 5px;
}
.list_option_search a:hover,
.list_option_search a.active {
  border-bottom: 3px solid #00b5a5;
  margin-bottom: 0;
  color: #333;
}
.bg_gray {
  padding: 20px 25px;
  border-radius: 10px;
  margin: 15px 0;
  background: #f2f2f2;
}
.view_more_b {
  background: url(/assets/images/news/Arr-viewmore.svg) no-repeat right;
  padding-right: 25px;
  display: inline-block;
  margin-top: 20px;
  color: #999;
  font-size: 14px;
}
.list_result_search li {
  padding-bottom: 25px;
  margin-bottom: 25px;
  border-bottom: 1px solid #ddd;
}
.back_home {
  background: #51be9d;
  padding: 10px 30px;
  text-align: center;
  display: inline-block;
  color: #fff;
  font-weight: bold;
  margin: 40px 0 20px;
}
.back_home:hover {
  background: #0067ab;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .btn_search_page {
    width: 55px;
    height: 55px;
  }
  .list_option_search a:hover,
  .list_option_search a.active {
    margin-bottom: 15px;
  }
  .list_option_search a {
    margin: 0 15px 15px;
  }
  .list_option_search {
    margin-bottom: 20px;
  }
  .bg_gray {
    padding: 20px 20px;
  }
}
.search-suggest {
  background-color: #ffffff00;
  border: none;
  color: var(--menu-blue);
  margin-left: 10px;
}
#loading-screen {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.2);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

#loading-screen::before {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  right: 50%;
  top: 50%;
  border: 5px solid #eee;
  border-top: 5px solid #555;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
