/* PC TOP 버튼 */
#scrollTopPc {
    display: none;
    position: fixed;
    bottom: 64px; /* 브라우저 아래쪽 끝에서부터의 거리 */
    right: 15px; /* 브라우저 오른쪽 끝에서부터의 거리 */
    cursor: pointer;
    z-index: 99;
}

/* 모바일 TOP 버튼 */
#scrollTopMob {
    display: none;
    position: fixed;
    bottom: 64px; /* 브라우저 아래쪽 끝에서부터의 거리 */
    right: 15px; /* 브라우저 오른쪽 끝에서부터의 거리 */
    z-index: 99;
}

/* PC DOWN 버튼 */
#scrollDownPc {
    display: none;
    position: fixed;
    bottom: 20px; /* 브라우저 아래쪽 끝에서부터의 거리 */
    right: 15px; /* 브라우저 오른쪽 끝에서부터의 거리 */
    cursor: pointer;
    z-index: 99;
}

/* 모바일 DOWN 버튼 */
#scrollDownMob {
    display: none;
    position: fixed;
    bottom: 20px; /* 브라우저 아래쪽 끝에서부터의 거리 */
    right: 15px; /* 브라우저 오른쪽 끝에서부터의 거리 */
    z-index: 99;
}

/*alert css*/
.alert_body {
    position:absolute;
    top:25%;
    width:400px;
    padding:20px;
    background-color: rgb(255,255,255);
    border-radius:10px;
    box-shadow:0 2px 3px 0 rgba(34,36,38,0.15);
    transform:translateY(-50%);
    border-image: linear-gradient(67deg, #B1D5FF 39.05%, #FFE100 92.15%);
    border-width: 4px;
    border-style: solid;
    border-image-slice: 1;
}

.alert_body h2 {
    padding: 15px 0;
    font-size: 25px;
}

.alert_body .contents {
    padding: 15px 0;
    text-align: center;
}

.alert_body .alert_button {
    text-align: center;
}

.alert_body .alert_button button {
    margin-top: 20px;
    border-radius: 0.75rem;
    width: 80px;
    height: 35px;
    background: linear-gradient(67deg, #B1D5FF 39.05%, #FFE100 92.15%);
    color: black;
    font-size: 17px;
    font-weight: bold;
}

/*modal css*/
.modal{
    position:absolute;
    display:none;
    justify-content: center;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-color: rgba(0,0,0,0.4);
    z-index: 999;
}

.modal .modal_body{
    position:absolute;
    top:50%;
    width:400px;
    height:600px;
    padding:40px;
    background-color: rgb(255,255,255);
    border-radius:10px;
    box-shadow:0 2px 3px 0 rgba(34,36,38,0.15);
    transform:translateY(-50%);
}

.modal .modal_body .modal_contents {
    height: 98%;
}

.modal .modal_body .modal_contents h2 {
    height: 7%;
    align-content: center;
    margin: 0 5px 5px 0;
}

.modal .modal_body .modal_contents p {
    padding-left: 2px;
    height: 90%;
    overflow-y: auto;
}

.modal .modal_body .modal_contents table {
    border: 1px solid;
}

.modal .modal_body .modal_contents table thead {
    background: #dcdcdc;
}

.modal .modal_body .modal_contents table th{
    border: 1px solid;
}

.modal .modal_body .modal_contents table td {
    border: 1px solid gray;
    padding: 5px;
}

.modal_button {
    text-align: center;
    margin-top: 10px;
}

.modal_button button {
    width: 80px;
    height: 35px;
    border-radius: 20px;
    background: black;
}

.modal_button b {
    color: rgb(255, 255, 255);
    font-size: 17px;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    letter-spacing: -0.01681rem;
}

/* 스피너 css */
#loading_spinner{
    display: none;
    position: absolute;
    z-index: 999;
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0, 0.4);
}
.cv_spinner{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: stretch;
    justify-content: center;
    align-items: baseline;
    position: relative;
}
.spinner {
    width: 100px;
    height: 100px;
    border: 15px #ddd solid;
    border-top: 15px #2e93e6 solid;
    border-radius: 50%;
    animation: sp-anime 0.8s infinite linear;
}

.file_zone {
    border: 2px dotted #2a2926;
    opacity: 0.5;
    width: 100%;
    height: 20%;
    color: #92AAB0;
    text-align: center;
    font-size: 24px;
    margin-top: 10px;
    background-image: url("../images/drop_file.png");
    background-repeat: no-repeat;
    background-position: center;
}

.ptc_content {
    width: 100%;
    overflow-y: scroll;
    border: 2px dotted #2a2926;
    opacity: 0.5;
    height: 25.25em;
    resize: none;
    font-size : 13px;
    display: none;
}

@keyframes sp-anime {
    100% {
        transform: rotate(360deg);
    }
}