/*!
 * jQuery confirmOn Plugin
 * https://github.com/invetek/jquery-confirmon
 *
 * Copyright 2013 Loran Kloeze - Invetek
 * Released under the MIT license
 */


.confirmon-overlay {
        background-color: black;
        background-color: rgba(0, 0, 0, 0.60);        
        width: 100%;
        height: 100%;
        margin: 0;
        top: 0;
        left: 0;
        position: fixed;
        z-index: 999999;
        display: none;
        
}

.confirmon-box {
        background-color: #fff;
        color: #333;
        border: none;  /*24-5-15*/
        padding: 15px 39px;/*5-5-15*/
        text-align: center;
        font-weight: bold;
        font-size: 15px;
        z-index: 999999;
        display: none;
        position: fixed;
        margin-left: -15%;
        width: 27%;/*5-5-15*/
        left: 50%;
        top: 185px;
        
		/*5-5-15 new start*/
		box-shadow:0 0 10px #444;
		-moz-box-shadow:0 0 10px #444;
		-webkit-box-shadow:0 0 10px #444;
		-o-box-shadow:0 0 10px #444;
		/*5-5-15 new end*/

}

/*5-5-15 new start*/
.confirmon-content {
    line-height: 21px;
    padding: 0 0 6px;
}
/*5-5-15 new end*/

.confirmon-box button {
        margin: 10px 5px;
        padding:10px 30px;
        text-align: center;
        background-color: #ddd; /*24-7-15*/
        border:none;
        color: #222; /*24-7-15*/
        font-weight: bold;
		transition:ease-in-out 0.5s;
		-webkit-transition:ease-in-out 0.5s;
		-moz-transition:ease-in-out 0.5s;
}

.confirmon-box button:hover {
 	 	transition:ease-in-out 0.5s;
		-webkit-transition:ease-in-out 0.5s;
		-moz-transition:ease-in-out 0.5s;
        background-color:#cacaca; /*24-7-15*/
        cursor: pointer;
}

/*21-7-15 new start*/
.confirmon-box {
        margin-left: -140px !important;
        max-width: 350px;
        width: 100%;
        position: fixed;
        top:25%;
}
/*21-7-15 new End*/