@charset "utf-8";
/* CSS Document */

/* 부트스트랩 scss가 설정항목 제정의 */
.breadcrumb {
  padding: 0px;
  margin: 0px;
  background-color: #fff;
  border-radius: 0rem;
}

caption {
  padding: 0px;
  margin: 0px;
}

th, td {
  text-align: center;
}


.form-control:focus {
  border-color: #06041d;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(28, 4, 4, 0.6);
}


.card {
  border-top: 1px solid;
}

.card-header {
  font-size: 1.2rem;
}


/* 서브배너 택스트 그림자 */
.subBanner .inner h3 {
  text-shadow: 1px 1px 5px rgba(220, 222, 220, 0.728);
}


/* 제정의 */


/* 화면 드레그 막기 bsh */
.dragNo {
  -ms-user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  user-select: none;
}

/* 로더 bsh*/
.loader {

  width: 100%;
  height: 100%;
  position: fixed;
  left: 0px;
  top: 0px;
  background: #000;
  opacity: 0.4;
  z-index: 1000;
  display: flex;

}

.spinloader {
  margin: auto;
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #3498db;
  width: 120px;
  height: 120px;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


/* 제정의 */
.btn-primary {
  color: #fff;
  background-color: #3FA6C9;
  border-color: #238FB4;
}

.btn-primary:hover {
  color: #fff;
  background-color: #1E6C86;
  border-color: #238FB4;
}

.card {
  box-shadow: none;
}

.bg-base {
  background-color: #E9E8E8;
}


/* ////////////////////////// */
input[type="checkbox"] {
  -webkit-appearance: none;
  position: relative;
  width: 20px;
  height: 20px;
  cursor: pointer;
  outline: none !important;
  border: 1px solid #7a7cc8;
  border-radius: 2px;
  background: #fbfbfb;
}

input[type="checkbox"]::before {
  content: "\2713";
  position: absolute;
  top: 50%;
  left: 50%;
  overflow: hidden;
  transform: scale(0) translate(-50%, -50%);
  line-height: 1;
}

input[type="checkbox"]:hover {
  border-color: rgba(170, 170, 170, 0.5);
}

input[type="checkbox"]:checked {
  background-color: #0070C0;
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
}

input[type="checkbox"]:checked::before {
  border-radius: 2px;
  transform: scale(1) translate(-50%, -50%)
}


/* 뷰 중괄호 깜빡임 처리 */
[v-cloak] {
  display: none;
}
