/* ga */
#warningModal {
    display: none;
    /* 隱藏模態對話框 */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 101 !important;
}

#warningContent {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
}

#countdown {
    font-size: 1.714rem;
    margin: 10px 0;
}

#closeBtn {
    margin-top: 10px;
    padding: 5px 10px;
    background: #007BFF;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* vue */
select,
option {
    -webkit-appearance: none;
    background-color: #fff;
    cursor: pointer;
}

.select_down,
.select_down_p {
    position: relative;
}

.select_down_p::after,
.select_down::after {
    position: absolute;
    right: .5rem;
    top: 50%;
    transform: translateY(-25%);
    width: 0px;
    height: 0px;
    content: '';
    border: 6px solid transparent;
    border-top: 6px solid #777777;
}

.select_down_p::after {
    right: .75rem;
    border-top: 6px solid #fff;
}

[v-cloak] {
    display: none;
}

/* others */

.cursor-pointer {
    cursor: pointer;
}

.text-decoration-none {
    text-decoration: none;
}

.opacity6 {
    opacity: 0.6;
}

label,
.noselect {
    -webkit-touch-callout: none;
    /* iOS Safari */
    -webkit-user-select: none;
    /* Safari */
    -khtml-user-select: none;
    /* Konqueror HTML */
    -moz-user-select: none;
    /* Old versions of Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
    /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}

/* select2 */
/* 單選option 背景 */
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #E7F3FC;
    color: #343434;
}

/* 單選placeholder */
.select2-container--default .select2-selection--single .select2-selection__placeholder {
    font-size: 1rem;
}

/* select2 */

/* captcha */
#captcha_container {
    display: flex;
    align-items: center;
    max-width: 100%;
    flex-wrap: wrap;
    row-gap: 0.5rem;
    color: #495057;
}

#captcha_container>span {
    white-space: nowrap;
}

#captchaImg {
    height: 3em;
}

#captchaTxt {
    width: 8.125rem;
    margin: unset;
    min-width: unset;
    --placeholder-font-size: 0.8em;
}

#captchaTxt::placeholder {
    font-size: var(--placeholder-font-size);
}

/* PDF */
.pdf-remark {
    text-align: end;
    font-size: 13px;
    color: gray;
}