/* 전역 적용 CSS */

/* http://meyerweb.com/eric/tools/css/reset/
   v4.0 | 20180602
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
    display: block;
}
/* HTML5 hidden-attribute fix for newer browsers */
*[hidden] {
    display: none;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
/* <- reset-css */

/* 라우팅 애니메이션 */
.switch-wrapper {
    position: relative;
    display: block;
}

.switch-wrapper > div {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.app-view {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.content-view {
    letter-spacing: -0.05em;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    padding-left: 12rem;
}

.content-view > div {
    position: relative;
    height: 100%;
    overflow-y: auto;
}

@media (min-width: 768px) {
    .modal-dialog {
        width: 700px;
    }
}

@media (min-width: 1000px) {
    .modal-dialog {
        width: 1000px;
    }
}

.search-panel button {
    margin-left: 5px;
}

.detail-view button{

}

.detail-view .required {

    padding-top: 5px;
    padding-bottom: 5px;
}

.detail-view label.required::before {
    content: '*';
    color: red;
    /*position: absolute;*/
    /*left: 5px;*/
}

.detail-view .tooltip {
    position: absolute;
    top: -25px;
}

.detail-view .RadioGroup {
    padding-top: 5px;
    padding-bottom: 5px;

}

.detail-view .RadioGroup label {
    display: inline-block;
}

label {
    margin-bottom: 0;
}

.table>thead>tr>th {
    vertical-align: middle;
}

.long-button {
    font-size: .9rem;
    padding-left:50px;
    padding-right:50px;
}

.short-button {
    font-size: .9rem;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup {
    position : fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background-color: rgba(0,0,0,0.5);
    z-index: 1;
}

.popup_inner {
    position: absolute;
    left: 25%;
    right: 25%;
    top: 25%;
    bottom: 25%;
    margin: auto;
    background: white;
}

.DraftEditor-editorContainer{
    height: 500px;
    overflow: auto;
}

.table th, .table td {
    vertical-align: middle;
}

.qna-grid-highlight{
    background-color: #eeeeee;
}

.input-group-append .btn{
    z-index: 0;
}

.page-item.active .page-link {
    z-index: 0;
}

.divider {
    height: 1em;
    border-bottom: 1px solid #ced4da;
    margin-bottom: 1rem;
}

.modal-select {
    width: 75%;
    max-width: none!important;
}

.form-group{
    /*margin-bottom: 0;*/
}