#crop-wrapper {
    z-index: 10000000;
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

#crop-wrapper .header {
    position: relative;
    height: 48px;
    padding: 0 10px;
    background-color: #666;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    text-align: center;
}

#crop-wrapper .header .title {
    display: block;
    float: left;
    color: #fff;
    font-size: 18px;
    line-height: 48px;
}

#crop-wrapper .header .navbar {
    display: flex;
    float: right;
}

#crop-wrapper .header .navbar .navbar-item {
    display: block;
    width: 48px;
    height: 48px;
    background-color: transparent;
    border: 0;
    font-size: 16px;
    line-height: 50px;
    color: #fff;
    text-align: center;
    cursor: pointer;
}

#crop-wrapper .header .navbar #cropper-download.navbar-item:hover {
    background: #0b0;
}

#crop-wrapper .header .navbar #cropper-close.navbar-item:hover {
    background: #c00;
}

#crop-wrapper .main {
    position: absolute;
    top: 48px;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 10px;
    background-color: #000;
}

#crop-wrapper .main .editor {
    height: 100%;
}

#crop-wrapper .main .editor .canvas {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#crop-wrapper .main .editor .canvas #image {
    max-height: 100%;
    max-width: 100%;
    /* display: none; */
}

#crop-wrapper .main .editor .toolbar {
    position: absolute;
    display: flex;
    height: 32px;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    z-index: 1;
}

#crop-wrapper .main .editor .toolbar .toolbar-item {
    width: 32px;
    text-align: center;
    padding: 8px 0;
    background-color: rgba(0, 0, 0, .5);
    color: #fff;
    cursor: pointer;
}

#crop-wrapper .main .editor .toolbar .toolbar-item:hover {
    color: #b5b3b4;
}