/**
 * Main Template File
 * @since 1.0
 * @author Fajar Chandra
 */
@import url('https://fonts.googleapis.com/css?family=Open+Sans|Open+Sans+Condensed:700&display=swap');
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  border-top: 4px solid #f68e1e;
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
  font-size: 13px;
  line-height: 20px;
  background: #c9c0b6;
  background: linear-gradient(to right, #c9c0b6 10%, #f5eee8, #c9c0b6 90%);
  color: #4a4746;
}
img {
  max-width: 100%;
}
a {
  color: #f68e1e;
  text-decoration: none;
}
a:hover {
  color: #a75a07;
}
.container {
  max-width: 990px;
  padding: 0 25px;
  margin: auto;
}
/**
  Shared content styles for editor and frontend
 */
.mce-content-body h1,
.sp-component h1 {
  font-size: 18px;
  font-weight: normal;
  line-height: 28px;
  color: #d4522a;
}
.mce-content-body h2,
.sp-component h2 {
  font-size: 18px;
  font-weight: normal;
  line-height: 28px;
  color: #d4522a;
}
.mce-content-body h3,
.sp-component h3 {
  display: inline-block;
  margin: 0 0 20px;
  border-bottom: 1px solid #f68e1e;
  font-size: 18px;
  font-weight: normal;
  line-height: 28px;
  color: #f68e1e;
}
.mce-content-body h3:after,
.sp-component h3:after {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  z-index: -1;
  border-bottom: 1px solid #ccc;
  content: '';
}
.mce-content-body h4,
.sp-component h4 {
  display: inline-block;
  border-bottom: 1px solid #000;
  font-size: 16px;
  font-weight: normal;
  line-height: 24px;
  color: #000;
}
.mce-content-body h4:after,
.sp-component h4:after {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  z-index: -1;
  border-bottom: 1px solid #ccc;
  content: '';
}
.mce-content-body h5,
.sp-component h5 {
  margin: 20px 0 2px;
  font-family: 'Open Sans Condensed', 'Open Sans', Helvetica, Arial, sans-serif;
  font-weight: bold;
  font-size: 13px;
  color: #d4522a;
}
.mce-content-body p,
.sp-component p {
  margin: 0 0 20px;
}
.mce-content-body ul,
.sp-component ul {
  margin: 5px 0 20px;
  padding-left: 20px;
  list-style-image: url(../images/list.png);
}
.mce-content-body ul li,
.sp-component ul li {
  position: relative;
  margin-bottom: 5px;
}
.heading-underline {
  display: inline-block;
  margin-bottom: -1px;
  border-bottom: 1px solid #f68e1e;
}
h4 .heading-underline {
  border-bottom-color: #000;
}
.box-shadow {
  padding: 5px;
  border-bottom: solid 15px #fff;
  border-image: url(../images/shadow-big.png) 0 0 15 0;
  background: #fff;
  background-clip: padding-box;
}
/********************************************************************/
/* ACCORDION */
div.accordion-caption {
  padding: 10px 0;
  line-height: 20px;
  color: #f68e1e;
}
div.accordion-caption:before {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 10px 0 0;
  text-align: center;
  background: #f68e1e;
  color: #fff;
  content: '+';
}
div.accordion-content {
  padding-bottom: 20px;
}
div.accordion-content + .accordion-caption {
  border-top: 1px solid #e8e6e6;
}
/********************************************************************/
/* HEADER */
.sp-header {
  /* Finder */
}
.sp-header > .container {
  display: grid;
  grid-gap: 30px;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
}
.sp-header .finder {
  text-align: right;
}
.sp-header .finder input,
.sp-header .finder button {
  background: #fff;
  color: #333;
  border: none;
  padding: 5px;
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
  font-size: 12px;
  line-height: 20px;
}
.sp-header .finder button {
  background: #fff url(../images/search.png) no-repeat left center;
  width: 30px;
  color: transparent;
  transition: background-color 0.2s;
}
.sp-header .finder button:hover {
  background-position: right center;
  background-color: #f68e1e;
}
@media (max-width: 767px) {
  .sp-header {
    margin: 20px 0 30px;
  }
  .sp-header > .container {
    display: block;
    text-align: center;
  }
  .sp-header p {
    text-align: center !important;
  }
  .sp-header .finder {
    text-align: center;
  }
}
/********************************************************************/
/* MAIN MENU */
.sp-menu .nav {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}
.sp-menu .nav a {
  display: block;
  height: 100%;
  margin: 0 2px;
  padding: 10px 20px;
  border: 1px solid #ccc;
  border-bottom: none;
  border-radius: 5px 5px 0 0;
  font-family: 'Open Sans Condensed', 'Open Sans', Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
  background: #fff;
  color: #666;
  transition: color 0.2s, background-color 0.2s;
}
.sp-menu .nav a:hover {
  color: #f68e1e;
}
.sp-menu .nav > li.active > a {
  border-color: #f68e1e;
  color: #f68e1e;
}
.sp-menu .nav li {
  position: relative;
}
.sp-menu .nav li ul {
  display: none;
  position: absolute;
  z-index: 1000;
  top: 100%;
  left: 2px;
  margin: 0;
  padding: 0;
  border: solid 1px #fff;
  list-style: none;
  white-space: nowrap;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
}
.sp-menu .nav li ul a {
  margin: 0;
  padding: 5px 20px;
  border-radius: 0;
  border-bottom: 1px solid #fff;
  background: #d2cabf;
  color: #4a4746;
}
.sp-menu .nav li ul a:hover {
  background: #f68e1e;
  color: #fff;
}
.sp-menu .nav li:hover ul {
  display: block;
}
.sp-menu-btn {
  display: none;
}
@media (max-width: 767px) {
  .sp-menu {
    position: fixed;
    z-index: 1000;
    top: 0;
    right: -400px;
    bottom: 0;
    width: 400px;
    max-width: 80%;
    background: #fff;
    overflow: auto;
    transition: right .3s;
  }
  .sp-menu.visible {
    right: 0;
  }
  .sp-menu > .container {
    padding: 0;
  }
  .sp-menu .nav {
    display: block;
  }
  .sp-menu .nav a {
    border-radius: 0;
    border: 1px solid #ccc;
  }
  .sp-menu .nav li ul {
    position: static;
    display: block;
    white-space: wrap;
  }
  .sp-menu-btn {
    display: block;
    position: absolute;
    top: 5px;
    right: 5px;
    width: 40px;
    height: 40px;
    color: #4a4746;
    font-size: 20px;
    line-height: 40px;
    text-align: center;
  }
  body.menu-visible:before {
    position: fixed;
    display: block;
    z-index: 999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    content: '';
  }
}
/********************************************************************/
/* BODY */
.sp-body {
  margin: 0 0 45px;
}
.sp-body > .container {
  display: flex;
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid #ccc;
  background: #fff;
}
.tpl-flat .sp-body > .container {
  padding: 0;
  background: transparent;
}
.sp-body .main {
  flex-grow: 1;
}
.sidebar {
  flex-shrink: 0;
  width: 40%;
  padding-left: 25px;
}
.sidebar p {
  margin: 0 0 6px;
}
.sidebar .module {
  margin: 0 0 25px;
  border: 1px solid #d2cabf;
}
.sidebar .module-header {
  margin: 0;
  padding: 10px;
  background: #d2cabf;
  color: #4a4746;
  font-size: 1em;
  text-transform: uppercase;
}
.sidebar .module-content {
  padding: 10px;
}
@media (max-width: 767px) {
  .sp-body > .container {
    display: block;
  }
  .sp-body .sidebar {
    width: auto;
    padding: 0;
  }
}
/********************************************************************/
/* BOTTOM */
.sp-bottom {
  padding: 40px 0;
  background: #4a4746;
  color: #cec2b2;
  font-size: 12px;
  line-height: 18px;
}
.sp-bottom > .container {
  display: grid;
  grid-gap: 30px;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
}
.sp-bottom a {
  color: #cec2b2;
}
.sp-bottom a:hover {
  color: #f68e1e;
}
.sp-bottom p,
.sp-bottom li {
  margin: 0 0 3px;
}
.sp-bottom ul {
  margin: 0;
  padding: 0 0 0 20px;
}
.sp-bottom li {
  list-style-image: url(../images/arrow.png);
}
.sp-bottom .module-header {
  margin: 0 0 10px;
  font-size: 13px;
  text-transform: uppercase;
  color: #f68e1e;
}
@media (max-width: 767px) {
  .sp-bottom > .container {
    display: block;
  }
  .sp-bottom .grid-item {
    margin: 0 0 20px;
  }
}
/********************************************************************/
/* FOOTER */
.sp-footer {
  font-size: 11px;
  background: #323232;
  color: #868585;
}
.sp-footer > .container {
  display: grid;
  grid-gap: 30px;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
}
/********************************************************************/
/* TOOLTIP */
.tooltip {
  position: absolute;
  padding: 4px 15px;
  background: #4a4746;
  color: #d2cabf;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}
/********************************************************************/
/* ACCORDION */
div.accordion-caption {
  cursor: pointer;
}
.accordion-content {
  display: none;
}
/********************************************************************/
/* com_content */
.com_content .sp-component .article-info {
  margin: -20px 0 20px;
  border-bottom: 1px solid #d2cabf;
}
.com_content .sp-component .article-info dd {
  margin: 0;
  padding: 5px 20px 5px 0;
  display: inline-block;
  font-size: 12px;
}
.com_content .sp-component .article-info .createdby {
  display: block;
  padding: 0 0 20px;
  border-bottom: 1px solid #d2cabf;
}
.com_content .sp-component .article-info .category-name:before {
  content: '';
  display: inline-block;
  width: 17px;
  height: 15px;
  margin-right: 2px;
  vertical-align: -2px;
  background: #f68e1e url(../images/category-icon.png) no-repeat center center;
}
.com_content .sp-component .article-info .published:before {
  content: '';
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-right: 2px;
  vertical-align: -2px;
  background: #f68e1e url(../images/clock-icon.png) no-repeat center center;
}
.com_content .sp-component .item {
  margin: 0 0 30px;
  border-bottom: 1px solid #d2cabf;
}
.com_content .sp-component .item:after {
  display: block;
  margin: 30px 0 4px;
  border-bottom: 1px solid #d2cabf;
  content: '';
}
.com_content .sp-component .item .item-image {
  float: left;
  width: 50%;
  margin-right: 20px;
}
.com_content .sp-component .item-image img {
  width: 100%;
  border-bottom: solid 15px #fff;
  border-image: url(../images/shadow-big.png) 0 0 15 0;
}
.com_content .sp-component .pagenav {
  padding: 0;
}
.com_content .sp-component .pagenav li:before {
  display: none;
}
.com_content .sp-component .pagenav .previous {
  float: left;
}
.com_content .sp-component .pagenav .next {
  float: right;
}
.com_content .sp-component .pagenav:after {
  content: '';
  clear: both;
  display: block;
}
/********************************************************************/
/* mod_breadcrumb */
.breadcrumb {
  margin: 0;
  padding: 0;
  list-style: none;
}
.breadcrumb li {
  display: inline;
}
.breadcrumb a {
  text-decoration: none;
  color: inherit;
}
/********************************************************************/
/* mod_latestnews */
.latestnews {
  margin: 0;
  padding: 0 0 0 20px;
  list-style-image: url(../images/linked-arrow.png);
}
.latestnews li {
  margin: 0 0 5px;
}
/********************************************************************/
/* com_sppagebuilder */
.sppb-addon-single-image-container {
  padding: 5px;
  border-bottom: solid 15px #fff;
  border-image: url(../images/shadow-big.png) 0 0 15 0;
}
.sppb-addon-accordion .sppb-panel-modern {
  margin: 0;
  border: none;
}
.sppb-addon-accordion .sppb-panel-modern + .sppb-panel-modern {
  border-top: 1px solid #e8e6e6;
}
.sppb-addon-accordion .sppb-panel-modern > .sppb-panel-heading {
  padding: 10px 0;
  background: transparent;
  color: #f68e1e;
}
.sppb-addon-accordion .sppb-panel-modern > .sppb-panel-heading:before {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 10px 0 0;
  text-align: center;
  background: #f68e1e;
  color: #fff;
  content: '+';
}
.sppb-addon-accordion .sppb-panel-modern > .sppb-panel-heading.active:before {
  content: '-';
}
.sppb-addon-accordion .sppb-panel-modern .sppb-panel-title {
  font-size: inherit;
  font-weight: inherit;
}
.sppb-addon-accordion .sppb-panel-modern .sppb-panel-body {
  padding: 0;
  border: none;
}
.sppb-addon-content img.pull-left {
  margin-right: 20px;
}
.sppb-addon-content img.pull-right {
  margin-left: 20px;
}
