.box-modal {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    color: #3c3c3c;
    position: relative;
    width: 500px;
    padding: 16px;
    _font: 14px/18px Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
}
.box-modal_close { position: absolute; right: 10px; top: 6px; font-size: 11px; line-height: 15px; color: #999; cursor: pointer; }
.box-modal_close:hover { color: #666; }

.box-loading {
    background: #fff none repeat scroll 0 0;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    color: #3c3c3c;
    margin: 8px auto 0;
    padding: 5px 10px;
    position: relative;
    text-align: center;
    width: 100px;
}
.box-loading-out {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}
.box-loading.in {
    opacity: 1;
    transform: translate(0px, 0px);
}
.box-loading {
    opacity: 0;
    transform: translate(0px, -25%);
    transition: transform 0.3s ease-out 0s, opacity 0.15s linear 0s;
}
