/**
 * File: bkbm-custom-styles.css
 * Description : Contains all necessary styling for the BWL Knowledge Base Manager 
 * Author: xenioushk
 * URL: https://codecanyon.net/item/bwl-knowledge-base-manager/7972812
 * Project: BWL Knowledge Base Manager 
 **/

/*========================================================================*/
/*   TABLE OF CONTENT
/*========================================================================*/
/*
/*      01. KB LAYOUTS
/*        01.1. BOXED STYLE
/*        01.2. ICONIZED LIST STYLE
/*        01.3. FLAT LIST STYLE
/*        01.4. ROUNDED LIST STYLE
/*        01.5. RECTANGLE LIST STYLE
/*        01.6. ACCORDION LAYOUT STYLE
/*      02. KB STICKY BUTTONS
/*      03. KB SEARCH BOX
/*      04. KB QUESTION ASK FORM
/*      05. KB TAB LAYOUT
/*        05.1. HORIZONTAL TAB
/*        05.2. VERTICAL TAB
/*      06. SINGLE KB STYLES
/*      07. TABLE OF CONTENT(TOC)
/*      08. WIDGET AREA
/*      09. RESPONSIVE STYLING
/*
/*========================================================================*/

/***********************************************************************************************/
/* 01. KB LAYOUTS  */
/***********************************************************************************************/

.bwl-kb {
  clear: both;
}

ol.bwl-kb-categories li,
.bwl-kb ol li {
  list-style-type: none;
  line-height: 32px;
}

.bwl-kb img {
  box-shadow: none;
  border: 0px;
}

h2.bwl-kb-type-title {
  margin-bottom: 24px;
}

.bwl-kb h2.bwl-kb-category-title {
  margin: 24px 0;
  padding: 0;
  text-transform: capitalize;
  display: block;
}

.bwl-kb h2.bwl-kb-category-title a {
  font-size: inherit;
  font-weight: bold;
  text-decoration: none;
  color: #2c2c2c;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.bwl-kb h2.bwl-kb-category-title a span.items-counter {
  position: relative;
  width: auto;
  display: inline-block;
  padding: 0 8px;
  text-align: center;
}

.bwl-kb h2.bwl-kb-category-title a span.items-counter:before {
  content: "(";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}

.bwl-kb h2.bwl-kb-category-title a span.items-counter:after {
  content: ")";
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
}

.bwl-kb h2.bkb-box-style-category-title span.items-counter {
  position: relative;
  width: auto;
  display: inline-block;
  padding: 6px 12px;
  text-align: center;
  border-radius: 100%;
  background: #ddd;
  margin-left: 6px;
}

.bwl-kb h2.bwl-kb-category-title a i.fa {
  font-size: 22px;
}

.bwl-kb h2.bwl-kb-category-title a:hover {
  color: #1a1a1a;
}

.bwl-kb ol.bwl-kb-categories {
  list-style-type: none;
  padding: 0;
  margin: 0;
  clear: both;
}

.bwl-kb ul.bwl-kb-categories li {
  padding: 0;
  margin: 0;
}

.bwl-kb p.bkb-count-info {
  text-transform: uppercase;
  padding: 6px 0 6px 6px;
}

i.fa-lock {
  margin-left: 6px;
}

/*------------------------------ Pagination Styling ---------------------------------*/

div.paginate-wrapper {
  margin: 16px 0 32px !important;
  padding: 0;
}

div.paginate {
  text-align: center;
}

div.paginate ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}
div.paginate ul li {
  display: inline;
  list-style: none;
}
div.paginate ul li a {
  margin: 1px 2px !important;
  padding: 4px 10px !important;
  display: inline;
  text-decoration: none;
  color: #717171;
  background-color: #f5f5f5;
  border: 1px solid #676767 !important;
}

div.paginate a:hover,
div.paginate a:focus {
  border: 1px solid #676767 !important;
  background-color: #676767 !important;
  color: #ffffff !important;
}

div.paginate span.current {
  margin: 1px 2px !important;
  padding: 4px 10px !important;
  color: #717171;
  background-color: #ffffff;
  border: 1px solid #676767 !important;
}

/*--- 01.1. BOXED STYLE ---*/

div.bkb-box-layout {
  text-align: center;
  border: 1px solid #eeeeee;
  margin: 3px;
  padding: 32px 12px 72px;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  position: relative;
}

div.bkb-box-layout:hover {
  border: 1px solid #EEEEE;
  background: #f9f9f9;
}

