.go {
    display: flex;
    flex-direction: column;
}

.go .btn {
    display: inline-block;
    position: relative;
    min-width: 170px;
    padding: 0 25px;
    height: 50px;
    background-color: #1acc8d;
    color: #fff;
    border-radius: 7px;
    border: 1px solid transparent;
    text-align: center;
    line-height: 50px;
    font-size: 14px;
    font-family: Helvetica, sans-serif;
    -webkit-font-smoothing: antialiased;
    -webkit-appearance: button;
    cursor: pointer;
    transition: background-color 0.5s;
}

.go .btn:hover {
    background-color: var(--altracka-green);
}

.go .btn {
    margin-bottom: 50px;
}

.go .btn.drawn {
    /* background-color: #a33; */
}

.go .btn.drawn:hover {
}

.remove {
    cursor: pointer;
}

.remove[data-state="closed"] {
    color: #222;
    opacity: 0;
    transition: all 0.2s;
}

.remove[data-state="open"] {
    opacity: 1;
    transition: all 0s;
}

.circ {
    opacity: 0;
    stroke-dasharray: 130;
    stroke-dashoffset: 130;
}

.tick {
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
}

.go .tick-icon {
    max-width: 120px;
    display: block;
    margin: 0 auto;
}

.go .circ {
    transition: all 2s;
}

.go .tick {
    transition: stroke-dashoffset 2s 1s ease-out;
}

.go .drawn+svg .path {
    opacity: 1;
    stroke-dashoffset: 0;
    background-color: #1acc8d;
    stroke: #1acc8d;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

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

@keyframes fade {
    0% {
        opacity: 0.2;
    }

    100% {
        opacity: 0.5;
    }
}