.color {
    color: #526fff !important;
    background-image: linear-gradient(#526fff, #526fff) !important;
}

.button-navigation,
.cta-block,
.button-cta,
.w-button {
    background-color: #526fff !important;
}

.steps-container {
    margin: auto;
}

.step {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 2rem 0;
    position: relative;
}

.step .circle {
    width: 40px;
    height: 40px;
    background-color: #526fff;
    color: white;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
    margin: 0.5em;
}

.step .text {
    background: rgba(73, 73, 73, .28);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    max-width: 75%;
}

.step:nth-child(odd) {
    flex-direction: row;
    justify-content: start;
    text-align: left;
}

.step:nth-child(even) {
    flex-direction: row-reverse;
    justify-content: end;
    text-align: right;
}

@media (max-width: 600px) {
    .step {
        flex-direction: column !important;
        text-align: center;
    }

    .step .text {
        max-width: 100%;
        margin-top: 1rem;
    }
}

#install-link {
    display: inline-block;
}

#install-link:hover {
    cursor: move;
}

#tutorial-video {
    border: 2px solid #526fff;
    border-radius: 5px;
}

.vjs-big-play-button {
    font-size: 5em;
}