﻿.modal {
  display: block; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1046; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.modal-content { 
  margin: auto;  
  width: 411px;
  border-radius: 12px;
  background-color: #FFF;
  box-shadow: 0 0 50px 0 rgba(119,116,116,0.5);
  padding-left: 50px;
  padding-right: 50px;
  padding-top: 60px;
  padding-bottom: 30px;
  position: relative;
}

.modal-closeBtn {
    position: absolute;
    z-index: 1001;
    height: 27px;
    width: 27px;
    background: url('./Images/Close.png') no-repeat scroll center center;
    right: 39px;
    top: 32px;
    cursor: pointer;
}

.modal-message
{   
    width: 100%;
    text-align:center;
    color: #366;   
    font-size: 1.37em;
    line-height: 1.68em;
    text-align: center;  
    word-wrap: break-word;       
}

.modal-buttons
{
    padding-top: 25px;    
    text-align:center;    
}

.modal-button-ok
{
    height: 33px;
    min-width: 111px;
    border-radius: 3px;
    background-color: #68B8D3;
    color: #FFF;
    font-family: Verdana;
    font-size: 1em;
    line-height: 1.21em;
    border: 1px solid transparent; 
    cursor: pointer;   
    margin-right: 10px;
}

    .modal-button-ok:hover
    {
        color: #fff;
        background-color: #286090;
        border-color: #204d74;   
    }    

.modal-button-cancel
{
    height: 33px;
    min-width: 111px;
    border-radius: 3px;
    background-color: #FFF;
    border: 1px solid #8C9999;     
    font-family: Verdana;
    font-size: 1em;
    line-height: 1.21em;        
    cursor: pointer;   
}

    .modal-button-cancel:hover
    {
        color: #333;
        background-color: #e6e6e6;
        border-color: #adadad;        
    }