html {
    height: 100%;
    font-family: Montserrat;
}


img {
    width: 60%;
}

.iconSize {
    width: 30px;
    margin: 5px;
}

body {
    margin: 0;
    height: 100%;
    min-height: 400px;
    font-family: Montserrat;
}

button:hover {
    cursor: pointer;
}

.copyright {
    margin: 10px 0px;
    color: #FFF;
    font-size: 12px;
    text-align: center;
}

.copyright > p {
    margin: 0px;
}

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;
}

.popupLoad {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.3);
    display:flex;
    align-items: center;
}

@media screen and (min-width: 635px){
    .popudLoad {
        height: auto; 
        padding: 10px 0px;
    }
}


/*modal styles*/

.modal {
  display: none;
  position: fixed; 
  z-index: 10; 
  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;
}

.modalForm {
  z-index: 1; 
}

.modalContent,.modalContentMd {
  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
}

.modalContentMd {
  width: 60%;
}

@-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;
}

.dnone{
    display: none !important;
}
