/* Колір hr */
hr {
  box-sizing: content-box;
  height: 0;
  margin: 15px 0;
  border: 0;
    border-top-width: 0px;
    border-top-style: none;
    border-top-color: currentcolor;
  border-top: 2px solid rgba(180, 180, 180);
}

  /* Лінія для заголовків */
.tm-heading-line {
  position: relative;
  margin-bottom: 10px !important;
}
.tm-heading-line:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 50px;
  height: 2px;
  background: #456;
}

 /* Лінія для посилань*/
.hover-underline-animation {
  display: inline-block;
  position: relative;
  color: #005599;
}
.hover-underline-animation:after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #005599;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}
.hover-underline-animation:hover:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

 /* Лінія для посилань -2*/
.hover-underline-animation2 {
  display: inline-block;
  position: relative;
  color: #005599;
}

.hover-underline-animation2:after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #eeeeee;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.hover-underline-animation2:hover:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/* Blockquote */
blockquote {
    border-left: 2px solid;
    border-color: #059;
    margin: 10px;
    padding: 10px;
}