div.bkb-box-layout a {
  text-decoration: none;
  display: inline-block;
  text-align: center;
  clear: both;
  color: #222222;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

div.bkb-box-layout a:hover {
  color: #1a1a1a;
}

div.bkb-box-layout a span.bkb-icon-container {
  font-size: 72px;
  display: inline-block;
  text-decoration: none;
  text-align: center;
  position: relative;
  text-align: center;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

div.bkb-box-layout a span.bkb-icon-container img {
  box-shadow: none;
  border: 0px;
}

div.bkb-box-layout a h2.bkb-box-style-category-title {
  font-size: 24px;
  display: block;
  margin: 24px 0;
  position: relative;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

div.bkb-box-layout a h2.bkb-box-style-category-title:after {
  position: absolute;
  content: "";
  width: 32px;
  height: 2px;
  top: 50%;
  left: 50%;
  background: #0074a2;
  margin-top: 24px;
  margin-left: -16px;
}

.bwl-kb div.bkb-content > p.bkb-category-description {
  font-size: inherit;
  line-height: 24px;
  padding: 0 12px 0 0;
  color: #808080;
}

div.bkb-box-layout p.bkb-category-description {
  padding-left: 6px;
  padding-right: 6px;
  /*font-size: 12px;*/
  padding: 0 12px;
  width: 90%;
  margin: 0 auto;
}

div.bkb-box-layout p.bkb-category-view-all-box {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-top: 1px solid #eee;
  background: #fafafa;
  margin: 0px;
  padding: 12px;
}

/*----- Box Left Aligned ----*/

div.bkb-box-layout.box-left-align {
  text-align: left;
  padding-left: 32px;
  padding-right: 32px;
}

div.bkb-box-layout.box-left-align a {
  text-align: left;
}

div.bkb-box-layout.box-left-align p.bkb-category-description {
  text-align: left;
  width: 100%;
  padding-left: 0;
}

div.bkb-box-layout.box-left-align .bkb-category-view-all-box {
  padding-left: 32px;
  padding-right: 32px;
}

div.bkb-box-layout.box-left-align a h2.bkb-box-style-category-title:after {
  left: 0;
  margin-left: 0;
}

/*----- Box Right Aligned ----*/

div.bkb-box-layout.box-right-align {
  text-align: right;
  padding-left: 32px;
  padding-right: 32px;
}

div.bkb-box-layout.box-right-align a {
  text-align: right;
}

div.bkb-box-layout.box-right-align p.bkb-category-description {
  text-align: right;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

div.bkb-box-layout.box-right-align .bkb-category-view-all-box {
  padding-left: 32px;
  padding-right: 32px;
}

div.bkb-box-layout.box-right-align a h2.bkb-box-style-category-title {
  clear: both;
}

div.bkb-box-layout.box-right-align a h2.bkb-box-style-category-title .items-counter {
  float: left;
  margin-top: -6px;
  margin-right: 8px;
}

div.bkb-box-layout.box-right-align a h2.bkb-box-style-category-title:after {
  left: initial;
  right: 0;
  margin-left: 0;
}

div.bkb-box-layout.no-separator a h2.bkb-box-style-category-title:after,
div.bkb-box-layout.box-left-align.no-separator a h2.bkb-box-style-category-title:after,
div.bkb-box-layout.box-right-align.no-separator a h2.bkb-box-style-category-title:after {
  display: none;
}

div.bkb-box-layout.no-icon a .bkb-icon-container,
div.bkb-box-layout.box-left-align.no-icon a.bkb-icon-container,
div.bkb-box-layout.box-right-align.no-icon a.bkb-icon-container {
  display: none;
}

div.bkb-box-layout.no-view-more-link p.bkb-category-view-all-box {
  display: none;
}

div.bkb-box-layout.no-view-more-link {
  padding-bottom: 32px;
}

/*--- 01.2. ICONIZED LIST STYLE ---*/

ol.iconized-list {
  counter-reset: li;
  list-style: none;
  padding: 0;
  margin-bottom: 4em;
}

ol.iconized-list li {
  margin: 5px 0px;
}

ol.iconized-list li a,
ol.iconized-list li a:visited {
  text-decoration: none;
  margin-bottom: 5px;
  display: flex;
  border: 0px;
  color: #616161;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

ol.iconized-list li i {
  margin-top: 6px;
  width: 16px;
  display: block;
  text-align: left !important;
  font-size: 14px;
  margin-right: 6px;
}

ol.iconized-list li a:hover {
  color: #2c2c2c;
}

div.bkb-tab-content ol.iconized-list li {
  margin: 5px 0px 0px 10px;
}

/*--- 01.3. FLAT LIST STYLE ---*/

ol.none-list {
  counter-reset: li;
  list-style: none;
  padding: 0;
  margin-bottom: 4em;
}

ol.none-list li {
  margin: 5px 0px;
}

ol.none-list li a,
ol.none-list li a:visited {
  padding-right: 3px;
  border: 0px;
  text-decoration: none;
  color: #616161;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

ol.none-list li a:hover {
  color: #2c2c2c;
}

ol.none-list li a:before {
  content: " - ";
}

ol.rounded-list {
  counter-reset: li;
  list-style: none;
  padding: 0;
  margin-bottom: 4em;
}

ol.rounded-list li {
  margin: 12px 16px;
}

/*--- 01.4. ROUNDED LIST STYLE ---*/

.rounded-list a,
.rounded-list a:visited {
  position: relative;
  display: block;
  padding: 0.4em 0.4em 0.4em 20px;
  *padding: 0.4em;
  margin: 0.5em 0;
  background: #eee;
  color: #616161;
  text-decoration: none;
  -webkit-transition: background 0.5s ease-out;
  -moz-transition: background 0.5s ease-out;
  -ms-transition: background 0.5s ease-out;
  -o-transition: background 0.5s ease-out;
  transition: background 0.5s ease-out;
}

.rounded-list a:hover {
  color: #2c2c2c;
  background: #ddd;
}

.rounded-list a:hover:before {
  -moz-transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  -o-transform: rotate(360deg);
  transform: rotate(360deg);
}

.rounded-list a:before {
  content: counter(li);
  counter-increment: li;
  position: absolute;
  left: -18px;
  top: 50%;
  margin-top: -16px;
  background: #cdcdcd;
  height: 32px;
  width: 32px;
  line-height: 26px;
  border: 3px solid #ffffff;
  text-align: center;
  font-style: normal;
  font-weight: bold;
  color: #2c2c2c;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}

/*--- 01.5. RECTANGLE LIST STYLE ---*/

ol.rectangle-list {
  counter-reset: li;
  list-style: none;
  padding: 0;
  margin-bottom: 4em;
}

ol.rectangle-list li {
  margin: 12px 16px;
}

.rectangle-list a,
.rectangle-list a:visited {
  position: relative;
  display: block;
  padding: 0.4em 0.4em 0.4em 28px;
  *padding: 0.4em;
  margin: 0.5em 0;
  background: #eee;
  color: #616161;
  text-decoration: none;
  -webkit-transition: background 0.5s ease-out;
  -moz-transition: background 0.5s ease-out;
  -ms-transition: background 0.5s ease-out;
  -o-transition: background 0.5s ease-out;
  transition: background 0.5s ease-out;
}

.rectangle-list a:hover {
  color: #2c2c2c;
  background: #ddd;
}

.rectangle-list a:hover:before {
  -moz-transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  -o-transform: rotate(360deg);
  transform: rotate(360deg);
}

.rectangle-list a:before {
  content: counter(li);
  counter-increment: li;
  position: absolute;
  left: -10px;
  top: 50%;
  margin-top: -15px;
  background: #cdcdcd;
  height: 30px;
  width: 30px;
  line-height: 26px;
  border: 2px solid #ffffff;
  text-align: center;
  font-style: normal;
  font-weight: bold;
  color: #2c2c2c;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}

/*--- 01.6. ACCORDION LAYOUT STYLE ---*/

.smk_accordion {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 12px;
}

.smk_accordion .accordion_in {
  border: 1px solid #eee;
  position: relative;
  z-index: 10;
  margin-bottom: 6px;
  overflow: hidden;
  background: #fafafa;
}

.smk_accordion .accordion_in .acc_head {
  position: relative;
  /*background: #FDFDFD;*/
  padding: 4px;
  font-size: 14px;
  line-height: 24px;
  display: block;
  cursor: pointer;
  width: 100%;
}

.smk_accordion .accordion_in .acc_head h4 {
  margin: 0px 0 0 12px !important;
  font-size: 16px;
  font-weight: normal !important;
}
.smk_accordion .accordion_in .acc_head .acc_icon_expand {
  display: block;
  width: 32px;
  height: 32px;
  position: absolute;
  left: 0px;
  top: 48%;
  margin-top: -15px;
  background: #ffffff;
  /*border: 1px solid #EEE;*/
  border-radius: 0px;
}

.smk_accordion .accordion_in .acc_head .acc_icon_expand:after {
  font-size: 12px;
  left: 11px;
  line-height: 0;
  position: relative;
  top: 3px;
  content: "\f067";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #ffffff;
}

.smk_accordion .accordion_in .acc_content {
  background: #fdfdfd;
  padding: 3px 10px;
  float: left;
  clear: both;
  box-sizing: border-box;
  width: 100%;
  margin-top: 0px;
  border-top: 0px;
}

.smk_accordion .accordion_in .acc_content .bkb_container {
  border-bottom: 0px;
}

.smk_accordion .accordion_in .acc_content h1:first-of-type,
.smk_accordion .accordion_in .acc_content h2:first-of-type,
.smk_accordion .accordion_in .acc_content h3:first-of-type,
.smk_accordion .accordion_in .acc_content h4:first-of-type,
.smk_accordion .accordion_in .acc_content h5:first-of-type,
.smk_accordion .accordion_in .acc_content h6:first-of-type {
  margin-top: 5px;
}

.smk_accordion .accordion_in:first-of-type,
.smk_accordion .accordion_in:first-of-type .acc_head {
  border-radius: 0;
}
.smk_accordion .accordion_in:last-of-type,
.smk_accordion .accordion_in:last-of-type .acc_content {
  border-radius: 0;
}
.smk_accordion .accordion_in.acc_active > .acc_content {
  display: block;
}
.smk_accordion .accordion_in.acc_active > .acc_head {
}

.smk_accordion .accordion_in.acc_active > .acc_head .acc_icon_expand {
}
.smk_accordion .accordion_in.acc_active > .acc_head .acc_icon_expand:after {
  font-size: 12px;
  left: 11px;
  line-height: 0;
  position: relative;
  top: 3px;
  content: "\f068";
  font-family: "Font Awesome 5 Free";
  color: #ffffff;
  font-weight: 900;
}
.smk_accordion.acc_with_icon .accordion_in .acc_head {
  padding-left: 32px;
}

.smk_accordion.acc_with_icon .accordion_in .acc_content {
  padding: 16px;
}

/*-----  Carousel Mode ----*/

.bkbm-carousel {
  clear: both;
  position: relative;
}

.bkbm-carousel img {
  width: auto !important;
}

.bkbm-carousel .bwl-kb-category-title a img {
  display: inline-block !important;
}

.bkbm-carousel .bkb-content {
  padding-left: 15px;
}

.bkbm-carousel .bkbm-custom-layout-1 {
  padding-left: 12px;
}

.bkbm-carousel [class^="bkbcol-"] {
  width: 100%;
  margin-top: 0px;
}

.bkbm-carousel [class^="bkbcol-"] .bkb-content {
  padding: 0;
}

.bkbm-carousel [class^="col-sm-"] .bkb-content {
  padding-left: 0;
}

.bkbm-carousel .bkbm-custom-layout-1 .bkb-content,
.bkbm-carousel .bkbm-box-shadow .bkb-content {
  padding-left: 12px !important;
}

.bkbm-carousel .owl-nav {
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  opacity: 0.6;
  margin: 0;
  z-index: 1;
}
.bkbm-carousel .owl-nav [class*="owl-"] {
  color: #fff;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #d6d6d6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}
.bkbm-carousel .owl-nav .owl-prev {
  left: -3%;
  position: absolute;
  padding: 0;
  top: 50%;
  width: 42px;
  font-size: 48px;
  height: 48px;
  margin-top: -48px;
  color: #13b4ef;
  background: transparent;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  text-align: left;
}
.bkbm-carousel .owl-nav .owl-prev:hover {
  color: #5c96bb;
}
.bkbm-carousel .owl-nav .owl-next {
  right: -3%;
  position: absolute;
  padding: 0;
  top: 50%;
  width: 42px;
  font-size: 48px;
  height: 48px;
  margin-top: -48px;
  color: #13b4ef;
  background: transparent;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  text-align: right;
}
.bkbm-carousel .owl-nav .owl-next:hover {
  color: #5c96bb;
}
.bkbm-carousel .owl-dots {
  margin: 24px 0 0 0;
  text-align: center;
}
.bkbm-carousel .owl-dots .owl-dot {
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  display: inline-block;
  padding: 4px;
  width: 20px;
  height: 11px;
  background: transparent;
  border: 1px solid #cccccc;
  margin: 0 4px;
}
.bkbm-carousel .owl-dots .owl-dot span {
  display: block;
  background: #254559;
}
.bkbm-carousel .owl-dots .active span {
  padding: 0px;
  width: 14px;
  height: 5px;
  background: #13b4ef;
  position: relative;
  left: -2px;
  top: -2px;
}
.bkbm-carousel:hover .owl-nav {
  opacity: 1;
}

/*-----  KB Category/Tag Border & Box Shadow----*/

.bkbm-custom-layout-1 {
  padding: 0 12px 0 0px;
}

.bkbm-custom-layout-1 .bkb-content {
  border: 1px solid #eee;
  padding-left: 12px;
  margin-bottom: 24px;
  padding-bottom: 16px;
}

.bkbm-box-shadow .bkb-content {
  margin-top: 5px;
  top: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  position: relative;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin-bottom: 16px;
}

.bkbm-box-shadow .bkb-content:hover {
  top: -3px;
  box-shadow: 0px 5px 40px rgba(0, 0, 0, 0.08);
}

/*-----  KB Recent/Popular/Featured/Random Lists Border & Box Shadow----*/

.bkbm-post-list-custom-layout {
  padding: 16px 0px 16px 12px;
  border: 1px solid #eee;
  margin-bottom: 24px;
}

.bkbm-post-list-custom-layout .bwl-kb-categories {
  padding-bottom: 0;
  margin-bottom: 0;
}

.bkbm-post-list-custom-layout .bwl-kb-categories.rectangle-list li {
  margin-left: 8px;
}

.bkbm-post-list-custom-layout h2.bwl-kb-type-title {
  font-size: 24px;
}

.bkbm-post-list-custom-layout.bkbm-posts-box-shadow {
  top: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  position: relative;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.bkbm-post-list-custom-layout.bkbm-posts-box-shadow:hover {
  top: -3px;
  box-shadow: 0px 5px 40px rgba(0, 0, 0, 0.08);
}

/***********************************************************************************************/
/*  02. KB STICKY BUTTONS*/
/***********************************************************************************************/

.bkb-sticky-container {
  padding: 0px;
  margin: 0px;
  position: fixed;
  right: -119px;
  top: 250px;
  width: 150px;
  display: none;
  z-index: 999;
}

.bkb-sticky li {
  list-style-type: none;
  background-color: #333;
  color: #efefef;
  height: 32px;
  line-height: 32px;
  padding: 0 0 0 8px;
  margin: 0px 0px 1px 0px;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  cursor: pointer;
  overflow: hidden;
}

.bkb-sticky li a {
  color: #ffffff;
  font-weight: bold;
  -webkit-transition: all 3s ease-in-out;
  -moz-transition: all 3s ease-in-out;
  -o-transition: all 3s ease-in-out;
  transition: all 3s ease-in-out;
}

.bkb-sticky li a:hover {
  color: #eeeeee;
}

.bkb-sticky li span {
  opacity: 0;
  font-size: 11px;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.bkb-sticky li:hover {
  margin-left: -115px;
}

.bkb-sticky li:hover span {
  opacity: 1;
}

/***********************************************************************************************/
/*  03. KB SEARCH BOX */
/***********************************************************************************************/

form.bkb-live-search-form {
  margin-bottom: 24px;
  position: relative;
  clear: both;
}

div.remodal form.bkb-live-search-form {
  margin-bottom: 0px;
  position: relative;
}

div.remodal span.bkbm-btn-clear {
  background: #ffffff;
}

#result {
  height: 20px;
  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif;
  color: #333;
  padding: 5px;
  margin-bottom: 10px;
  background-color: #ffff99;
}

form.bkb-live-search-form #s {
  display: block;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  border: 1px solid lightgray;
  height: 3em;
  /*line-height: 3em;*/
  text-indent: 5px;
  /*font-size: 12px;*/
}

.bkbm-dn {
  display: none;
}

span.bkbm-btn-clear {
  position: absolute;
  top: 3px;
  width: 30px;
  height: 2.5em;
  line-height: 2.5em;
  text-align: center;
  background: #ffffff;
  cursor: pointer;
}

span.bkbm-btn-clear:after {
  position: absolute;
  content: "X";
  display: inline-block;
  top: -1px;
  left: 8px;
  font-weight: bold;
  font-size: 14px;
  color: #6a6a6a;
  font-family: verdana;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  -webkit-transform: rotateY(0deg);
  -moz-transform: rotateY(0deg);
  -ms-transform: rotateY(0deg);
  -o-transform: rotateY(0deg);
  transform: rotateY(0deg);
}

span.bkbm-btn-clear:hover:after {
  -webkit-transform: rotateY(360deg);
  -moz-transform: rotateY(360deg);
  -ms-transform: rotateY(360deg);
  -o-transform: rotateY(360deg);
  transform: rotateY(360deg);
}

span.bkbm-btn-clear:hover {
  color: #2c2c2c;
}

.suggestionsBox {
  position: absolute;
  left: 0px;
  top: 50px;
  width: 100%;
  padding: 0px;
  background-color: #2c2c2c;
  /*color: #fff;*/
  z-index: 1000;
}

div.suggestionList ul {
  margin: 0px;
  padding: 0px;
}

div.suggestionList:before {
  content: "";
  display: inline-block;
  height: 0;
  margin-right: 0.5em;
  width: 0;
  left: 10px;
  margin-top: -0.5em;
  position: absolute;
  top: 1px;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #2c2c2c;
  z-index: 999;
}

div.suggestionList ul li {
  list-style: none;
  margin: 0px;
  border-bottom: 1px solid #cccccc;
  cursor: pointer;
  font-size: 12px;
  text-align: left;
  color: #ffffff;
}

div.suggestionList ul li a {
  text-decoration: none;
  color: blue;
  /*color: #FFFFFF;*/
  padding: 5px;
  display: block;
}

div.suggestionList ul li:last-child {
  border-bottom: 0px;
}

div.suggestionList ul li a:hover,
div.suggestionList ul li a:visited {
  color: #f3f3f3;
}

.nothing-found {
  padding: 5px;
  color: #ffffff;
}

.search_icon {
  background-origin: content-box;
  background-image: url(../images/search.png);
  background-repeat: no-repeat;
  background-position: top 10px right 10px;
  background-position-x: 99%;
  background-position-y: 50%;
  border: 1px solid #cccccc;
  background-color: #ffffff;
}

.load {
  background-origin: content-box;
  background-image: url(../images/loader.gif);
  background-repeat: no-repeat;
  background-position: top 10px right 10px;
  background-position-x: 99%;
  background-position-y: 50%;
  background-color: #ffffff;
}

#suggest {
  position: relative;
}

form.bkb-sbox-layout-1 #s {
  height: 4em;
  padding: 12px;
  box-shadow: 0 0 0 6px rgba(0, 0, 0, 0.05);
  -webkit-transition: box-shadow 0.5s ease-in-out;
  -moz-transition: box-shadow 0.5s ease-in-out;
  transition: box-shadow 0.5s ease-in-out;
}

form.bkb-sbox-layout-1 #s:focus {
  -webkit-box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.03);
  -moz-box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.03);
  box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.03);
}

form.bkb-sbox-layout-1 .suggestionsBox {
  top: 70px;
}

form.bkb-sbox-layout-1 span.bkbm-btn-clear {
  width: 42px;
  right: 6px;
}

form.bkb-sbox-layout-1 span.bkbm-btn-clear:after {
  top: 6px;
  left: 10px;
}

form.bkb-sbox-layout-1.semi-rounded-box #s {
  border-radius: 6px;
}

form.bkb-sbox-layout-1.rounded-box #s {
  border-radius: 32px;
}

form.bkb-sbox-layout-1.rounded-box span.bkbm-btn-clear {
  border-radius: 32px;
}

form.bkb-sbox-layout-1.dark-box {
  -webkit-box-shadow: 0 0 0 6px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 0 0 6px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 0 6px rgba(0, 0, 0, 0.05);
}

form.bkb-sbox-layout-1.dark-box #s {
  color: #fff;
  background-color: #333333;
}

