/* 
    Document   : common
    Created on : Jan 30, 2015, 03:51:56 pm
    Author     : Karthikeyan
    Description: Styles which are called commonly.
*/

/* ================================================================================= */



/* ---------------------------- */



/* --------------------------- Popup Styles ---------------------------- */

.alert
{
    background: url(../images/grey-bg.png);
    position: fixed;
    height: 100%;
    top: 0;
    left: 0;
    width: 100%;
    display: none;
    font-family: Arial;
    z-index: 99999;
}
.alert .alert_inner
{
    width: 450px;
    margin: 0 auto;
    margin-top: 150px;
    border-radius: 5px;
    padding: 5px;
    position: relative;
    display: none;
}
.alert .alert_inner h4
{
    padding: 8px 5px;
    border-radius: 5px;
    font-size: 20px;
    padding-left: 35px;
    text-align:left;
}
.alert .alert_content
{
    padding: 15px 8px;
    border-bottom: 1px solid #D5CACA;
    font-size: 18px;
    text-align: center;
}
.alert .alert_inner .close_btn
{
    position: absolute;
    right: -20px;
    top: -20px;
    cursor: pointer;
}
.alert_logo
{
    position: absolute;
    right: 10px;
    top: 10px;
}

.confirmalert
{
    background: url(../images/grey-bg.png);
    position: fixed;
    height: 100%;
    top: 0;
    left: 0;
    width: 100%;
    display: none;
}
.confirmalert .confirmalert_inner
{
    width: 350px;
    margin: 0 auto;
    margin-top: 150px;
    border-radius: 5px;
    padding: 5px;
    position: relative;
    display: none;
}
.confirmalert .confirmalert_inner h4
{
    padding: 8px 5px;
    border-radius: 5px;
    font-size: 13px;
    padding-left: 35px;
}
.confirmalert .confirmalert_content
{
    padding: 15px 8px;
    border-bottom: 1px solid #D5CACA;
}
.confirmalert .confirmalert_inner .close_btn
{
    position: absolute;
    right: -20px;
    top: -20px;
    cursor: pointer;
}
.confirmalert_logo
{
    position: absolute;
    right: 10px;
    top: 10px;
}

.popup_submit
{
    text-align: center;
    padding: 10px 5px;
}
.popup_submit input
{
    background: #333;
    color: #fff;
    padding: 5px 14px;
    cursor: pointer;
    font-weight: bold;
    margin: 0 10px;
    border: none;
}

/* ------------ Error Popup Starts --------------- */

.error_message .alert_inner
{
    background: #fee6e6;
}
.error_message .alert_inner h4
{
    background: #f5cbcc url(../images/error-icon.png) no-repeat;
    background-position: 10px center;
    border: 1px solid #DBB7B8;
    color: #C81009;
    margin: 0;
}

/* ------------ Error Popup Ends --------------- */

/* ------------ Success Popup Starts --------------- */

.success_message .alert_inner
{
    background: #e9ffe6;
}
.success_message .alert_inner h4
{
    background: #d3f8cf url(../images/success-icon.png) no-repeat;
    background-position: 10px center;
    border: 1px solid #A5EDA5;
    color: #43aa27;
    margin: 0;
}

/* ------------ Success Popup Ends --------------- */

/* ------------ Warning Popup Starts --------------- */

.warning_message .alert_inner
{
    background: #fefce5;
}
.warning_message .alert_inner h4
{
    background: #faefcf url(../images/warning-icon.png) no-repeat;
    background-position: 10px center;
    border: 1px solid #f6e5b3;
    color: #E29D00;
    margin: 0;
}

/* ------------ Warning Popup Ends --------------- */

/* ------------ Info Popup Starts --------------- */

.info_message .alert_inner
{
    background: #eff3ff;
}
.info_message .alert_inner h4
{
    background: #bcc9fe url(../images/info-icon.png) no-repeat;
    background-position: 10px center;
    border: 1px solid #9da7f0;
    color: #1f2b97;
    margin: 0;
}

.info_message .confirmalert_inner
{
    background: #eff3ff;
}
.info_message .confirmalert_inner h4
{
    background: #bcc9fe url(../images/info-icon.png) no-repeat;
    background-position: 10px center;
    border: 1px solid #9da7f0;
    color: #1f2b97;
    margin: 0;
}

/* ------------ Info Popup Ends --------------- */


