.dmt-spinner-wrapper {
    margin: 0 auto;
    text-align: center;
    padding: 10px;

    &.dmt-content-spinner {
        .dmt-spinner-loader {
            width: 60px;
            margin-top: 30px;
        }

        .dmt-spinner-msg {
            color: $dark-gray;
            font-size: 14px;
        }
    }

    .dmt-spinner-loader {
        position: relative;
        margin: 0 auto;
        width: 100px;

        &:before {
            content: '';
            display: block;
            padding-top: 100%;
        }

        .dmt-spinner-circular {
            width: 100%;
            height: 100%;
            -webkit-animation: rotate 2s linear infinite;
            animation: rotate 2s linear infinite;
            -webkit-transform-origin: center center;
            -ms-transform-origin: center center;
            transform-origin: center center;
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            margin: auto;

            .dmt-spinner-path {
                stroke-dasharray: 1, 200;
                stroke-dashoffset: 0;
                stroke-linecap: square;
                stroke: $light-blue;
                -webkit-animation: dash 1.5s ease-in-out infinite;
                animation: dash 1.5s ease-in-out infinite;
            }
        }
    }

    .dmt-spinner-msg {
        color: $light-gray;
        font-size: 16px;
        margin-top: 26px;
    }
}


@-webkit-keyframes
rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes
rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes
dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35;
    }
    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124;
    }
}

@keyframes
dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35;
    }
    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124;
    }
}

.dmt-global-loader {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    @include dark-blue-rgba(0.8);
    display: none;
    height: 100%;

    &.dmt-loader-visible {
        z-index: 9999;
        @include flexbox();

        + div {
            overflow: hidden;
        }
    }

.dmt-confirmed-loader {
    text-align: center;
    padding: 10px;
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    position: relative;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;

    .dmt-confirmed-loader-icon {
        //width: 60px;
        font-size: 90px ;
        color: $light-blue;
        margin: 43px;

    }

    .dmt-error-loader-icon {
      //width: 60px;
      font-size: 90px ;
      margin-bottom: 113px;
      line-height: 90px;

    }

    .dmt-confirmed-msg {
        color: $light-gray;
        font-size: 16px;
        margin-top: 26px;
    }
}




}