/**
Theme Name: nyfvm
Author: Brainstorm Force
Author URI: http://wpastra.com/about/
Description: Astra is the fastest, fully customizable & beautiful theme suitable for blogs, personal portfolios and business websites. It is very lightweight (less than 50KB on frontend) and offers unparalleled speed. Built with SEO in mind, Astra comes with schema.org code integrated so search engines will love your site. Astra offers plenty of sidebar options and widget areas giving you a full control for customizations. Furthermore, we have included special features and templates so feel free to choose any of your favorite page builder plugin to create pages flexibly. Some of the other features: # WooCommerce Ready # Responsive # Compatible with major plugins # Translation Ready # Extendible with premium addons # Regularly updated # Designed, Developed, Maintained & Supported by Brainstorm Force. Looking for a perfect base theme? Look no further. Astra is fast, fully customizable and beautiful theme!
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: nyfvm
Template: astra
*/


.fvm-anim-scale-slow img {
    animation: anim-scale 2.5s infinite;
}

.fvm-anim-scale-fast img {
    animation: anim-scale 2s infinite;
}

@keyframes anim-scale {

    0%,
    100% {
        transform: scale(0.9);

    }

    50% {
        transform: scale(1.1);
    }
}

.sv-anim-rotate img {
    -webkit-animation: rotating 16s linear infinite;
}

@-webkit-keyframes rotating {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}

.sv-anim-zoom-out {
    animation: zoom-out 1s 0.3s forwards;
}

@keyframes zoom-out {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 0;
        -webkit-transform: scale3d(2.3, 2.3, 2.3);
        transform: scale3d(2.3, 2.3, 2.3);
    }
}

.sv-anim-fade-right-out img {
    animation: fade-right-out 1s 0.3s forwards;
}

.sv-anim-fade-left-out img {
    animation: fade-left-out 1s 0.3s forwards;
}

@keyframes fade-right-out {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(50%);
        transform: translateX(50%);
    }
}

@keyframes fade-left-out {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

.sv-btn-disabled {
    opacity: 0.5;
    pointer-events: none;
}

.sv-valid-form:before {
    content: 'Пожалуйста, выберите один из пунктов';
    font-size: 16px;
    line-height: 21px;
    color: red;
    font-weight: 600;
    margin: 10px 0;
}

.sv-quiz-result-block {
    display: none;
}

@keyframes beat-2 {
    to {
        transform: scale(1.3);
    }
}

.sv-anim-beat-500 img {
    animation: beat-2 .5s infinite alternate;
}

.sv-anim-beat-800 img {
    animation: beat-2 .8s infinite alternate;
}