.main-loader-wrapper {
    position: fixed;

    bottom: 20px;

    z-index: 1030;

    background: #fff;

    width: 100%;

    height: 100%;

    left: 0;

    top: 0;
    }

    .logo-main-loader {
    display: inline-block;

    position: absolute;

    left: 50%;

    top: 45%;

    transform: translate(-50%, -50%);

    text-align: center;

    line-height: 1.618;

    width: 100%;

    padding: 0 15px;
    }

    .logo-main-loader svg {
        width: 60px;
        height: 70px;
    }

    .logo-main-loader p {
    font-size: 16px;
    font-weight: bold;
    line-height: 2;
    }

    .main-loader-shape-wrapper {
    position: absolute;
    padding: 40px 0;
    bottom: 80px;
    left: 50%;
    }


    /* preloader image style*/
    .lds-ring {
    display: inline-block;

    position: absolute;

    width: 64px;

    height: 64px;

    left: 50%;

    top: 50%;

    transform: translate(-50%, -50%);
    }

    .lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 51px;
    height: 51px;
    margin: 6px;
    border: 5px solid #28a745;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #28a745 transparent transparent transparent;
    }

    .lds-ring-alt {
    display: block;
    margin-top: 50px;
    direction: rtl;
    text-align: center;
    }

    .lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
    }

    .lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
    }

    .lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
    }

    @keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
    }