/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #4d4643;
}

a {
  color: #1bbd36;
  text-decoration: none;
}

a:hover {
  color: #2ae149;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", sans-serif;
}

.p-10{padding-left:40px;}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #1bbd36;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #21df41;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 999;
  padding: 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

#header .logo a {
  color: #111;
}

#header .logo a span {
  color: #1bbd36;
}

#header img {
  max-height: 70px;
  margin-bottom:5px;
}

.top-bar {
  padding: 0px 5px 10px 5px;
  background: #191919;
  line-height: 18px;
}


#header .container{padding-top:10px;}
/*--------------------------------------------------------------
# Top Header
--------------------------------------------------------------*/
.top-number{
  color:#fff;
  font-size:12px;  
}

.header-social-links {
  margin-left: 0px;
}

.header-social-links a {
  color: #a0a0a0;
  display: inline-block;
  line-height: 0px;
  transition: 0.3s;
  padding-left: 20px;
}

.header-social-links a i {
  line-height: 0;
}

.header-social-links a:hover {
  color: #1bbd36;
}

@media (max-width: 768px) {
  .header-social-links {
    padding: 0 15px 0 0;
    border-left: 0;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 10px;
  float:right;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #111;
  white-space: nowrap;
  text-transform: uppercase;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #1bbd36;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-top: 2px solid #1bbd36;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #111;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #1bbd36;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #111;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #111;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #1bbd36;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #1bbd36;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Slider
--------------------------------------------------------------*/
.btn-get-started {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 15px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  margin: 5px;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 2px solid #1bbd36;
}

.btn-get-started:hover {
  background: #1bbd36;
  color: #fff;
  text-decoration: none;
}

.carousel-caption {
  background: rgba(4, 4, 4, 0.7);
  padding: 10px;
  color: #fff;
  border-top: 5px solid #1bbd36;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
#contents{
	margin-top:130px;
}

section .container{
  padding: 20px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f7f7f7;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 7px;
  display:inline-block;
  border-bottom:2px solid #72c02c;
  position: relative;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 0;
  background: #1bbd36;
  min-height: 0px;
  margin-top: -20px;
}

.breadcrumbs h2 {
  font-size: 26px;
  font-weight: 300;
  color: #fff;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  color: #fff;
}

.breadcrumbs ol a {
  color: #fff;
}

.breadcrumbs ol a:hover {
  color: #fff;
  font-weight:bold;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #fff;
  content: "/";
}

@media (max-width: 991px) {
  .breadcrumbs {
    margin-top: 58px;
  }

  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  padding: 40px 20px 40px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 200px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
}

.services .icon-box .icon i {
  font-size: 36px;
  transition: 0.5s;
  position: relative;
}

.services .icon-box .icon img {
  transition: 0.5s;
  position: relative;
}

.services .icon-box .icon svg {
  position: absolute;
  top: 0;
  left: 0;
}

.services .icon-box .icon svg path {
  transition: 0.5s;
  fill: #f5f5f5;
}

.services .icon-box h4 {
  font-weight: 600;
  margin: 10px 0 15px 0;
  font-size: 22px;
}

.services .icon-box h4 a {
  color: #111;
  transition: ease-in-out 0.3s;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.08);
}

.services .iconbox-blue i {
  color: #47aeff;
}

.services .iconbox-blue:hover .icon i {
  color: #fff;
}

.services .iconbox-blue:hover .icon path {
  fill: #47aeff;
}

.services .iconbox-orange i {
  color: #ffa76e;
}

.services .iconbox-orange:hover .icon i {
  color: #fff;
}

.services .iconbox-orange:hover .icon path {
  fill: #ffa76e;
}

.services .iconbox-green i {
  color: #2bd30f;
}

.services .iconbox-green:hover .icon i {
  color: #fff;
}

.services .iconbox-green:hover .icon path {
  fill: #2bd30f;
}

.services .iconbox-yellow i {
  color: #ffbb2c;
}

.services .iconbox-yellow:hover .icon i {
  color: #fff;
}

.services .iconbox-yellow:hover .icon path {
  fill: #ffbb2c;
}

.services .iconbox-red i {
  color: #ff5828;
}

.services .iconbox-red:hover .icon i {
  color: #fff;
}

.services .iconbox-red:hover .icon path {
  fill: #ff5828;
}

.services .iconbox-teal i {
  color: #11dbcf;
}

.services .iconbox-teal:hover .icon i {
  color: #fff;
}

.services .iconbox-teal:hover .icon path {
  fill: #11dbcf;
}

/*--------------------------------------------------------------
# banner home
--------------------------------------------------------------*/
.banner .banner-logo {
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: #fff;
  height: 100px;
}

.banner .banner-logo img {
  transition: all 0.3s ease-in-out;
  height: 90px;
}

.banner .banner-logo:hover img {
  filter: none;
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about-us .content h2 {
  font-weight: 700;
  font-size: 42px;
  line-height: 60px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.about-us .content h3 {
  font-weight: 500;
  line-height: 32px;
  font-size: 24px;
}

.about-us .content ul {
  list-style: none;
  padding: 0;
}

.about-us .content ul li {
  padding: 10px 0 0 28px;
  position: relative;
}

.about-us .content ul i {
  left: 0;
  top: 7px;
  position: absolute;
  font-size: 20px;
  color: #1bbd36;
}

.about-us .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-wrap {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin-top:30px;
}

.contact .info {
  background: #fff;
}

.contact .info i {
  font-size: 20px;
  color: #1bbd36;
  float: left;
  width: 44px;
  height: 44px;
  border: 1px solid #1bbd36;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #111;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #444444;
}

.contact .info:hover i {
  background: #1bbd36;
  color: #fff;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #fff;
  font-size: 14px;
  background: #111;
}

#footer .footer-top {
  padding: 30px 0 10px 0;
  background: #1e1e1e;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 22px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Roboto", sans-serif;
  color: rgba(255, 255, 255, 0.7);
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 15px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #1ed33c;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: rgba(255, 255, 255, 0.6);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #fff;
}

#footer .footer-newsletter {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
}

#footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
  color: #fff;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #1bbd36;
  color: #fff;
  text-decoration: none;
}

