@charset "utf-8";
@import url(//fonts.googleapis.com/earlyaccess/notosanskr.css);


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Noto Sans KR', sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
  display: block;
}
img {
  max-width : 100%;
}
.hidden {
  visibility: hidden;
}
.active {
    background: #9586e1;
    color: white !important;
    border-radius:100%;
    box-shadow: 0 0 10px #00000036;
    width:27px;
    height:27px;
    text-align:center;
}
.password_change_btn {
  background: #4F4487;
  color: white;
  padding: 5px 10px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 16px;
}


/* 비밀번호 변경 모달 */
.password_change_wrap {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 20;
  background-color: #0000002f;
  display: none;
}
.password_change_frame {
  position: fixed;
  width: 500px;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  border-radius: 15px;
  overflow: hidden;
  background-color: #fff;
}
.password_change_header {
  width: 100%;
  padding: 10px 20px;
  background-color: #4F4487;
  color: #fff;
}
.password_change_content {
  width: 100%;
  background-color: #fff;
  padding: 10px 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  min-height: 150px;
}
.password_change_item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}
.password_change_text {
  font-size: 16px;
  width: 140px;
}
.password_change_btn_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px 0px;
}
.password_change_input {
  width: calc(100% - 140px);
  padding: 10px 10px;
  font-size: 16px;
  border-radius: 7px;
}
.password_change_btn {
  width: 150px;
  text-align: center;
}
.password_cancel {
  background-color: #af9696;
}
.password_check {
  background-color: #9586e1;
}
.password_caution_text {
  width: 100%;
  font-weight: bold;
  text-align: center;
  font-size: 16px;
  color: rgb(221, 26, 26);
  visibility: hidden;
}

/* 엑셀 모달 */
.excel_wrap {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 20;
  background-color: #00000020;
  display: none;
}
.excel_main_frame {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 500px;
  background-color: #fff;
  padding: 15px 15px;
}
.excel_header_frame {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.excel_header {
  font-size: 20px;
  font-weight: bold;
}
.excel_close {
  cursor: pointer;
}
.excel_contents {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 30px;
}
.excel_content {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 0px;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  border-radius: 10px;
  cursor: pointer;
}
.manager_only {
  background-color: green;
}
.worker_only {
  background-color: #54459e;
}




/* 반응형 */
@media screen and (max-width:550px) {
  
}