.cutoutContainer {
position: relative;
margin: 0 auto;
}
.cutImages {
width: 100%;
height: auto;
}
canvas {
position: absolute;
}
#cutImage {
z-index: 2;
background-color: rgba(255, 255, 255, 0.5);
position: absolute;
top: 0;
left: 0;
}
.loading {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
justify-content: center;
align-items: center;
}
.loading-spinner {
border: 0.5rem solid #f3f3f3;
border-top: 0.5rem solid #3498db;
border-radius: 50%;
width: 5rem;
height: 5rem;
animation: spin 1s linear infinite;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}