/* Outer */
.popup {
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  top: 0px;
  left: 0px;
  background: rgba(0, 0, 0, 0.2);
  z-index: 999;
}

/* Inner */
.popup-inner {
  max-width: 1024px;
  width: 90%;
  padding: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  box-shadow: 0px 2px 6px black;
  border-radius: 3px;
  background: #fff;
  font-size: 15px;
}
.popup-inner h3 {
  text-align: left;
  margin-bottom: 10px;
  font-weight: bold;
}

/* Close Button */
.popup-close {
  width: 30px;
  height: 30px;
  padding-top: 4px;
  display: inline-block;
  position: absolute;
  top: 0px;
  right: 0px;
  transition: ease 0.25s all;
  -webkit-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
  border-radius: 1000px;
  background: rgba(0, 0, 0, 0.8);
  font-family: Arial, Sans-Serif;
  font-size: 20px;
  text-align: center;
  line-height: 100%;
  color: #fff;
}

.popup-close:hover {
  -webkit-transform: translate(50%, -50%) rotate(180deg);
  transform: translate(50%, -50%) rotate(180deg);
  background: black;
  text-decoration: none;
  color: white !important;
  cursor: pointer;
}

.change_pwd {
  width: 400px;
  background: black;
  color: white;
  text-align: center;
  border-bottom: 1px solid #212121;
  padding-bottom: 10px;
}
.change_pwd h3 {
  text-align: center;
  border-bottom: 1px solid #ffffff36;
  padding-bottom: 10px;
  margin-bottom: 0;
}
.change_pwd .change_pwd_frm {
  padding: 10px;
}
.change_pwd .chg_pd {
  padding: 5px 5px;
}
@media (max-width: 450px) {
  .change_pwd {
    width: 90%;
    padding: 10px;
  }
}

.record {
  padding: 15px !important;
  max-width: 1200px;
}
.record ._btn ul {
  padding: 0;
}
@media (max-width: 767px) {
  .record {
    height: 90%;
  }
  .record .record_pg {
    font-size: 12px;
  }
  .record ._btn ul li {
    margin: 5px 0;
  }
  .record .overflow {
    height: calc(100% - 160px);
    overflow: auto;
    width: 100%;
  }
}
@media (max-width: 450px) {
  .record h3 {
    font-size: 18px;
  }
}

.msg_blk {
  max-width: 400px;
  width: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 1px 6px 11px rgba(0, 0, 0, 0.5);
}
.msg_blk .inner {
  background: linear-gradient(to bottom, #2e2e2e 0%, #080808 100%);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.msg_blk .title {
  font-size: 20px;
  text-align: center;
  color: white;
  padding: 12px;
  background-image: linear-gradient(to top, #FFd700 0%, #daa520 100%);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  font-family: Microsoft JhengHei;
}
.msg_blk .msg_cnt {
  height: 100%;
  background: #FFF;
  /*min-height: 150px;*/
  text-align: center;
  border: 1px solid #f8cd0c;
  padding: 35px;
  text-align: center;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.msg_blk .closeme {

  color: white;
  background: #d4348c;
  color: white;
  padding: 7px 24px;
  cursor: pointer;
  display: inline-block;
}
.msg_blk .closeme:hover {
  background: #e7b616;
  color: white;
}
.msg_blk .wd {
  margin-bottom: 20px;
  font-size: 27px;
  color: #d4348c;
}

.record table th {
  background: dimgrey;
  color: white;
}
.record .date {
  float: right;
  font-size: 16px;
}
.record select {
  font-size: 16px;
  padding: 5px 10px;
}
.record .searchbtn {
  padding: 6px 15px;
  background: linear-gradient(135deg, #dfab3b, #fdf08a 50%, #dfab3b);
  border: 1px solid #b1b1b1;
  border-radius: 5px;
}

.record_pg .right {
  text-align: right;
}
.record_pg ._btn {
  text-align: center;
  margin: 30px 0;
}
.record_pg ._btn ul li {
  display: inline-block;
  border: 1px solid #bbbbbb;
}
.record_pg ._btn ul li a {
  padding: 5px 10px;
  background: linear-gradient(135deg, #dfab3b, #fdf08a 50%, #dfab3b);
  display: block;
}
.record_pg ._btn ul li a:hover {
  background: #fbec85;
}
.record_pg ._btn ul li:first-child a, .record_pg ._btn ul li:last-child a {
  background: linear-gradient(135deg, #9b9692 25%, #edebec 50%, #9b9692 75%);
}
.record_pg ._btn ul li:first-child a:hover, .record_pg ._btn ul li:last-child a:hover {
  background: #d0cdcd;
}
