.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;
}
/* --------------------------- */

.nd-crop-container .nd-button {
    width: min-content;
    line-height: unset;
    height: unset;
    padding: 6px 12px;
    color: var(--black, #444);
    border: 1px solid #E9EBF0;
    text-align: center;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: "Noto Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;

}
.nd-crop-container .nd-button.nd-button-empty.active-default {
    background: #E9EBF0;
    border: 1px solid #E9EBF0;
}
.nd-crop-container .nd-crop-controls {
    width: 100%;
    max-width: 390px;
    margin-top: 17px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 29px;
}
.nd-crop-container .nd-crop-controls .nd-zoom-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 10px;
    color: #888;
}


.nd-crop-container .nd-crop-wrapper {
    width: 390px;
    height: 260px;
    background-color: #f0f0f0;
    overflow: hidden;
    position: relative;
    border-radius: 4px;

}
.nd-crop-container .nd-zoom-container {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 10px;
    color: #888;
}

.nd-crop-container .nd-zoom-container .nd-zoom-range {
    border-radius: 10px;
    opacity: 0.5;
    background: var(--gray, #B7BDCE);
    cursor: pointer;
    accent-color: #2d5e4f;
}

.nd-crop-container .nd-buttons-row {
    display: flex;
    gap: 10px;
    width: 100%;
    justify-content: center;

    align-items: center;

}

.nd-crop-container .nd-crop-info {
    display: flex;
    cursor: pointer;
}

.nd-crop-container.auto-loader .nd-crop-wrapper {
    position: relative;
}
.nd-crop-container.auto-loader .nd-crop-wrapper .auto-loader-container {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.50);
    display: flex;
    justify-content: center;
    align-items: center;
}

.nd-crop-container.auto-loader .nd-crop-wrapper .auto-loader-container svg {
animation: rotation 1s infinite linear;
}