/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 4/09/2014, 04:30:15 PM
    Author     : Jorge alejandro quiroz <alejo.jko@gmail.com>
*/

.arr-sexy-alert-bg{
    position: fixed;
    top: 0px;
    left: 0px;
    background-color: rgba(0,0,0,0.7);
    width: 100%;
    height: 100%;
    z-index: 10000;
    cursor:pointer;
}
.arr-sexy-alert-container{
    width: auto;
	max-width: 490px;
    background: url('../pics/bg.jpg');
    background-size: 100% 100%;
    border-radius: 5px;
    margin: auto;
    position: relative;
    top: 20%;
    box-shadow: 0px 0px 17px 4px rgba(64, 119, 216, 1);
    z-index: 10001;
    max-height: 80%;
    cursor: auto;
}   
.arr-sexy-alert-title{
    background: url('../pics/title.gif');
    padding: 10px;
    color: white;
    font-weight: 900;
    font-size: 17px;
    border-radius: 4px 4px 0px 0px;
    background-size: 20px;
    min-height: 10px;
}
.arr-sexy-alert-container.warning .arr-sexy-alert-title{
    background: url('../pics/title_warning.gif');
}
.arr-sexy-alert-container.warning{
    box-shadow: 0px 0px 17px 4px rgba(216, 161, 64, 1);    
}

.arr-sexy-alert-container.info .arr-sexy-alert-title{
    background: url('../pics/title_info.gif');
}
.arr-sexy-alert-container.info{
    box-shadow: 0px 0px 17px 4px rgba(64, 198, 216, 1);    
}
.arr-sexy-alert-container.danger .arr-sexy-alert-title{    
    background: url('../pics/title_danger.gif');
}
.arr-sexy-alert-container.danger{
    box-shadow: 0px 0px 17px 4px rgba(216, 64, 64, 1);    
}

.arr-sexy-alert-container.success .arr-sexy-alert-title{
    background: url('../pics/title_success.gif');
}
.arr-sexy-alert-container.success{
    box-shadow: 0px 0px 17px 4px rgba(64, 216, 70, 1);    
}

.arr-sexy-alert-body .arr-sexy-alert-body-inner{
    padding: 20px;
    font-size: 15px;
    width: 100%;
    height: 90%;
}

.arr-sexy-alert-body .arr-sexy-alert-body-inner .max-text{
    text-align: center;
    margin: auto;
    max-height: 60px;
    margin-bottom: 20px;
    overflow-y: scroll;
    overflow-x: hidden;
    padding: 10px;
}
/* .arr-sexy-alert-body .arr-sexy-alert-body-inner .max-text:after{
    
}

.arr-sexy-alert-body .arr-sexy-alert-body-inner .max-text:before{
    
} */

.arr-sexy-alert-body{
    padding: 10px;
    font-size: 13px;
    height:80%;
}
.arr-sexy-alert-footer{
    text-align: center;
    padding-bottom: 20px;
}

@media screen and (max-width: 500px){
	.arr-sexy-alert-container{
		width: 90%;
	}
}