@charset "UTF-8";

/****************************************************************************************
*************************                                  ******************************
*************************     RSAlert - Вслывающие окна    ******************************
*************************                                  ******************************
*****************************************************************************************
*************************                                  ******************************
*************************        Sayfutdinov Ruslan        ******************************
*************************                                  ******************************
****************************************************************************************/

#RSAlert
{
	-webkit-box-shadow: 1px 1px 5px #bbb;
	        box-shadow: 1px 1px 5px #bbb;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	max-width: 100%;
	opacity: 0;
	position: fixed;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
	width: 100%;
	z-index: 9999;
}
#RSAlert:hover, .RSAlert:focus
{
	cursor: default;
}
#RSAlert a
{
	color: inherit;
	text-decoration: underline;
}
#RSAlert > span
{
	padding: 7px 35px 7px 15px;
}
#RSAlert .closeRSAlert
{
	background: unset;
	background-color: unset;
	border: unset;
	color: inherit;
	cursor: pointer;
	font-size: 1rem;
	margin-right: 10px;
	outline: unset;
}
.RSAlert-primary
{
	background-color: #0065d4;
	border: 1px solid #0065d4;
	color: #fff;
}
.RSAlert-secondary
{
	background-color: #e4e4e4;
	border: 1px solid #adadad;
	border-top: 0px;
	color: #000;
}
.RSAlert-success
{
	background-color: #1faf14;
	border: 1px solid #1faf14;
	color: #fff;
}
.RSAlert-danger
{
	background-color: #f32a2a;
	border: 1px solid #f32a2a;
	color: #fff;
}
.RSAlert-warning
{
	background-color: #f98009;
	border: 1px solid #f98009;
	color: #fff;
}
.RSAlert-light
{
	background-color: #fff;
	border: 1px solid #adadad;
	border-top: 0px;
	color: #000;
}
.RSAlert-dark
{
	background-color: #757575;
	border: 1px solid #676767;
	color: #fff;
}
.RSAlert-info
{
	background-color: #68a0de;
	border: 1px solid #68a0de;
	color: #fff;
}
