/* Add here all your CSS customizations */
.rtl{text-align:right;
     float:right;
     direction:rtl;
}
.ltr {
    text-align: left;
    direction: ltr;
    float:right;
}
.text-center{text-align:center;

}

.mobile-only {
  display: none;
}

.desktop-only {
  display: block;
}

@media (pointer:none), (pointer:coarse) {
  .mobile-only {
    display: block;
  }
  .desktop-only {
    display: none;
  }
}
