.js-error-dialog {
    display: inline-block;
    max-width: 400px;
    width: 90%;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    box-shadow: 0px 0px 8px #b7b7b7;
}
.js-error-dialog a{
    color: #000;
    font-weight: bold;
    font-size: 12px;
}
.js-error-dialog a:active {
    opacity: .7;
}
.js-error-dialog button {
    border: none;
    background: none;
    padding: 12px 20px;
    font-size: 14px;
    width: 49%;
    text-align: center;
    outline: none;
    -webkit-box-flex: 1;
    display: block;
}
.js-error-dialog button:active {
    opacity: .7;
}
.js-error-dialog p {
    padding: 0;
    margin: 0;
}
.js-error-dialog .detail {
    font-size: 14px;
    padding: 10px 20px;
}
.js-error-dialog .info {
    padding: 6px 0 0;
}
.js-error-dialog .footer {
    background: #f2f2f2;
    display: -webkit-box;
}
.js-error-dialog .gray-color {
    color: #9e9e9e;
}
.js-error-dialog .blue-color {
    color: #03a9f4;
}
.js-error-dialog .icon {
    display: inline-block;
    background: red;
    margin-left: 20px;
    padding: 0 10px;
    color: #fff;
}

.js-error-dialog textarea {
    width: 100%;
}
/* #_pj{
    position: fixed;
    z-index: 222;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
}
#_pj > div:first-child{
    font-size: 14px;
    color: #000;
    padding: 10px 20px;
    margin: 0;
    border-top: 4px solid red;
    background: #fff;
}

#_pjw {
    overflow: auto;
    height: 100%;
}

#_pjs {
    width: 30px;
    height: 30px;
    background-color: #ff7c4a;
    margin: 10px auto;
    animation: rotateplane 1.2s infinite ease-in-out;
}

@keyframes rotateplane {
    0% { transform: perspective(120px) }
    50% { transform: perspective(120px) rotateY(180deg) }
    100% { transform: perspective(120px) rotateY(180deg)  rotateX(180deg) }
} */