/* CSS Document */

.modal#statusSuccessModal .modal-content, 
			.modal#statusErrorsModal .modal-content {
				border-radius: 30px;
			}
			.modal#statusSuccessModal .modal-content svg, 
			.modal#statusErrorsModal .modal-content svg {
				width: 100px; 
				display: block; 
				margin: 0 auto;
			}
			.modal#statusSuccessModal .modal-content .path, 
			.modal#statusErrorsModal .modal-content .path {
				stroke-dasharray: 1000; 
				stroke-dashoffset: 0;
			}
			.modal#statusSuccessModal .modal-content .path.circle, 
			.modal#statusErrorsModal .modal-content .path.circle {
				-webkit-animation: dash 0.9s ease-in-out; 
				animation: dash 0.9s ease-in-out;
			}
			.modal#statusSuccessModal .modal-content .path.line, 
			.modal#statusErrorsModal .modal-content .path.line {
				stroke-dashoffset: 1000; 
				-webkit-animation: dash 0.95s 0.35s ease-in-out forwards; 
				animation: dash 0.95s 0.35s ease-in-out forwards;
			}
			.modal#statusSuccessModal .modal-content .path.check, 
			.modal#statusErrorsModal .modal-content .path.check {
				stroke-dashoffset: -100; 
				-webkit-animation: dash-check 0.95s 0.35s ease-in-out forwards; 
				animation: dash-check 0.95s 0.35s ease-in-out forwards;
			}
			
			@-webkit-keyframes dash { 
				0% {
					stroke-dashoffset: 1000;
				}
				100% {
					stroke-dashoffset: 0;
				}
			}
			@keyframes dash { 
				0% {
					stroke-dashoffset: 1000;
				}
				100%{
					stroke-dashoffset: 0;
				}
			}
			@-webkit-keyframes dash { 
				0% {
					stroke-dashoffset: 1000;
				}
				100% {
					stroke-dashoffset: 0;
				}
			}
			@keyframes dash { 
				0% {
					stroke-dashoffset: 1000;}
				100% {
					stroke-dashoffset: 0;
				}
			}
			@-webkit-keyframes dash-check { 
				0% {
					stroke-dashoffset: -100;
				}
				100% {
					stroke-dashoffset: 900;
				}
			}
			@keyframes dash-check {
				0% {
					stroke-dashoffset: -100;
				}
				100% {
					stroke-dashoffset: 900;
				}
			}
			.box00{
				width: 100px;
				height: 100px;
				border-radius: 50%;
			}
			
			.modal-backdrop {
				position: fixed;
				top: 0;
				z-index: -1;
				width: 100vw;
				height: 100vh;
				background-color: #000;
			}	