  .checkbox,
  .ma-radio {
      position: relative;
      cursor: pointer;
      height: 32px;
      -webkit-touch-callout: none;
      -webkit-user-select: none;
      -khtml-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
      margin: 0.5em;
  }

  .checkbox input,
  .ma-radio input {
      display: none;
  }

  .checkbox span:before,
  .checkbox span:after,
  .ma-radio span::before,
  .ma-radio span::after {
      content: "";
  }

  .checkbox span:before {
      width: 64px;
      height: 32px;
      margin-right: 8px;
      background: #c9c8c8;
      border-radius: 32px;
      display: inline-block;
      vertical-align: middle;
      transition: all .5s cubic-bezier(.175, .885, .32, 1);
  }

  .checkbox span:after {
      margin: 2px;
      width: 28px;
      height: 28px;
      background: #FFF;
      border-radius: 28px;
      position: absolute;
      left: 49px;
      z-index: 2;
      transition: all .5s cubic-bezier(.175, .885, .32, 1);
      top: 0;
  }
  .is_free span:after{
      left: 64px;
  }

  .checkbox input:checked+span:after {
      left: 18px;
      background-image: none;
  }
  .is_free input:checked+span:after {
      left: 35px;
  }
  .checkbox input:checked+span:before {
      background-color: #2098AE;
  }
  .about-us-page,.blog-page,.contact-us-page,.categories-section,.search-page-wrapper,.single-dalel-page,.pricing-page,.company-profile-page,.my-account-page{
      padding-top: 10rem!important;
  }