/* HERO */

.hero-bg {
  height: 220px;
}

@media only screen and (min-width: 991.98px) {
  .hero-bg {
    height: 500px;
  }
}

/* POST TITLE */

.bg-post-title {
  /*background-color: var(--blog-bg-color);*/
  background-color: var(--tertiary);
  opacity: .9;
}

.bg-post-title * {
  z-index: 1;
  opacity: 1;
}

/* EXAMPLES COMPONENT WITH LINE ON LEFT SIDE */

.examples {
  border-left: 5px solid var(--tertiary);
}

/* UL */

.unordered-list {
  list-style-type: none;
}

.unordered-list li:before {
  background-color: var(--tertiary);
  content: "";
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 2px;
  height: 8px;
  width: 8px;
}

/* COMMENT FORM CHECKBOX */

.form-check {
  accent-color: var(--tertiary)!important;
}

/* FA CHECK ICON */

#post-content .fa-check, .fa-check {
  background-color: var(--tertiary);
  border-radius: 50%;
}

#post-content .fa-check-inverted, .fa-check-inverted {
  background-color: var(--primary);
  color: var(--tertiary);
  font-size: 8px;
}

/* COMMENTS & VOTE */

.btn-vote {
  background-color: var(--tertiary);
  font-size: 32px;
}

.btn-vote:hover {
  background-color: #fff;
}

.btn_comments-vote, .btn_comments-reply {
  border: none;
  background-color: transparent;
}

.btn_comments-actions {
  color: var(--gray-1);
}

/* COMMENTS */

.person {
  font-size: 36px;
  background-color: var(--tertiary);
  color: var(--comment-name);
  border-radius: 15px;
  display: grid;
  place-items: center;
  min-width: 60px;
  min-height: 60px;
  font-weight: 600;
}

.border-radius-5 {
  border-radius: 5px;
}

.border-radius-10 {
  border-radius: 10px;
}

/* SOCIAL ICONS */

.social-link {
  font-size: 24px;
  color: var(--primary);
  padding: 5px;
  /*border: 1px solid var(--primary);*/
  /*width: 30px;*/
  /*height: 30px;*/
}

.social-link:hover {
  color: var(--tertiary)!important;
  background-color: var(--primary);
}

ol li {
  text-decoration: 2px var(--tertiary) underline;
  font-size: 1.125rem;
  margin: .5rem 0;
}

#post-content ol li a {
  color: var(--primary);
  text-decoration: none;
}

/* ASIDE */

#aside {
  min-height: 100vh;
  overflow: clip;
}

.container-aside {
  position: sticky;
  top: 110px;
}

/* LISTA UL */

#post-content ul {
  list-style-type: none;
  padding-left: 5px;
}

#post-content ul li {
  margin: .5rem 0;
}


#post-content ul li a {
  color: var(--primary);
  text-decoration: none;
}

#post-content a {
  color: var(--primary);
  text-decoration: none;
}

#post-content a:hover {
  color: var(--primary);
  text-decoration: 2px var(--tertiary) underline;
}

#post-content img {
  width: 100%;
  height: auto;
}

/* #post-content ol, #post-content ul {
  margin: 1rem 0;
} */

.element {
  background: linear-gradient(to right, var(--tertiary) 3px, transparent 3px) 0 0, linear-gradient(to right, var(--tertiary) 3px, transparent 3px) 0 100%, linear-gradient(to left, var(--tertiary) 3px, transparent 3px) 100% 0, linear-gradient(to left, var(--tertiary) 3px, transparent 3px) 100% 100%, linear-gradient(to bottom, var(--tertiary) 3px, transparent 3px) 0 0, linear-gradient(to bottom, var(--tertiary) 3px, transparent 3px) 100% 0, linear-gradient(to top, var(--tertiary) 3px, transparent 3px) 0 100%, linear-gradient(to top, var(--tertiary) 3px, transparent 3px) 100% 100%;
  background-repeat: no-repeat;
  background-size: 50px 50px;
}

.content-table-link:hover {
  text-shadow: 0 0 .65px #333, 0 0 .65px #333;
  text-shadow: 0 0 .9px #333, 0 0 .9px #333, 0 0 .9px #333;
}

/* .card:hover .card-title {
  background-image: linear-gradient(120deg, rgb(244, 207, 88), rgb(244, 207, 88));
  background-repeat: no-repeat;
  background-size: 100% 0.3em;
  background-position: 0px 100%;
} */
.card .card-title {
  border-bottom: 2px solid transparent
}
.card:hover .card-title {
  border-bottom: 2px solid var(--tertiary)
}