:root {
  --theme-color: #104de8;
  --title-color: #19263c;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}

a:focus,
a:active {
  outline: none;
}

a,
a:focus,
a:hover {
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}

div:focus {
  outline: none;
}

.text-center {
  text-align: center;
}

.text-end {
  text-align: end;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.one-text-hidden {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.two-text-hidden {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.three-text-hidden {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}

.pointer {
  cursor: pointer;
}

.clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

.flex {
  display: flex;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
}

.row-col-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.row-center {
  display: flex;
  justify-content: center;
}

.flex-d-col {
  display: flex;
  flex-direction: column;
}

.col-center {
  display: flex;
  align-items: center;
}

.flex-around {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.ml-32 {
  margin-left: 32px;
}

.padding-20 {
  padding: 20px;
}

.in-block {
  display: inline-block;
}

.float-right {
  float: right;
}

.over-x-auto {
  overflow-x: auto;
}
