.custom-loader-wrapper {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1060;
    display: flex;
    position: fixed;
    align-items: center;
    justify-content: center;
    background-color: rgba(56, 56, 56, 0.7);
}

.custom-loader-wrapper .loader-content {
    background-image: url('../media/logo.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 70px;
    background-color: #1e1e1e;
}

.custom-loader-wrapper .loader-content .loader-border {
    display: inline-block;
    vertical-align: text-bottom;
    border: .25em solid var(--Primary);
    border-right-color: transparent;
    -webkit-animation: spinner-border 3s linear infinite;
    animation: custom-loader-animation 3s linear infinite;
}


.custom-loader-wrapper .loader-content, .custom-loader-wrapper .loader-content .loader-border {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

@keyframes custom-loader-animation {
    to {
        transform: rotate(360deg);
    }
}
