body {
    background-color: #E4E4EE;
}

#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    z-index: 1000;
}

.spinner {
    border: 5px solid rgba(0, 0, 0, 0.067);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border-left-color: #F77C00;
    animation: spin 1s ease infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.croppie-container.solvio-cropper .cr-slider-wrap {
    margin-top: 45px;
}
body {
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none;    /* Firefox */
    -ms-user-select: none;     /* Internet Explorer/Edge */
    user-select: none;         /* Non-prefixed version, currently supported by Chrome, Opera and Edge */
  }
  
  ::selection {
    background: transparent; /* Remove the default selection background */
    color: inherit;          /* Ensure the text color remains unchanged */
  }