.c-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: 9999999 !important;
    transition: all 0.2s ease;
  }
  .c-loader.is-loading {
    opacity: 1;
    visibility: visible;
  }
  .c-loader__content {
    position: absolute;
    width: 300px;
    height: 300px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    transform: scale(0.5);
    z-index: 1;
  }
  .c-loader__item {
    width: 100%;
    height: auto;
    position: absolute;
  }
  