.modal-loading{
    background: #24242475;
    position: fixed;
    display: flex;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    align-items: center;
    justify-content: center;
    z-index: 53;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}
.modal-loading .container{
    background: #fff;
    border-radius: 3px;
    font-size: 17px;
    max-width: 800px;
    padding: 50px 100px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}
.modal-loading.active{
    opacity: 1;
    pointer-events: auto;
}
.loading{
    padding: 10px;
}
.loading .load{
  animation: is-rotating 1s infinite;
  border: 6px solid #d3d3d3;
  border-radius: 50%;
  border-top-color: var(--primaryColor);
  height: 50px;
  width: 50px;
}
@keyframes is-rotating {
  to {
    transform: rotate(1turn);
  }
}

/*====================*/

.modal-sucess{
  background: #24242475;
  position: fixed;
  display: flex;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  align-items: center;
  justify-content: center;
  z-index: 53;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}
.modal-sucess .container{
  color: #06be00;
  background: #fff;
  border-radius: 3px;
  font-size: 17px;
  max-width: 800px;
  padding: 30px 50px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.modal-sucess.active{
  opacity: 1;
  pointer-events: auto;
}
.modal-sucess .container i{
  font-size: 50px;
  margin-bottom: 20px;
}
