/* ################# section : download ################# */

.download {
  padding-bottom: 120px;
  padding-top: 0px;
}
.download-inner {
  width: 1300px;
  margin: auto;
}
.download-search {
  height: 80px;
  border-bottom: 3px solid #bbb;
  display: flex;
  justify-content: flex-end;
}


.download-data {
}
.download-data ul {
  padding: 0;
  margin: 0;
}
.download-data li {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 30px;
  border-bottom: 2px solid #eee;
}

.data-txt span {
  font-family: 'kanit', sans-serif; 
  font-weight: 400;
  color: #888888;
}
.data-txt h3 {
  font: inherit;
  font-size: 1.4em;
  font-weight: 700;
}
.data-btn i {
  font-size: 1.8em;
  color: #666;
}


/* ################# search ################# */

.download-search {
  margin: 0;
  padding: 0;
}
.search-box {
  background-color: #bbb;
  padding: 3px;
  width: 300px;
  height: 60px;
}
.search-btn {
  color: #EDEDED;
  float: right;
  width: 54px;
  height: 54px;
  border: none;
  background: #bbbbbb;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.search-btn i {
  font-size: 2em;
  color: #fff;
}
.search-txt {
  float: left;
  width: 235px;
  padding: 0;
  background: #fff;
  border: none;
  outline: none;
  color: 333;
  font-size: 1em;
  line-height: 54px;
  padding-left: 10px;
}

/* ################# modal ################# */

.open-modal {
  cursor: pointer;
  padding: 10px;
}
.modal {
  background-color: rgba(0,0,0,0.4);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  z-index: 10000;
}
.modal-content {
  position: absolute;
  background-color: #fff;
  width: 500px;
  /* height: 600px; */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 10px;
}
.modal-head {
  background-color: #666;
  padding: 0 20px;
  height: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top-right-radius: 10px;;
  border-top-left-radius: 10px;;
}
.close-modal {
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}
.modal-head p {
  color: #ffffff;
  font: inherit;
  font-weight: 700;
}
.modal-body {
  padding: 20px;
}
.modal_help h3 {
  margin: 0;
  font: inherit;
  font-size: 1.2em;
  font-weight: 700;
  margin-top: 10px;
}
.modal_help p {
  margin-top: 10px;
  font: inherit;
}
.modal_input {
  padding: 20px 0;
}
.modal_input h3 {
  font: inherit;
}
.input-text {
  width: 100%;
  height: 40px;
  border-radius: 5px;
  font: inherit;
  margin-top: 5px;
  margin-bottom: 15px;
  border: 1px solid #666;
}
.modal_btn {
  display: flex;
  justify-content: flex-end;
}
.cancel-modal {
  display: inline-block;
  font: inherit;
  background-color: #fff;
  color: #333;
  border: 1px solid #666;
  border-radius: 5px;
  padding: 5px 30px;
  margin-right: 20px;
  font-weight: 700;
}
.download-modal {
  display: inline-block;
  font: inherit;
  background-color: #97BC62;
  color: #fff;
  border-radius: 5px;
  padding: 5px 30px;
  font-weight: 700;
  cursor: pointer;
}


@media (max-width: 768px) {
  .download-inner {
    width: 100%;
  }
  .download-data li {
    padding: 20px 10px;
  }
  .data-txt span {
    font-size: 0.8em;
  }
  .data-txt h3 {
    font-size: 1.2em;
  }
  .data-btn i {
    padding-top: 10px;
  }

  .modal-content {
    width: 95%;
  }
}