:root {
  --theme-color: #4E75FF;
  --gray: #CCCCD1;
  --gray-light: #F3F3F4;
  --gray-dark: #60616A;
  --black: #252629;
  --light: #f8f9fc;
}

select {
  height: 30px;
  font-size: 14px;
  padding: 5px;
}

select option {
  height: 30px;
  font-size: 14px;
  padding: 5px;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}
.flex.space-between {
  justify-content: space-between;
}
.flex.center {
  align-items: center;
}

.small.cbtn.green{
	padding: 7px 5px;
	border-radius: 3px;
}

.pwd_modal {
  display: none;
}

.pwd_modal .modal_box {
  position: fixed;
  top: calc(50% - 150px);
  left: 50%;
  width: 80%;
  max-width: 300px;
  height: 150px;
  border-radius: 8px;
  box-shadow: 0px 1px 15px 0px #3333336b;
  background-color: #fff;
  transform: translate(-50%, -50%);
  z-index: 100;
  padding: 20px;
}

.pwd_modal .modal_box .modal_txt {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  line-height: 1.5em;
}

.pwd_modal .modal_box .X_button {
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background-color: #00aef0;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  position: absolute;
  top: -19px;
  right: -20px;
}

.pwd_modal .modal_box .X_button:after {
  display: inline-block;
  content: "\00d7";
  font-size: 27pt;
  color: #fff;
  padding-bottom: 5px;
}

.pwd_modal .modal_box input[type=password] {
  display: block;
  margin: 0 auto;
  margin-top: 10px;
  width: 80%;
  height: 20%;
  background-color: #f5f5f5;
}

.pwd_modal .modal_box .submit {
  width: 30%;
  display: block;
  margin: 0 auto;
  border-radius: 20px;
  border: none;
  padding: 10px;
  margin-top: 20px;
  background-color: #00aef0;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

.pwd_modal .modal_bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 98vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 50;
}

.list__board * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.list__board {
  display: table;
  width: 100%;
  margin-bottom: 38px;
  border-collapse: collapse;
  overflow: hidden;
}

.list__board-title {
  display: table-caption;
  color: var(--gray-dark);
  font-size: 1.215rem;
  font-weight: 600;
  margin: 0.815rem 0;
}

.list__board_row {
  display: table-row;
}

.list__board_row:hover:not(.list__board_none) {
  background-color: var(--light);
  color: var(--gray-dark);
}

.list__board_cell,
.list__board_none {
  display: table-cell;
  height: 42px;
  padding: 0px 2rem;
  white-space: nowrap;
  font-family: 'Pretendard', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--black);
  vertical-align: middle;
  font-variant-numeric: tabular-nums;
  border-bottom: 1px solid var(--gray);
}

.list__board_item {
  background-color: var(--gray-light);
  border-top: 1px solid var(--gray);
  border-bottom: 1px solid var(--gray);
  font-family: 'Pretendard', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-dark);
}

.list__board_none {
  text-align: center !important;
}

.list__board_cell.checkbox {
  padding: 0 0.325rem;
  text-align: center;
}

.list__board_cell.no {
  padding: 0 0.825rem;
  text-align: center;
}

.reg_btn_wrap {
  display: flex;
  justify-content: flex-end;
  gap: 0.625rem;
}

.ico10{padding: 5px; background: #4c61d1;}

span.pc_none{display:none;}


/* mobile */
@media (max-width: 768px) {
  
  .selectBox.top{width: 90px !important;}

  .textBox01.top{width: 150px !important; }

  .list__board {
    display: block;
    width: 100%;
    overflow: hidden;
  }

 a.list__board_row  {
    display: flex;
	flex-wrap: wrap;
    border-bottom: 1px solid var(--gray);
    padding: 5px;
	padding-left: 0px;
	padding-bottom: 10px;
  }

 .list__board_cell, .list__board_none {
	display: block;
	height: 20px;
	font-size: 14px;
	padding: 0;
	white-space: normal;
    border: none;
  }

  .list__board_cell.status{
	margin-top: 20px;
  }

  .list__board_cell.status,
  .list__board_cell.company{
	width: 100%;
	margin-bottom: 10px;
  }

  .list__board_cell.status .ico10{
	padding: 5px;
	background: #4c61d1;
  }

  .list__board_cell.company{
	font-size: 16px;
	font-weight: 600;
  }

  .list__board_item, .list__board_cell.vlist, .list__board_cell.no {
    display: none;
  }

  .list__board_cell.no {
    padding: 0;
  }

  .pwd_modal .modal_box {
    top: 10%;
    width: 70%;
  }

  span.pc_none{display:block; padding: 0px 8px;}
}


@media (max-width: 385px){
	.small.cbtn.green{
		margin-bottom: 10px;
	}
}