/* 
*
* Ajax loading page
*/
#loading_ajax {
    position: fixed;
    z-index: 2021;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
    filter: alpha(opacity= 90);
    overflow: hidden;
    text-align: center;
    display:none;
    background: rgba(255, 255, 255, 0.90);
}

body #loading_ajax{
    background: rgba(255, 255, 255, 0.90);

}

#loading_ajax .loaderpageajax {
    position: relative;
    top: 40%;
}  
#loading_ajax img {
    margin-bottom: 12px;
}  
#loading_ajax i.fa, #loading_ajax h4 {
    opacity: 1.0;
    filter: alpha(opacity= 100);
}

#result_ajax{
    border:0;
    padding:10px;
    position:fixed;
    width:100%;
    display:none;
    box-shadow: #ccc 1px 2px 4px;
    z-index:99999;
    top: 0px;
    /* overflow: auto;  */
}

/**
 * BERITA HOME
 */
 .news-item {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.news-banner-image {
    width: 100%;
    height: auto;
    object-fit: cover; /* Memastikan gambar selalu proporsional */
}

.news-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Warna overlay dengan transparansi */
    z-index: 1; /* Overlay berada di atas gambar */
    pointer-events: none; /* Overlay tidak mengganggu interaksi */
}

.news-banner-content {
    z-index: 2; /* Konten di atas overlay */
}
.news-banner-content h5 {
    color: #FD909B;
}

.news-item h6 a {
    text-decoration: none;
}
.news-item h6 a:hover {
    text-decoration: underline;
}


/**
 * BERITA DETAIL
 */
 /* Breadcrumbs CSS */
.breadcrumbs {
    margin-top:25px;
    padding: 20px 0;  /* Padding for the breadcrumb area */
    font-family: Arial, sans-serif;  /* Font styling */
}

.breadcrumbs .container {
    margin: 0 auto;  /* Centering the container */
}

.breadcrumbs ol {
    list-style: none;  /* Removing default list style */
    padding: 0;
    margin: 0;
    display: flex;  /* Using flexbox for horizontal layout */
    align-items: center;  /* Center items vertically */
}

.breadcrumbs ol li {
    margin-right: 10px;  /* Space between items */
}

.breadcrumbs ol li a {
    color: #074483;  /* Link color */
    text-decoration: none;  /* No underline */
    transition: color 0.3s ease-in-out;  /* Smooth transition for hover effect */
}

.breadcrumbs ol li a:hover {
    color: #074483;  /* Color when hovered */
}

.breadcrumbs ol li::after {
    content: '>';  /* Separator character */
    margin-left: 10px;  /* Space after the separator */
    color: #6c757d;  /* Color of the separator */
}

.breadcrumbs ol li:last-child::after {
    content: none;  /* No separator after the last item */
}

.breadcrumbs ol li:last-child {
    font-weight: bold;  /* Make the last item bold */
}

/* Blog CSS */
.blog .container {
    margin: auto;
}

.blog .entries .entry {
    margin-bottom: 40px;  /* Space between entries */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);  /* Subtle shadow around the container */
    padding: 20px;
    background: #fff;  /* White background for readability */
}

.blog .entry-single {
    border-bottom: 1px solid #eaecef;  /* Subtle border for the entry bottom */
    padding-bottom: 20px;  /* Padding at the bottom of each entry */
}

.blog .entry-img img {
    width: 100%;
    height: auto;
    border-radius: 5px;  /* Rounded corners for images */
}

.blog .entry-title {
    line-height: 0.9;
    margin-top: 20px;
}

.blog .entry-title a {
    color: #074483;  /* Blue color for titles */
    text-decoration: none;  /* Remove underline */
    font-size: 24px;  /* Larger font size for titles */
}

.blog .entry-meta {
    color: #6c757d;  /* Grey color for metadata */
    font-size: 14px;
    margin-top: 20px;  /* Space below meta data */
    margin-bottom: 12px;  /* Space below meta data */
}
/* Entry Meta CSS */
.blog .entry-meta ul {
    list-style: none; /* Removes default list styling */
    padding: 0; /* Removes padding */
    margin: 0; /* Removes margin */
    display: flex; /* Displays items in a row */
    align-items: center; /* Centers items vertically */
}

.blog .entry-meta ul li {
    margin-right: 20px; /* Adds space between list items */
}

