@charset "UTF-8";
@import 'https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800';
* {
  margin: 0;
  padding: 0;
}

a:focus,
a:hover,
a:active {
  outline-width: 0;
  text-decoration: none;
}

input:focus,
input:active,
button:active,
button:focus {
  outline-width: 0;
}

ol, ul {
  margin-bottom: 0;
  padding: 0;
}

body {
  font-family: 'Open Sans', sans-serif;
  background-color: #fff;
}

/* Loader Style Windows 8 */
#loader {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: #152c4b;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  /* Opsi */
  display: none;
}
.cssload-loader{
	position: relative;
	width: 12px;
	height: 12px;
	/*left: 46%;
	left: calc(50% - 6px);
		left: -o-calc(50% - 6px);
		left: -ms-calc(50% - 6px);
		left: -webkit-calc(50% - 6px);
		left: -moz-calc(50% - 6px);*/

	border-radius: 12px;
	background-color: rgb(230,136,92);
	transform-origin:	50% 50%;
		-o-transform-origin:	50% 50%;
		-ms-transform-origin:	50% 50%;
		-webkit-transform-origin:	50% 50%;
		-moz-transform-origin:	50% 50%;
	animation: cssload-loader 1.15s ease-in-out infinite;
		-o-animation: cssload-loader 1.15s ease-in-out infinite;
		-ms-animation: cssload-loader 1.15s ease-in-out infinite;
		-webkit-animation: cssload-loader 1.15s ease-in-out infinite;
		-moz-animation: cssload-loader 1.15s ease-in-out infinite;
}

.cssload-loader:before{
	content: "";
	position: absolute;
	background-color: rgb(114,219,61);
	top: 0px;
	left: -24px;
	height: 12px;
	width: 12px;
	border-radius: 12px;
}

.cssload-loader:after{
	content: "";
	position: absolute;
	background-color: rgb(113,98,224);
	top: 0px;
	left: 24px;
	height: 12px;
	width: 12px;
	border-radius: 12px;
}
@keyframes cssload-loader{
		0%{transform:rotate(0deg);}
		50%{transform:rotate(180deg);}
		100%{transform:rotate(180deg);}
}

@-o-keyframes cssload-loader{
		0%{-o-transform:rotate(0deg);}
		50%{-o-transform:rotate(180deg);}
		100%{-o-transform:rotate(180deg);}
}

@-ms-keyframes cssload-loader{
		0%{-ms-transform:rotate(0deg);}
		50%{-ms-transform:rotate(180deg);}
		100%{-ms-transform:rotate(180deg);}
}

@-webkit-keyframes cssload-loader{
		0%{-webkit-transform:rotate(0deg);}
		50%{-webkit-transform:rotate(180deg);}
		100%{-webkit-transform:rotate(180deg);}
}

@-moz-keyframes cssload-loader{
		0%{-moz-transform:rotate(0deg);}
		50%{-moz-transform:rotate(180deg);}
		100%{-moz-transform:rotate(180deg);}
}

/* Design */
.anim {
  transition: all ease-in-out .3s;
  -webkit-transition: all ease-in-out .3s;
  -moz-transition: all ease-in-out .3s;
  -ms-transition: all ease-in-out .3s;
  -o-transition: all ease-in-out .3s;
}
.section {
  width: 100%;
  float: left;
  position: relative;
  min-height: 1px;
}
.section::after {
  display: table;
  content: "";
}
/* ====== Top News ====== */
.top-news {
  background-color: #16253a;
  /*border-bottom: 1px solid #122036*/
}
.top-news .labely {
  float: left;
  position: relative;
  padding: 7px 10px;
}
.top-news .labely {
  width: 120px;
  background-color: #f74902;
}
.top-news .labely span {
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
}
.top-news .labely + .ticker-holder {
  margin-left: 120px;
  position: relative;
  padding: 0 5px;
}
.top-news .search-holder {
  width: 100%;
  float: left;
  padding: 0px 15px;
  position: relative;
}
.top-news .search-holder input[type='text'],
.top-news .search-holder button[type='submit'] {
  color: #fff;
  background-color: #f74902;
  border: none;
}
.top-news .search-holder input[type='text'] {
  padding: 8px 10px;
  font-size: 13px;
  width: 100%;
}
.top-news .search-holder input[type='text']::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  font-style: italic;
}
.top-news .search-holder input[type='text']::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  font-style: italic;
}
.top-news .search-holder input[type='text']:focus {
  background-color: #e84908
}
.top-news .search-holder button[type='submit'] {
  font-size: 1.5em;
  padding: 2px 11px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
}
@media (max-width: 767px) {
  .top-news .labely {
    width: 100%;
  }
  .top-news .labely + .ticker-holder {
    margin-left: 0px;
    width: 100%;
    float: left;
    padding: 0px 10px 8px;
  }
  .top-news .search-holder button[type='submit'] {
    right: 15px;
  }
}

