.cropper-btn {
    cursor: pointer;
}

.modalImgCropper {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 50;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.cropper-modal-content {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border-radius: 12px;
    max-height: 400px;
    max-width: 600px;
    height: 100%;
    width: 100%;
    position: relative;
}

.close-cropper {
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0px 0px 5px 2px #0000004D;
    background-color: #ffffff;
    position: absolute;
    top: -10px;
    right: -10px;
    cursor: pointer;
}

#cropper-container {
    height: 336px;
    width: 100%;
    padding: 16px;
    padding-bottom: 0px;
}

.cropper-container {
    width: 100% !important;
    height: 100% !important;
    border-radius: 8px;
    overflow: hidden;
}

.cropper-image {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 2px;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    border: 1px solid #ededed;
    padding: 3px;
    display: flex;
    background-color: rgb(239 239 239 / 80%);
}

.cropper-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
}

.cropper-action {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cropper-footer .btn-grey {
    background-color: #f1f3f7;
    border: none;
    border-radius: 8px;
    padding: 8px 24px;
    font-size: 16px;
    line-height: 24px;
    color: #000000;
}

.rotate-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px !important;
    max-height: 40px !important;
}

.cropper-footer .btn-dark {
    background-color: #000000;
    border: none;
    border-radius: 8px;
    padding: 8px 24px;
    font-size: 16px;
    line-height: 24px;
    color: #ffffff;
    transition: all 0.3s;
}

.cropper-footer .btn-dark:hover {
    background-color: #262626;
}