.product-loader{
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: 10000;
}

.product-loader__img{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 150px;
    box-sizing: border-box;
    position: relative;
}

.product-loader__img::before{
    display: block;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid black;
    border-radius: 50%;
    box-sizing: border-box;
    animation: verticalRotate 2s linear infinite;
}

@keyframes verticalRotate {
    0% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}