/* Settings View */
.setting-view {
  position: fixed;
  width: 320px;
  background-color: #fff;
  min-height: 80px;
  z-index: 1050;
  bottom: 0px;
  left: calc(50% - 170px);
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  margin-bottom: -80px;
  transition: all ease-in-out .3s;
  -webkit-transition: all ease-in-out .3s;
  -moz-transition: all ease-in-out .3s;
  -ms-transition: all ease-in-out .3s;
}
.setting-view.active {
  margin-bottom: 0;
}
.setting-view .inner {
  position: relative;
  width: 100%;
  min-height: 80px;
  float: left;
}
.setting-view .inner .point {
  width: 150px;
  margin: 0 5px;
  padding: 15px 20px;
  border-radius: 5px;
  border: 1px solid #eee;
  text-align: center;
  font-size: 15px;
  font-weight: bold;
  color: #777;
  cursor: pointer;
}
.setting-view .inner .point:hover,
.setting-view .inner .point.active {
  border-color: #f74902;
  color: #f74902;
}
#setting-button {
  position: absolute;
  left: calc(50% - 25px);
  width: 55px;
  padding: 5px 0 0;
  background-color: #f74902;
  top: -35px;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  text-align: center;
  cursor: pointer;
}
#setting-button span {
  color: #fff;
  font-size: 1.6em;
}
#setting-button::after,
#setting-button::before {
  position: absolute;
  content: "";
  bottom: 0;
}
#setting-button::after {
  left: 100%;
  border-left: 50px solid #f74902;
  border-top: 8px solid transparent;
}
#setting-button::before {
  right: 100%;
  border-right: 50px solid #f74902;
  border-top: 8px solid transparent;
}
/* ======== Menu Primary ======== */
.menu-primary {
  background-color: #f74902;
  min-height: 100px;
}
/* Logo */
.menu-primary .logo {
  float: left;
  min-height: 100px;
  background-color: #f74902;
}
.menu-primary .logo-image {
  float: left;
  width: 55px;
  height: auto;
}
.menu-primary .logo-image img {
  max-width: 100%;
  height: auto;
}
.menu-primary .logo-image + .logo-text {
  margin-left: 60px;
}
.menu-primary .logo-image + .logo-text span {
  color: #fff;
  font-size: 1.2em;
  display: block;
  text-transform: uppercase;
}
/* Menu Container */
.menu-container {
  width: 100%;
  float: left;
  position: relative;
  background-color: #2b8738;
  min-height: 48px;
}
.navs.fixed {
  position: fixed;
  top: 0;
  z-index: 1000;
  background-color: #2b8738;
}
.navs {
  display: block;
  background: #f74902;
}

.menu { display: block; }

.menu li {
  display: inline-block;
  position: relative;
  z-index: 100;
}

.menu li:first-child { margin-left: 0; }

.menu li a {
  text-decoration: none;
  padding: 16px 18px;
  display: block;
  color: #fff;
  transition: all 0.2s ease-in-out 0s;
  font-size: 1.1em;
  text-transform: uppercase;
  font-weight: 300;
  position: relative;
}
.menu li a:after,
.menu li a:before {
  position: absolute;
  height: 1px;
  content: "";
  background-color: #fff;
}
.menu li a:hover,
.menu li:hover>a {
  color: #333;
}

.menu ul {
  visibility: hidden;
  opacity: 0;
  margin: 0;
  padding: 0;
  width: 200px;
  position: absolute;
  left: 0px;
  background: #fff;
  z-index: 99;
  transform: translate(0, 20px);
  transition: all 0.2s ease-out;
}

.menu ul:after {
  bottom: 100%;
  left: 20%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(255, 255, 255, 0);
  border-bottom-color: #fff;
  border-width: 6px;
  margin-left: -6px;
}

.menu ul li {
  display: block;
  float: none;
  background: none;
  margin: 0;
  padding: 0;
}

.menu ul li a {
  font-size: 1em;
  font-weight: normal;
  display: block;
  color: #444;
  background: #fff;
  text-transform: none;
  border-top: 1px solid #f0f0f0;
  text-align: left;
}

.menu ul li a:hover,
.menu ul li:hover>a {
  color: #172c4b;
}

.menu li:hover>ul {
  visibility: visible;
  opacity: 1;
  transform: translate(0, 0);
}

.menu ul ul {
  left: 199px;
  top: 0px;
  visibility: hidden;
  opacity: 0;
  transform: translate(20px, 20px);
  transition: all 0.2s ease-out;
}

.menu ul ul:after {
  left: -6px;
  top: 10%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(255, 255, 255, 0);
  border-right-color: #fff;
  border-width: 6px;
  margin-top: -6px;
}

.menu li>ul ul:hover {
  visibility: visible;
  opacity: 1;
  transform: translate(0, 0);
}

.responsive-menu {
  display: none;
  width: 100%;
  padding: 20px 15px;
  background: #f74902;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
}
.responsive-menu:focus,
.responsive-menu:active,
.responsive-menu:hover {
  background: #1a345b;
  color: #fff;
  text-decoration: none;
}
@media (min-width: 768px) {
  .menu-container {
    margin-top: 25px;
  }
}
@media (min-width: 768px) and (max-width: 979px) {

  .mainWrap { width: 768px; }

  .menu ul { top: 37px; }

  .menu li a { font-size: 12px; }

}
@media (max-width: 767px) {

  .mainWrap {
  width: 100%;
  padding: 50px 20px;
  }

  .menu { display: none; }

  .responsive-menu { display: block; }

  .navs {
    margin: 0;
    background: none;
  }

  .menu li {
    display: block;
    margin: 0;
  }

  .menu li a {
    background: #172c4b;
    color: #fff;
  }

  .menu li a:hover,
  .menu li:hover>a {
    color: #172c4b;
  }

  .menu ul {
    visibility: hidden;
    opacity: 0;
    top: 0;
    left: 0;
    width: 100%;
    transform: initial;
  }

  .menu li:hover>ul {
    visibility: visible;
    opacity: 1;
    position: relative;
    transform: initial;
  }

  .menu ul ul {
    left: 0;
    transform: initial;
  }

  .menu li>ul ul:hover { transform: initial; }
  .navs.text-center {
    text-align: left;
  }
}

