* {
    font-family: Arial, sans-serif;
}

/* loader-start */
#loader {
    background-color: rgba(255, 255, 255, 0.8);
}

progress::-webkit-progress-bar,
progress::-webkit-progress-value {
    background-color: transparent;
}

.progress-background {
    right: 0;
    left: 0;
    color: #fff;
    background: #fff;
    position: absolute;
    top: 0;
    bottom: 0;
    height: 100%;
    z-index: 50000;
}

.progress-message {
    position: fixed;
    width: auto;
    min-width: -webkit-fit-content;
    min-width: -moz-fit-content;
    min-width: fit-content;
    padding: 20px;
    left: 50%;
    bottom: 0px;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 20px;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 80px;
}

.progress-message-loader {
    border: 1px solid #fff;
    background-color: #fff;
    height: 10px;
    /* width: 10px; */
    display: inline-block;
    -webkit-animation: 3s linear infinite loader-spin;
    animation: 3s linear infinite loader-spin;
}

.ProgressIndicator {
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    height: 243px;
    width: 243px;
    position: fixed;
    top: 50%;
    max-width: 100%;
    min-height: 12rem;
    min-width: 12rem;
}

.ProgressIndicator>progress {
    display: block;
    margin: auto;
    position: absolute;
    border: none;
    -webkit-animation: 3s linear infinite loader-spin;
    animation: 3s linear infinite loader-spin;
    background-image: linear-gradient(to right, #af0061, #581855);
    border-radius: 50%;
    width: 243px;
    height: 243px;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    color: transparent;
}

.ProgressIndicator::after,
.ProgressIndicator::before {
    content: "";
    display: block;
    position: absolute;
    border-radius: 50%;
}

.ProgressIndicator::after {
    background: url("../images/batikLogo.png") center/192px no-repeat #fff;
    height: 230px;
    width: 230px;
    margin-top: calc((243px - 230px) / 2);
    margin-left: calc((243px - 230px) / 2);
}

.ProgressIndicator::before {
    background-repeat: no-repeat;
    background-image: url("../images/aeroplane.png");
    z-index: 1;
    width: 50px;
    height: 50px;
    background-size: contain;
    background-color: transparent;
    -webkit-animation: 3s linear infinite move-in-circle;
    animation: 3s linear infinite move-in-circle;
    offset-path: circle(118px at center);
}

@-webkit-keyframes loader-spin {
    0% {
        -webkit-transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes loader-spin {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes move-in-circle {
    0% {
        offset-distance: 0%;
    }

    100% {
        offset-distance: 100%;
    }
}

@keyframes move-in-circle {
    0% {
        offset-distance: 0%;
    }

    100% {
        offset-distance: 100%;
    }
}

/* loader-end */