html {
    height: 100%;
}
body {
    margin: 0;
    height: 100%;
    min-height: 400px;
}

button:hover {
    cursor: pointer;
}

button:focus, input:focus, select:focus {
    outline: 0;
}

#error,.error {
    color: #2D3888;
    font-size: 18px;
    font-weight: 600;
}

#confirmation,.confirmation{
    color: #2D3888;
    font-size: 18px;
    font-weight: 600;
}

#warning,.warning{
    color: #2D3888;
    font-size: 18px;
    font-weight: 600;
}


/*modal styles*/

.modal {
  display: none;
  position: fixed; 
  z-index: 1; 
  padding-top: 100px;
  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 */
  text-align: center;
}

.modalcontent {
  position: relative;
  background-color: #fefefe;
  margin: 20vh auto auto auto;
  padding: 0;
  border: 1px solid #888;
  width: 40%;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s
}

@-webkit-keyframes animatetop {
  from {top:-300px; opacity:0} 
  to {top:0; opacity:1}
}

@keyframes animatetop {
  from {top:-300px; opacity:0}
  to {top:0; opacity:1}
}

/*  Close Button */
.close {
  color: #000;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: red;
  text-decoration: none;
  cursor: pointer;
}

.modalheader {
  padding: 2px 16px;
  background-color: #1A2454;
  color: white;
}

.modalbody {padding: 2px 16px;}

.modalfooter {
  padding: 2px 16px;
  background-color: #EEE;
  color: white;
  padding: 10px;
}

.modalfooter button{
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

.modalfooter .btnConfirm{
    background-color: #2D3888;
}

.modalfooter .btnCancel{
    margin-right:20px;
    background-color: #F00;
}

.modalcontent button{
  width: auto;
}

.dataEntryEvents{
    /* margin: 30px 0 0 4%; */
    width: 320px !important;
    padding: 10px 8px 8px 8px;
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
    background: #1A2454;
    width: 320px !important;
}
.dataEntryEvents label{
  color:#EEE !important;
  margin-bottom: 5px;
}

.selectEvents{
  width: auto !important;
}
.disabledElements{
    filter: grayscale(100%) !important;
    color: gray !important;
}