/* ==== Slider Container ====== */
.slider-container {
  background-color: ##1b123c;
}
.slider-container .item {
  display: block;
  position: relative;
  max-height: 420px;
  overflow: hidden;
  margin: 0;
}
.slider-container .item img {
  max-width: 100%;
  height: auto;
}
.slider-container .owl-controls {
  position: absolute;
  top: calc(50% - 30px);
  display: block;
  width: 100%;
}
.slider-container .owl-controls .owl-nav,
.slider-container .owl-controls .owl-dots {
  display: block;
  position: relative;
}
.slider-container .owl-controls .owl-nav .owl-prev,
.slider-container .owl-controls .owl-nav .owl-next {
  position: absolute;
  padding: 0px 20px;
  display: inline-block;
  font-size: 3em;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
}
.slider-container .owl-controls .owl-nav .owl-prev:hover,
.slider-container .owl-controls .owl-nav .owl-next:hover {
  color: #f74902;
}
.slider-container .owl-controls .owl-nav .owl-next {
  right: 0px;
}
.slider-container .owl-controls .owl-nav .owl-prev {
  left: 0px;
}
.slider-container .owl-controls .owl-dots {
  position: absolute;
  width: 100%;
  margin-top: 190px;
  padding: 10px;
  text-align: center;
}
.slider-container .owl-controls .owl-dots > .owl-dot {
  display: inline-block;
}
.slider-container .owl-controls .owl-dots > .owl-dot > span,
.slider-container .owl-controls .owl-dots > .owl-dot.active > span {
  display: inline-block;
  padding: 8px 8px;
  border-radius: 8px;
  margin: 3px;
}
.slider-container .owl-controls .owl-dots > .owl-dot > span {
  background-color: rgba(255, 255, 255, 0.7);
}
.slider-container .owl-controls .owl-dots > .owl-dot.active > span {
  background-color: rgba(0, 0, 0, 0.7);
}
@media (max-width: 992px) {
  .slider-container .owl-controls .owl-dots {
    display: none;
  }
}
/* ========= Laporan Form =========== */
.laporan-form {
  background-color: #152c4b;
  min-height: 125px;
}
.laporan-form .title-laporan {
  width: 100%;
  float: left;
  min-height: 125px;
  background-color: #f74902;
  text-align: center;
  padding: 15px;
}
.laporan-form .title-laporan span {
  color: #fff;
  font-size: 1.75em;
  font-weight: 300;
  text-transform: uppercase;
}
.laporan-form .form-laporan {
  display: block;
  position: relative;
  margin-top: 13px;
}
.laporan-form .form-laporan .input-wrapper {
  padding: 5px;
  display: block;
}
.laporan-form .form-laporan .input-wrapper .control-label {
  color: #fff;
  font-size: 1.2em;
  font-weight: 500;
  padding-bottom: 3px;
}
.laporan-form .form-laporan .input-wrapper .form-control,
.laporan-form .form-laporan .input-wrapper .btn {
  border-radius: 0;
  box-shadow: none;
  border: none;
  height: 37px;
}
.laporan-form .form-laporan .input-wrapper .btn {
  background-color: #f74902;
  color: #fff;
  letter-spacing: 2px;
  font-size: 1.2em;
}
.laporan-form .form-laporan .input-wrapper .btn:hover {
  background-color: #d74205;
}
.laporan-form .form-laporan .input-wrapper .help-block {
  font-style: italic;
  color: #fff;
  font-size: 12px;
  margin: 0;
  padding-top: 10px;
  line-height: 0;
}
/* box */
.box,
.box-header,
.box-body,
.box-footer {
  float: left;
  width: 100%;
  position: relative;
}
.box {
  min-height: 50px;
}
.box-header,
.box-body,
.box-footer {
  padding: 10px 0;
}
.box-header span {
  color: #172c4b;
  font-size: 1.9em;
  font-weight: 600;
  position: relative;
  display: inline-block;
  text-transform: uppercase;
}
.box-header span.white {
  color: #fff;
}
.box-header span .center {
  position: absolute;
  left: calc(50% - 50px);
  height: 4px;
  background-color: #172c4b;
  bottom: -6px;;
  width: 100px;
}
.box-header span .center.whitebg {
  background-color: #fff;
}
.box-header span.bold {
  font-weight: 700;
}
.box-footer .link-wrapper {
  position: relative;
  width: 200px;
  border: 2px solid #f74902;
}
.box-footer .link-wrapper a {
  display: block;
  color: #fff;
  background-color: #f74902;
  font-size: 1.1em;
  letter-spacing: 1px;
  position: relative;
  padding: 5px 25px;
  transition: all ease-in-out .3s;
  -webkit-transition: all ease-in-out .3s;
  -moz-transition: all ease-in-out .3s;
  -ms-transition: all ease-in-out .3s;
}
.box-footer .link-wrapper a > i {
  color: #f74902;
  font-size: 1.5em;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #fff;
  padding: 2px 12px;
  display: inline-block;
  line-height: 1.2;
  transition: all ease-in-out .3s;
  -webkit-transition: all ease-in-out .3s;
  -moz-transition: all ease-in-out .3s;
  -ms-transition: all ease-in-out .3s;
}
.box-footer .link-wrapper:hover {
  border-color: #172c4b;
}
.box-footer .link-wrapper:hover a {
  padding-left: 60px;
  background-color: #172c4b;
}
.box-footer .link-wrapper a:hover > i {
  right: calc(100% - 41px);
  color: #172c4b;
}
@media (max-width: 767px) {
  .box-header {
    padding: 0 15px;
  }
}
/* History Bencana */
.history {
  width: 100%;
  float: left;
  min-height: 380px;
}
.history .title,
.history .image,
.history .author,
.history .desk,
.history .foot_link {
  display: block;
  position: relative;
  margin-bottom: 7px;
}
.history .title {
  color: #f74902;
  font-size: 1.6em;
  font-weight: 300;
  line-height: 1.3;
}
.history .title:hover{
  color: #cf4006;
}
.history .image {
    height: 200px;
  max-height: 200px;
  overflow: hidden;
}
.history .image .date {
  position: absolute;
  display: inline-block;
  padding: 5px 10px;
  background-color: #f74902;
  top: 0;
  right: 0;
  color: #fff;
  font-size: 12px;
  z-index: 1;
}
.history .image img {
  width: 100%;
  height: auto;
}
.history .author .icon{
  padding: 0px 12px;
  font-size: 2.6em;
  border-radius: 50%;
  display: inline-block;
  background-color: #f74902;
  color: #fff;
  float: left;
}
.history .author .span {
  color: #888;
  font-size: 13px;
  padding-left: 7px;
  position: relative;
  top: 6px;
}
.history .desk {
  color: #444;
  font-size: 14px;
  float: left;
  padding-top: 7px;
}
.history .foot_link a {
  display: inline-block;
  width: 100%;
  color: #fff;
  padding: 10px;
  font-size: 1em;
  background-color: #172c4b;
  margin-top: 7px;
  letter-spacing: 1px;
}
.history .foot_link a > i {
  padding-left: 10px;
  transition: all ease-in-out .2s;
  -webkit-transition: all ease-in-out .2s;
  -moz-transition: all ease-in-out .2s;
  -ms-transition: all ease-in-out .2s;
  -o-transition: all ease-in-out .2s;
}
.history .foot_link a:hover {
  background-color: #203e6b;
}
.history .foot_link a:hover > i {
  padding-left: 20px;
}
/* ------------- Edukasi Siaga Bencana ------------- */
.edukasi {
  background-color: #f74902;
  padding: 15px 0;
}
.edukasi-box,
.edukasi-box .icon-header,
.edukasi-box .desk {
  float: left;
  width: 100%;
  position: relative;
}
.edukasi-box {
  min-height: 300px;
  background-color: #fff;
}
.edukasi-box.minimal {
  min-height: 100px;
  margin-bottom: 15px;
}
.edukasi-box.minimal .icon-header.active,
.edukasi-box.minimal .icon-header:hover {
  background-color: #172c4b;
}
.edukasi-box.add {
  min-height: 330px;
}
.edukasi-box .icon-header,
.edukasi-box .desk {
  min-height: 150px;
  padding: 15px;
}
.edukasi-box .icon-header {
  background-color: #f74902;
  text-align: center;
}
.edukasi-box .icon-header img {
  max-width: 120px;
  height: auto;
}
.edukasi-box .icon-header span {
  display: block;
  padding-top: 7px;
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
}
.edukasi-box .desk {
  color: #444;
  font-size: 1.02em;
  text-align: justify;
}
/* ------------------ Body Page  --------------------*/
.header_page {
  background-color: #f74902;
  padding: 8px 0;
}
.header_page.edukasi_lainnya {
  background-color: #172c4b;
}
.header_page span {
  color: #fff;
  font-size: 1.7em;
  text-transform: uppercase;
  font-weight: 700;
}
/* About Container */
.about-container {
  background: #eaeaea url('../images/other/bg-about.png') no-repeat right top;
  padding: 15px 0;
  min-height: 400px;
}
.about-container p {
  font-size: 1.1em;
}
/* visi misi */
.visi-misi {
  padding: 15px 0;
  font-size: 1.1em;
}
.visi-misi ol {
  margin-left: 15px;
}
.visi-misi .border-left {
  border-left: 2px solid #eee;
}
/* Statistik */
.statistik,
.slider-maps {
  float: left;
  width: 100%;
  position: relative;
  max-height: 430px;
}
/* Widget */
.widget {
  background-color: #eaeaea;
  padding: 30px 0;
}
/* widget Box */
.widget_box,
.header_widget,
.body_widget {
  position: relative;
  display: block;
}
.widget_box {
  min-height: 405px;
  background-color: #fff;
}
.header_widget {
  padding: 20px;
  text-align: center;
  background-color: #172c4b;
}
.header_widget span {
  color: #fff;
  font-size: 1.6em;
  font-weight: 600;
}
.body_widget {
  padding: 15px;
}
.body_widget.cuaca {
  background-color: #fafafa;
}
/* Siaran Pers */
.siaran-pers {
  display: block;
  margin-bottom: 10px;
}
.siaran-pers a,
.siaran-pers span {
  display: block;
  font-size: 15px;
}
.siaran-pers a {
  color: #444;
  text-transform: uppercase;
}
.siaran-pers span {
  color: #555;
  font-weight: 300;
  line-height: 1.35;
}
/* Slider Widget */
.slider_widget {
  display: block;
  position: relative;
}
.slider_widget .item {
  margin: 0;
  display: block;
  position: relative;
}
.slider_widget .item .history {
  min-height: 100px;
}
.slider_widget .item .history .title {
  font-size: 1.3em;
}
.slider_widget .owl-controls {
  display: block;
  position: relative;
  text-align: right;
}
.slider_widget .owl-controls .owl-nav {
  display: block;
}
.slider_widget .owl-controls .owl-nav .owl-next,
.slider_widget .owl-controls .owl-nav .owl-prev {
  display: inline-block;
  margin: 0 5px;
  font-size: 1.8em;
  color: #172c4b;
}
.slider_widget .owl-controls .owl-nav .owl-next:hover,
.slider_widget .owl-controls .owl-nav .owl-prev:hover {
  color: #ccc;
}
/* ========== Video Edukasi =========== */
.video_edukasi {
  padding: 0 0;
}
.video_primary {
  width: 100%;
  float: left;
  position: relative;
  min-height: 360px;
}
.video_primary .title {
  color: #444;
  font-size: 1.6em;
  display: block;
  padding-top: 7px;
}
.video-list {
  width: 100%;
  float: left;
  position: relative;
}
.video-list .video_list_inner {
  width: 100%;
  position: relative;
  margin-bottom: 15px;
  float: left;
}
.video-list .video_list_inner .cell-video {
  width: 70%;
  padding: 0px 0px 0px 10px;
  float: left;
  min-height: 100px;
}
.video-list .video_list_inner .cell-video a {
  color: #444;
  font-size: 1.4em;
}
.video-list .video_list_inner .cell-video:nth-child(1) {
  width: 30%;
  padding: 0;
}
/* =========== Slider Tautan ========= */
.slider-tautan {
  display: block;
  position: relative;
  min-height: 50px;
}
.slider-tautan .item {
  display: block;
  position: relative;
  margin: 0 7.5px;
  min-height: 50px;
  background-color: #202020;
}
.slider-tautan .item img {
  max-height: 100px;
}
.slider-tautan .owl-controls {
  position: absolute;
  top: calc(50% - 30px);
  display: block;
  width: 100%;
}
.slider-tautan .owl-controls .owl-nav,
.slider-tautan .owl-controls .owl-dots {
  display: block;
  position: relative;
}
.slider-tautan .owl-controls .owl-nav .owl-prev,
.slider-tautan .owl-controls .owl-nav .owl-next {
  position: absolute;
  display: inline-block;
  font-size: 3em;
  color: #fff;
}
.slider-tautan .owl-controls .owl-nav .owl-prev:hover,
.slider-tautan .owl-controls .owl-nav .owl-next:hover {
  color: #f74902;
}
.slider-tautan .owl-controls .owl-nav .owl-next {
  right: -20px;
}
.slider-tautan .owl-controls .owl-nav .owl-prev {
  left: -20px;
}
@media (max-width: 767px) {
  .slider-tautan .owl-controls .owl-nav .owl-next {
    right: 0;
  }
  .slider-tautan .owl-controls .owl-nav .owl-prev {
    left: 0;
  }
}
.slider-partner {
  position: relative;
  display: block;
}
.slider-partner .item {
  position: relative;
  margin: 15px 7px;
  display: block;
  background-color: transparent;
  text-align: center;
}
.slider-partner .item img {
  width: auto !important;
  max-width: 100% !important;
  height: auto;
}

