
.loader .loader-base {
  display          : inline-block;
  position         : relative;
  background-color : #e3e3e3;
  overflow         : hidden;
  width            : 90px;
  height           : 90px;
  border-radius    : 50%;
}

.loader .loader-base .loader-fill-color {
  background-color   : #FC3C44;
  position           : absolute;
  bottom             : 0;
  left               : 0;
  -webkit-animation  : loader 5s linear infinite;
  animation          : loader 5s linear infinite;
  -webkit-transition : 0s;
  transition         : 0s;
}

.loader .loader-base img {
  position  : relative;
  z-index   : 9;
  max-width : 100%;
}

@media (max-width : 767px) {
  .loader .loader-base {
    width  : 50px;
    height : 50px;
  }
}

@-webkit-keyframes loader {
  0% {
    width  : 100%;
    height : 0;
  }
  100% {
    width  : 100%;
    height : 100%;
  }
}

@keyframes loader {
  0% {
    width  : 100%;
    height : 0;
  }
  100% {
    width  : 100%;
    height : 100%;
  }
}
