html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.text-blue {
    color:#0026ff
}

.text-red {
    color: #ff0000
}
/*驗證不過提示*/
.vd-badge {
    display: inline;
    padding: 0.2em 0.6em 0.3em;
    font-size: 1.2rem;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25em;
    margin: 0.3rem 0 0 0.2rem;
}

.badge-danger {
    color: #fff;
    background-color: #dc3545;
}

/*驗證不過提示 end*/

/* Bootstrap-dialog4 */

.modal-header {
    padding: 0.8rem;
}

.bootstrap-dialog .modal-header {
    border-top-left-radius: calc(0.3rem - 1px);
    border-top-right-radius: calc(0.3rem - 1px);
}
/*
.bootstrap-dialog.type-primary .modal-header {
    background-color: #3c8dbc;
}*/

.close {
    color: white;
}
/* Bootstrap-dialog4 */

/* 導覽列 */
.nav-item:hover .nav-link {
    background-color: rgb(224, 219, 219)
}

.blinking {
    animation: blink 1s step-start infinite;
}

@keyframes blink {
    50% {
        opacity: 0; /* 中途隱藏 */
    }
}


