body {
    font-family: "Prompt", "Helvetica", "Arial", sans-serif;
    font-display: swap;
}

.overlay {
    height: 100%;
    width: 100%;
    /* display: none; */
    position: fixed;
    z-index: 1050;
    top: 0;
    left: 0;
    background: rgba(142, 142, 142, 0.74);
}

.overlay-content {
    font-family: "Helvetica", "Arial", sans-serif;
    font-size: 24px;
    color: #ffffff;
    position: relative;
    top: 35%;
    width: 100%;
    text-align: center;
    margin-top: 30px;
}

#please-wait:after {
    content: " .";
    animation: dots 1s steps(5, end) infinite;
}

@keyframes dots {

    0%,
    20% {
        color: rgba(0, 0, 0, 0);
        text-shadow: 0.25em 0 0 rgba(0, 0, 0, 0), 0.5em 0 0 rgba(0, 0, 0, 0);
    }

    40% {
        color: white;
        text-shadow: 0.25em 0 0 rgba(0, 0, 0, 0), 0.5em 0 0 rgba(0, 0, 0, 0);
    }

    60% {
        text-shadow: 0.25em 0 0 white, 0.5em 0 0 rgba(0, 0, 0, 0);
    }

    80%,
    100% {
        text-shadow: 0.25em 0 0 white, 0.5em 0 0 white;
    }
}

#turn_device {
    background-color: #222222;
    height: 100%;
    width: 100%;
    display: none;
    position: fixed;
    z-index: 1100;
    top: 0;
    left: 0;
}

#turn_device .seg_img {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#turn_device .main_img {
    max-width: 100%;
    max-height: 100%;
}

#turn_device .close {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 20px;
    height: 20px;
}

#turn_device .close img {
    width: 100%;
    height: 100%;
}