form.bkb-sbox-layout-1.dark-box span.bkbm-btn-clear {
  background-color: #333333;
  color: #fff;
}

form.bkb-sbox-layout-1 div.suggestionList ul li a {
  line-height: 32px;
  padding-left: 12px;
  font-size: 14px;
}

form.bkb-sbox-layout-1.dark-box input.search_icon {
  background-image: url(../images/search_dark.png) !important;
}

form.bkb-sbox-layout-1.dark-box input.load {
  background-image: url(../images/loader_dark.gif) !important;
}
/***********************************************************************************************/
/* 04. KB QUESTION ASK FORM */
/***********************************************************************************************/

.bkb-ques-form-container {
  margin-top: 11px;
  clear: both;
  display: block;
  text-align: left;
}

.bkb-ques-form-success-box {
  background: #8ad088;
  color: #ffffff;
}

.bkb-ques-form-wait-box {
  background: #ffffc1;
  color: #000000;
}

.bkb-ques-form-error-box {
  background: #e63f37;
  color: #ffffff;
}

.bkb-ques-form-container h2 {
  font-size: 18px;
  margin: 12px 0px 24px;
  padding: 0;
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 12px;
}

.bkb-ques-form-container .bkb-ques-form-message-box {
  width: 100%;
  border: 1px solid #eeeeee;
  line-height: 2.4em;
  text-indent: 2px;
  display: none;
  margin-bottom: 11px;
  box-sizing: border-box;
  padding: 5px 0 5px 10px;
}

