* {
  margin: 0;
  padding: 0;
  font-family: "noto sans kr";
  letter-spacing: -0.5px;
  text-decoration: none;
  list-style: none;
  color: #1e1e1e;
  font-size: 15px;
  box-sizing: border-box;
  word-break: keep-all;
  font-style: normal;
}

:root {
  --background-secondary: #f8f8f8;
}

/*//////////////////////////////////////////////////////////////////
[ FONT ]*/

/*
@font-face {
  font-family: Poppins-Regular;
  src: url("../fonts/poppins/Poppins-Regular.ttf");
}

@font-face {
  font-family: Poppins-Medium;
  src: url("../fonts/poppins/Poppins-Medium.ttf");
}

@font-face {
  font-family: Poppins-Bold;
  src: url("../fonts/poppins/Poppins-Bold.ttf");
}

@font-face {
  font-family: Poppins-SemiBold;
  src: url("../fonts/poppins/Poppins-SemiBold.ttf");
}
*/

/*//////////////////////////////////////////////////////////////////
[ RESTYLE TAG ]*/

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

body,
html {
  height: auto;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

body {
  position: relative;
}

/*---------------------------------------------*/
a {
  font-size: 14px;
  line-height: 1.7;
  color: #666666;
  margin: 0px;
  /* transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s; */
}

a:focus {
  outline: none !important;
}

/* a:hover {
  text-decoration: none;
  color: #6a7dfe;
  color: -webkit-linear-gradient(left, #21d4fd, #b721ff);
  color: -o-linear-gradient(left, #21d4fd, #b721ff);
  color: -moz-linear-gradient(left, #21d4fd, #b721ff);
  color: linear-gradient(left, #21d4fd, #b721ff);
} */

/*---------------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0px;
}

p {
  margin: 0px;
}

ul,
li {
  margin: 0px;
  list-style-type: none;
}

/*---------------------------------------------*/

input:focus::-webkit-input-placeholder {
  color: transparent;
}

input:focus:-moz-placeholder {
  color: transparent;
}

input:focus::-moz-placeholder {
  color: transparent;
}

input:focus:-ms-input-placeholder {
  color: transparent;
}

textarea:focus::-webkit-input-placeholder {
  color: transparent;
}

textarea:focus:-moz-placeholder {
  color: transparent;
}

textarea:focus::-moz-placeholder {
  color: transparent;
}

textarea:focus:-ms-input-placeholder {
  color: transparent;
}

input::-webkit-input-placeholder {
  color: #adadad;
}

input:-moz-placeholder {
  color: #adadad;
}

input::-moz-placeholder {
  color: #adadad;
}

input:-ms-input-placeholder {
  color: #adadad;
}

textarea::-webkit-input-placeholder {
  color: #adadad;
}

textarea:-moz-placeholder {
  color: #adadad;
}

textarea::-moz-placeholder {
  color: #adadad;
}

textarea:-ms-input-placeholder {
  color: #adadad;
}

/*---------------------------------------------*/
button {
  outline: none !important;
  border: none;
  background: transparent;
}

button:hover {
  cursor: pointer;
}

iframe {
  border: none !important;
}

/*//////////////////////////////////////////////////////////////////
[ login ]*/

.limiter {
  width: 100%;
  margin: 0 auto;
}

.container-login100 {
  width: 100%;
  min-height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 15px;
  background: #f2f2f2;
}

.wrap-login100 {
  width: 390px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  padding: 77px 55px 33px 55px;

  box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
}

/*------------------------------------------------------------------
[ Util ]*/

.rb {
  border: 2px solid red;
}

.bb {
  border: 2px solid blue;
}

/*------------------------------------------------------------------
[ Form ]*/

.login100-form {
  width: 100%;
}

.login100-form-title {
  display: block;
  font-family: Poppins-Bold;
  font-size: 30px;
  color: #333333;
  line-height: 1.2;
  text-align: center;
}

.login100-form-title i {
  font-size: 60px;
}

/*------------------------------------------------------------------
[ Input ]*/

.wrap-input100 {
  width: 100%;
  position: relative;
  border-bottom: 2px solid #adadad;
  margin-bottom: 37px;
}

.input100 {
  font-family: Poppins-Regular;
  font-size: 15px;
  color: #555555;
  line-height: 1.2;

  display: block;
  width: 100%;
  height: 45px;
  background: transparent;
  padding: 0 5px;
}

/*---------------------------------------------*/
.focus-input100 {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.focus-input100::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;

  background: #6a7dfe;
  background: -webkit-linear-gradient(left, #21d4fd, #b721ff);
  background: -o-linear-gradient(left, #21d4fd, #b721ff);
  background: -moz-linear-gradient(left, #21d4fd, #b721ff);
  background: linear-gradient(left, #21d4fd, #b721ff);
}

.focus-input100::after {
  font-family: Poppins-Regular;
  font-size: 15px;
  color: #999999;
  line-height: 1.2;

  content: attr(data-placeholder);
  display: block;
  width: 100%;
  position: absolute;
  top: 16px;
  left: 0px;
  padding-left: 5px;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.input100:focus+.focus-input100::after {
  top: -15px;
}

.input100:focus+.focus-input100::before {
  width: 100%;
}

.has-val.input100+.focus-input100::after {
  top: -15px;
}

.has-val.input100+.focus-input100::before {
  width: 100%;
}

/*---------------------------------------------*/
.btn-show-pass {
  font-size: 15px;
  color: #999999;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  position: absolute;
  height: 100%;
  top: 0;
  right: 0;
  padding-right: 5px;
  cursor: pointer;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.btn-show-pass:hover {
  color: #6a7dfe;
  color: -webkit-linear-gradient(left, #21d4fd, #b721ff);
  color: -o-linear-gradient(left, #21d4fd, #b721ff);
  color: -moz-linear-gradient(left, #21d4fd, #b721ff);
  color: linear-gradient(left, #21d4fd, #b721ff);
}

.btn-show-pass.active {
  color: #6a7dfe;
  color: -webkit-linear-gradient(left, #21d4fd, #b721ff);
  color: -o-linear-gradient(left, #21d4fd, #b721ff);
  color: -moz-linear-gradient(left, #21d4fd, #b721ff);
  color: linear-gradient(left, #21d4fd, #b721ff);
}

/*------------------------------------------------------------------
[ Button ]*/
.container-login100-form-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 13px;
}

.wrap-login100-form-btn {
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;
  border-radius: 25px;
  overflow: hidden;
  margin: 0 auto;
}

.login100-form-bgbtn {
  position: absolute;
  z-index: -1;
  width: 300%;
  height: 100%;
  background: #a64bf4;
  background: -webkit-linear-gradient(right,
      #21d4fd,
      #b721ff,
      #21d4fd,
      #b721ff);
  background: -o-linear-gradient(right, #21d4fd, #b721ff, #21d4fd, #b721ff);
  background: -moz-linear-gradient(right, #21d4fd, #b721ff, #21d4fd, #b721ff);
  background: linear-gradient(right, #21d4fd, #b721ff, #21d4fd, #b721ff);
  top: 0;
  left: -100%;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.login100-form-btn {
  font-family: Poppins-Medium;
  font-size: 15px;
  color: #fff;
  line-height: 1.2;
  text-transform: uppercase;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  width: 100%;
  height: 50px;
}

.wrap-login100-form-btn:hover .login100-form-bgbtn {
  left: 0;
}

/*------------------------------------------------------------------
[ Responsive ]*/

@media (max-width: 576px) {
  .wrap-login100 {
    padding: 77px 15px 33px 15px;
  }
}

/*------------------------------------------------------------------
[ Alert validate ]*/

.validate-input {
  position: relative;
}

.alert-validate::before {
  content: attr(data-validate);
  position: absolute;
  max-width: 70%;
  background-color: #fff;
  border: 1px solid #c80000;
  border-radius: 2px;
  padding: 4px 25px 4px 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0px;
  pointer-events: none;

  font-family: Poppins-Regular;
  color: #c80000;
  font-size: 13px;
  line-height: 1.4;
  text-align: left;

  visibility: hidden;
  opacity: 0;

  -webkit-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  -moz-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.alert-validate::after {
  content: "\f06a";
  font-family: FontAwesome;
  font-size: 16px;
  color: #c80000;

  display: block;
  position: absolute;
  background-color: #fff;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 5px;
}

.alert-validate:hover:before {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 992px) {
  .alert-validate::before {
    visibility: visible;
    opacity: 1;
  }
}

/*************************************************/
.side-menu {
  width: 15%;
  margin-right: 0;
}

.main-content {
  width: 84%;
  height: auto;
  margin-top: 4em;
  margin-right: 1em;
}

.div-logo {
  position: fixed;
  /* 고정 위치 */
  top: 0;
  /* 상단에서 0px의 위치 */
  left: 0;
  /* 왼쪽에서 0px의 위치 */
  height: 230px;
  background-image: url("/images/airport_logo.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right center;
}

.div-logo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.2),
      rgba(0, 0, 0, 0.5));
  /* 회색조 효과를 위한 선형 그라디언트 */
  mix-blend-mode: luminosity;
  /* 이미지에 그라디언트를 혼합 */
}

.head-card {
  height: 10em;
  margin-bottom: 0;
  margin-top: -2em;
  margin-left: 0.5em;
}

.main-card {
  height: 100%;
  align-self: stretch;
}

.border-radius-lg {
  border-radius: 0.2em;
}

.user-profile img {
  width: 6em;
  border-radius: 1em;
}

.p-title {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 0;
}

/******* active button ********/
.btn.active {
  background-color: tomato;
  color: white;
}

.page-title {
  font-size: 1.3rem;
  font-weight: bold;
}

.back-arrow {
  font-size: 1.7rem;
  margin-right: 1em;
  margin-top: 0.1em;
}

.container {
  width: 100%;
  padding: 0px 10px;
  margin: 0px 0px;
}

.mycolumn {
  margin-top: 1em;
  width: 100%;
}

.mycol {
  width: 100%;
}

.btn-shadow {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

.rb {
  border: 1px solid red;
}

.card .card-body {
  height: 50%;
}

.btn.active {
  background-color: tomato;
  color: white;
}

.btn {
  color: black;
}

.myshow {
  display: block;
}

.myhide {
  display: none;
}

.rb {
  border: 1px solid red;
}

.bb {
  border: 1px solid blue;
}

.wrap {
  max-width: 768px;
  margin: auto;
  width: 95%;
  min-height: 100vh;
  background: #fff;
}

.m_mainView {
  min-height: 100vh;
}

/* 상단 제목 있는 페이지 공통 */
.m_top {
  background: #fff;
  width: 100%;
  top: 0;
  z-index: 2;
  height: 56px;
  /*position: relative;*/
  position: sticky;
}

.m_top_wrap {
  height: 100%;
  max-height: 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /*border-bottom: 1px solid #ededed; position: fixed;*/
  border-bottom: 1px solid #dedede;
  width: 100%;
  background: #fff;
  max-width: 768px;
}

.m_top_wrap .m_top_sub {
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 46px;
  position: relative;
}

.m_top_wrap .m_top_sub .btnPrev {
  width: 46px;
  height: 100%;
  border: none;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
}

.m_top_wrap .m_top_sub .btnPrev img {
  height: auto;
  width: 10px;
}

.m_top_wrap .m_top_sub .tit {
  font-size: 16px;
  font-weight: 500;
}

.srch_input .srch_wrap .btn_submit {
  position: absolute;
  width: 40px;
  height: 40px;
  text-indent: -9999px;
  border: none;
  right: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
}

ul,
li {
  padding-left: 0;
}

.m_mainView main .inner ul li a::after {
  content: "";
  background: url(../images/common/ico-right-s.png) no-repeat;
  width: 10px;
  height: 15px;
  background-size: contain;
  position: absolute;
  right: 15px;
}

/* bottom sheet */
.bottom-sheet {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  opacity: 0;
  pointer-events: none;
  align-items: center;
  flex-direction: column;
  justify-content: flex-end;
  transition: 0.1s ease;
}

.bottom-sheet.show {
  opacity: 1;
  z-index: 5;
  pointer-events: auto;
}

.bottom-sheet .sheet-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  background: #000;
}

.bottom-sheet .bs-content {
  /* 
  position: relative;
  background: #fff;
  max-height: 100vh;
  max-width: 1150px;
  padding: 20px 18px 20px;
  transition: 0.3s ease; */
  width: 100%;
  height: 100%;
  transform: translateY(100%);
}

.bottom-sheet.show .bs-content {
  transform: translateY(0%);
}

.bottom-sheet .body {
  height: 100%;
  overflow-y: auto;
  padding: 15px 0 40px;
  scrollbar-width: none;
  max-height: 100%
}

.bottom-sheet .body::-webkit-scrollbar {
  width: 0;
}

.bottom-sheet .body h2 {
  font-size: 1.8rem;
}

.bottom-sheet .body p {
  margin-top: 20px;
  font-size: 1.05rem;
}

.bs-body {
  width: 100%;
  height: 100%;
}

.bs-full {}

.admin-tit {
  font-size: 1.3rem;
  font-weight: bold;
}

h4 {
  font-size: 1.1rem;
}

.page-tit {
  margin-top: 0.5rem;
  margin-bottom: 0.2rem;
  font-size: 1.5rem;
  font-weight: 500;
}

.d-flex-row-start {
  display: flex;
  flex-direction: row;
  justify-content: start;
}

.d-flex-row-center {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.d-flex-row-end {
  display: flex;
  flex-direction: row;
  justify-content: end;
}

.d-flex-row-between {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.d-flex-row-around {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}


.d-flex-column-start {
  display: flex;
  flex-direction: column;
  justify-content: start;
}

.d-flex-column-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.d-flex-column-between {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.f-1 {
  flex: 1;
}

.f-2 {
  flex: 2;
}

.f-3 {
  flex: 3;
}

.f-4 {
  flex: 4;
}

/* 인천국제공항보안 메인(231219) */
.mainpage {
  min-height: 100vh;
  /* background: #edf0f9; */
  background: #f9fafe;
}

.mainpage .main-top {
  position: relative;
  /*background: #f7f7f7; height: 180px; background: linear-gradient(135deg,  rgba(0,157,157,1) 1%,rgba(61,133,198,1) 100%);*/
}

/* .mainpage .main-top{position: relative; background: url(../images/common/img_main_bg.png)center bottom no-repeat; background-size: cover; height: 250px;} */
/* .mainpage .main-top::after{content: ""; display: block; background: linear-gradient(to bottom,  rgba(2,4,20,1) 0%,rgba(2,4,20,0) 100%); height: 200px; width: 100%; position: absolute; z-index: -1; top: 100%;} */
/* .mainpage .main-top::before{content: ""; display: block; position: absolute; z-index: 0; width: 100%; height: 100%; max-height: 220px; background: linear-gradient(135deg,  rgba(0,157,157,1) 1%,rgba(61,133,198,1) 100%);} */
.mainpage .main-top .top-tab {
  /* height: 56px; */
}

.main-top .main-logo {
  position: absolute;
  top: 15px;
  left: 17px;
  /* transform: translateY(-50%); */
  background: url(../images/common/main-logo01.png) center no-repeat;
  background-size: contain;
  width: 155px;
  height: 32px;
}

.main-top .main-logo a {
  display: flex;
  width: 100%;
  height: 100%;
}

.main-top .main-logo a span {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
}

.mainpage .main-top .top-right {
  right: 5px;
  top: 5px;
  width: 50px;
}

.top-tab .btn-mypage {}

.mainpage .main-info {
  display: flex;
  align-items: center;
  position: relative;
  border-radius: 15px;
  left: 0;
  /*background: #fff; background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(255,255,255,0.5) 100%);*/
  /*min-height: 120px;  background: #F9FAFF;*/
  padding: 18px 10px;
  margin-bottom: 15px;
  top: 12%;
  /*box-shadow: 5px 5px 10px rgba(0,0,0,0.08);*/
}

.main-info .info-wrap {
  position: relative;
  display: flex;
  width: 100%;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.main-info .info-wrap .info-thumb {
  width: 100%;
  display: flex;
  align-items: center;
  /*border-bottom: 1px solid #e8eaef; padding: 0 0 20px;*/
  margin-bottom: 15px;
}

.main-info .info-wrap .info-thumb .thumb-img {
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  /* margin-right: 10px; */
}

.main-info .info-wrap .info-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-info .info-wrap .info-detail {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.main-info .info-wrap .name {
  font-size: 18px;
  font-weight: 500;
  color: #333;
  text-align: left;
}

.main-info .info-wrap .name b {
  font-size: 18px;
  font-weight: 600;
}

.main-info .info-wrap .info-detail .info-tit {
  display: flex;
  align-items: center;
}

.main-info .info-wrap .detail-li {
  display: flex;
  flex-wrap: wrap;
  grid-gap: 3px;
}

.main-info .info-wrap .detail-li li {
  display: flex;
  align-items: center;
  margin-right: 15px;
}

.main-info .info-wrap .detail-li li .icon {
  display: flex;
  margin-right: 5px;
  width: 15px;
  height: 15px;
  align-items: flex-start;
  overflow: hidden;
}

.main-info .info-wrap .detail-li li .icon img {
  width: 15px;
}

.main-info .info-wrap .detail-li li .detail-tit {
  display: flex;
  align-items: center;
}

.main-info .info-wrap .detail-li li .detail-value {
  font-size: 13px;
  font-weight: 500;
  margin-left: 5px;
}

.main-info .info-wrap .detail-li li p {
  font-size: 13px;
  color: #4f4f4f;
  white-space: nowrap;
}

.main-info .info-wrap .detail-li li p span {
  font-size: 13px;
  margin-left: 2px;
}

.main-info .info-wrap .btn-info-detail {
  margin-top: 12px;
  font-size: 13px;
  font-weight: 500;
  padding: 5px 15px;
  border-radius: 50px;
  background: #eafeff;
  color: #00aab5;
}

.main-info .info-wrap .main-detail-btn {
  position: relative;
  display: flex;
  /* justify-content: flex-end; */
  margin-top: 15px;
  width: 100%;
  grid-gap: 8px;
}

.main-info .info-wrap .main-detail-btn a {
  position: relative;
  min-width: 80px;
  padding: 4px 25px 4px 12px;
  display: block;
  font-size: 14px;
  border-radius: 50px;
  color: #539aff;
  border: 1px solid #539aff;
  transition: 0.3s;
}

.main-info .info-wrap .main-detail-btn a:hover {
  background: #d2e0f2;
}

.main-info .info-wrap .main-detail-btn a:before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 1px solid #539aff;
  border-left: 1px solid #539aff;
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%) rotate(135deg);
}

.main-info .info-wrap .main-detail-btn a.on {
  background: #539aff;
  color: #fff;
  transition: all 0.3s;
}

.main-info .info-wrap .main-detail-btn a.on:hover {
  background: #1a6ada;
  border-color: #1a6ada;
}

.main-info .info-wrap .main-detail-btn a.on:before {
  border-color: #fff;
}

.main {
  /*padding: 40px 0 0;  background: #f7f7f7;*/
  height: calc(100vh - 70px);
}

.main .main-wrap {
  padding: 10px 17px 25px;
  background: #f9fafe;
}

.main-alert {
  display: none;
  margin-top: 13px;
}

.main-alert a {
  font-weight: 500;
  color: #fff;
  font-size: 14px;
  position: relative;
  display: flex;
  padding: 8px 15px;
  justify-content: center;
  align-items: center;
  /*background: #e8f0ff;*/
  background: #4a7ede;
  border-radius: 8px;
}

.main-alert a .alert-img {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #8bb6f2;
}

.main-alert a .alert-img img {
  width: 22px;
  height: 22px;
}

/* .main-alert a:after{content: "";display: block; background: url(../images/icons/ico-right-s.png)center no-repeat; width: 7px; height: 14px; background-size: contain;
position: absolute; right: 20px; top: 50%; transform: translateY(-50%);} */
.main .main-wrap .main-item {
  /*margin: 20px 0 0;*/
}

.main-item-wrap {
  /*padding: 0 15px;*/
}

.main-item-wrap .item-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 13px;
  position: relative;
}

.main-item-wrap .item-list li {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.main-item-wrap .item-list li a {
  background-color: #fff;
  display: flex;
  justify-content: flex-start;
  width: 100%;
  /* min-height: 110px; */
  padding: 65px 18px 18px;
  border-radius: 12px;
  position: relative;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.main-item-wrap .item-list li a:hover {
  background: #e7e7e7;
}

.main-item-wrap .item-list .item-icon {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: absolute;
  right: 15px;
  top: 15px;
  width: 50px;
  height: 50px;
  border-radius: 20px;
}

.main-item-wrap .item-list .item-icon img {
  width: 50px;
}

.main-item-wrap .item-list .main-item-info {}

.main-item-wrap .item-list .main-item-info h3 {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.main-item-wrap .item-list .main-item-info p {
  text-align: left;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.3;
  display: none;
}

.main-item-wrap .item-list p {
  text-align: center;
  color: #333;
  font-weight: 500;
  margin-top: 5px;
}

/* web login */
.w-login {
  width: 100%;
  height: 100vh;
  background: #f2f2f2;
}

.w-login .login-container {
  max-width: 1200px;
  position: relative;
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
}

.w-login .login-container .row {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  border-radius: 20px;
  overflow: hidden;
}

.w-login .login-container .row-cont {
  position: relative;
  padding: 5rem;
  display: flex;
  justify-content: center;
  background: #fff;
}

.w-login .login-container .row-cont .row-cont-wrap {
  width: 100%;
  max-width: 450px;
  display: flex;
  flex-direction: column;
}

.w-login .login-container .row-cont .row-cont-wrap .top-logo {
  display: flex;
}

.w-login .login-container .main-top {
  background: #0074f8;
}

.w-login .login-container .main-wrap {}

.w-login .login-container .login-tit {
  font-size: 42px;
  color: #333;
  font-weight: bold;
  font-family: "century gothic";
  margin-bottom: 10px;
}

.w-login .login-container .login-comment {
  margin-bottom: 40px;
  color: #888;
}

.w-login .login-container .login-input {}

.w-login .login-container .input-wrap {
  display: grid;
  grid-gap: 25px;
  margin-bottom: 40px;
}

.w-login .login-container .form-wrap {
  display: flex;
  flex-direction: column;
}

.w-login .login-container .form-wrap label {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}

.w-login .login-container .form-wrap .input-form {
  padding: 10px;
  border: 1px solid #d0d0d0;
  border-radius: 5px;
  height: 52px;
}

.w-login .login-container .login-input .btn-login {
  font-size: 17px;
  font-weight: bold;
  text-align: center;
  width: 100%;
  padding: 15px;
  border-radius: 10px;
  background: #0074f8;
  color: #fff;
  box-shadow: 5px 5px 15px rgba(0, 116, 248, 0.2);
}

.ui-datepicker-prev,
.ui-datepicker-next {
  position: relative;
  display: inline-block;
  width: 16px;
  /* 아이콘 너비 */
  height: 16px;
  /* 아이콘 높이 */
  cursor: pointer;
}

.ui-datepicker-prev::before,
.ui-datepicker-next::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Font Awesome 5 Free";
  /* 폰트 패밀리 설정 */
  font-weight: 900;
  /* 폰트 두께 설정 */
  font-size: 16px;
  /* 아이콘 크기 설정 */
}

.ui-datepicker-prev::before {
  content: "\f053";
  /* Font Awesome의 'chevron-left' 아이콘 코드 */
}

.ui-datepicker-next::before {
  content: "\f054";
  /* Font Awesome의 'chevron-right' 아이콘 코드 */
}

.blinking-button {
  animation: blink 2s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.hrms-blink {
  animation: blink-animation 2s steps(3, start) infinite;
}

@keyframes blink-animation {
  to {
    visibility: hidden;
  }
}



.swal2-container {
  z-index: 20000 !important;
}

.fs07 {
  font-size: 0.7rem !important;
}

.fs08 {
  font-size: 0.8rem !important;
}

.fs09 {
  font-size: 0.9rem !important;
}