body {
  line-height: 1.8;
  font-weight: 200;
  font-family: Georgia, serif;
  background: #ffffff;
}

.topleft {
  position: absolute;
  top: 35px;
  right: 20px;
  font-size: 20px;
}

.row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
}
.row > [class*="col-"] {
  display: flex;
  flex-direction: column;
}

@import url("https://fonts.googleapis.com/css?family=Muli:300,400,700,900");
.form-tab .search-field .search-placeholder,
.form-tab .search-btn {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

:root {
  --sw: 400px;
  --sh: 70px;
  --fs: 1.1em;
  --i1: 24px;
  --i2: 18px;
  --t: 14px;
  --l: 10px;
  --mt: 8px;
}
@media only screen and (max-width: 420px) {
  :root {
    --sw: 320px;
    --fs: 0.9em;
    --sh: 60px;
    --i1: 20px;
    --i2: 14px;
    --t: 12px;
    --l: 12px;
    --mt: 3px;
  }
}
.form-container,
.form-container .form-tab,
.form-tab .search-btn,
.resoult-tab,
.ul-title,
.ul .li {
  display: flex;
  justify-content: center;
  align-items: center;
}
.container-head {
  width: var(--sw);
  background: transparent;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-bottom: 1%;
}
.form-container {
  width: var(--sw);
  height: var(--sh);
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 30px -10px #d5dbed;
  margin-bottom: 10px;
}
.form-container .form-tab {
  width: 95%;
  height: calc(var(--sh) - 20px);
}
.form-tab .search-field {
  width: 75%;
  height: calc(var(--sh) - 20px);
  background: transparent;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  background: #eff4ff;
}
.form-tab .search-field .search-icon {
  position: absolute;
  top: var(--t);
  left: var(--l);
  z-index: 1;
  color: #6e80a5;
  opacity: 0.8;
  width: var(--i1);
  height: var(--i1);
}
.form-tab .search-field .search-placeholder {
  position: absolute;
  top: 0;
  left: 42px;
  z-index: 1;
  color: #6e80a5;
  opacity: 0.8;
  font-size: calc(var(--fs) / 1.1);
}
.form-tab .search-field form {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 3;
}
.form-tab .search-field form .text-field {
  width: 100%;
  height: 100%;
  background: transparent;
  font-size: var(--fs);
  color: #3f3f3f;
  border: none;
  outline: none;
  box-sizing: border-box;
  padding: 5px 5px 5px 43px;
  caret-color: #79a6ff;
  line-height: 2em;
}
.form-tab .search-btn {
  box-sizing: border-box;
  text-transform: uppercase;
  font-size: calc(var(--fs) / 1.2);
  width: 25%;
  height: 40px;
  background: transparent;
  margin-top: 2px;
}
.form-tab .search-btn p {
  cursor: pointer;
  color: #222;
}
.resoult-tab {
  justify-content: flex-start;
  flex-direction: column;
  width: var(--sw);
  height: 0px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 30px -10px #d5dbed;
  overflow: hidden;
  transition: height 359ms cubic-bezier(0.27, 0.7, 0, 0.99);
}
.resoult-tab-active {
  height: calc(calc(var(--sh) / 2) * 4);
  transition: height 399ms cubic-bezier(0.27, 0.7, 0, 0.99);
}
.ul-title {
  justify-content: flex-start;
  margin-top: var(--mt);
  width: 90%;
  height: 35px;
  background: transparent;
  opacity: 0;
}
.ul-title p {
  text-transform: uppercase;
  font-size: calc(var(--fs) / 1.7);
  color: #222;
  opacity: 0.4;
}
.ul {
  width: 100%;
  height: auto;
  background: transparent;
  position: relative;
  border-radius: 6px;
}
.ul .li {
  box-sizing: border-box;
  padding: 0 5%;
  justify-content: flex-start;
  width: 100%;
  height: calc(var(--sh) / 2.5);
  position: relative;
  overflow: hidden;
  background: rgba(20, 98, 255, 0);
  transition: background 399ms ease;
}
.ul .li:hover {
  background: rgba(20, 98, 255, 0.1);
  transition: background 299ms ease;
}
.ul .li .li-icon {
  margin-right: 8px;
}
.ul .li .li-icon .icon {
  transform: translatey(2px);
  color: #1462ff;
  width: var(--i2);
  height: var(--i2);
}
.ul .li .li-text {
  font-size: calc(var(--fs) / 1.3);
  color: #222;
  opacity: 0.8;
  cursor: pointer;
}
.li-active {
  animation: displayList 699ms cubic-bezier(0.6, 0.18, 0.5, 0.99) forwards;
  transform: translatey(40px);
  opacity: 0;
}
.li-1 {
  animation-delay: 99.5ms;
}
.li-2 {
  animation-delay: 199ms;
}
.li-3 {
  animation-delay: 298.5ms;
}
@keyframes displayList {
  0% {
    opacity: 0;
    transform: translatey(40px);
  }
  20% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translatey(0px);
  }
}
