            #changePassword{
                cursor: pointer;
            }
  /* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* 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.3); /* Black w/ opacity */
  z-index: 10000;
}

/* Modal Content */
.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  border: 1px solid #888;
  width:490px;
  box-shadow: 0 10px 10px 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;
  border-radius: 4px;
  padding: 30px;
}

/* Add Animation */
@-webkit-keyframes animatetop {
  from {top:-100px; opacity:0} 
  to {top:0; opacity:1}
}

@keyframes animatetop {
  from {top:-100px; opacity:0}
  to {top:0; opacity:1}
}

/* The Close Button */
.close {
  color: white;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.modal-footer ,
.modal-header {
  padding: 2px 16px;  
  color: #666; 
}

.modal-header .heading,
.modal-header .header{
    font-weight: 400;
    display: flex;
    font-size: 1.2rem;
}

.modal-header .heading svg{
    margin-top: -8px;
    height: 30px;
    margin-right: 7px;
}

.modal-body {padding: 2px 16px;}

.modal-auth > div{
    margin-bottom: 6px;
    display: flex;
    flex-direction: column;
}
.modal-auth label{
                color: #6f6f6f;
                font-size: 15px;
                margin-bottom: 5px;
                font-weight: 500; 
            }
            .modal-auth input{
                padding: 18px 10px 18px 15px;
                outline: 2px solid #222;
                border: 1px solid #c0c0c0;
                border-radius: 6px; 
            }  
            .modal-auth .btn-cancel,
            .modal-auth button{
                padding: 15px 25px;
                border: none;
                outline: none;
                border-radius: 4px;
                position: relative;
                top: 5px;
                font-size: 15px;
                font-weight: 600;
                cursor: pointer;
            }
            .modal-auth button{
                background-color: #1a82e2; 
                color: #fff; 
            }
            .modal-auth .btn-cancel{
                background-color: #dedcdcb2;  
                color: #222; 
                display: block;
                transition: all 300ms ease;
            }
            .modal-auth .btn-cancel.hide-btn{
                visibility: hidden;
                display: none;
            }
            .modal-auth .btn-cancel:hover{
                /* background-color: #bc1e1eb2;   */
                outline:2px solid #bc1e1eb2;  
                color: #bc1e1eb2; 
            }
            .modal p{
                font-weight: 300;
                font-size: 13px;
                margin-bottom: -6px;
                color: #666;
            }





            .lds-hourglass,
.lds-hourglass:after {
  box-sizing: border-box;
}
.lds-hourglass {
  display: inline-block;
  position: relative;
  width: 30px;
  height: 30px;
}
.lds-hourglass:after {
  content: " ";
  display: block;
  border-radius: 50%;
  width: 0;
  height: 0;
  margin: 8px;
  box-sizing: border-box;
  border: 12px solid currentColor;
  border-color: currentColor transparent currentColor transparent;
  animation: lds-hourglass 1.2s infinite;
}
@keyframes lds-hourglass {
  0% {
    transform: rotate(0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  50% {
    transform: rotate(900deg);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  100% {
    transform: rotate(1800deg);
  }
}

