		@keyframes loading {
			from {
				opacity:1;
			}
			to {
				opacity:0;
				z-index:-1;
			}
		}
		@keyframes bias {
			from {
				opacity:0;
				top:20px;
			}
			to {
				opacity:1;
				top:0;
			}
		}
		@keyframes zoom {
			from {
				transform: scale(0);
				opacity:0;
			}
			to {
				transform: scale(1);
				opacity:1;
			}
		}
		@keyframes line {
			to {
				stroke-dashoffset: 0;
				opacity:1;
			}
		}
		@keyframes border {
			from {
				transform: scale(1);
				opacity:1;
			}
			to {
				transform: scale(1.8);
				opacity:0;
			}
		}
		@keyframes fade {
			from {
				opacity:0;
			}
			to {
				opacity:1;
			}
		}

		.animation-delay-100 {
			animation-delay: 100ms!important;
		}
		.animation-delay-200 {
			animation-delay: 200ms!important;
		}
		.animation-delay-300 {
			animation-delay: 300ms!important;
		}
		.animation-delay-500 {
			animation-delay: 500ms!important;
		}
		.animation-delay-600 {
			animation-delay: 600ms!important;
		}
		.animation-delay-610 {
			animation-delay: 610ms!important;
		}
		.animation-delay-700 {
			animation-delay: 610ms!important;
		}
		.animation-delay-800 {
			animation-delay: 800ms!important;
		}
		.animation-delay-900 {
			animation-delay: 900ms!important;
		}
		.animation-delay-1000 {
			animation-delay: 1000ms!important;
		}
		.animation-delay-1100 {
			animation-delay: 1100ms!important;
		}
		.animation-delay-1200 {
			animation-delay: 1200ms!important;
		}
		.animation-delay-1300 {
			animation-delay: 1300ms!important;
		}

		.animation-pause {
			animation-play-state: paused!important;
		}

		.loading {
			background: #15181B;
			position: fixed;
			left: 0;
			top: 0;
			height: 100%;
			width: 100%;
			z-index: 1000;
		}
		body.load .loading {
			animation: loading 400ms cubic-bezier(0.64, 0.04, 0.35, 1) 400ms;
			animation-fill-mode: forwards;
		}
		.animation-bias {
			transition: all 400ms cubic-bezier(0.64, 0.04, 0.35, 1);
			position:relative;
			top:20px;
			opacity:0;
		}
		body.load .animation-bias {
			animation: bias 400ms cubic-bezier(0.64, 0.04, 0.35, 1) 400ms;
			animation-fill-mode: forwards;
			animation-delay: 400ms;
		}
		.animation-zoom-1 {
			opacity:0;
		}
		body.load .animation-zoom-1 {
			animation: zoom 400ms cubic-bezier(0.64, 0.04, 0.35, 1) 400ms;
			animation-fill-mode: forwards;
			animation-delay: 1750ms;
			transform-origin: center;
		}
		.animation-border.open {
			transform: scale(0);
			opacity:0;
			transition: all 400ms cubic-bezier(0.64, 0.04, 0.35, 1);
		}
		body.load .animation-line-1 {
			animation: line 400ms linear alternate;
			animation-fill-mode: forwards;
			opacity:0;
		    stroke-dasharray: 300;
		    stroke-dashoffset: 300;
		}
		body.load .animation-line-2 {
			animation: line 400ms linear alternate;
			animation-fill-mode: forwards;
			opacity:0;
		    stroke-dasharray: 400;
		    stroke-dashoffset: 400;
		}
		.animation-border {
			position: relative;
			display: block;
		}
		.animation-border:after {
			content: "";
			border: 1px solid #7318FB;
			border-radius: 100px;
			position: absolute;
			left: 0;
			top: 0;
			width: 149px;
			height: 149px;
			animation: border 2000ms cubic-bezier(0.54, 0, 0.8, -0.02);
			animation-iteration-count:infinite;
		}
		.animation-border:hover:after {
			border: 1px solid #7318FB;
		}
		.animation-zoom-2 {
			opacity:0;
			animation: zoom 800ms cubic-bezier(0.64, 0.04, 0.35, 1) 800ms;
			animation-fill-mode: forwards;
			transform-origin: center;
		}
		.animation-fade {
			animation: fade 400ms cubic-bezier(0.64, 0.04, 0.35, 1) 400ms;
			animation-fill-mode: forwards;
			animation-delay: 400ms;
			opacity:0;
		}

    /* override_ivanov.css */
    section.audit .box6 .box .block4 ul li:before {
        content: "";
        background: url(../images/ico21.svg) center center no-repeat;
        background-size: cover;
    }

    section.audit .box6 .box .block4 ul li.active:before {
        background: url(../images/ico22.svg) center center no-repeat;
    }