$color-primary: #149bc3;
$color-secondary: #008a6e;

.spinner12 {
  position: relative;

  &::before {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    transform: translate3d(-50%, -50%, 0);
    transform-origin: left top;
    border-top: 6px solid rgba($color-primary, .65);
    border-right: 6px solid rgba($color-secondary, .3);
    border-bottom: 6px solid rgba($color-secondary, .325);
    border-left: 6px solid rgba($color-secondary, .35);
    border-radius: 50%;
    content: '';
    animation: rotate-spinner1 .8s infinite linear;
  }
}

@keyframes rotate-spinner1 {
  from {transform: rotate(0deg) translate3d(-50%, -50%, 0);}
  to {transform: rotate(359deg) translate3d(-50%, -50%, 0);}
}


@media only screen and (min-width: 1024px) {
  .mobile-show{
    display: none !important;
  }
}


@media only screen and (max-width: 798px) {
  .mobile-show{
    display: inline;
  }
  .desktop-show{
    display: none;
  }
  .border_filter{
    border-top: 1px solid #000000;
    border-bottom: 1px solid #000000;
  }
  .border_sort{
    border-top: 1px solid #000000;
  }
}

.af-html {
  margin-top: 20px;
}

.af-html p {
  padding: 0;
  margin: 0;
}
