#circle-loader-wrap {
    overflow: hidden;
    position: relative;
    margin: 0 auto;
    width: 200px;
    height: 200px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, .1) inset;
    background-color: rgba(255, 255, 255, .15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 20px;
}
#circle-loader-wrap:after {
    content: '';
    position: absolute;
    left: 15px;
    top: 15px;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
}
#circle-loader-wrap div {
    overflow: hidden;
    position: absolute;
    width: 50%;
    height: 100%;
}
#circle-loader-wrap .loader {
    position: absolute;
    left: 100%;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 1000px;
    background-color: #2a5555;
}
#circle-loader-wrap .left-wrap {
    left: 0;
}
#circle-loader-wrap .left-wrap .loader {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    transform-origin: 0 50% 0;
    animation: loading-left 3.1s infinite linear;
}
#circle-loader-wrap .right-wrap {
    left: 50%;
}
#circle-loader-wrap .right-wrap .loader {
    left: -100%;
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
    transform-origin: 100% 50% 0;
    animation: loading-right 3.1s infinite linear;
}
@keyframes loading-left {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@keyframes loading-right {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(-360deg);
    }
}
.counter {
    position: absolute;
    color: #2a5555;
    font-size: 2rem;
    font-weight: bold;
    z-index: 10;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}



/* Container styles */
/* Container for the success animation */
/* Container for the GIF */
.gif-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* background-color: #f3f4f6; */
  }
  
  /* GIF Image Styling */
  .gif-image {
    width: 200px;  /* Set the width of your GIF */
    height: auto;  /* Maintain the aspect ratio */
    margin-bottom: 20px;
  }
  
  /* Success Message Styling */
  .success-message {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2a5555;
    text-align: center;
  }
  
  p.complete__text {
    text-align: center;
    color: #000000;
}

p.complete__text a {
    color: #2a5555;
    font-weight: 600;
}