.image_editor * {
    box-sizing: content-box;
}

.image_editor canvas {
    display: inline-block;
}

.image_editor a {
    cursor: pointer;
}

.image_editor .loading {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 9999;
    display: none;
}



.image_editor .loading p {
    position: absolute;
    top: 50%;
    left: 50%;
}
.image_editor .loading p span.label{
    display: block;
    width: 100px;
    margin-left: -50px;
    font-size: 12px;
    text-align: center;
    background-color: black;
    color: white;
    padding: 10px 0;
}
.image_editor .loading p span.description{
    display: block;
    width: 500px;
    margin-left: -250px;
    font-size: 12px;
    text-align: center;
}

.image_editor .image_edit_loader {
    display: none;
}

.image_editor .BtnGray,
.image_editor .BtnRed {
    font-size: 12px;
    padding: 10px 40px;

    display: inline-block;
    color: #fff;
    text-align: center;
    background-color: #be1211;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-transition: 1s background-color;
    -moz-transition: 1s background-color;
    -ms-transition: 1s background-color;
    -o-transition: 1s background-color;
    transition: 1s background-color;
}

.image_editor .BtnGray.disabled,
.image_editor .BtnRed.disabled {
    opacity: 0.4;
    cursor: default;
}

.image_editor .BtnBlue {
    background-color: #383838;
}

.image_editor .cancel {
    font-size: 10px;
    color: gray;
    text-align: right;
}

.image_editor .canvas_container_wrapper {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

.image_editor .canvas_container_wrapper .modal .attention {
    font-size: 12px;
    color: #666;
}

.image_editor .canvas_container_wrapper .modal {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    padding: 20px;
    background-color: #FFFFFF;
    border-radius: 5px;
    width: 700px;
    height: 570px;
    text-align: center;
    box-shadow: 0 0 20px 0 #000000;
    -moz-box-shadow: 0 0 20px 0 #000000;
    -webkit-box-shadow: 0 0 20px 0 #000000;
}

.image_editor .canvas_container_wrapper .modal .header {
    height: 20px;
    text-align: right;
}

.image_editor .canvas_container_wrapper .modal .body {
    height: 440px;
    padding: 20px 0;
    text-align: center;
}

.image_editor .canvas_container_wrapper .modal .footer {
    height: 50px;
    text-align: center;
}

.image_editor.koshien .ImgUploadArea {
    color: black;
    font-size: 14px;
    box-sizing: border-box;
    padding: 0 10px;
    line-height: 36px;
}