.home-page{
  display: grid;
  grid-template-rows: 80px 300px 80px auto;
  height: 70vh;
}
.title-page,.title-select{
  background-color: #F6F6F6;
  display: flex;
  justify-content: center;
  align-items: center;
}
.filter{
  display: grid;
  align-content: center;
  gap: 10px;
  margin-top: 2.8rem;
}
.dropdown{
  display: flex;
}
.custum-title,.custom-select{
  display: flex;
  justify-content: center;
  align-items: center;
}
.custum-title{
  width: 45%;
  height: 60px;
  background-color: rgb(254, 220, 86);
  border-radius: 10px 0 0 10px;
}
.custom-select{
  width: 55%;
  height: 60px;
  box-sizing: border-box;
  border: 2px solid rgb(226, 225, 225);
  border-radius: 0 10px 10px 0;
}
select{
  width: 80%;
  height: 50px;
  text-align: center;
  font-family: 'Noto Sans Thai', sans-serif;
  font-size: 1rem;
  border:0px;
  outline:0px;
  appearance: none;
}
.content-select{
  margin-top: 2rem;
  margin-bottom: 2rem;
  display: grid;
  gap: 1rem;
}
.dropdown,.documents,.chapters{
  width: 100%;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.bt-search{
  height: 60px;
  max-width: 700px;
  border-radius: 10px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1rem;
}
.bt-search:hover{

  /* background-color: rgb(255, 255, 255); */
  /* color: black; */
}
.doc-title,.doc-detail,.chap-title{
  display: flex;
  align-items: center;
}
.doc-title,.doc-detail,.chap-title,.chap-detail{
  height: auto;
  border-radius: 10px;
  padding: 0 30px 0 30px;
}
.doc-title{
  justify-content: space-between;
  background-color: rgb(254, 220, 86);
}
.doc-detail,.chap-detail{
  margin-top: 10px;
  background-color: rgb(238, 238, 238);
}
.chap-title{
  justify-content: space-between;
  background-color: rgb(0, 88, 171);
}
.dot {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 40px;
  background-color: rgb(255, 255, 255);
  border-radius: 50%;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.ar-yellow{border: solid rgb(254, 220, 86);}
.ar-blue{border: solid rgb(0, 88, 171);}
.arrowdown{
  border-width: 0 4px 4px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.box{
  display: flex;
  align-items: center;
  height: 4rem;
  width: 50px; 
  min-width: 100%;
  text-decoration: none;
  color: rgb(0, 0, 0);
  white-space: nowrap;
  overflow-x: scroll;
}
.solid{
  margin: 0;
  border-top: 1px solid rgb(255, 255, 255);
}

.non-search{
  display: flex;
  align-items: center;
  height: 65px;
}

@media screen and (max-width: 800px) {
  .filter,.content-select{
    padding: 1rem;
    margin: 0;
  }
  .bt-search{
    width: 100%;
  }
}

@media screen and (max-width: 425px) {
  .l-name{
    visibility: hidden;
  }
  .title-select,.documents,.chapters{
    margin: 0;
  }
}