.bkb-ques-form-container form input[type="text"] {
  width: 100%;
  margin-bottom: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
  border: 1px solid lightgray;
  height: 42px;
  line-height: 24px;
  box-sizing: border-box;
  padding: 0 12px;
}

.bkb-ques-form-container form textarea {
  padding: 6px 12px;
  width: 100%;
  margin-bottom: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
  border: 1px solid lightgray;
  line-height: 24px;
  min-height: 120px;
  box-sizing: border-box;
}

.bkb-ques-form-container form select {
  margin-bottom: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
  background-color: white;
  border: 1px solid lightgray;
  width: 100%;
  height: 42px;
  line-height: 32px;
  padding: 6px;
  cursor: pointer;
}

.bkb-ques-form-container form input[type="checkbox"] {
  display: inline-block;
  margin-right: 4px;
}

.bkb-ques-form-container form p label {
  display: block;
  clear: both;
  margin: 12px 0;
}

.bkb-ques-form-container form input[type="submit"] {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
  border: 1px solid lightgray;
  height: 32px;
  line-height: 24px;
  padding: 0 12px;
  margin: 12px 0;
}

.bkb-ques-form-container form input.bkb_ques_disabled_field,
.bkb-ques-form-container form select.bkb_ques_disabled_field,
.bkb-ques-form-container form input[type="submit"].bkb_ques_disabled_field {
  background: #eeeeee;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
  border: 1px solid lightgray;
  height: 32px;
  line-height: 24px;
}

