.overlay-d {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    background: rgba(1, 1, 1, 0.5);
    z-index: 1040;
}

.overlay-d-inner {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: absolute;
}

.spinner-d-container {
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 30px 60px;
    border-radius: 10px;
    text-align: center;
}

.spinner-d-container > .spinner {
    width: 35px;
    height: 35px;
    display: inline-block;
    border-width: 4px;
    border-color: #eee;
    border-top-color: #131952;
    animation: spin-d 1s infinite linear;
    border-radius: 100%;
    border-style: solid;
    z-index: 9999;
}

.spinner-d-container > .content {
    margin-top: 1rem;
}

@keyframes spin-d {
  100% {
    transform: rotate(360deg);
  }
}