.popup__field.js-focus {
    border-color: rgba(243, 155, 178, 0.75);
    animation: shake 0.3s ease-in-out;
    transition: border-color 0.3s ease;
}

.gtp__field.js-focus {
    border-color: rgba(243, 155, 178, 0.75);
    animation: shake 0.3s ease-in-out;
    transition: border-color 0.3s ease;
}

.popup__policy.js-focus {
    animation: shake 0.3s ease-in-out;
    transition: border-color 0.3s ease;
}

.gtp__policy.js-focus {
    animation: shake 0.3s ease-in-out;
    transition: border-color 0.3s ease;
}

.js-focus .gtp__policy-box{
    border-color: rgba(243, 155, 178, 0.75);
}

.js-focus .popup__policy-box{
    border-color: rgba(243, 155, 178, 0.75);
}

#comparison-mobile .popup__policy[hidden]{
    display: none;
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    20% {
        transform: translateX(-4px);
    }

    40% {
        transform: translateX(4px);
    }

    60% {
        transform: translateX(-3px);
    }

    80% {
        transform: translateX(3px);
    }
}