.bkb-ques-form-container form input.captcha,
.bkb-ques-form-container form input.sum {
  display: inline;
  text-align: center;
  width: 48px;
}

.bkb-ques-form-container form span#spambot {
  font-size: 11px;
}

.bkb_frontend_attachment_btn {
  border-radius: 0;
  color: #333;
}

.bkb_ext_attachments {
  list-style: decimal;
}

.bkb_ext_attachments li {
  font-weight: bold;
  line-height: 32px;
}

.bkb_ext_attachments li span {
  cursor: pointer;
  width: 24px;
  height: 24px;
  text-align: center;
  background: orangered;
  display: inline-block;
  color: #fff;
  font-weight: bold;
  border-radius: 100%;
  line-height: 24px;
  margin-left: 12px;
}

p.bkb_question_submit_container {
  text-align: left;
}

/***********************************************************************************************/
/* 05. KB TAB LAYOUT */
/***********************************************************************************************/

/*--- 05.1. HORIZONTAL TAB ---*/

div.bkb-tab-content {
  box-sizing: border-box;
  padding: 5px;
  width: 99.5%;
  outline: none;
}

.bkb-content-wrapper {
  clear: both;
  border: 1px solid #ccc;
  margin: 0 0 11px 0;
  padding: 0;
  background: #fbfbfb;
}

.bwl-kb-content-wrapper-ver {
  float: left !important;
  width: 80%;
  border: 1px solid #ccc;
  margin: 0px 0px !important;
  padding: 0;
  clear: none !important;
}

.bkb-wrapper {
  margin: 0;
  padding: 0;
  width: 100%;
}

.bkb-wrapper + form,
form + .bkb-wrapper {
  margin-top: 24px;
}

.bkb-wrapper ul.bkb-tabs {
  position: relative;
  z-index: 50;
  padding: 0px;
  margin: 0px 0px -1px 0px;
}

.bkb-wrapper ul.bkb-tabs li {
  display: block;
  background: none;
  float: left;
  margin: 0;
  padding: 0;
}

.bkb-wrapper ul.bkb-tabs li a {
  list-style: none;
  display: block;
  padding: 5px 11px;
  text-decoration: none;
  color: black;
  font-size: 17px;
  background: #fff;
  outline: none;
}

.bkb-wrapper ul.bkb-tabs li.active a {
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  margin-bottom: -1px;
}

.bkb-wrapper ul.bkb-tabs li.active {
  border-top: 3px solid #2c2c2c;
  position: relative;
}

.bkb-wrapper ul.bkb-tabs li.active a {
  background: #fbfbfb;
}

div.bkb-tab-content ol.bwl-kb-categories {
  margin-bottom: 0px;
}

div.bkb-tab-content ol.bwl-kb-categories li {
  margin: 5px 0px 5px 18px;
}

div.bkb-tab-content ol.none-list li {
  margin: 5px 0px 5px 10px;
}

/*--- 05.2. VERTICAL TAB ---*/

.bkb-wrapper ul.bwl-kb-tabs-ver {
  position: relative;
  z-index: 50;
  padding: 0px;
  margin: 0px 0px !important;
  width: 20%;
  float: left;
  border: 1px solid #ccc;
  border-right: 0px;
  right: -1px;
}

.bkb-wrapper ul.bwl-kb-tabs li {
  display: block;
  background: none;
  float: left;
  margin: 0;
  padding: 0;
}

