html {
  height: 100%;
}

body {
  margin: 0;
  overflow: hidden;
  background: #FEFEFE;
  width: 100%;
  height: 100%;
}
body #root {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
body #root .container {
  width: 640px;
  margin: 0 auto;
}
body #root .selectBox {
  width: 150px;
  appearance: none;
  background: transparent url("../assets/arrow-down.svg") no-repeat right center;
  border: none;
  outline: none;
  padding-right: 24px;
  text-align: right;
  text-align-last: right;
}
body #root #content {
  display: flex;
  flex-direction: column;
}
body #root #content header {
  margin-bottom: 8px;
}
body #root #content #searchForm {
  width: 100%;
  height: 44px;
}
body #root #content #searchForm .searchBarHeader {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}
body #root #content #searchForm .searchBarHeader > span {
  font-size: 16px;
  font-weight: 700;
}
body #root #content #searchForm .searchBar {
  display: flex;
}
body #root #content #searchForm .searchBar .searchBarInput {
  flex: 1;
  border: 1px solid #e5e5e5;
  color: #7A7A7A;
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 4px 0 0 4px;
  border-right: 0;
  padding: 14px 16px;
  font-size: 14px;
  outline: none;
}
body #root #content #searchForm .searchBar .searchBtn {
  background-color: #111;
  border: 0;
  margin: 0;
  border-radius: 0 4px 4px 0;
  padding: 0 8px;
  color: #fff;
  font-size: 14px;
  display: flex;
  align-items: center;
}
body #root #content #searchForm .searchBar .searchBtn img {
  padding-right: 4px;
}
body #root footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}
body #root footer span {
  color: #8D8D8D;
  font-size: 10px;
}
body #root footer select {
  font-size: 12px;
  color: #261C4C;
}

@media (max-width: 640px) {
  body #root {
    padding: 0 20px;
  }
  body #root .container {
    width: 100%;
    margin: 0 auto;
  }
}
