/* .card-containder {max-height:calc(100vh - 222px); overflow:auto;} */
@font-face {
  font-family: 'Poppins';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-3Light.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  unicode-range: U+0030-0039;
}
body {
  font-family: 'Poppins,sans-serif';
}

#layout-wrapper {
  min-width: 1700px;
}

.card-containder::-webkit-scrollbar {
  width : 5px;
  height : 5px;
}

.card-containder::-webkit-scrollbar-thumb {
  border-radius : 10px;
  box-shadow : inset 0 0 5px #999999;
  background : #acacac;
  cursor: pointer;
}

.card-containder::-webkit-scrollbar-track {
  border-radius : 10px;
  background : #dddddd;
}

table tbody tr[data-href] {cursor:pointer;} 

table tbody tr:has(*:not(.non-hover):hover) {background:#f6fcff;}
.table {border-bottom:1px solid #eff2f7;}
.table thead tr * {text-align:center; vertical-align:middle;}
/* .table tbody tr * {vertical-align:middle;} */

.form-group.error > div {padding-bottom:25px; position: relative;}
.form-group span.message {position:absolute; bottom:0; display:block; color:#f46a6a;}
.form-group.error > label {color: #495057;}
.form-group.error input,
.form-group.error select,
.form-group.error .custom-control-label::before {border-color:#f46a6a;}

.form-control:disabled, .form-control[readonly] {background: #f5f5f5;}
/* .form-group[required] label::after {margin-left:10px; color:#f46a6a; content:'(* 필수)';} */

/* 드롭존 */


  /* 드랍존 */
  .dropzone.dz-clickable {
    text-align: center;
  }
  .dropzone .dz-preview .dz-remove {
    display: flex;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4em;
    color: #aaa;
    opacity: 0;
    transition: .3s;
    z-index: 9999;
  }
  .dropzone .dz-preview .dz-remove > i {
    cursor: pointer;
  }
  
  .dropzone .dz-preview .dz-remove:hover {
    opacity: 1;
  }

  /* 업로드 실패 리스트 */
  .fail-list {
    max-height: 300px;
  }
  .fail-list .table thead {
    position: static;
    top:-1px;
  }
  .fail-list .table th,
  .fail-list .table td {
    padding: 0.3em;
    font-size: 0.7em;
  }

#data-loading {
  position: fixed;
  width: 100%;
  height: 100vh;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #0005;
  z-index: 9999;
}
#data-loading span {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: gray;
  border-radius: 50%;
  animation: loading 1s linear infinite;
  background-color: #fff;
}

#data-loading span:nth-child(1) {animation-delay:0s;}
#data-loading span:nth-child(2) { animation-delay:0.2s; margin:0px 10px}
#data-loading span:nth-child(3) {animation-delay:0.4s;}

@keyframes loading {
  0%, 100% {
    opacity: 0;
    transform: scale(0.5);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}