.bkb-wrapper ul.bwl-kb-tabs-ver li {
  width: 100%;
  margin-bottom: 0px;
  border-left: 3px solid transparent;
}

.bkb-wrapper ul.bwl-kb-tabs li a {
  list-style: none;
  display: block;
  padding: 5px 11px;
  text-decoration: none;
  color: black;
  font-size: 16px;
  background: #fff;
  outline: none;
}

.bkb-wrapper ul.bwl-kb-tabs-ver li a {
  list-style: none;
  display: block;
  padding: 8px 10px;
  text-decoration: none;
  color: black;
  font-size: 16px;
  background: #fff;
  outline: none;
}

.bkb-wrapper ul.bwl-kb-tabs li.active a {
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  margin-bottom: -1px;
}

.bkb-wrapper ul.bwl-kb-tabs-ver li.active a {
  border-left: 3px solid #ccc;
  border-right: 0px solid #ccc;
  margin-bottom: 0px;
}

.bkb-wrapper ul.bwl-kb-tabs li.active {
  border-top: 3px solid #2c2c2c;
}

.bkb-wrapper ul.bwl-kb-tabs-ver li.active {
  border-top: 0px solid #2c2c2c;
  border-left: 0px solid #2c2c2c;
  border-right: 0px solid #2c2c2c;
}

/***********************************************************************************************/
/* 06. SINGLE KB STYLES */
/***********************************************************************************************/

/*------------------------------ Post View ---------------------------------*/

.bkpm-total-post-view {
  padding: 12px 0 5px 0;
  border-top: 1px solid #e6e6e6;
}

.bkpm-total-post-view i.fa {
  margin-right: 2px;
}

.bkpm-total-post-view span.bkbm-meta-info {
  display: inline-block;
  margin-right: 8px;
}

.bkpm-total-post-view span.bkbm-meta-info:last-child {
  margin-right: 0px;
}

.bkpm-total-post-view a {
  text-decoration: none;
}

a.bkb-post-edit-link {
  display: block;
  clear: both;
  text-decoration: none;
  margin: 6px 0;
}

/*------------------------------ Tool Tip Styles  ---------------------------------*/

.tipsy {
  font-size: 12px;
  position: absolute;
  padding: 5px;
  z-index: 100000;
}
.tipsy-inner {
  background-color: #000;
  color: #fff;
  max-width: 200px;
  padding: 5px 8px 5px 8px;
  text-align: center;
}

/* Rounded corners */
.tipsy-inner {
  border-radius: 0px;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
}

/* Uncomment for shadow */
/*.tipsy-inner { box-shadow: 0 0 5px #000000; -webkit-box-shadow: 0 0 5px #000000; -moz-box-shadow: 0 0 5px #000000; }*/

.tipsy-arrow {
  position: absolute;
  width: 0;
  height: 0;
  line-height: 0;
  border: 5px dashed #000;
}

/* Rules to colour arrows */
.tipsy-arrow-n {
  border-bottom-color: #000;
}
.tipsy-arrow-s {
  border-top-color: #000;
}
.tipsy-arrow-e {
  border-left-color: #000;
}
.tipsy-arrow-w {
  border-right-color: #000;
}

.tipsy-n .tipsy-arrow {
  top: 0px;
  left: 50%;
  margin-left: -5px;
  border-bottom-style: solid;
  border-top: none;
  border-left-color: transparent;
  border-right-color: transparent;
}
.tipsy-nw .tipsy-arrow {
  top: 0;
  left: 10px;
  border-bottom-style: solid;
  border-top: none;
  border-left-color: transparent;
  border-right-color: transparent;
}
.tipsy-ne .tipsy-arrow {
  top: 0;
  right: 10px;
  border-bottom-style: solid;
  border-top: none;
  border-left-color: transparent;
  border-right-color: transparent;
}
.tipsy-s .tipsy-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-top-style: solid;
  border-bottom: none;
  border-left-color: transparent;
  border-right-color: transparent;
}
.tipsy-sw .tipsy-arrow {
  bottom: 0;
  left: 10px;
  border-top-style: solid;
  border-bottom: none;
  border-left-color: transparent;
  border-right-color: transparent;
}
.tipsy-se .tipsy-arrow {
  bottom: 0;
  right: 10px;
  border-top-style: solid;
  border-bottom: none;
  border-left-color: transparent;
  border-right-color: transparent;
}
.tipsy-e .tipsy-arrow {
  right: 0;
  top: 50%;
  margin-top: -5px;
  border-left-style: solid;
  border-right: none;
  border-top-color: transparent;
  border-bottom-color: transparent;
}
.tipsy-w .tipsy-arrow {
  left: 0;
  top: 50%;
  margin-top: -5px;
  border-right-style: solid;
  border-left: none;
  border-top-color: transparent;
  border-bottom-color: transparent;
}

/*------------------------------ Voting Box Styles  ---------------------------------*/

.bkb_container {
  width: 100%;
  border-bottom: #e6e6e6 1px solid;
  border-top: #e6e6e6 1px solid;
  display: block;
  float: left;
  margin: 12px 0;
  padding: 5px 0;
}

.bkb_btn_container {
  float: left;
  width: 68%;
}

.bkb_btn_container img.pvm-custom-icon {
  width: 16px;
  height: 16px;
}

p.voting-closed-message {
  font-family: inherit;
  margin: 0px 0px;
  padding: 0px;
  line-height: 24px;
}

.msg_container {
  margin-top: 24px;
  text-align: left;
}

.bkb_btn_container .btn_like,
.bkb_btn_container .btn_dislike {
  width: auto;
  height: 48px;
  line-height: 48px;
  padding: 0 24px;
  float: left;
  margin-top: 15px;
  cursor: pointer;
  color: #333333;
  border: #f0f0f0 1px solid;
  margin-right: 5px;
  font-size: 20px;
}

.bkb_btn_container .btn_like {
  text-align: center;
  color: #559900;
}

.bkb_btn_container .btn_like:hover {
  background-color: #f0f0f0;
  border: #c6c6c6 1px solid;
}
.bkb_btn_container .btn_dislike {
  color: #c9231a;
}
.bkb_btn_container .btn_dislike:hover,
.bkb_btn_container .dislike-h {
  background-color: #f0f0f0;
  border: #c6c6c6 1px solid;
}