.blog .entry-meta ul li:last-child {
    margin-right: 0; /* Removes margin from the last item */
}

.blog .entry-meta li i {
    margin-right: 8px;
}

.blog .entry-meta a {
    text-decoration: none; /* Removes underline from links */
    color: #074483; /* Sets color of links */
    transition: color 0.3s; /* Smooth transition for hover effect */
}
.blog .entry-meta a {
    color: inherit;  /* Inherits the grey color */
    text-decoration: none;  /* No underline */
}


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

.blog .entry .entry-content .read-more {
-moz-text-align-last: right;
text-align-last: right;
}

.blog .entry .entry-content .read-more a {
display: inline-block;
background: #074483;
color: #fff;
padding: 6px 20px;
transition: 0.3s;
font-size: 14px;
border-radius: 4px;
}

.blog .entry .entry-content .read-more a:hover {
background: #a10d17;
}

.blog .entry .entry-content h3 {
font-size: 22px;
margin-top: 30px;
font-weight: bold;
}

.blog .entry .entry-content blockquote {
overflow: hidden;
background-color: #fafafa;
padding: 60px;
position: relative;
text-align: center;
margin: 20px 0;
}

.blog .entry .entry-content blockquote p {
color: #444444;
line-height: 1.6;
margin-bottom: 0;
font-style: italic;
font-weight: 500;
font-size: 22px;
}

.blog .entry .entry-content blockquote::after {
content: "";
position: absolute;
left: 0;
top: 0;
bottom: 0;
width: 3px;
background-color: #012970;
margin-top: 20px;
margin-bottom: 20px;
}


.blog .entry .entry-footer {
padding-top: 10px;
border-top: 1px solid #e6e6e6;
}

.blog .entry .entry-footer i {
color: #074483;
display: inline;
}

.blog .entry .entry-footer a {
color: #074483;
transition: 0.3s;
}

.blog .entry .entry-footer a:hover {
color: #a5101a;
}

.blog .entry .entry-footer .cats {
list-style: none;
display: inline;
padding: 0 20px 0 0;
font-size: 14px;
}

.blog .entry .entry-footer .cats li {
display: inline-block;
}

.blog .entry .entry-footer .tags {
list-style: none;
display: inline;
padding: 0;
font-size: 14px;
}

.blog .entry .entry-footer .tags li {
display: inline-block;
}

.blog .entry .entry-footer .tags li+li::before {
padding-right: 6px;
color: #6c757d;
content: ",";
}

.blog .entry .entry-footer .share {
font-size: 16px;
}

.blog .entry .entry-footer .share i {
padding-left: 5px;
}

.blog .entry-single {
margin-bottom: 30px;
}

.blog .container .card .card-title a{
    color: #0056b3;
    text-decoration: none;
}

.blog .container .card .card-title a:hover{
    color: #ca9904;
}

