@-webkit-keyframes box-shadow {
    0%,
    100% {
        -webkit-box-shadow: 0 0;
        box-shadow: 0 0
    }
    50% {
        -webkit-box-shadow: 0 0 0 4px;
        box-shadow: 0 0 0 4px
    }
}

@keyframes box-shadow {
    0%,
    100% {
        -webkit-box-shadow: 0 0;
        box-shadow: 0 0
    }
    50% {
        -webkit-box-shadow: 0 0 0 4px;
        box-shadow: 0 0 0 4px
    }
}

@-webkit-keyframes zoom-animation {
    from,
    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
    50% {
        -webkit-transform: scale3d(1.5, 1.5, 1);
        transform: scale3d(1.5, 1.5, 1)
    }
}

@keyframes zoom-animation {
    from,
    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
    50% {
        -webkit-transform: scale3d(1.5, 1.5, 1);
        transform: scale3d(1.5, 1.5, 1)
    }
}