html{scroll-behavior:smooth;}


/*** COMMON ***/
.bnws-eletm-error-message {
  color: #c24c52;
  font-size: 1.1em;
  padding: 10px;
  background: #f1ced0;
  margin: 8px 0px;
  border-radius: 4px;
}

.bnws-eletm-query-output {
  font-family: 'Courier New', Courier, monospace;
  color: #222;
  font-size: 1.1em;
  padding: 10px;
  background: #efefef;
  margin: 8px 0px;
  border-radius: 4px;
}

/*** CATEGORY WIDGET ***/
.bnws-eletm-category-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

/*** META WIDGET ***/
.bnws-eletm-meta-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.bnws-eletm-meta-item  {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/*** POST_TAGS WIDGET ***/
.bnws-eletm-tags-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.bnws-eletm-position .bnws-eletm-featured-image > img {
  width: 100%;
  position: absolute;
  margin-top: -10%;
  left: 0;
  right: 0;
}

/*** POST_GRID WIDGET ***/
.bnws-eletm-post-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: flex-start;
}

.bnws-eletm-post-grid-column {
  transition: all 0.3s ease-out;
}

.bnws-eletm-post-grid-column.adaptive-height {
  min-height: 100%;
  height: inherit;
}

.bnws-eletm-post-grid.adaptive-height div.slick-track {
  display:flex;
}

.bnws-eletm-post-grid .bnws-eletm-pg-title {
  margin:0;
}
.bnws-eletm-post-grid .bnws-eletm-pg-read-more {
  display: flex;
  align-items: center;
  width: fit-content;
}

.bnws-eletm-badge-box {
  position: absolute;
  bottom:10px;
  left:10px;
  display: flex;
  flex-wrap: wrap;
}

.bnws-eletm-post-grid-pagination {
  display: flex;
  align-items: center;
  line-height: 1;
}

/*** COMMENT WIDGET ***/
#comments.bnws-eletm-comments .comment-author .comment-meta {
  font-size: unset;
  line-height: unset;
  text-transform: unset;
  letter-spacing: unset;
  font-family: 'Roboto Condensed';
}

#comments.bnws-eletm-comments .comment-meta  {
  font-size: 14px;
  font-weight: 400;
}

#comments.bnws-eletm-comments .comment-meta .comment-date   {
  color: #888;
}

#comments.bnws-eletm-comments .comment-meta .comment-reply-link   {
  color: var(--col-main);
}

#comments.bnws-eletm-comments #cancel-comment-reply-link {
  font-size: 14px;
  text-transform: unset;
  letter-spacing: unset;
  font-weight: 400;
}

#comments.bnws-eletm-comments #cancel-comment-reply-link:hover {
  color: var(--col-main);
  border: 2px solid var(--col-main);
}

/*** RIPPLE ANIMATION ***/
.bnws-ripples-circle div {
  -webkit-animation: circle-small-scale 3s ease-in-out infinite alternate;
  animation: circle-small-scale 3s ease-in-out infinite alternate;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-timing-function: cubic-bezier(.6,0,.4,1);
  position: absolute;
  border-radius: 50%;
  opacity: .4;
  z-index: 0;
  background: rgb(79, 65, 108) none repeat scroll 0% 0%;
}
.bnws-ripples-circle div:nth-child(1) {
  content:' ';
  width: 50px;
  height: 50px;
  top: 150px;
  right: -25px;
  animation-delay: 0.3s;
}
.bnws-ripples-circle div:nth-child(2) {
  content:' ';
  width: 100px;
  height: 100px;
  top: 125px;
  right: -50px;
  animation-delay: 0.6s;
}
.bnws-ripples-circle div:nth-child(3) {
  content:' ';
  width: 150px;
  height: 150px;
  top: 100px;
  right: -75px;
  animation-delay: 0.9s;
}
.bnws-ripples-circle div:nth-child(4) {
  content:' ';
  width: 200px;
  height: 200px;
  top: 75px;
  right: -100px;
  animation-delay: 1.2s;
}
.bnws-ripples-circle div:nth-child(5) {
  content:' ';
  width: 250px;
  height: 250px;
  top: 50px;
  right: -125px;
  animation-delay: 1.5s;
}
@-webkit-keyframes circle-small-scale {
  0% { -webkit-transform: scale(1.0); }
  100% { -webkit-transform: scale(1.25); }
}
@keyframes circle-small-scale {
  0% { transform: scale(1.0); }
  100% { transform: scale(1.25); }
}