/* ============== Footer ============*/
.footer-based {
  background-color: #c7defe;
  padding: 15px 0;
}
/* ========== Twitter & facebook ===== */
.footer-box,
.footer-box-header,
.footer-box-body {
  position: relative;
  display: block;
}
.footer-box-header {
  padding: 5px 0 15px;
}
.footer-box-header span {
  color: #16253a;
  font-size: 1.4em;
  text-transform: uppercase;
}
.footer-box-body {
  min-height: 360px;
  overflow: hidden;
}
.footer-box-body .inner-links {
  width: 100%;
  float: left;
  margin-bottom: 15px;
}
.footer-box-body .inner-links ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: block;
}
.footer-box-body .inner-links ul > li {
  display: block;
  margin-bottom: 8px;
}
.footer-box-body .inner-links ul > li >a {
  color: #1a374d;
  text-transform: uppercase;
  padding: 0 5px;
  display: block;
  box-shadow: 3px 0px 0px #1a374d inset;
  font-weight: 400;
}
.footer-box-body .inner-links ul > li >a.no-shadow {
  box-shadow: 2px 0px 0px #1a374d inset;
  text-transform: uppercase;
  line-height: 1;
}
.footer-box-body .inner-links ul > li >a > span,
.footer-box-body .inner-links ul > li >a > small {
  display: block;
  padding-left: 5px;
  line-height: 1.22;
}
.footer-box-body .inner-links ul > li >a > span:nth-child(1) {
  font-weight: 600;
}
.footer-box-body .inner-links ul > li >a > small {
  font-style: italic;
  text-transform: none;
  color: rgba(255, 255, 255, 0.7);
}
.footer-box-body .inner-links ul > li >a:hover{
  text-decoration: underline;
}
/* =======  contact footer */
.contact-footer {
  width: 100%;
  position: relative;
}
.contact-footer .footer-contact-cell {
  width: 70%;
  float: left;
  min-height: 100px;
  padding-top: 30px;
}
.contact-footer .footer-contact-cell:nth-child(1) {
  width: 30%;
  text-align: center;
  line-height: 120px;
  padding: 0;
}
.contact-footer .footer-contact-cell:nth-child(1) span {
  font-size: 5em;
  color: #fff;
}
.contact-footer .footer-contact-cell span {
  display: block;
  font-size: 1em;
  color: #fff;
}
/* Copy Right */
.footer-copyright {
  display: block;
  position: relative;
  padding: 8px 15px;
  text-align: center;
}
.footer-copyright span {
  color: #16253a;
  font-size: .9em;
}
/* Hystory */
.history-sidebar {
  position: absolute;
  width: 290px;
  min-height: 100%;
  top: 0;
  left: 0;
  background-color: #eee;
  padding: 10px 20px;
}
.history-sidebar .box .box-header span {
  font-size: 1.4em;
  font-weight: bold;
}
.history-sidebar .control-label {
  color: #162c4a;
  font-size: 1.2em;
  font-weight: 600;
  display: block;
}
.history-sidebar .form-control {
  margin-bottom: 7px;
  box-shadow: none;
  border-radius: 0;
  border: 1px solid transparent;
  height: 37px;
  color: #162c4a;
  padding: 8px 10px;
  float: left;
}
.history-sidebar .form-control::-webkit-input-placeholder {
  color: #162c4a;
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
}
.history-sidebar .form-control::-moz-placeholder {
  color: #162c4a;
  font-size: 13px;
  font-style: italic;
  font-weight: 400;
}
.history-sidebar .form-control::-ms-placeholder {
  color: #162c4a;
  font-size: 13px;
  font-style: italic;
  font-weight: 400;
}

