<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
***************************************************************************************************************************
***************************************************************************************************************************

   ###    ##       ######## ########  ########  ######  
  ## ##   ##       ##       ##     ##    ##    ##    ## 
 ##   ##  ##       ##       ##     ##    ##    ##       
##     ## ##       ######   ########     ##     ######  
######### ##       ##       ##   ##      ##          ## 
##     ## ##       ##       ##    ##     ##    ##    ## 
##     ## ######## ######## ##     ##    ##     ######  

***************************************************************************************************************************
***************************************************************************************************************************/

.alert{
	background: #fff;
	border-width: 2px;
	border-style: solid;
	display: inline-block;	
	font-weight: bold;
	border-radius: 20px;
	cursor: default;
}
.alert,
.alert a{
	color: #3d251b;
}
.alert a{
	display: inline-block;
	line-height: 1;
	text-decoration: none;
}
.alert a::after{
	content: "";
	display: block;
	background: #3d251b;
	width:100%;	
	height: 1px;
	transform:scaleX(1);
	-webkit-transform:scaleX(1);
	-moz-transform:scaleX(1);
	-ms-transform:scaleX(1);
	-o-transform:scaleX(1);
	transition:all 0.15s;
	-webkit-transition:all 0.15s;
	-moz-transition:all 0.15s;
	-ms-transition:all 0.15s;
	-o-transition:all 0.15s;
}
.alert a:hover{
	text-decoration: none;
}
.alert a:hover::after{
	transform:scaleX(0);
	-webkit-transform:scaleX(0);
	-moz-transform:scaleX(0);
	-ms-transform:scaleX(0);
	-o-transform:scaleX(0);
}

/** CONTAINER *************************************************************************************************************
***************************************************************************************************************************/

.alert__container{
	position: relative;
	padding: 8px 20px;
}

/** SVG *******************************************************************************************************************
***************************************************************************************************************************/

.alert__container__svg{
	left: -12px;
	position: absolute;
	top: 8px;
	z-index: 1;
}
.alert__container__svg::after{
	content: "";
	display: block;
	position: absolute;
	left: 3px;
	right: 3px;
	top: 3px;
	bottom: 3px;
	background: #fff;
	border-radius: 50%;
	z-index: -1;
}

/** ANIMATION *************************************************************************************************************
***************************************************************************************************************************/

body.animation .alert__container__svg{
	animation: alertAnimate .25s 1 .5s;
}
@keyframes alertAnimate{
	0%{
		transform: scale(1);
	}
	50%{
		transform: scale(1.15);
	}
	100%{
		transform: scale(1);
	}

}

/*
****************************************************************************************************************************
 ######  ##     ##  ######   ######  ########  ######   ######  
##    ## ##     ## ##    ## ##    ## ##       ##    ## ##    ## 
##       ##     ## ##       ##       ##       ##       ##       
 ######  ##     ## ##       ##       ######    ######   ######  
      ## ##     ## ##       ##       ##             ##       ## 
##    ## ##     ## ##    ## ##    ## ##       ##    ## ##    ## 
 ######   #######   ######   ######  ########  ######   ######  

***************************************************************************************************************************/

.alert--success{
	border-color: #849644;
}
.alert--success .alert__container__svg{
	fill: #849644;
}

/*
****************************************************************************************************************************
##      ##    ###    ########  ##    ## #### ##    ##  ######   
##  ##  ##   ## ##   ##     ## ###   ##  ##  ###   ## ##    ##  
##  ##  ##  ##   ##  ##     ## ####  ##  ##  ####  ## ##        
##  ##  ## ##     ## ########  ## ## ##  ##  ## ## ## ##   #### 
##  ##  ## ######### ##   ##   ##  ####  ##  ##  #### ##    ##  
##  ##  ## ##     ## ##    ##  ##   ###  ##  ##   ### ##    ##  
 ###  ###  ##     ## ##     ## ##    ## #### ##    ##  ######   
***************************************************************************************************************************/

.alert--warning{
	border-color: #eec213;
}
.alert--warning .alert__container__svg{
	fill: #eec213;
}


/*
****************************************************************************************************************************
########     ###    ##    ##  ######   ######## ########  
##     ##   ## ##   ###   ## ##    ##  ##       ##     ## 
##     ##  ##   ##  ####  ## ##        ##       ##     ## 
##     ## ##     ## ## ## ## ##   #### ######   ########  
##     ## ######### ##  #### ##    ##  ##       ##   ##   
##     ## ##     ## ##   ### ##    ##  ##       ##    ##  
########  ##     ## ##    ##  ######   ######## ##     ## 

***************************************************************************************************************************/

.alert--danger{
	border-color: #C93A3A;
}
.alert--danger .alert__container__svg{
	fill: #C93A3A;
}
</pre></body></html>