a, a:hover, a:active, a:visited, a:focus {color: #219fd0;}

.desktop {
  display: block;
}
@media (max-width: 768px) {
  .desktop {
    display: none;
  }
}

.mobile {
  display: none;
}
@media (max-width: 768px) {
  .mobile {
    display: block;
  }
}

.txt-zone {
  margin: 0 auto 2% auto;
  width: 90%;
}
.txt-zone a:hover {
  color: #219fd0;
}
.txt-zone p {
  font-size: 1rem;
  line-height: 2rem;
}
.txt-zone ul, .txt-zone ol {
  padding-left: 20px;
}

h1.title {
  display: block;
  margin: 3% auto 3% auto;
  text-align: center;
  font-size: 2rem;
}
h1.title:after {
  content: "";
  display: block;
  width: 10%;
  height: 2px;
  margin: 10px auto;
  background-image: linear-gradient(135deg, #80d0eb 10%, #219fd0 100%);
}

/* breadcrumbs ======================================================================= */
.breadcrumbs {
  width: 100%;
  background: #f5f5f5;
  border-bottom: 1px solid #f5f5f5;
  border-top: 1px solid #f5f5f5;
  margin-top: 30px;
}
.breadcrumbs ul {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
}
.breadcrumbs ul li {
  position: relative;
  padding: 5px 15px 5px 30px;
  display: inline-block;
  font-size: 0.75em;
  color: #219fd0;
}
.breadcrumbs ul li a {
  color: #333;
}
.breadcrumbs ul li a:hover {
  color: #219fd0;
}
.breadcrumbs ul li:after {
  position: absolute;
  top: 0;
  right: -15px;
  content: "";
  transform: skew(45deg, 0);
  height: 50%;
  width: 1px;
  background: #ccc;
  border-right: 1px solid #ccc;
}
.breadcrumbs ul li:before {
  position: absolute;
  bottom: 0;
  right: -15px;
  content: "";
  transform: skew(-45deg, 0);
  height: 51%;
  width: 1px;
  background: #ccc;
  border-right: 1px solid #ccc;
}

/* Pagination ======================================================================= */
.page-number {
  margin: 30px 0;
  text-align: center;
}
.page-number ul {
  list-style-type: none;
}
.page-number li {
  position: relative;
}
.page-number a {
  width: 30px;
  height: 30px;
  line-height: 20px;
  text-align: center;
  margin: auto 5px;
  display: inline-block;
  color: #000;
}
.page-number a:hover {
  color: #04caf7;
}
.page-number a.page-active {
  border: 3px solid #04caf7;
  border-radius: 100%;
}
.page-number a.page-prev, .page-number a.page-next {
  border-radius: 100%;
  color: #fff;
  background-color: #04caf7;
  text-indent: -777px;
}
.page-number a.page-prev li:before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  left: 7px;
  top: 7px;
  background: url(icons/icon-page-prev.svg) no-repeat;
}
.page-number a.page-next li:before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  left: 8px;
  top: 7px;
  background: url(icons/icon-page-next.svg) no-repeat;
}

/* Table Style ============================================================ */
.table-scroll {
  overflow-x: auto;
}

.model-table {
  width: 100%;
  min-width: 800px;
  margin: 2% auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.model-table thead tr {
  background: #333;
  color: #fff;
}
.model-table thead tr th {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
.model-table thead tr th:first-of-type {
  border-left: none;
}
.model-table th, .model-table td {
  padding: 5px 12px;
  text-align: center;
  vertical-align: middle;
  font-size: 0.8rem;
}
.model-table td {
  border-left: 1px solid #eee;
}
.model-table tbody {
  color: #201c1d;
}
.model-table tbody tr {
  border-bottom: 1px solid #eee;
  border-top: 1px solid #eee;
}
.model-table tbody tr td:last-child {
  border-right: 1px solid #eee;
}
.model-table tbody tr:nth-of-type(odd) {
  background: #fff;
}
.model-table tbody tr:nth-of-type(even) {
  background: #fafafa;
}
.model-table img {
  vertical-align: middle;
  margin: 5px;
}

.img-s {
  width: 100%;
  max-width: 50px;
  height: auto;
}

.datatable {
  margin: 2% auto;
  width: 100%;
  min-width: 800px;
}
.datatable th {
  padding: 6px;
  font-size: 0.9rem;
  color: #fff;
  background-image: linear-gradient(60deg, #0070c9 0%, #2b76b9 37%, #2cacd1 100%);
  border: solid 1px rgba(255, 255, 255, 0.3);
  font-weight: 700;
  text-transform: uppercase;
}
.datatable tr:nth-child(even) {
  background: #fafafa;
}
.datatable tr:nth-child(odd) {
  background: #fff;
}
.datatable td {
  padding: 6px 12px;
  font-size: 0.8rem;
  font-weight: 400;
  border-left: solid 1px #eee;
}
.datatable tbody tr:first-child {
  border-top: 1px solid #eee;
}
.datatable tbody tr:last-child {
  border-bottom: 1px solid #eee;
}
.datatable tbody tr td:last-child {
  border-right: 1px solid #eee;
}

.post-edit {
  margin: 1% auto;
  max-width: 1024px;
  padding: 20px;
  word-wrap: break-word;
}
.post-edit p {
  font-size: 1rem;
  line-height: 2rem;
}
.post-edit li {
  font-size: 1rem;
  line-height: 2rem;
}
.post-edit a:hover {
  color: #80d0eb;
}
.post-edit ul, .post-edit ol {
  padding-left: 20px;
}

/* Hashtag ===================================================================== */
.hashtag-common {
  position: relative;
  max-width: 1170px;
  margin: 0 auto;
  margin-top: 20px;
}
.hashtag-common-icon {
  position: absolute;
  left: 5px;
  top: 0px;
}
.hashtag-common ul {
  display: flex;
  flex-wrap: wrap;
  margin-left: 5px;
  margin-bottom: 5px;
}
.hashtag-common li {
  list-style: none;
}
.hashtag-common li a {
  display: block;
  font-size: 0.9rem;
  background-color: #e7e7e7;
  border: 1px solid #d9d9d9;
  padding: 5px 7px;
  margin-bottom: 10px;
  border-radius: 3px;
  margin-left: 10px;
  color: #8b8b8b;
  transition: all 0.5s;
}
.hashtag-common li a:hover, .hashtag-common li a.selected {
  color: #fff;
  font-weight: bold;
  background-color: #219fd0; border: 1px solid #219fd0;
}
