/* Стили подсказки по умолчанию */
        .snackbar {
            background-color: #323232;
            color: #FFFFFF;
            font-size: 14px;
            border-radius: 2px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
            height: 0;
            -moz-transition: -moz-transform 0.2s ease-in-out, opacity 0.2s ease-in, height 0 linear 0.2s, padding 0 linear 0.2s, height 0 linear 0.2s;
            -webkit-transition: -webkit-transform 0.2s ease-in-out, opacity 0.2s ease-in, height 0 linear 0.2s, padding 0 linear 0.2s, height 0 linear 0.2s;
            transition: transform 0.2s ease-in-out, opacity 0.2s ease-in, height 0 linear 0.2s, padding 0 linear 0.2s, height 0 linear 0.2s;
            -moz-transform: translateY(200%);
            -webkit-transform: translateY(200%);
            transform: translateY(200%);
        }
        .snackbar.snackbar-opened {
            padding: 14px 15px;
            margin-bottom: 20px;
            height: auto;
            -moz-transition: -moz-transform 0.2s ease-in-out, opacity 0.2s ease-in, height 0 linear 0.2s;
            -webkit-transition: -webkit-transform 0.2s ease-in-out, opacity 0.2s ease-in, height 0 linear 0.2s;
            transition: transform 0.2s ease-in-out, opacity 0.2s ease-in, height 0 linear 0.2s, height 0 linear 0.2s;
            -moz-transform: none;
            -webkit-transform: none;
            transform: none;
            -webkit-animation: blim 1s infinite;
            -moz-animation:    blim 1s infinite;
            -o-animation:      blim 1s infinite;
            animation:         blim 1s infinite;
        }
        .snackbar.result.snackbar-opened {
            -webkit-animation: null;
            -moz-animation:    null;
            -o-animation:      null;
            animation:         null;
        }
        .snackbar.result.good.snackbar-opened {
            border-radius: 2px;
            border-style: solid;
            border-color: #1c7430;
            color: #32c555;

        }
        .snackbar.result.attention.snackbar-opened {
            border-radius: 2px;
            border-style: solid;
            border-color: #ffc107;
            color: #ffc107;
        }
        .snackbar.result.bad.snackbar-opened {
            border-radius: 2px;
            border-style: solid;
            border-color: #c82333;
            color: #ff2f48;
        }

        .snackbar.warning.snackbar-opened {
            background-color: #c82333;
            -webkit-animation: null;
            -moz-animation:    null;
            -o-animation:      null;
            animation:         null;
        }
        
        @-webkit-keyframes blim {
            0%   { opacity: 1; }
            50% { opacity: 0; }
            100% { opacity: 1; }
        }