.lpd-overlay {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transition-duration: 360ms;
}
.lpd-inner {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    transition-property: opacity;
    transition-duration: inherit;
    transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
    opacity: 0;
    background-color: rgba(0, 0, 0, 1);
}
.lpd-content {
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    width: 400px;
    height: 400px;
    margin: 0 auto;
    transform: translateY(-50%);
    padding: 20px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 1);
}
.lpd-inner__open {
    transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
    opacity: 0.3;
}
.lpd-content-close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

.lpd-content-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    margin: -25px 0 0 -25px;
}
.lpd-content-spinner svg {
    animation: rotate 2s linear infinite;
}

.lpd-content-spinner .path {
    animation: dash 1.5s ease-in-out infinite;
    stroke-linecap: round;
    stroke: #000;
}

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

@keyframes dash {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35;
    }
    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124;
    }
}
