.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fefefe;
    transition: opacity 0.75s, visibility 0.75s;
    z-index: 1040;
}

.loader-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 8rem;
    border-radius: 5px;
    /*box-shadow: var(--ow-img-border);*/
    width: 100%;
    padding-top: 2rem;
}

.loader {
    display: flex;
}

.loader-hidden {
    opacity: 0;
    visibility: hidden;
}

.loader:after {
    content: "";
    width: 100px;
    height: 100px;
    border-radius: 50%;
    animation: loading 5s infinite;
}

#loading-image {
    max-width: 40%;
    /*border-top-left-radius: 40px;*/
    /*border-top-right-radius: 40px;*/
}

 .dot {
      width: 15px;
      height: 15px;
      margin: 5px;
      border-radius: 50%;
      background-color: var(--main-color);
      opacity: 0.2;
      animation: blink 1.5s infinite;
    }

    .dot:nth-child(1) {
      animation-delay: 0s;
    }

    .dot:nth-child(2) {
      animation-delay: 0.3s;
    }

    .dot:nth-child(3) {
      animation-delay: 0.6s;
    }

    @keyframes blink {
      0%, 100% { opacity: 0.2; }
      50% { opacity: 1; }
    }