.static{
  position: static;
}
.fixed{
  position: fixed;
}
.absolute{
  position: absolute;
}
.relative{
  position: relative;
}
.sticky{
  position: sticky;
}
.flex{
  display: flex;
}
.grid{
  display: grid;
}
.block{
  display: block;
}
.none{
  display: none !important;
}
.grow{
  flex-grow: 1;
}
.grow-0{
  flex-grow: 0;
}
.shrink {
  flex-shrink: 1;
}
.shrink-0 {
  flex-shrink: 0;
}
.flex-wrap{
  flex-wrap: wrap;
}
.flex-wrap-reverse{
  flex-wrap: wrap-reverse;
}
.flex-nowrap{
  flex-wrap: nowrap;
}

.flex-direction-row {
  flex-direction: row;
}
.flex-direction-column {
  flex-direction: column;
}
.justify-start {
  justify-content: flex-start;
}
.justify-center {
  justify-content: center;
}
.justify-end {
  justify-content: end;
}
.justify-between {
  justify-content: space-between;
}
.justify-around {
  justify-content: space-around;
}
.items-start {
  align-items: flex-start;
}
.items-center {
  align-items: center;
}
.items-end {
  align-items: flex-end;
}
.items-stretch {
  align-items: stretch;
}
.align-content-start {
  align-content: flex-start;
}
.align-content-end {
  align-content: flex-end;
}
.align-content-center {
  align-content: center
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-justify {
  text-align: justify;
}
.break-all {
  word-break: break-all;
}
.text-wrap {
  white-space: pre-wrap;
}
.text-nowrap	 {
  white-space: nowrap;
}
.text-pre-line {
  white-space: pre-line;
}
.text-pre-wrap {
  white-space: pre-wrap;
}
.text-ellipsis {
  text-overflow: ellipsis;
}

.text-clip {
  text-overflow: clip;
}
.align-self-start {
  align-self: flex-start
}
.align-self-end {
  align-self: flex-start
}
.align-self-center {
  align-self: flex-start
}
.justify-self-start {
	justify-self: start;
}
.justify-self-end {
  justify-self: end;
}
.justify-self-center {
  justify-self: center;
}
.decoration-solid{
  text-decoration-style: solid;
}
.decoration-double{
  text-decoration-style: double;
}
.decoration-dotted{
  text-decoration-style: dotted;
}
.decoration-dashed{
  text-decoration-style: dashed;
}
.decoration-wavy{
  text-decoration-style: wavy;
}
.underline{
  text-decoration-line: underline;
}
.overline{
  text-decoration-line: overline;
}
.line-through{
  text-decoration-line: line-through;
}
.no-underline{
  text-decoration-line: none;
}
.bold {
  font-weight: bold;
}
.italic {
	font-style: italic;
}
.bg-repeat{
  background-repeat: repeat;
}
.bg-no-repeat{
  background-repeat: no-repeat;
}
.bg-repeat-x{
  background-repeat: repeat-x;
}
.bg-repeat-y{
  background-repeat: repeat-y;
}
.bg-repeat-round{
  background-repeat: round;
}
.bg-repeat-space{
  background-repeat: space;
}
.visible{
  visibility: visible;
}
.invisible{
  visibility: hidden;
}
.overflow-hidden{
  overflow: hidden;
}
.overflow-auto{
  overflow: auto;
}
.overflow-x-auto{
  overflow-x: auto;
}
.overflow-y-auto{
  overflow-y: auto;
}
.overflow-x-hidden{
  overflow-x: hidden;
}
.overflow-y-hidden{
  overflow-y: hidden;
}
.border-box {
  box-sizing: border-box;
}
.border-left-none {
  border-left-style: none;
}
.border-left-dashed {
  border-left-style: dashed;
}
.border-left-dotted {
  border-left-style: dotted;
}
.border-left-double {
  border-left-style: double;
}
.border-right-none {
  border-right-style: none;
}
.border-right-dashed {
  border-right-style: dashed;
}
.border-right-dotted {
  border-right-style: dotted;
}
.border-right-double {
  border-right-style: double;
}
.border-top-none {
  border-top-style: none;
}
.border-top-dashed {
  border-top-style: dashed;
}
.border-top-dotted {
  border-top-style: dotted;
}
.border-top-double {
  border-top-style: double;
}
.border-bottom-none {
  border-bottom-style: none;
}
.border-bottom-dashed {
  border-bottom-style: dashed;
}
.border-top-dotted {
  border-bottom-style: dotted;
}
.border-top-double {
  border-bottom-style: double;
}
.full-w {
  width:  100%;
}
.full-h {
  height: 100%;
}
.fit-content-w{
  width: fit-content;
}
.fit-content-h{
  height: fit-content;
}
.top-0 {
  top: 0;
}
.bottom-0 {
  bottom: 0;
}
.left-0 {
  left: 0;
}
.right-0 {
  right: 0;
}
.inset-0 {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.events-none {
  pointer-events:none
}
.inner-input {
  width: 100%;
  border: none;
  background: none;
  color: inherit;
  font-size:inherit;
  font-style: inherit;
  font-weight: inherit;
  height:auto;
  resize: none;
}
.border-style {
  box-sizing: border-box;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