#footer .mobile-links h6{
	padding:40px 0 5px 0;
	font-size: 14px;
	font-weight: bold;
	color: #fff;
}

/*cuaca */
.cuaca-map-box, .content-box{padding: 10px; margin-right: 5px; margin-left:5px; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);}
.content-flex{padding: 10px; margin-right: 5px; margin-left:5px;}
#cuaca-map {width: 100%; height: 480px; margin:0; padding:0;}
.title-info h6 {padding-bottom:5px;display:inline-block;border-bottom:2px solid #72c02c;text-align:left;}
.title-info-right h6 {padding-bottom:5px;display:inline-block;border-bottom:2px solid #72c02c;padding-right:10px;}
@media (max-width: 991px) {
	#cuaca-map {height: 250px;}
	.title-info {padding-top:30px;}
}

.cuaca-map-tip-kota{font-weight:bold; font-size:16px;text-align:center;padding-top:10px;padding-bottom:15px;}
#cuaca-map-tip-btn a,#map-tip-btn a:visited{color:#000;}
#cuaca-map-tip-btn a:hover{color:#fff;}
.cuaca-time {float:left;width:100px; text-align:center;}
.cuaca-tiptrh {float:left;width:150px; text-align:center; font-size:14px; font-weight:bold;padding-top:15px;padding-bottom:15px;}
.cuaca-info-content{width:300px}
.cuaca-ws{font-weight:bold; font-size:14px;text-align:center;padding-top:10px;padding-bottom:10px;}
.cuaca-warning-harian{margin-top:10px;padding:10px;background:#ff8c1a;color:#fff;}
.cuaca-warning-harian-head{font-weight:bold;padding-bottom:8px;}
.cuaca-warning-harian-info{text-align:justify;}
#cumar-legend ul li{list-style: none;}
#cumar-legend {
  background: #fff;
  padding: 10px 10px 0 10px;
  margin: 0 10px;
  font-size: 12px;
  font-family: Arial, sans-serif; 
  overflow: hidden; 
  text-align: left; 
  color: rgb(86, 86, 86); 
  -moz-user-select: none; 
  background-color: rgb(255, 255, 255); 
  border-radius: 2px; 
  background-clip: padding-box; 
  box-shadow: 0px 1px 4px -1px rgba(0, 0, 0, 0.3); 
  border-left: 0px none;
  position: absolute;
  left: 5px;
  bottom: 15px;
  z-index: 990;
}
#cumar-legend h6{font-size:12px;font-family: Arial, sans-serif;font-weight:bold;} 
.cumar-legend-color {
  height: 12px;
  width: 16px;
  margin-top:2px;
  margin-right:2px;
  margin-left:-30px;
  float: left;
}

.kegiatan{margin-top:-30px;}

.kinerja-head{font-weight:bold; background: #1bbd36; padding:15px; color:#fff;}
.kinerja-item{border:1px solid #1bbd36;}
.kinerja-item ul{padding-top:15px; margin-left:20px;}
.kinerja-item ul li a{color:#000; text-decoration:none;}
.kinerja-item ul li a:hover{color:#1bbd36;}

.spancer{margin-bottom:30px;}

/*sidebar */
.white-bg{
	background-color:#fff;
}

.content-box .recent-posts img {
  width: 110px;
  float: left;
  padding-right:15px;
}

.content-box .recent-berita img {
  width: 250px;
  float: left;
  padding-right:35px;
}

.content-box .recent-posts h6, .content-box .recent-berita h6 {
  font-size: 15px;
  font-weight: bold;
}

.content-box .recent-posts h6 a, .content-box .recent-beritah6 a {
  color: #111;
  transition: 0.3s;
}

.content-box .recent-posts h6 a:hover, .content-box .recent-berita h6 a:hover {
  color: #1bbd36;
}

.content-box .recent-posts span {
  font-size: 14px;	
}

.content-box .recent-posts time {
  display: block;
  text-align:right;
  margin-right: 10px;
  font-style: italic;
  font-size: 12px;
  color: #b4aca8;
  padding-bottom:15px;
}

.content-box .recent-posts .waktu,
.content-box .recent-posts .author,
.content-box .recent-berita .waktu {
  display: block;
  text-align:left;
  margin-right: 10px;
  font-style: italic;
  font-size: 12px;
  color: #b4aca8;
  padding-bottom:15px;
}

.content-box .entry-title {
  font-size: 28px;
  font-weight: bold;
  padding: 0;
  margin: 0 0 20px 0;
}

.content-box .entry-title a {
  color: #111;
  transition: 0.3s;
}

.content-box .entry-title a:hover {
  color: #1bbd36;
}

.content-box .entry-meta {
  margin-bottom: 15px;
  color: #777777;
}

.content-box .entry-meta ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.content-box .entry-meta ul li+li {
  padding-left: 20px;
}

.content-box .entry-meta i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
}

.content-box .entry-meta a {
  color: #847872;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.content-box .entry-content p {
  line-height: 24px;
}

.content-box .tags {
  margin-bottom: -10px;
}

.content-box .tags ul {
  list-style: none;
  padding: 0;
}

.content-box .tags ul li {
  display: inline-block;
}

.content-box .tags ul a {
  color: #515151;
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid #c4c4c4;
  display: inline-block;
  transition: 0.3s;
}

.content-box .tags ul a:hover {
  color: #fff;
  border: 1px solid #1bbd36;
  background: #1bbd36;
}

.content-box .tags ul a span {
  padding-left: 5px;
  color: #aaaaaa;
  font-size: 14px;
}

.zoom {      
-webkit-transition: all 0.35s ease-in-out;    
-moz-transition: all 0.35s ease-in-out;    
transition: all 0.35s ease-in-out;     
cursor: -webkit-zoom-in;      
cursor: -moz-zoom-in;      
cursor: zoom-in;  
}     


.cuaca-head{
	margin-top:10px;
	background:#f5f5f0;
	color:#000;
	font-weight:500;
	padding-top:10px;
	padding-bottom:10px;
	border-bottom:medium double #d6d6c2;
}
.cuaca-title-center{
	margin: auto;
    padding: 10px;
	padding-left:20px;
}
.cuaca-title-top{
	text-align:center;
	border-bottom:1px solid #d6d6c2;
}
.area-title, .temp-title, .rh-title{
	padding-left:20px;
	padding-top:10px;
	color:#000000;
}
.area-title a, .area-title a:visited {
	color:#000000;
	font-weight:500;
}
.area-title a:hover {
	color:#006600;
}
.cuaca-list{
	padding:20px 0 20px 0;
	border-bottom:1px solid #d6d6c2;
}
.cuaca-wisata-list{
	padding:5px 0 5px 0;
	border-bottom:1px solid #d6d6c2;
}
.cuaca-list:hover,.cuaca-wisata-list:hover{
	background:#f5f5f0;
}
#cuacaTab{
	margin-top:10px;
	margin-bottom:-5px;
	border-bottom:2px solid #009933 ;
}

.nav-tabs>li{
  margin-bottom: 0px;
  padding-right:20px;
  border-bottom:0;
}

.nav-tabs{
  border-bottom: 0;
}

.nav-tabs .nav-item .nav-link {
  background: #fff;
  color: #000;
  border-radius: 0;
  border: 0 none;
  line-height: 10px;
  margin-right:0;
  padding: 15px 30px;
  font-size:14px;
}

.nav-tabs li:last-child{
  border-bottom: 0 none;
} 

.nav-tabs .nav-item .nav-link:hover{
  border-left: 1px solid #009933;
  border-top: 1px solid #009933;
  border-right: 1px solid #009933;
  border-bottom: 0;
  border-radius: 5px 5px 0 0;
}

.nav-tabs .nav-item .active, 
.nav-tabs .nav-item .active:hover, 
.nav-tabs .nav-item .active:focus {
  border-left: 2px solid #009933;
  border-top: 2px solid #009933;
  border-right: 2px solid #009933;
  border-bottom: 0;
  border-radius: 5px 5px 0 0;
  color:#fff;
  background: #1bbd36;
  position:relative;
}

.nav-tabs .nav-item .active:after {
  display:none;
}

/* Detail Cuaca */
.block-siang{
  background-color: #0066ff;
  background-image:url("../../images/wxblock1.jpg");
  border:3px solid #fff;
  border-radius:10px;
  padding-bottom:10px;
  height:230px;
}
.block-malam{
  background-color: #0489B1;
  background-image:url("../../images/wxblock2.jpg");
  border:3px solid #fff;
  border-radius:10px;
  padding-bottom:10px;
  height:230px;
}
.block-wilper{
  background-color:#0489B1;
  background-image:url("../../images/cumarbg.jpg");
  border:3px solid #fff;
  border-radius:10px;
  padding-bottom:10px;
}
.wkt-fct{
	text-align:center;
	font-weight:bold;
	color:#fff;
	padding-top:10px;
}
.icon-wx-details {padding-bottom:15px;}
.icon-wx-details p{
	color:#fff;
	font-weight:bold;
	font-size:12px;
	text-align:center;
}
.icon-wx-details img{
	margin: auto;
    padding: 3px;
}
.icon-wx-details span{
	margin: auto;
	font-weight:bold;
	color:#fff;	
}
.temp-details .fa-thermometer-full{
	color:#FF0000;
	font-size:14px;
	margin-left:-10px;
}
.temp-details span, .rh-details span, .dd-details span{
	color:#fff;
	font-weight:bold;
	font-size:14px;
}
.rh-details .fa-tint{
	color:#0040FF;
	font-size:14px;
	margin-left:-10px;
}
.ddff-details{
	color:#fff;
	font-weight:bold;
	font-size:12px;
	padding-bottom:10px;
}