#overlay {
    position: fixed; /* Sit on top of the page content */
    display: none; /* Hidden by default */
    width: 100%; /* Full width (cover the whole page) */
    height: 100%; /* Full height (cover the whole page) */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5); /* Black background with opacity */
    z-index: 2; /* Specify a stack order in case you're using a different order for other elements */
    cursor: pointer; /* Add a pointer on hover */
  }
  
  #text{
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 25px;
    color: white;
    transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
  }
  
  .alert-info {
    padding: 5px 10px;
    background-color:#fefe9a;
  }
  
  .alert-danger {
    padding: 5px 10px;
    background-color:#f74f4f;
    color: white;
  }
  
.mandatory{
  color:red
}

textarea,select,input {
  border: 1px solid #ccc;
  padding: 5px 10px;
}

textarea,select,input:focus {
  border: 1px solid #00b5ef;
  background-color: white;
}

.btn {
  border: none;
  border-radius: 4px;
  color: white;
  padding: 7px 14px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
  font-family: Verdana;
  cursor: pointer;
}

.btn-default {
  background-color: #999;
}

.btn-primary {
  background-color: #1b75bc;
}


span.preview {
  text-transform: uppercase;
  color: black
}

.print-font-size
{
  font-size:14px
}

.msg-box {
  color: black;
  font-size: 1.5em;
}

/* NEW */
.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}

.alert h4 {
  margin-top: 0;
  color: inherit;
}

.alert-info {
  background-color: #d9edf7;
  border-color: #bce8f1;
  color: #31708f;
}

.alert-success {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #3c763d;
}

.alert-danger {
  background-color: #f2dede;
  border-color: #ebccd1;
  color: #a94442;
}


.alert-warning {
  background-color: #fcf8e3;
  border-color: #faebcc;
  color: #8a6d3b;
}