*{
  box-sizing: border-box;
}
.header{
  padding: 15px;
  border-bottom: 1px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__title{
  margin: 0;
  font-size: 20px;
}
.header__account{
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.main{
  margin: 100px auto;
  width: 95%;
  height: 75vh;
}
.search{
}

.search__title{
  margin-bottom: 15px;
}

.search__group {
  display: flex;
  align-items: center;
  gap:0 10px;
}

.result{
  margin-top: 30px;
}

.result__data {
    height: 60vh;
    overflow: scroll;
}
.result__adcode{
  display: none;
}

.result__title{
  margin: 0;
  display: flex;
  align-items: center;
  padding-bottom: 5px;
  border-bottom: 1px solid #ccc;
}

.result__title span{
  margin-left: 20px;
  margin-right: 5px;
}

.footer{
  padding: 20px 0 30px;
}
.footer small{
  font-size: 10px;
  text-align: center;
  display: block;
}

.search__btn button{
  display: flex;
  align-items: center;
  gap: 0 5px;
}

.uk-table.is-hide{
  display: none;
}

.result__data-title{
  margin: 20px 0 0;
}
.result__data-title.is-hide{
  display: none;
}

.alert-message{
  position: fixed;
  top: 0;
  width: 430px;
  right: 0;
}

.uk-notification-message-danger{
  font-size: 14px !important;
  background: #fef4f6 !important;
}

.code{
  margin-bottom: 50px;
}

.code__title {
  margin-bottom: 15px;
}

.code select{
  width: 300px;
}