.history-sidebar .form-control:focus {
  border: 1px solid #162c4a;
}
.history-sidebar .label-radio {
  width: 100%;
  float: left;
  margin-bottom: 7px;
  padding: 7px 10px;
  background-color: #fff;
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
  color: #162c4a;
  cursor: pointer;
  border: 1px solid transparent;
}
.history-sidebar .label-radio:hover {
  border-color: #162c4a;
}
.history-sidebar .label-radio span{
  display: inline-block;
  float: right;
}
.space-side {
  width: 100%;
  float: left;
  margin-bottom: 30px;
}
.history-sidebar .button-filter {
  float: right;
  padding: 6px 30px;
  background-color: #162c4a;
  font-size: 15px;
  text-transform: uppercase;
  color: #fff;
  border: none;
  margin-top: 15px;
}
.history-sidebar .button-filter:hover {
  box-shadow: 0px 4px 5px -1px rgba(0, 0, 0, 0.5);
}
.history-sidebar+.history-wrapper {
  position: relative;
  margin-left: 315px;
  padding: 20px 0;
}
@media(max-width: 700px) {
  .history-sidebar {
    position: relative;
    min-height: 50px;
    float: left;
    width: 100%;
  }
  .history-sidebar+.history-wrapper {
    margin-left: 0;
    width: 100%;
    float: left;
  }
}
/* ------------- Kontak Kami ------------ */
.kontak-form {
  width: 450px;
  position: absolute;
  right: 0;
  top: 0;
  background-color: #16253a;
  min-height: 100%;
}
.kontak-form + .maps {
  margin-right: 450px;
  position: relative;
}
.kontak-form + .maps .contact-bar,
.kontak-form + .maps .map-container {
  width: 100%;
  float: left;
  position: relative;
}
.kontak-form + .maps .contact-bar {
  min-height: 50px;
  padding: 20px 0;
  background-color: #f0f0f0;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
  z-index: 3;
}
.kontak-form + .maps .contact-bar ul {
  display: block;
  position: relative;
  list-style-type: none;
}
.kontak-form + .maps .contact-bar ul > li {
  position: relative;
  float: left;
  text-align: center;
}
.kontak-form + .maps .contact-bar ul > li .icons,
.kontak-form + .maps .contact-bar ul > li .title,
.kontak-form + .maps .contact-bar ul > li .value {
  display: block;
  line-height: 1.2;
}
.kontak-form + .maps .contact-bar ul > li .icons,
.kontak-form + .maps .contact-bar ul > li .title {
  color: #777;
}
.kontak-form + .maps .contact-bar ul > li .icons {
  font-size: 4em;
}
.kontak-form + .maps .contact-bar ul > li .title {
  text-transform: uppercase;
  font-weight: 600;
  font-size: .95em;
}
.kontak-form + .maps .contact-bar ul > li .value {
  color: #f74902;
  font-size: .9em;
  padding: 5px;
}
.kontak-form .inner {
  padding: 0 30px;
}
.kontak-form + .maps .map-container {
  max-height: 380px;
  overflow: hidden;
}
.kontak-form .form-control,
.kontak-form .btn {
  border-radius: 0;
  box-shadow: none;
  border: none;
  height: 37px;
}
.kontak-form textarea.form-control {
  height: auto;
}
.kontak-form  .btn {
  background-color: #f74902;
  color: #fff;
  letter-spacing: 2px;
  font-size: 1.2em;
}
.kontak-form .btn:hover {
  background-color: #d74205;
}
.kontak-form .help-block {
  font-style: italic;
  color: #fff;
  font-size: 12px;
  margin: 0;
  padding-top: 10px;
  line-height: 0;
}
.kontak-form .captcha {
  width: 170px;
  background-color: #ddd;
  position: relative;
  min-height: 30px;
  text-align: center;
}
.kontak-form .captcha img {
  max-width: 100%;
  height: auto;
}
.kontak-form .box-header {
  padding: 20px 0
}
@media (max-width: 992px) {
  .kontak-form,
  .kontak-form + .maps {
    position: relative;
    float: left;
    width: 100%;
    min-height: 100px;
  }
}
@media (max-width: 767px) {
  .kontak-form .inner {
    padding: 0 15px;
  }
}
/* Siaran Pers */
.siaran_pers_data,
.siaran_pers_data_inner {
  width: 100%;
  position: relative;
  float: left;
}
.siaran_pers_data {
  padding: 20px 0 0;
}
.siaran_pers_data_inner {
  float: left;
  margin-bottom: 15px;
}
.siaran_pers_data_inner .cell-pers {
  float: left;
  position: relative;
  width: 25%;
  min-height: 130px;
  text-align: center;
  background-color: #444;
}
.siaran_pers_data_inner .cell-pers:nth-child(2) {
  width: 75%;
  text-align: left;
  background: none;
}
.siaran_pers_data_inner .cell-pers img {
  max-width: 100%;
  height: auto;
}
.siaran_pers_data_inner .cell-pers:nth-child(2) a,
.siaran_pers_data_inner .cell-pers:nth-child(2) small,
.siaran_pers_data_inner .cell-pers:nth-child(2) span {
  display: block;
  padding: 0px 10px;
}
.siaran_pers_data_inner .cell-pers:nth-child(2) small {
  font-size: .9em;
  font-weight: bold;
  color: #172c4b;
}
.siaran_pers_data_inner .cell-pers:nth-child(2) a {
  color: #f74902;
  font-size: 1.4em;
  text-transform: uppercase;
}
.siaran_pers_data_inner .cell-pers:nth-child(2) span {
  color: #555;
  font-size: 1em;
}
.siaran_pers_data_inner .cell-pers:nth-child(2) span > a {
  color: #222;
  padding-left: 10px;
  display: inline-block;
  font-size: inherit;
}
@media (max-width: 640px) {
  .siaran_pers_data_inner .cell-pers:nth-child(2),
  .siaran_pers_data_inner .cell-pers {
    width: 100%;
  }
  .siaran_pers_data_inner .cell-pers:nth-child(2) a,
  .siaran_pers_data_inner .cell-pers:nth-child(2) small,
  .siaran_pers_data_inner .cell-pers:nth-child(2) span{
    padding: 0;
  }
}
/* Edukasi lainnya */
.edukasi_box-other {
  width: 100%;
  float: left;
  min-height: 260px;
  border-left: 2px solid #eee;
  margin: 15px 0
}
.edukasi_box-other .header {
  display: block;
  position: relative;
  margin-bottom: 15px;
}
.edukasi_box-other .header span {
  background-color: #f74902;
  color: #fff;
  padding: 4px 30px;
  display: inline-block;
  font-size: 1.1em;
  font-weight: bold;
  text-transform: uppercase;
}
.edukasi_box-other .inner {
  display: block;
  position: relative;
  padding: 0 0 0 10px;
}
.edukasi_box-other .inner img {
  max-width: 30%;
  height: auto;
  margin: 2px;
}
@media (max-width: 575px) {
  .edukasi_box-other .inner img {
    max-width: 100%;
  }
}
/* Detail Siaran */
.detail_siaran {
  display: block;
  padding-top: 15px;
}
.detail_siaran img {
  max-width: 100%;
  height: auto;
  padding: 10px 0;
}
.detail_siaran span,
.detail_siaran small {
  display: block;
}
.detail_siaran span {
  color: #F74902;
  font-size: 1.6em;
}
.detail_siaran small {
  color: #777;
  font-size: .9em;
  padding: 4px 0;
}
.detail_siaran p {
  text-align: justify;
}
/* Titik Rawaan */
.titik-rawan,
.map-titik {
  width: 100%;
  float: left;
  position: relative;
  min-height: 200px;
}
.titik-rawan ul {
  display: block;
  position: relative;
  list-style: none;
}
.titik-rawan ul li {
  float: left;
  position: relative;
  margin-bottom: 15px;
}
.titik-rawan ul li a {
  display: block;
  padding: 10px 15px;
  color: #fff;
  font-weight: 600;
  font-size: 0.7em;
  border-left: 7px solid transparent;
}
.titik-rawan ul li.active a,
.titik-rawan ul li:hover a {
  border-color: #172c4b;
}
.titik-rawan ul li a.tr-default {
    background-color: #C7DEFE;
}
.titik-rawan ul li a.kebakaran {
  background-color: #af0029;
}
.titik-rawan ul li a.puting_beliung {
  background-color: #ffbe00;
}
.titik-rawan ul li a.gunung_meletus {
  background-color: #8e9778;
}
.titik-rawan ul li a.longsor {
  background-color: #5d8aa9;
}
.titik-rawan ul li a.lahan {
  background-color: #a5c639;
}
.titik-rawan ul li a.gempa {
  background-color: #666;
}
.titik-rawan ul li a.banjir {
  background-color: #579BEE;
}
.titik-rawan ul li a.konflik_sosial {
  background-color: #1F2681;
}
.titik-rawan ul li a.epidemi_wabah_penyakit {
  background-color: #2BA449;
}
.titik-rawan ul li a.kegagalan_teknologi {
  background-color: #F74902;
}
.titik-rawan ul li a.kekeringan {
  background-color: #BD5E2F;
}
.titik-rawan ul li a.pohon_tumbang {
  background-color: #8FC11C;
}
.titik-rawan .table {
  background-color: #eee;
}
.titik-rawan .table-bordered {
  border: 1px solid #fff;
}
/* Tabs Bencana */
.tabs_container,
.tabs-menu {
  width: 100%;
  float: left;
  position: relative;
}
.tabs_container {
  background-color: #eee;
}
.tabs-menu {
  list-style: none;
}
.tabs-menu li {
  float: left;
  background-color: #172c4b;
  text-align: center;
}
.tabs-menu li:hover,
.tabs-menu li.current {
  position: relative;
  background-color: #eee;
  z-index: 5;
}
.tabs-menu li a {
  display: block;
  padding: 10px 15px;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  font-size: 1.2em;
  text-transform: uppercase;
}
.tabs-menu li:hover a,
.tabs-menu .current a {
  color: #172c4b;
}
.tab-bencana {
  float: left;
  margin-bottom: 15px;
  width: 100%;
}
.tab-content {
  width: 100%;
  padding: 15px;
  display: none;
}
#tab-1 {
  display: block;
}
/* Konten */
.content {
  text-align: justify;
  font-size: 1em;
}
.content img {
  max-width: 100%;
  height: auto;
  padding-bottom: 15px;
}
.content b,
.content strong,
.content span {
  display: block;
}
/* Agenda */
.agenda {
  margin: 20px auto;
}
/* Job Events */
.box-event,
.box-event-body,
.box-event-header,
.box-event-footer {
  width: 100%;
  float: left;
  position: relative;
}
.box-event,
.box-event-header {
  min-height: 50px;
  background-color: #fff;
}
.box-event {
  border: 1px solid #eee;
  margin-bottom: 15px;
}
.box-event-header {
  background-color: #f74902;
}
.box-event-header .date {
  position: absolute;
  width: 85px;
  bottom: 0;
  left: 0;
  top: 0;
  background-color: #e64706;
  text-align: center;
}
.box-event-header .date+.title-event {
  margin-left: 85px;
  position: relative;
  min-height: 75px;
  padding: 10px;
}
/* Text Date Event */
.box-event-header .date p {
  margin: 30px 0px 16px 0px;
  color: #fff;
  font-size: 2.3em;
  line-height: 0;
  font-weight: bold;
}
.box-event-header .date span {
  color: #fff;
  font-size: 12px;
}
.box-event-header .date+.title-event p {
  color: #fff;
  margin: 0;
  font-size: 1.2em;
  font-weight: 500;
}
/* Box Body Events */
.box-event-body .inner-event {
  display: table;
  position: relative;
  margin-top: 5px;
}
.box-event-body .row-event {
  display: table-row;
  padding: 10px 0;
}
.box-event-body .cell-event {
  display: table-cell;;
  padding: 3px 10px;
  position: relative;
  font-size: 13px;
  color: #222;
}
.box-event-body .cell-event:nth-child(1) {
  width: 45%;
}
.box-event-body .cell-event:nth-child(2) {
  color: #777;
  padding: 3px 15px 3px 5px;
}
.box-event-body .cell-event:nth-child(1)::after {
  position: absolute;
  content: ":";
  font-size: 13px;
  color: #222;
  right: 0;
  top: 5px;
}
.box-event-footer {
  text-align: right;
  padding: 15px 15px;
}
.box-event-footer a {
  color: #fff;
  font-size: 12px;
  background-color: #f74902;
  padding: 5px 10px;
  border-radius: 2px;
}
.box-event-footer a:hover,
.berita-kanan .selengkapnya:hover {
  background-color: #e04607;
}/* ============ Help Class ================== */
/* --------------------- Paging --------------------*/
.paging {
  width: 100%;
  float: left;
  position: relative;
  padding: 15px 10px;
}
.paging .nav {
  display: block;
  position: relative;
}
.paging .nav.center {
  text-align: center;
}
.paging .nav.left {
  text-align: left;
}
.paging .nav.right {
  text-align: right;
}
.paging .nav ul {
  display: inline-block;
  list-style-type: none;
}
.paging .nav ul > li {
  float: left;
  margin: 0px 2px;
}
.paging .nav ul > li > a,
.paging .nav ul > li > strong {
  padding: 3px 10px;
  display: inline-block;
  color: #162c4a;
  border-radius: 2px;
  font-size: 1em;
  border: 1px solid #ddd;
}
.paging .nav ul > li > a:hover,
.paging .nav ul > li > strong {
  background-color: #162c4a;
  color: #fff;
}
/* Form Login */
.form-daftar,
.form-login {
  width: 100%;
  float: left;
  position: relative;
}
.form-login .control-label,
.form-daftar .control-label {
  color: #777;
  font-weight: 500;
}
.form-login .form-control,
.form-daftar .form-control {
  box-shadow: none;
  border-radius: 2px;
  border-color: #e7e7e7;
}
.form-login .form-control:focus,
.form-daftar .form-control:focus {
  border-color: #4982d7;
}
.form-login .btn,
.form-daftar .btn {
  border-radius: 2px;
}
/* Flexbox Style */
.ds-flex {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -moz-box;
  display: flex;
}