.bkb_container .stat-cnt {
  float: right;
  width: 25%;
}
.bkb_container .stat-bar {
  width: 100%;
  height: 8px;
  margin: 12px 0;
  border: 1px solid #eeeeee;
}
.bkb_container .bg-green {
  background-color: #559900;
}
.bkb_container .bg-red {
  background-color: #c9231a;
}
.bkb_container .total-vote-counter {
  font-size: 14px;
  color: #333;
  text-align: right;
}
.bkb_container .stat-bar div {
  height: 8px;
  float: left;
}

.bkb_container .like-count-container,
.bkb_container .dislike-count-container {
  width: auto;
  height: 18px;
  float: right;
  font-size: 12px;
  line-height: 18px;
  color: #666;
  padding-left: 15px;
}

/*------------------------------ Feedback Message Box  ---------------------------------*/

.bkb_clearfix {
  clear: both;
}

section.bkb-feedback-form-container {
  display: none;
}

section.bkb-feedback-form-container .bwl-form-success-box {
  background: #8ad088;
  color: #ffffff;
}

section.bkb-feedback-form-container .bwl-form-wait-box {
  background: #ffffc1;
  color: #000000;
}

section.bkb-feedback-form-container .bwl-form-error-box {
  background: #e63f37;
  color: #ffffff;
}

section.bkb-feedback-form-container h2 {
  font-size: 16px;
}

section.bkb-feedback-form-container .bwl_pro_form_error_message_box {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  display: none;
  padding: 5px;
  margin: 0 0 12px 0;
}
section.bkb-feedback-form-container .feedback_message_box {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid lightgray;
  width: 100%;
  height: 100px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
  border-radius: 0px;
  font-size: 12px;
}

section.bkb-feedback-form-container form input.captcha,
section.bkb-feedback-form-container form input.sum {
  display: inline;
  text-align: center;
  width: 40px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
  border: 1px solid lightgray;
  height: 24px;
  line-height: 24px;
}

section.bkb-feedback-form-container form span#spambot {
  font-size: 11px;
}

p.bkb_feedback_submit_container {
  text-align: left;
}

section.bkb-feedback-form-container form input[type="submit"] {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
  border: 1px solid lightgray;
  height: 32px;
  line-height: 24px;
  padding: 0 12px;
}

/*------------------------------  Share Button ---------------------------------*/

p.bkbm-share-links {
  clear: both;
  display: inline-block;
  margin: 12px 0 24px 0;
}

p.bkbm-share-links a.btn-share:first-child {
  margin-left: 0px;
}

