#lastSecond {
    display: flex;
    justify-content: center;
}

.second-container {
    position: fixed;
    bottom: 5.75em;
    display: flex;
    justify-content: center;
    width: 100%;
    z-index: 6;
    font-size: 10px;
}

.last-second {
    display: flex;
    align-items: center;
    width: 35.5em;
    height: 4.1em;
    background: linear-gradient(90deg, #9a7eff 0%, #6b7efe 100%);
    box-shadow: 0em 0.1em 0.2em 0em rgba(41, 57, 163, 0.3);
    border-radius: 0.6em;
}

.second-container .image00 {
    width: 7.65em;
    height: 4.4em;
}

.second-container .title00 {
    font-size: 1.4em;
    color: #ffffff;
}

.second-container .title1 {
    font-size: 1.3em;
    margin-left: 0.6em;
    color: #ffea5c;
}

.second-container .wrapper {
    position: relative;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 4em;
    height: 4em;
    margin-right: 2.8em;
    margin-left: auto;
    font-size: 0.8em;
    background: #5763ff;
    border-radius: 2em;
}

.second-container .wrapper .container00 {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2em;
    overflow: hidden;
}

.second-container .wrapper .container1 {
    left: 2em;
}

.second-container .wrapper .container1 .halfCir {
    left: 0;
    border-radius: 0 4em 4em 0;
    transform-origin: 0 50%;
    animation: halfCir1 15s infinite linear;
}

.second-container .wrapper .container2 {
    left: 0;
}

.second-container .wrapper .container2 .halfCir {
    border-radius: 4em 0 0 4em;
    transform-origin: 2em 2em;
    animation: halfCir2 15s infinite linear;
}

.second-container .wrapper .center00 {
    position: absolute;
    top: 0.2em;
    left: 0.2em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 3.6em;
    height: 3.6em;
    background: #6b7efe;
    border-radius: 50%;
    color: #fff;
    /* font-size: 1em; */
}

.second-container .over00 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5.8em;
    height: 2.5em;
    margin-right: 0.8em;
    margin-left: auto;
    border-radius: 1.25em;
    border: 0.1em solid #ffffff;
    color: #fff;

    /* font-size: 1.2em; */
}

.second-container .halfCir {
    width: 2em;
    height: 4em;
    background: #fff;
}

@keyframes halfCir1 {

    50%,
    100% {
        transform: rotateZ(180deg);
    }
}

@keyframes halfCir2 {

    0%,
    50% {
        transform: rotateZ(0);
    }

    100% {
        transform: rotateZ(180deg);
    }
}

.cir {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 0.2em;
    height: 0.2em;
    margin: auto;
    background: #fff;
    border-radius: 50%;
}

.cir2 {
    transform-origin: 50% 2em;
    animation: cir2 15s infinite linear;
}

@keyframes cir2 {
    100% {
        transform: rotateZ(360deg);
    }
}