#splasha {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #171717;
    background-size: 100%100%;
  }
  .icon{
    position: absolute;
    left: 50%;
    top: 150%;
    transform: translate(-50%,-150%);
    /* padding: 5px; */
    background: url('./images/icon.png') no-repeat;
    background-size: 100% 100%;       
    overflow: hidden;
    height: 55px;
    width: 359px;
    /* border-radius: 25px; */
}

@property --progress {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 0%;
  }

.g-progress {
    /* margin: auto; */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 369px;
    height: 5px;
    border-radius: 5px;
    background: linear-gradient(90deg, #0f0, #0ff var(--progress), transparent 0);
    border: 1px solid #eee;
    transition: .2s --progress;
}

.g-progress:hover {
    cursor: pointer;
    --progress: 0%;
}

.stripes span {
    background-size: 30px 30px;
    background-image: linear-gradient(135deg, rgba(255, 255, 255, .15) 25%, transparent 25%,
                        transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%,
                        transparent 75%, transparent);            
    
    animation: animate-stripes 1s linear infinite;             
}

@keyframes animate-stripes {
    0% {background-position: 0 0;} 100% {background-position: 60px 0;}
}