.article-pagination {
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
}
.article-pagination .prev-article a,
.article-pagination .next-article a {
    font-size: 12px;
    font-weight: 700;
    color: #182d41;
    text-transform: uppercase;
    margin-bottom: 10px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.article-pagination .prev-article a i,
.article-pagination .next-article a i {
    font-size: 18px;
}
.article-pagination .prev-article a:hover,
.article-pagination .next-article a:hover {
    color: #074483;
}
.article-pagination .prev-article p,
.article-pagination .next-article p {
    font-size: 14px;
    margin-top: 6px;
}
.article-pagination .next-article {
    text-align: right;
}

.blog .sidebar {
    padding: 30px;
    margin: 0 0 60px 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    background: #fff;  /* White background for readability */
}

.blog .sidebar .sidebar-title {
    font-size: 20px;
    font-weight: 700;
    padding: 0 0 0 0;
    margin: 0 0 15px 0;
    color: #000;
    position: relative;
}

.blog .sidebar .sidebar-item {
margin-bottom: 30px;
}

.blog .sidebar .search-form form {
background: #fff;
border: 1px solid #ddd;
padding: 3px 10px;
position: relative;
}

.blog .sidebar .search-form form input[type=text] {
border: 0;
padding: 4px;
border-radius: 4px;
width: calc(100% - 40px);
}

.blog .sidebar .search-form form button {
position: absolute;
top: 0;
right: 0;
bottom: 0;
border: 0;
background: none;
font-size: 16px;
padding: 0 15px;
margin: -1px;
background: #074483;
color: #fff;
transition: 0.3s;
border-radius: 0 4px 4px 0;
line-height: 0;
}

.blog .sidebar .search-form form button i {
line-height: 0;
}

.blog .sidebar .search-form form button:hover {
background: #03274b;
}

.blog .sidebar .categories ul {
list-style: none;
padding: 0;
}

.blog .sidebar .categories ul li+li {
padding-top: 7px;
}

.blog .sidebar .categories ul a {
    transition: 0.3s;
    text-decoration: none;
    color: #074483;
}

.blog .sidebar .categories ul a:hover {
color: #03274b;
}

.blog .sidebar .categories ul a span {
padding-left: 5px;
color: #aaaaaa;
font-size: 14px;
}

.blog .sidebar .recent-posts .post-item+.post-item {
margin-top: 15px;
}

.blog .sidebar .recent-posts img {
width: 80px;
float: left;
}

.blog .sidebar .recent-posts h4 {
font-size: 15px;
margin-left: 95px;
font-weight: normal;
}

.blog .sidebar .recent-posts h4 a {
    transition: 0.3s;
    text-decoration: none;
    line-height: 1.5;
    color: #074483;
}

.blog .sidebar .recent-posts h4 a:hover {
color: #03274b;
}

.blog .sidebar .recent-posts time {
display: block;
margin-left: 95px;
font-style: italic;
font-size: 14px;
color: #aaaaaa;
}

.blog .sidebar .tags {
margin-bottom: -10px;
}

.blog .sidebar .tags ul {
list-style: none;
padding: 0;
}

.blog .sidebar .tags ul li {
display: inline-block;
}

.blog .sidebar .tags ul a {
color: #074483;
font-size: 14px;
padding: 6px 14px;
margin: 0 6px 8px 0;
border: 1px solid #d7e6ff;
display: inline-block;
transition: 0.3s;
}

.blog .sidebar .tags ul a:hover {
color: #fff;
border: 1px solid #03274b;
background: #03274b;
}

.blog .sidebar .tags ul a span {
padding-left: 5px;
color: #a5c5fe;
font-size: 14px;
}
  

/*

SHARE BUTTON Style

*/
.sharebutton {

    padding: 14px 0px;
    border-top: 1px solid #e6e6e6;
    margin-top: 25px;

}

/*

POST BLOG

*/
.blog .entry .entry-img,
.gallery .entry .entry-img {
    max-height: unset;
}
/*

Search form pada search page

*/
.search-form-section {
    background-color: #fff; /* Light background for the form */
    padding: 20px 0; /* Padding for the section */
}

.search-form {
    display: flex;
    justify-content: center; /* Centers the form in the container */
    align-items: center;
    gap: 10px; /* Space between input and button */
}

.search-form input[type="text"] {
    width: 100%; /* Relative width for responsiveness */
    padding: 10px; /* Padding for better text visibility */
    border: 2px solid #ccc; /* Subtle border styling */
    border-radius: 5px; /* Rounded corners for the input box */
}

.search-form button {
    padding: 11px 20px; /* Padding inside the button */
    background-color: #007bff; /* Color for the button */
    color: white; /* Text color for the button */
    border: none; /* Removes default border */
    border-radius: 5px; /* Rounded corners for the button */
    cursor: pointer; /* Cursor changes to pointer to indicate clickability */
    font-size: 16px; /* Font size for text inside the button */
}

.search-form button:hover {
    background-color: #0056b3; /* Darker shade on hover for better user experience */
    color: white; /* Text color for the button */
}
.search-form-section {
    background-color: #f8f9fa; /* Slightly different background to distinguish the section */
}

/**
 *
 * PAGE
 *
 */
section.page-content {
    overflow: hidden; /* Membuat elemen anak dengan float tetap berada di dalam elemen induk */
}

.page-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-content ul li {
    position: relative;
    padding-left: 30px;
    font-size: 1.2rem; 
    line-height: 1.6;
}

.page-content ul li::before {
    content: "\F0134";
    font: normal normal normal 24px/1 "Material Design Icons";
    color: #145ea6;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.page-content .proposal-k3-listrik {
    background: linear-gradient(to right, #0F2052, #145EA6);
}