.model , .model2{
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgb(102, 104, 148,0.7);
    box-shadow: 0 0 0 9999px rgba(0,0,0,0.5);
    top: 0;
    left: 0;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.model-content, .model2-content {
    overflow: hidden;
    width: 95%;
    height: 95%;
    background-color: rgba(0, 0, 0, 0.95);
    border-radius: 12px;
    padding: 4px;
    max-width: 600px;
    text-align: center;
    vertical-align: middle;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    align-content: stretch;
}


/*error model*/
.error-model {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #666894;
  box-shadow: 0 0 0 9999px rgba(0,0,0,0.5);
  top: 0;
  left: 0;
  z-index: 9999;
  opacity: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.error-model-content {
  overflow: hidden;
  width: 90%;
  height: 90%;
  opacity: 1;
  background-color: black;
  border-radius: 22px;
  padding: 10px 0px;
  text-align: center;
  vertical-align: middle;

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  align-content: stretch;
}

div.closeBtn {
  margin: 20px;
}



/*loader*/
.loader {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #666894;
    box-shadow: 0 0 0 9999px rgba(0,0,0,0.5);
    top: 0;
    left: 0;
    z-index: 99999;
    opacity: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}



.spinner {
    width: 40px;
    height: 40px;
  
    position: relative;
    margin: 100px auto;
  }
  
  .double-bounce1, .double-bounce2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #333;
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    
    -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
    animation: sk-bounce 2.0s infinite ease-in-out;
  }
  
  .double-bounce2 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
  }
  
  @-webkit-keyframes sk-bounce {
    0%, 100% { -webkit-transform: scale(0.0) }
    50% { -webkit-transform: scale(1.0) }
  }
  
  @keyframes sk-bounce {
    0%, 100% { 
      transform: scale(0.0);
      -webkit-transform: scale(0.0);
    } 50% { 
      transform: scale(1.0);
      -webkit-transform: scale(1.0);
    }
  }

.loader-msg{
  text-align: center;
}

  /*error model*/
.confirm-model {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #666894;
  box-shadow: 0 0 0 9999px rgba(0,0,0,0.5);
  top: 0;
  left: 0;
  z-index: 9999;
  opacity: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.confirm-model-content {
  overflow: hidden;
  width: 90%;
  height: 90%;
  opacity: 1;
  background-color: black;
  border-radius: 22px;
  padding: 10px 0px;
  text-align: center;
  vertical-align: middle;

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  align-content: stretch;
}

div.buttonContainer {
  margin: 20px;
}

.buttonContainer span span {
  width: 62px;
  display: inline-block;
}

.confirmDeepNote {
    display: block;
    width: 90%;
    margin: auto;
    font-size: 0.7em;
}