.ds-flex.start {
  justify-content: flex-start;
  align-items: flex-start;
}

.ds-flex.end {
  justify-content: flex-end;
  align-items: flex-end;
}

.ds-flex.center {
  justify-content: center;
  align-items: center;
}

.ds-flex.sp-between {
  justify-content: space-between;;
}

.ds-flex.sp-around {
  justify-content: space-between;;
}
/* Self Item */
.self-end {
  -webkit-align-self: flex-end;
  align-self: flex-end;
}
.self-start {
  align-self: flex-start;
  -webkit-align-self: flex-start;
}
.self-center {
  align-self: center;
  -webkit-align-self: center;
}
.self-baseline {
  align-self: baseline;
  -webkit-align-self: baseline;
}
.self-stretch {
  align-self: stretch;
  -webkit-align-self: stretch;
}

/* Display Table */
.ds-table {
  display: table;
}
.ds-table-row {
  display: table-row;
}
.ds-table-cell {
  display: table-cell;
}
/* Margin */
.margin-bottom-15 {
  margin-bottom: 15px;
}
.margin-top-15 {
  margin-top: 15px;
}
.margin-reset {
  margin: 0;
}
@media (min-width: 768px) {
  .margin-reset-sm {
    margin: 0;
  }
  .text-center-sm {
    text-align: center;
  }
  .text-left-sm {
    text-align: left;
  }
  .text-right-sm {
    text-align: right;
  }
}
@media (min-width: 992px) {
  .margin-reset-md {
    margin: 0;
  }
  .text-center-md {
    text-align: center;
  }
  .text-left-md {
    text-align: left;
  }
  .text-right-md {
    text-align: right;
  }
}
@media (min-width: 1200px) {
  .margin-reset-lg {
    margin: 0;
  }
  .text-center-lg {
    text-align: center;
  }
  .text-left-lg {
    text-align: left;
  }
  .text-right-lg {
    text-align: right;
  }
}
@media (max-width: 767px) {
  .margin-reset-sm-down {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .margin-reset-md-down {
    margin: 0;
  }
}
@media (max-width: 1200px) {
  .margin-reset-lg-down {
    margin: 0;
  }
}

/* Padding */
.padding-reset {
  padding: 0;
}
@media (min-width: 768px) {
  .margin-reset-sm {
    margin: 0;
  }
}
@media (min-width: 992px) {
  .padding-reset-md {
    padding: 0;
  }
  .padding-lr-half {
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
  .padding-lr-5 {
    padding-left: 5px;
    padding-right: 5px;
  }
  .padding-left-0 {
    padding-left: 0;
  }
  .padding-right-0 {
    padding-right: 0;
  }
}
@media (min-width: 1200px) {
  .padding-reset-lg {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .padding-reset-sm-down {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .padding-reset-md-down {
    padding: 0;
  }
}
@media (max-width: 1200px) {
  .padding-reset-lg-down {
    padding: 0;
  }
}
.container {
  position: relative;
}
