.preload-search {
    position: fixed;
    top: 0;
    left: 0;
    float: left;
    width: 100%;
    min-height: 100dvh;
    max-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    background-color: #00000052;
    backdrop-filter: blur(1px);
    z-index: 9999999;
}

.preload-quick-view {
    position: relative;
    border-radius: 10px;
    width: 100%;
    height: 100%;
    min-width: 300px;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    background-color: transparent;
    backdrop-filter: blur(1px);
    z-index: 9999999;
}

.preload-search:last-child,
.preload-quick-view:last-child {
    margin-right: 0;
}

.line {
    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 15px;
    background-color: #fff;
}
.preload-quick-view .line {
    background-color: #2196F3;
}

.load .line:nth-last-child(1) {
    animation: loadingC 0.6s 0.1s linear infinite;
}

.load .line:nth-last-child(2) {
    animation: loadingC 0.6s 0.2s linear infinite;
}

.load .line:nth-last-child(3) {
    animation: loadingC 0.6s 0.3s linear infinite;
}

@keyframes loadingC {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(0, 15px);
    }
    100% {
        transform: translate(0, 0);
    }
}