.alert_container {
    padding: 20px;
    font-size: 14px;
    line-height: 20px;
    border: 1px solid transparent;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    width: 100%;
    display: none;
}
.alert_container .fa {
	margin-right: 10px;
}
.alert_container .alert_small_text {
    font-size: 12px;
    line-height: 15px;
    margin-top: 5px;
}

.alert_container_success {
	background-color: #DDF8EE;
    border-color: #DDF8EE;
}
.alert_container_success ,
.alert_container_success .alert_main_text ,
.alert_container_success .alert_small_text ,
.alert_container_success .fa ,
.alert_container_success a  {
	color: #11553C !important;
}
.alert_container_info {
	background-color: #F1F6FE;
    border-color: #F1F6FE;
}
.alert_container_info ,
.alert_container_info .alert_main_text ,
.alert_container_info .alert_small_text ,
.alert_container_info .fa ,
.alert_container_info a {
	color: #07265F !important;
}

.alert_container_danger {
	background-color: #FEF1F2;
    border-color: #FEF1F2;
}
.alert_container_danger ,
.alert_container_danger .alert_main_text ,
.alert_container_danger .alert_small_text ,
.alert_container_danger .fa ,
.alert_container_danger a {
	color: #F23047 !important;
}

.alert_container_warning {
	background-color: #FDF6E2;
    border-color: #FDF6E2;
}
.alert_container_warning ,
.alert_container_warning .alert_main_text ,
.alert_container_warning .alert_small_text ,
.alert_container_warning .fa ,
.alert_container_warning a {
	color: #604806 !important;
}

.alert_container_button {
    display: inline-block;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    padding: 3px 10px;
    margin-top: 10px;
    cursor: pointer;
    text-decoration: none;
}
.alert_container_info .alert_container_button {
    border: 1px solid #07265F;
	color: #07265F !important;
    background: #bce8f1;
}
.alert_container_success .alert_container_button {
	color: white !important;
    background: #11553C;
}
.alert_container_danger .alert_container_button {
	color: white !important;
    background: #F23047;
}
.alert_container_danger .alert_container_button_inverse {
    border: 1px solid #F23047; 
    background:transparent; 
    color: #F23047 !important;
}
.alert_container_warning .alert_container_button {
	color: white !important;
    background: #604806;
}


.alert_container.has_close {
	position: relative;
	padding-right: 40px;
}

.alert_container .close {
	background-image: url(/images/UI_icons/alerts/close_info.svg);
	display: block;
	width: 30px;
	height: 30px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 10px;
	opacity: 0.5;
	position: absolute;
	right: 6px;
	cursor: pointer;
	top: 15px;
	transition: opacity 0.3s ease;
}
.alert_container .close:hover {
	opacity: 1;
}


.alert_container td:nth-child(1) {
    width: 22px;
}
.alert_container td:nth-child(3) {
    width: 11px;
}

#global_floating_alerts_wrapper {
    position: absolute;
    top: 76px;
    z-index: 999999;
    width: 50%;
    right: 5px;
}
    #global_floating_alerts_wrapper .alert_container {
        margin-bottom: 5px;
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2)
    }
        #global_floating_alerts_wrapper .alert_container td:nth-child(3) .fa {
            margin: 0;
        }
        
.alert_container_close {
    cursor: pointer;
}
    
@media only screen and (max-width: 800px) {
    
    #global_floating_alerts_wrapper {
        width: 80%;
    }
}