.popup__btn.disabled {
    pointer-events: none;
    background: #dfe3e4;
    animation: none !important;
}

.popup__btn.disabled span:last-child {
    background: #dfe3e4;
}

.popup__img video {
    width: 100%;
    border-radius: 10px;
}

.hint-progress-video .label__video,
.hint-progress-video video {
    width: 500px;
    border-radius: 10px;
}

.btn {
    background: #2479EE;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border: 0;
    display: inline-flex;
    gap: 8px;
    align-items: center;
    padding: 10px 12px;
    text-decoration: none;
    float: right;
}

.btn-highlight {
    background: #098F1E;
}

.btn-attention {
    display: inline-flex;
    transform: translate(10%, 40%);
    flex-direction: column-reverse;
    font-weight: 600;
    float: right;
}

.btn-attention svg {
    rotate: 160deg;
}

.btn-attention span {
    transform: translate(-70%, 5%);
}

.btn.pulse {
    animation: pulseBlue 3s infinite;
}

.btn-highlight.pulse {
    animation: pulseGreen 3s infinite;
}

@-webkit-keyframes pulseBlue {
    70% {
        box-shadow: 0 0 0 10px #0066FF33;
    }
    100% {

        box-shadow: 0 0 0 0 #0066FF33;
    }
}

@-webkit-keyframes pulseGreen {
    70% {
        box-shadow: 0 0 0 10px #14CE2733;
    }
    100% {

        box-shadow: 0 0 0 0 #14CE2733;
    }
}

.btn-wrapper {
    margin-top: -60px;
    margin-bottom: 50px;
    width: 100%
}

@media screen and (max-width: 900px) {
    .btn-wrapper {
        margin-top: 0;
        margin-bottom: 20px;
        width: inherit;
    }

    .btn-attention {
        flex-direction: row;
        transform: translate(0%, 0%);
    }

    .btn-attention span {
        transform: translate(-40%, 20%);
    }

    .btn-attention svg {
        rotate: -20deg;
        transform: scale(-1, 1) translateX(20%);
    }
}

.hint-progress-block {
    flex-direction: column;
    align-items: center;
}

.hint-progress-block .btn {
    align-self: center;
}
