#sb-finder-preload {
    z-index: 2147483637;
    position: fixed;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.65);
}

#sb-finder-preload.show {
    top: 0;
}

#sb-finder-preload .sb-finder-preload-content {
    width: 100%;
    background: linear-gradient(90deg, #f0f0f0 25%, #cccccc 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    height: 22%;
    margin: 0;
    animation: sbPreLoaderAnimation 2s infinite;
    display: flex;
    justify-content: end;
    font-size: 30px;
    padding: 35px 24px 14px;
}

#sb-finder-preload .sb-finder-preload-content div {
    padding: 6px;
}

#sb-finder-preload .sb-finder-preload-content svg {
    color: black;
    width: 24px;
    height: 24px;
    cursor: pointer;
}

@keyframes sbPreLoaderAnimation {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.sb-finder-overlay {
  position: absolute;
  cursor: pointer;
  background: transparent;
}
