.cropper-view-box {
    outline: #FFF !important;
    outline-color: #FFF !important;
}
.cropper-line {
    opacity: .7;
    background-color: #FFF !important;
}
.cropper-point {
    width: 10px;
    height: 10px;
    background-color: #FFF !important;
    border-radius: 10px;
    opacity: 1;
}
.cropper-point.point-e, .cropper-point.point-n, .cropper-point.point-w, .cropper-point.point-s {
    display: none;
}
.cropper-modal {
    background-color: #000;
    opacity: .5;
}

.cropper-line.line-e, .cropper-line.line-w {
    width: 3px;
}

.cropper-line.line-n, .cropper-line.line-s {
    height: 3px;
}

.cropper-point.point-ne {
    right: -7px;
    top: -7px;
}
.cropper-point.point-nw {
    left: -7px;
    top: -7px;
}
.cropper-point.point-sw {
    bottom: -7px;
    left: -7px;
}
.cropper-point.point-se {
    height: 10px;
    width: 10px;
    bottom: -7px;
    right: -7px;
}


.nd-cropped-container {
    position: relative;
    max-width: 650px;
    max-height: 400px;
    background: #eee;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    border-radius: 15px;

}
.nd-cropped-container img {
    height: 100%;
    object-fit: contain;
    z-index: 2;
}
.nd-cropped-bg {
    /* filter: blur(5px); */
    background-position: center;
}
.nd-cropped-bg::before {
    content: ""; /* Обязательно для псевдоэлемента */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Копируем background-image из inline style */
    background-image: inherit; /* Наследует background-image от .cropped */
    background-size: cover; /* Применяем стиль, как у обычного background */
    background-position: center center;
    background-repeat: no-repeat;
    filter: blur(10px); /* Уровень размытия */
    z-index: 1; /* Помещаем размытый фон под основным изображением */
    /* Опционально: чтобы размытие выглядело полнее, можно немного увеличить масштаб */
    transform: scale(3);
    transform-origin: center center;
}