.blueberry-overlay {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transition-duration: 360ms;
}
.blueberry-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);
}
.blueberry-content {
    position: absolute;
    top: 10%;
    right: 0;
    left: 0;
    width: 400px;
    height: 400px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 1);
}
.blueberry-inner__open {
    transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
    opacity: 0.7;
}
.blueberry-content-close {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 10px;
    border: 0;
    outline: none;
    background: none;
    cursor: pointer;
}

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

.blueberry-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;
    }
}

@media (max-height: 720px) {
    .blueberry-content{
        top:0;
    }

}
