/* Reset CSS */
*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

[class*=" icon-"],
[class^=icon-] {
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: baseline;
  display: inline-block;
  -webkit-font-smoothing: antialiased;
}

a,
a:focus,
a:hover {
  color: inherit;
  outline: none;
  text-decoration: none;
  cursor: pointer;
}

a:hover {
  color: #007DFF;
}

div:focus {
  outline: none;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
}

button {
  border: none;
  outline: none;
  cursor: pointer;
  display: block;
  font-size: 16px;
}

.flex {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-start {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.flex-end {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.flexColumn {
  flex-direction: column;
}

.flex-grow {
  width: 0;
  flex: 1;
}

.flex-shrink {
  flex-shrink: 0;
}

.clearfix {
  position: relative;
  zoom: 1;
}

.clearfix:after {
  display: block;
  visibility: hidden;
  clear: both;
  height: 0;
  content: "";
}

.img-fill {
  object-fit: fill;
}

.img-contain {
  object-fit: contain;
}

.img-cover {
  object-fit: cover;
}

.img-none {
  object-fit: none;
}

.img-scale-down {
  object-fit: scale-down;
}

.list-unstyled {
  padding: 0;
  margin: 0;
  list-style: none;
}

.clickable {
  cursor: pointer;
  user-select: none;
}

.clickable:hover {
  color: #0079ff;
}

.none-pointer-events {
  pointer-events: none;
}

.tl {
  text-align: left;
}

.tc {
  text-align: center;
}

.tr {
  text-align: right;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

/*# sourceMappingURL=wap-common.css.map */
