.overlayk-loading {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 999;
    background:rgba(0, 0, 0,0.64);
}

.overlayk-loading img {
    width: 64px;
    height: 64px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,50%);
}

#menssage{
  z-index:50;
  position:fixed;
  right: 0; 
  bottom: 0; 
  margin:0 1% 1% 0;
}

.loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 210px;
    height: 210px;
    background: transparent;
    border: 4px solid rgba(255,0,0,0.1);
    border-radius: 60%;
    text-align: center;
    line-height: 200px;
    font-family: sans-serif;
    font-size: 20px;
    color: #f88985;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 0 10px #f88985;
    box-shadow: 0 0 20px rgba(0, 0, 0, .15);
}

.loader::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    width: 100%;
    height: 100%;
    border: 3px solid #ffdde0;
    border-top: 3px solid #f88985;
    border-right: 3px solid #f88985;
    border-radius: 50%;
    animation: animateC 2s linear infinite;
}

.loader span {
    display: block;
    position: absolute;
    top: calc(50% - 2px);
    left: 50%;
    width: 50%;
    height: 4px;
    background: transparent;
    transform-origin: left;
    animation: animate 2s linear infinite;
}

.loader span::before {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #e73635;
    top: -6px;
    right: -8px;
    box-shadow: 0 0 20px 5px #f88985;
}

@keyframes animateC {
    0% {
      transform: rotate(0deg);
    }
  
    100% {
      transform: rotate(360deg);
    }
}
  
@keyframes animate {
    0% {
      transform: rotate(45deg);
    }
  
    100% {
      transform: rotate(405deg);
    }
}