
.shadow-pulse {
    animation: shadow-pulse 3s infinite;
}

@keyframes shadow-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(9, 73, 170, 0.603);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(0, 140, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 153, 255, 0);
    }
}

/*  */
.container-roadmap {
    box-sizing: content-box;
    direction: ltr;
    margin: 48px auto;
}

.step-list {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.step-list__item {
    counter-increment: step-counter;
    position: relative;
}

    .step-list__item:before {
        content: counter(step-counter);
        font-weight: 300;
        color: #d8d8d8;
    }

    .step-list__item h2 {
        font-size: 24px;
        line-height: 30px;
        color: var(--black-color);
    }

    .step-list__item .icons {
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
    }

        .step-list__item .icons img {
            width: 100%;
            height: 100%;
        }

        .step-list__item .icons i {
            font-size: 120px;
        }

        .step-list__item .icons svg {
            font-size: 100px;
        }

    .step-list__item .body {
        font-size: 14px;
        color: var(--text-secondary);
        text-align: end;
    }

    .step-list__item .content {
        display: flex;
        flex-direction: row;
        padding-bottom: 18px;
    }

    .step-list__item:first-child .icons {
        background: #ffd0352d;
    }

    .step-list__item:nth-child(2) .icons {
        background: #e4f3ff;
        color: #3ca7ff;
    }

    .step-list__item:nth-child(3) .icons {
        color: #ffd000;
        background: #fffbc3;
    }

    .step-list__item:nth-child(4) .icons {
        color: #ffb517;
        background: #fff4dc;
    }

    .step-list__item:nth-child(odd) .content {
        justify-content: flex-start;
    }

    .step-list__item:nth-child(even) .content {
        justify-content: flex-end;
    }

    .step-list__item:first-child > .step-list__item__inner:before {
        content: none;
    }

    .step-list__item:last-child > .step-list__item__inner:after {
        content: none;
    }

    .step-list__item + li > div {
        margin-top: -1px;
    }

@media screen and (max-width: 750px) {
    .step-list__item {
        display: flex;
    }

        .step-list__item:before {
            content: counter(step-counter);
            position: relative;
            font-size: 36px;
            line-height: 42px;
            font-weight: 300;
            color: #000;
            margin-right: 12px;
        }

        .step-list__item .icons {
            order: 0;
            width: 40px;
            height: 40px;
            padding: 9px;
            position: absolute;
            left: -9px;
            top: 42px;
        }

            .step-list__item .icons i {
                font-size: 24px;
            }

            .step-list__item .icons svg {
                font-size: 20px;
            }

        .step-list__item .body {
            order: 1;
            margin-top: 8px;
            margin-left: 14px;
        }

        .step-list__item .content {
            align-items: flex-start;
        }

            .step-list__item .content:before {
                content: "";
                position: absolute;
                border-left: #d8d8d8;
                height: 90%;
                left: 9px;
                bottom: 0;
                display: block;
                width: 1px;
                background: #d8d8d8;
                top: 84px;
            }

        .step-list__item:last-child .content:before {
            content: none;
        }

        .step-list__item + li {
            margin-top: 70px;
        }
}

@media screen and (min-width: 751px) {
    .step-list__item + li {
        margin-top: 84px;
    }

    .step-list__item:before {
        content: counter(step-counter);
        position: absolute;
        font-size: 90px;
        line-height: 1;
        font-weight: 300;
        color: #d8d8d8;
    }

    .step-list__item .icons {
        width: 174px;
        height: 174px;
        padding: 48px;
    }

    .step-list__item .body {
        flex: 0 1 36%;
        margin-top: 84px;
    }

    .step-list__item .content {
        align-items: flex-end;
    }

    .step-list__item > .step-list__item__inner {
        position: relative;
    }

        .step-list__item > .step-list__item__inner:before,
        .step-list__item > .step-list__item__inner:after {
            border-width: 0px;
            border-style: solid;
            border-color: #d8d8d8;
            display: block;
            content: "";
            position: absolute;
            height: 42px;
            width: calc(36% - 42px);
        }

    .step-list__item:nth-child(odd) > .step-list__item__inner {
        text-align: right;
    }

        .step-list__item:nth-child(odd) > .step-list__item__inner:before,
        .step-list__item:nth-child(odd) > .step-list__item__inner:after {
            border-left-width: 1px;
            left: calc(33.3333% - 21px);
        }

        .step-list__item:nth-child(odd) > .step-list__item__inner:before {
            border-top-width: 1px;
            border-top-left-radius: 42px;
            margin-top: -42px;
        }

        .step-list__item:nth-child(odd) > .step-list__item__inner:after {
            border-bottom-width: 1px;
            border-bottom-left-radius: 42px;
            margin-bottom: -42px;
        }

    .step-list__item:nth-child(odd):before {
        left: 0;
        margin-left: 33.3333%;
        transform: translateX(-100%);
    }

    .step-list__item:nth-child(odd) .icons {
        margin-left: 72px;
    }

    .step-list__item:nth-child(even) > .step-list__item__inner:before,
    .step-list__item:nth-child(even) > .step-list__item__inner:after {
        border-right-width: 1px;
        right: calc(33.3333% - 21px);
    }

    .step-list__item:nth-child(even) > .step-list__item__inner:before {
        border-top-width: 1px;
        border-top-right-radius: 42px;
        margin-top: -42px;
    }

    .step-list__item:nth-child(even) > .step-list__item__inner:after {
        border-bottom-width: 1px;
        border-bottom-right-radius: 42px;
        margin-bottom: -42px;
    }

    .step-list__item:nth-child(even):before {
        right: 0;
        margin-right: 33.3333%;
        transform: translateX(100%);
    }

    .step-list__item:nth-child(even) .icons {
        margin-right: 72px;
    }

    .step-list__item:nth-child(even) .body {
        order: 1;
    }
}


/**/
.ios {
    background: white;
    z-index: 999;
    height: 100%;
    width: 100%;
    display: flex;
    visibility: hidden;
    opacity:0;
    transition:0.2s all linear;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: fixed;
    padding: 10px;
    border-radius: 12px;
    gap: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}


    .ios > .title-text {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .ios .descriptions {
        font-size: 14px;
        text-align: center;
        color: #666;
        margin-bottom: 20px;
    }

.steps-pwa {
    text-align: right;
    font-size: 15px;
    width: 100%;
    list-style-type: decimal !important;
    padding: 0 20px;
    gap: 20px;
    display: flex;
    flex-direction: column;
}

    .steps-pwa li {
        display: flex;
        justify-content: space-between;
        gap: 10px;
    }

.ios .button {
    display: block;
    background: #1a65fe;
    color: white;
    padding: 12px;
    width: 100%;
    text-align: center;
    border-radius: 18px;
    text-decoration: none;
    margin-top: 20px;
    font-size: 16px;
}


.dashSelect {
    position: relative;
    display: inline-block;
    margin-left: 12px;
}

#earnCoinTypeSelector {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    outline: 0;
    box-shadow: none;
    /*text-align: center;*/
    border: 1px solid var(--border-color) !important;
    border-radius: 6px;
    /*margin-top: 6px;*/
    background-image: none;
    background: var(--bg-default);
    flex: 1;
    color: var(--black-color);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9px 10px;
    cursor: pointer;
    font-size: 1em;
}

.dashSelect::after {
    font-family: "Font Awesome 6 Pro";
    font-weight: 500;
    content: "\f078";
    position: absolute;
    top: 20%;
    left: -10px;
    color: gray;
    padding: 0 1em;
    cursor: pointer;
    pointer-events: none;
    transition: .25s all ease;
}
