.cf-dashboard-layout {
  @media screen and (max-width:780px) {
    padding-left: 10px;
  }
  .cf-dashboard-layout__inner {
    width: 100%;
    padding: 0;
    
  }
}
.cf-settings-loader {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    &::after {
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      background-color: rgba(0, 0, 0, 0.48);
      border-radius: 2px;
      z-index: 9999;
    }
    &::before {
      content: "";
      margin: auto;
      border: 2px solid #fff;
      width: 50px;
      height: 50px;
      display: inline-block;
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      border-radius: 50%;
      border-right: 2px solid #4b1bce;
      text-align: center;
      animation-name: spin;
      animation-duration: 900ms;
      animation-iteration-count: infinite;
      animation-timing-function: cubic-bezier(0.53, 0.21, 0.29, 0.67);
      z-index: 99999;
    }
    @keyframes spin {
      0% {
          transform: rotate(0deg);
      }
  
      100% {
          transform: rotate(360deg);
      }
    }
}