﻿
    .modalBackground
    {
        background-color: Black;
        filter: alpha(opacity=60);
        opacity: 0.6;
    }
    .modalPopup
    {
		background-color: #FFFFFF;
		max-width: 500px;
		border-radius: 6px;
		padding: 0;
		width: 94%;
        box-shadow:2px 2px 14px rgba(0, 0, 0, .4);
      
    }
.modal-footer {
    padding:5px !important;
}
    .modalPopup .header
    {
		background-color: #74a53c;
		height: 40px;
		color: White;
		line-height: 40px;
		text-align: center;
		border-top-left-radius: 6px;
		border-top-right-radius: 6px;
		font-size: 18px;
		font-weight: 400;
    }
    .modalPopup .body
    {
    text-align: center;
    padding:10px;
    color: #000;
    font-size: 14px;
    margin:15px;
    }
    .modalPopup .footer
    {
        padding: 6px;
    }
    .modalPopup .yes, .modalPopup .no
    {
        height: 23px;
        color: White;
        line-height: 23px;
        text-align: center;
        font-weight: bold;
        cursor: pointer;
        border-radius: 4px;
    }
    .modalPopup .yes
    {
        background-color: #2FBDF1;
        border: 1px solid #0DA9D0;
    }
    .modalPopup .no
    {
        background-color: #9F9F9F;
        border: 1px solid #5C5C5C;
    }

      .modalPopup .Ok
    {
        background-color: #9F9F9F;
        border: 1px solid #5C5C5C;
    }