p.bkbm-share-links a.btn-share {
  text-decoration: none;
  width: 32px;
  height: 32px;
  line-height: 24px;
  display: inline-block;
  border: 1px solid #cccccc;
  text-align: center;
  padding: 3px;
  margin: 3px;
  color: #666666;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

p.bkbm-share-links a.btn-share:hover {
  text-decoration: none;
  color: #2c2c2c;
  border: 1px solid #eedc94;
  background: #eeeeee;
}

p.bkbm-share-links a.btn-share:last-child {
  margin-right: 0px;
}

/*-----------------------------Related Posts ----------------------------------*/

section.bkb_related_posts {
  margin: 0px 0px 12px 0px;
}

section.bkb_related_posts h2 {
  border-bottom: 1px solid #eeeeee;
  font-size: 18px;
  margin: 12px 0 24px;
  padding: 0 0 12px;
}

section.bkb_related_posts ul.bkb-related-posts {
  clear: both;
  list-style: none;
  padding: 0px;
  margin: 0px;
}
section.bkb_related_posts ul.bkb-related-posts li {
  padding: 0px;
  margin: 0px;
  list-style-type: none;
}

section.bkb_related_posts ul.bkb-related-posts li a {
  text-decoration: none;
}

section.bkb_related_posts ul.bkb-related-posts li a:before {
  content: "-";
  display: inline-block;
  margin-right: 3px;
  font-weight: bold;
}

/*-----------------------------KB Attachment Items----------------------------------*/

section.bkb_file_attachment {
  margin: 0px 0px 12px 0px;
}

section.bkb_file_attachment h2 {
  border-bottom: 1px solid #eeeeee;
  font-size: 18px;
  margin: 11px 0;
  padding: 0 0 5px;
}

section.bkb_file_attachment ul.bkb-attachment-items {
  clear: both;
  list-style: none;
  padding: 0px;
  margin: 0px;
}
section.bkb_file_attachment ul.bkb-attachment-items li {
  padding: 0px;
  margin: 0px;
  list-style-type: none;
}

section.bkb_file_attachment ul.bkb-attachment-items li a {
  text-decoration: none;
}

section.bkb_file_attachment ul.bkb-attachment-items li a:before {
  content: "- ";
  display: inline-block;
  margin-right: 3px;
  font-weight: bold;
}

/***********************************************************************************************/
/* 07. TABLE OF CONTENT(TOC) */
/***********************************************************************************************/

.active-toc-link {
  color: tomato !important;
}

.sticky-fixed {
  position: relative;
  /*    -webkit-transition: all 0.4s ease-in-out;
         transition: all 0.4s ease-in-out;*/
}

.bkb-toc-widget.sticky-fixed {
  position: fixed;
  top: 0;
  z-index: 99999;
  background: #f3f3f3;
  height: 400px;
  overflow-y: scroll;
  overflow-x: hidden;
  -moz-box-shadow: inset 0 0 10px #eeeeee;
  -webkit-box-shadow: inset 0 0 10px #eeeeee;
  box-shadow: inset 0 0 10px #eeeeee;
  padding: 32px 12px;
}

.bkb-toc-title {
  font-size: 18px;
  font-weight: bold;
  position: relative;
}

.BKB_Toc_Widget {
  position: relative;
}

.BKB_Toc_Widget span.bkb_toc_close_btn {
  position: absolute;
  width: 24px;
  height: 24px;
  line-height: 24px;
  border-radius: 6px;
  text-align: center;
  top: 32px;
  right: 14px;
  color: #333;
  font-size: 12px;
  cursor: pointer;
  display: none;
}

.bkb_toc_wrapper {
  background: #fbfbfb;
  border: 1px solid #eeeeee;
  clear: both;
  margin-bottom: 24px;
  padding: 12px;
  font-size: 12px;
}

.bkb_toc_wrapper ol {
  padding: 0;
  margin: 0;
  counter-reset: toc;
}

.bkb_toc_wrapper ol li {
  font-weight: normal;
  list-style-type: none;
  counter-increment: toc;
  /*margin-left: 5px;*/
}

.bkb_toc_wrapper ol li ol {
  margin-left: 12px;
}

.bkb_toc_wrapper ol li:before {
  content: "" counters(toc, ".") ". ";
}

.bkb_toc_wrapper ol li a {
  font-weight: normal;
  text-decoration: none;
  color: #0074a2;
}

.bkb_toc_wrapper ol li a:hover {
  color: #004f6c;
}

.bkb_toc_wrapper ol li {
  margin: 6px 0;
}

.bkb_toc_wrapper ol.bkb-nested-list li {
  margin-left: 12px;
}

.bkb-toc-top {
  font-weight: normal;
  width: 24px;
  display: inline-block;
  text-align: center;
}

.bkb-toc-heading {
  margin: 12px 0;
}

.bkb-toc-heading i {
  color: #0074a2;
}

.bkb-toc-top i {
  text-align: center;
  width: 16px;
  display: inline-block;
  color: #0074a2;
  font-size: 18px;
  -webkit-transition: all 0.7s ease-out;
  -moz-transition: all 0.7s ease-out;
  transition: all 0.7s ease-out;
}

.bkb-toc-top:hover {
  background: #f9f9f9;
}

.bkb-toc-top:hover i {
  color: #004f6c;
}

.bkb-toc-widget ol li ol {
  margin-top: 12px;
}

/***********************************************************************************************/
/* 08. WIDGET AREA */
/***********************************************************************************************/

ul.bkb-widget {
  list-style: none;
  margin: 0px;
  padding: 0px;
}

ul.bkb-widget li {
  margin: 12px 0;
  list-style: none;
  /*margin: 0px;*/
  padding: 0px;
  color: #5c5c5c;
  line-height: 24px;
}

ul.bkb-widget li a {
  text-decoration: none;
  text-transform: capitalize;
}

ul.bkb-widget li span.bkb-widget-seperator {
  display: block;
  margin: 3px 0;
}

ul.bkb-widget li span.bkb-widget-meta {
  display: block;
  margin: 3px 0;
  font-size: 13px;
  color: #333;
}

ul.bkb-widget li span.bkb-widget-meta i.fa {
  color: #999;
}

ul.bkb-nested-category-list {
  list-style: none;
  margin: 0px;
  padding: 0px;
}

ul.bkb-nested-category-list li {
  margin: 12px 0;
  list-style: none;
  /*margin: 0px;*/
  padding: 0px;
  color: #5c5c5c;
  line-height: 24px;
}

ul.bkb-nested-category-list li ul {
  margin-left: 12px;
}

/*
.set-an-arrow {
  position: relative;
  width: 16px;
  height: 16px;
  display: inline;
  left: 52px;
  top: 1px;
  line-height: 16px;
}

.set-an-arrow.bkb-hide-count {
  left: 26px;
}

.set-an-arrow:after {
  position: absolute;
  width: 20px;
  height: 20px;
  cursor: pointer;
  right: 0px;
  top: 0px;
  content: "\f078";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #333;
  text-align: center;
  line-height: 20px;
}
*/

/***********************************************************************************************/
/* 09. RESPONSIVE STYLING */
/***********************************************************************************************/

/* Smaller than 1200 (devices and browsers) */
@media only screen and (max-width: 1199px) {
}

/* Smaller than standard 960 (devices and browsers) */
@media only screen and (max-width: 959px) {
}

/* Tablet Portrait size to standard 960 (devices and browsers) */
@media only screen and (min-width: 768px) and (max-width: 959px) {
  .bkb-wrapper ul.bkb-tabs li {
    clear: both;
    width: 100%;
    border-bottom: 1px solid #eeeeee;
  }

  .bkb-wrapper ul.bkb-tabs li.active a {
    border-bottom: 1px solid #eeeeee;
  }
}

/* All Mobile Sizes (devices and browser) */
@media only screen and (max-width: 767px) {
  .bkb-wrapper ul.bkb-tabs li {
    clear: both;
    width: 100%;
    border-bottom: 1px solid #eeeeee;
  }

  .bkb-wrapper ul.bkb-tabs li.active a {
    border-bottom: 1px solid #eeeeee;
  }
}

/* Mobile Landscape Size to Tablet Portrait (devices and browsers) */
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .bkb-wrapper ul.bkb-tabs li {
    clear: both;
    width: 100%;
    border-bottom: 1px solid #eeeeee;
  }

  .bkb-wrapper ul.bkb-tabs li.active a {
    border-bottom: 1px solid #eeeeee;
  }

  div.bkb-box-layout {
    margin: 0 0 12px 0 !important;
  }

  /*------------------------------  TAB ---------------------------------*/

  .bkb-wrapper ul.bwl-kb-tabs-ver {
    clear: both;
    width: 100%;
  }

  .bwl-kb-content-wrapper-ver {
    margin-top: 12px;
    width: 100%;
    clear: both;
  }
  /*----- Table of Content ----*/

  .BKB_Toc_Widget {
    display: none;
  }

  /*    .bwl-kb-wrapper ul.bwl-kb-tabs li{
            clear: both;
            width: 100%;
            border-bottom: 1px solid #EEEEEE;
        }
    
        .bwl-kb-wrapper ul.bwl-kb-tabs li.active a {
            border-bottom: 1px solid #EEEEEE;
        }
    
    
        .bwl-kb-wrapper ul.bwl-kb-tabs-ver,
        .bwl-kb-content-wrapper-ver{
            width: 100%;
            clear: both;
        }
    
        .bwl-kb-wrapper ul.bwl-kb-tabs-ver li.active a {
            border-bottom: 1px solid #EEEEEE;
        }*/
}

/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
@media only screen and (max-width: 479px) {
  .bkb-wrapper ul.bkb-tabs li {
    clear: both;
    width: 100%;
    border-bottom: 1px solid #eeeeee;
  }

  .bkb-wrapper ul.bkb-tabs li.active a {
    border-bottom: 1px solid #eeeeee;
  }

  div.bkb-box-layout {
    margin: 0 0 12px 0 !important;
  }

  /*------------------------------ TAB ---------------------------------*/

  .bkb-wrapper ul.bwl-kb-tabs-ver {
    clear: both;
    width: 100%;
    border: 0px;
  }

  .bwl-kb-content-wrapper-ver {
    margin-top: 12px;
    width: 100%;
    clear: both;
  }

  /*----- Table of Content ----*/

  .BKB_Toc_Widget,
  .sticky-fixed {
    position: initial;
  }
}
