/**
 * @category   EDP FORM
 * @package    PackageName
 * @author     Virgolino Almeida
 * @copyright  2015 Virgolino Almeida
 */

.lightbox{
    
position: fixed;
	background-color: rgba(0,0,0,.5);
	z-index: 5000;
	display: none;
	opacity: 0;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	height:auto;
	width: auto;
    
}

.lightbox-wrapper{
    
    position:relative;
    background-color:#F8F8F6;
    font-size:13px;
    color:#666;
    line-height: 16px;
    width:500px;
    height:auto;
    box-sizing:border-box;
    padding:15px;
    margin-left:auto;
    margin-right:auto;
    top:150px;
    text-align:center;
    margin-top:2px;
    margin-bottom:2px;
    border-radius:3px;
    box-shadow: 0px 0px 10px rgba(0,0,0,.3);
    /*-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;*/

}

.lightbox-container{
    
    position:relative;
    text-align:center;
    margin-bottom:15px;
    width:100%;
    box-sizing:border-box;
    height:auto;
    font-size:14px;
    line-height: 18px;
    padding: 10px;
    
}

.lightbox-buttons{
    
    position:relative;
    text-align:center;
    width:100%;
    box-sizing:border-box;
    height:auto;
    border-radius:3px;
    display: inline-table;
    
}

.lightbox-button-cancel{
    
    font-size:12px;
    color:#fff;
    background-color:#666;
    position:relative;
    box-sizing:border-box;
    padding:15px;
    bottom:0px;
    cursor:pointer;
    margin-top:2px;
    margin-bottom:2px;
    border:1px solid #666;
    border-radius:3px;
    text-transform: uppercase;
    
}

.lightbox-button-cancel:hover{
    
    font-size:12px;
    color:#fff;
    background-color:red;
    position:relative;
    box-sizing:border-box;
    padding:15px;
    bottom:0px;
    cursor:pointer;
    margin-top:2px;
    margin-bottom:2px;
    border:1px solid #ccc;
    border-radius:3px;
    text-transform: uppercase;
    
}

.lightbox-button-go{
    
    font-size:12px;
    color:#fff;
    background-color:#666;
    position:relative;
    box-sizing:border-box;
    padding:15px;
    bottom:0px;
    cursor:pointer;
    margin-top:2px;
    margin-bottom:2px;
    border:1px solid #666;
    border-radius:3px;
    text-transform: uppercase;
    
}

.lightbox-button-go:hover{
    
    font-size:12px;
    color:#fff;
    background-color:red;
    position:relative;
    box-sizing:border-box;
    padding:15px;
    bottom:0px;
    cursor:pointer;
    margin-top:2px;
    margin-bottom:2px;
    border:1px solid #ccc;
    border-radius:3px;
    text-transform: uppercase;
    
}

.nice-loader {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    animation: 2s linear 0s normal none infinite running spinloader;
    border-color: #3498db #fff #fff;
    border-image: none;
    border-radius: 50%;
    border-style: solid;
    border-width: 16px;
    height: 30px;
    width: 30px;
    margin-left:auto;
    margin-right:auto;
}

@keyframes spinloader {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@-webkit-keyframes spinloader {

      0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }

    }

@media only screen and (max-width: 500px){
   .lightbox-wrapper{
    
    position:relative;
    background-color:#F8F8F6;
    font-size:13px;
    color:#666;
    line-height: 16px;
    width:90%;
    height:auto;
    box-sizing:border-box;
    padding:15px;
    margin-left:auto;
    margin-right:auto;
    top:100px;
    text-align:center;
    margin-top:2px;
    margin-bottom:2px;
    border-radius:3px;
    box-shadow: 0px 0px 10px rgba(0,0,0,.3);
    /*-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;*/

} 
}