.load_container{
  display: none;
  top: 50%;
  left:40%;
  width:20%;
  position: fixed;
  background-color: white;
  z-index: 999;
}
.loader {
  border: 16px solid #f3f3f3;
  border-radius: 35%;
  border-top: 16px double blue;
  border-right: 16px double green;
  border-bottom: 16px double red;
  border-left: 16px double pink;
  width: 50px;
  height: 50px;
  -webkit-animation: spin 1.5s ease-in infinite;
  animation: spin 1.5s ease-in infinite;
  margin-right: 8px;
  animation-direction: alternate-reverse;
}

@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.loader_text {
    color: red;
    -webkit-animation-name: example; /* Safari 4.0 - 8.0 */
    -webkit-animation-duration: 4s; /* Safari 4.0 - 8.0 */
    animation-name: example;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    font-weight: bold;
    vertical-align: top;
    padding: 6px;
    background-color: white;
    z-index: 999;
}

/* Safari 4.0 - 8.0 */
@-webkit-keyframes example {
    0%   {color: red;}
    25%  {color: violet;}
    50%  {color: blue;}
    100% {color: green;}
}

/* Standard syntax */
@keyframes example {
    0%   {color: red;}
    25%  {color: violet;}
    50%  {color: blue;}
    100% {color: green;}
}
