/* CSS Document */

/*Login modal popup box     */
/* Full-width input fields */
.txtBoxes    
 {
  width: 240px;
  font-size:15px;
  padding: 8px 15px;
  margin: 3px 3px;
  display: inline-block;
  border: 1px solid #ccc;
  box-sizing: border-box;
   vertical-align:text-top;
}

.lblText {
     font-weight:bold;
     text-align:left;      
       margin: 6px 6px; 
     font-size:14px;
}

.lblSpnNote {
    font-size:14px;
    text-align:left;
}
/* Set a style for all buttons */
.btnLog {
  background-color: darkorange;
  color: white;
  padding: 10px 14px;
  margin: 6px 0;
  border: none;
  cursor: pointer;
  width: 100%;
  height:40%;
  font-size:16px;
  vertical-align:text-top;
}

.btnLog:hover {
  opacity: 0.8;
}

/* Extra styles for the cancel button */
.btnCancle {
  width: auto;
  color: white;
  padding: 6px 10px;
  background-color: darkorange;
}

/* Center the image and position the close button */
.imgcontainer {
  text-align: center;
  margin: 5px 0 5px 0;
  position: relative;
}

.myavatar {
  vertical-align: middle;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.btncontainer {
  padding: 10px;
}

.psw {
  float: right;
  padding-top: 2px;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 14px;
  text-align: right;
}

/* The Modal (background) */
.modalLog {
  font-family: Verdana, Arial, Helvetica, sans-serif;
  display: none; /* Hidden by default */
  position: absolute; /* Stay in place */ /*relative pushes down other content*/
  z-index:100;  /*Sit on top */
  margin: auto auto auto 35%; 
  width: 320px; /* Full width */
  height: auto; /* Full height */
  overflow: hidden; /* Enable scroll if needed */
  background-color: white;/*rgb(0,0,0);black  Fallback color */
  /*background-color: rgba(0,0,0,0.4);  Black w/ opacity */
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.50), 0 10px 20px 0 rgba(0, 0, 0, 0.50);
  top:30%; 
   
 }

/* Modal Content/Box */
.modalLog-content {
  background-color: #fefefe;
  margin: 6% auto 6% auto; /* 5% from the top, 15% from the bottom and centered */
  border: 1px solid #888;
  width: 35%; /* Could be more or less, depending on screen size */
}


/* The Close Button (x) */
.closebtn {
  position: absolute;
  right: 20px;
  top: 0;
  color: #000;
  font-size: 30px;
  font-weight: bold;
}

.closebtn:hover,
.close:focus {
  color: red;
  cursor: pointer;
}

/* Add Zoom Animation */
.animate {
  -webkit-animation: animatezoom 4s;
  animation: animatezoom 4s;
}

@-webkit-keyframes animatezoom {
  from {-webkit-transform: scale(0)} 
  to {-webkit-transform: scale(1)}
}
  
@keyframes animatezoom {
  from {transform: scale(0)} 
  to {transform: scale(1)}
}

/* Change styles for span and cancel button on extra small screens */
@media screen and (max-width: 300px) {
  .psw {
     display: block;
     float: none;
  }
  .btnCancle {
     width: 100%;
  }
}

/*Change Password*/
.modalChangePass {
  font-family: Verdana, Arial, Helvetica, sans-serif;
  display: none; /* Hidden by default */
  position: absolute; /* Stay in place */ /*relative pushes down other content*/
  z-index:9999;  /*Sit on top */
  margin: auto auto auto 25%; 
  width: 460px; /* Full width */
  height: auto; /* Full height */
  overflow: hidden; /* Enable scroll if needed */
  background-color: white;/*rgb(0,0,0);black  Fallback color */
  /*background-color: rgba(0,0,0,0.4);  Black w/ opacity */
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.50), 0 10px 20px 0 rgba(0, 0, 0, 0.50);
  top:19%;
  right:2%; 
  text-align:center;
  text-align:-webkit-center;
   }

/* Modal Content/Box */
.modalChangePass-content {
  background-color: #fefefe;
  margin: 3% auto 3% auto; /* 5% from the top, 15% from the bottom and centered */
  border: 1px solid #888;
  width: 90%; /* Could be more or less, depending on screen size */
}

