

a:focus,
a:active {
  outline: none;
}

a,
a:focus,
a:hover {
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}
div {
  box-sizing: border-box;
}
div:focus {
  outline: none;
}



.block {
  display: block;
}

.pointer {
  cursor: pointer;
}

.inlineBlock {
  display: block;
}




ul,li {
  list-style: none;
}


.text-center {
  text-align: center;
}

.flex {
  display: flex;
}
.flex-column {
    display: flex;
  flex-direction: column;
}
.flex-center-x {
  display: flex;
  justify-content: center;
}
.flex-center-y {
  display: flex;
  align-items: center;
}
.flex-center {
    display: flex;
    justify-content: center;
   align-items: center;
}
.flex-center-col {
    display: flex;
    justify-content: center;
    align-items: center;
  flex-direction: column;
}
.flex-xs {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.flex-center-xs {
    display: flex;
    justify-content: space-around;
    align-items: center;
  }

.overEllipsis1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
}
.overEllipsis2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
}
.overEllipsis3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
}



