	
	/* 
	########################################

	Attention!

	This document is protected by copyright.
	SILV - All rights reserved © 2025.

	########################################
	*/

	/* */

	@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

	body{
		font-family: 'Inter', sans-serif;
		margin: 60px;
	}

	* {
	    box-sizing: border-box;
	}

	/**/

	.status-title{
		margin: 0;
	    font-size: 17px;
	    font-weight: normal;
	    display: flex;
	    align-content: center;
	    justify-content: flex-start;
	    align-items: center;
	}
	.status-title img{
		box-sizing: unset;
		width: 30px;
		padding-right: 16px;
		margin: 0;
		animation: blink 1.1s;
		animation-iteration-count: infinite;
	}

	@keyframes blink {
	  0% {
	    opacity: 0;
	  }
	  50% {
	    opacity: 1;
	  }
	  100% {
	    opacity: 0;
	  }
	}


	/**/
	@media only screen and (max-width: 800px) {
		body{
			margin: 60px 30px;
		}
		.status-title {
		    align-items: flex-start;
		}
	}