.empty-content-imgException {
  width: 200px;
  height: 200px;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #EEF1F6;
  background-size: 50% 50%;
  border-radius: 50%;
}
.empty-content-inner {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 720px) {
  .empty-content {
    &-inner{
      min-height: 200px;
    }
    &-imgException {
      width: 200px;
      height: 200px;
      margin-right: 10px;
    }
    &-title {
      font-size: 14px;
      margin: 10px 0;
    }
    &-description {
      font-size: 12px;
    }
  }
}

@media screen and (min-width: 721px) and (max-width: 1199px) {
  .empty-content {
    &-inner{
      min-height: 300px;
    }
    &-imgException {
      max-width: 180px;
      margin-right: 30px;
    }
    &-title {
      font-size: 20px;
      margin: 10px 0;
    }
    &-description {
      font-size: 14px;
    }
  }
}

@media screen and (min-width: 1200px) {
  .empty-content {
    &-inner{
      min-height: 500px;
    }
    &-imgException {
      max-width: 260px;
      margin-right: 50px;
    }
    &-title {
      font-size: 24px;
      margin: 20px 0;
    }
    &-description {
      font-size: 16px;
    }
  }
}