<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Global CSS */

/* Table style */

table.dataTable {
    width: 100%;
    max-width: 100%;
    margin-bottom: 1rem;
    background-color: transparent;
    border-collapse: collapse;
    margin-top: 24px !important;
}

.table-custom th,
.table-custom td {
    padding: 1rem;
    border: 1px solid #dee2e6;
    vertical-align: middle;
    font-size: 14px;
}

.table-custom th {
    background-color: var(--color-primary);
    font-weight: bold;
    color: #fff;
}

.table-custom tbody tr:nth-of-type(odd) {
    background-color: rgb(255, 255, 255);
}

.table-custom tbody tr:hover {
    background-color: rgba(255, 0, 0, 0.219);
}

.table-custom a:hover {
    color: #fff;
    text-decoration: none;
}

/* Index */

.hero .info h2 a{
    color: #fff;
    margin-bottom: 30px;
    padding-bottom: 16px;
    font-size: 56px;
    font-weight: 700;
    position: relative;
}

.blog .posts-list p {
    margin-top: 20px;
    font-size: 16px;
    line-height: 24px;
    color: var(--color-default);
}

.one-hero.get-started .content h3:after {
    content: "";
    position: absolute;
    display: none;
    width: 60px;
    height: 4px;
    background: var(--color-primary);
    left: 0;
    bottom: 0;
}


/* Heading Stack Hiden */

.row-head h4 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: calc(10ch * 3); /* menghitung 3 kata atau 20 karakter */
}

.portfolio-container h4 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: calc(5ch * 3); /* menghitung 3 kata atau 20 karakter */
}

/* Hide when desktop and show when mobile resolution */

.konten-hide {
    display: block;
  }
  
.konten-show {
    display: none;
}

.blog .posts-list .post-img img {
    min-height: 330px;
    object-fit: cover;
}

@media (max-width: 769px) {
    .konten-show {
      display: block;
    }
    
    .konten-hide {
      display: none;
      margin-bottom: 16px;
    }
}

/* Min-height portofolio container */

.portfolio-container {
    min-height: 488px;
}

@media (max-width: 769px) {
    .projects .portfolio-flters li {
        margin-bottom: 1rem;
    }
}

.footer .footer-content .footer-links ul a {
    font-size: 14px;
}

.footer .footer-content .footer-links.excepts ul li {
    padding: 4px 0;
}

.footer .footer-content .footer-links.excepts ul li .except{
    line-height: 24px;
}

.scroll-top {
    position: fixed;
    visibility: visible;
    opacity: 1;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background: none;
    width: unset;
    height: unset;
    border-radius: 4px;
    transition: all 0.4s;
}

/* Padding Editable */
#templates #main section {
    padding: 40px 0;
}
/* End of Padding Editable */</pre></body></html>