@import url('../../assets/fonts/poppins.css');
@import url('normalize.css');
@import url('sidr.css');

:root {
    /* --body-width: 1170px; */
    --main-bg-color: #efefef;
    --main-text-color: rgba(0, 0, 0, .87);
    --main-light-text-color: rgba(255, 255, 255, .87);
    --main-color: #6f325f;
    --main-light-color: #9E005D;
    --secondary-color: #001E57;
    --accent-color: #FBE108;
    --accent-color-dark: #fecf00;
    --main-dark-color: #360d2b;
    --main-link-color: var(--main-color);
    --main-link-hover-color: var(--main-dark-color);
    --border-radius: 4px;
}

html {
    font-size: 1rem;
    scroll-behavior: smooth;
    background: url(../../assets/img/bg.jpg);
    background-attachment: fixed;
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* grid */

body {
    display: grid;

    grid-template-areas:    "topbar topbar  topbar  topbar  topbar  topbar" 
                            "header header  header  nav     nav     nav"
                            "banner banner  banner  banner  banner  banner"
                            "left   left    main    main    right   right"
                            "bottom bottom  bottom  bottom  bottom  bottom"
                            "footer footer  footer  footer  footer  footer";
    grid-template-columns:  1fr     250px   100px   560px     250px     1fr;

    grid-template-rows: 46px 16px auto 1fr auto auto;
    grid-row-gap: 0;
    grid-column-gap: 0;
    min-height: 100vh;
    margin: 0 auto;
    /* max-width: var(--body-width); */
}

body.full {
    grid-template-areas:    "topbar topbar  topbar  topbar  topbar  topbar" 
                            "header header  header  nav     nav     nav"
                            "banner banner  banner  banner  banner  banner"
                            "main   main    main    main    main    main"
                            "bottom bottom  bottom  bottom  bottom  bottom"
                            "footer footer  footer  footer  footer  footer";
}

body.full .aside-left,
body.full .aside-right {
    display: none;
}

body.full main {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto -124px;
    z-index: 50;
}

body.left-sidebar {
    grid-template-areas:    "topbar topbar  topbar  topbar  topbar  topbar" 
                            "header header  header  nav     nav     nav"
                            "banner banner  banner  banner  banner  banner"
                            "left   left    main    main    main    main"
                            "bottom bottom  bottom  bottom  bottom  bottom"
                            "footer footer  footer  footer  footer  footer";
}

body.right-sidebar {
    grid-template-areas:    "topbar topbar  topbar  topbar  topbar  topbar" 
                            "header header  header  nav     nav     nav"
                            "banner banner  banner  banner  banner  banner"
                            "main   main    main    main    right   right"
                            "bottom bottom  bottom  bottom  bottom  bottom"
                            "footer footer  footer  footer  footer  footer";
}

body.left-sidebar .aside-right {
    display: none;
}

body.right-sidebar .aside-left {
    display: none;
}

body.left-sidebar main,
body.right-sidebar main {
    max-width: 910px;
}

img {
    width: 100%;
}

aside img {
    display: block;
    margin: auto;
    max-width: 300px;
}

p {
    line-height: 1.4;
    margin: 0 0 .6em;
}

hr {
    margin-block-start: 0.5em;
    margin-block-end: 0.5em;
    margin-inline-start: auto;
    margin-inline-end: auto;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
}

h1 {
    margin: .5em 0 .5em;
}

h2,
h3 {
    margin: 1em 0 .5em;
}

hr {
    border: 1px solid var(--main-color);
    opacity: .1;
}

aside .lokasi-container div {
    background: #fff;
    padding: 12px 8px;
    border-radius: var(--border-radius);
    margin: 0 0 16px;
}

aside .lokasi-container div .btn {
    margin-top: 12px;
    width: 100%;
}

.lokasi-container label {
    font-weight: 600;
    line-height: 1.8;
}

.top {
    padding: 16px;
    box-shadow: 0 1px 8px 1px rgba(0, 0, 0, .2);
}

p.time {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
}

main h1+hr {
    border: 2px solid var(--main-color);
    opacity: 1;
    margin-bottom: 24px;
}

main h1:first-child {
    margin-top: 0;
}

body:not(.full) h1+hr {
    margin-bottom: 4px;
}

main h2 {
    font-size: 24px;
    text-transform: uppercase;
    text-align: center;
    padding: 6px 12px;
    width: fit-content;
    margin: auto;
    position: relative;
    z-index: 1;
    color: var(--main-light-text-color);
}

aside h2 {
    font-size: 16px;
    background-color: var(--main-dark-color);
    color: #fff;
    padding: 12px;
    margin-top: -18px;
}

aside .login {
    margin-bottom: 16px;
}

.login h2, .login h3 {
    margin-top: 0;
}

.login form {
    padding: 16px;
    background: var(--accent-color);
    border-radius: var(--border-radius);
}

.login form h5 {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 14px;
}

.login  form>a {
    display: block;
    text-align: right;
    margin-top: -8px;
}

.login  form a {
    color: var(--text-color);
}

.login form input {
    width: 100%;
}

.login form section {
    font-size: 14px;
    margin-top: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login form section .btn {
    margin-left: 16px;
    background: var(--main-color);
    box-shadow: none;
    color: rgba(255, 255, 255, .86);
}

.login form section .btn:hover {
    background: var(--main-color);
    filter: brightness(110%);
    color: rgba(255, 255, 255, .86);
}

aside h3 {
    font-size: 16px;
    background-color: var(--secondary-color);
    color: #fff;
    padding: 6px 12px;
    width: fit-content;
}

aside h3+hr {
    border: 2px solid var(--secondary-color);
    opacity: 1;
    margin: -10px 0 20px;
}

li {
    margin-bottom: 6px;
}

header {
    grid-area: header;
}

#navigation {
    grid-area: nav;
    grid-column-end: 6;
}

.topbar {
    grid-area: topbar;
}

.banner {
    grid-area: banner;
    grid-column-start: 2;
    grid-column-end: 6;
}

.bottom {
    grid-area: bottom;
}

footer {
    grid-area: footer;
}

main {
    grid-area: main;
    padding: 12px;
}

aside ul {
    margin: 0;
    padding: 0 0 0 18px;
}

.aside-left {
    grid-area: left;
    grid-column-start: 2;
}

body.right-sidebar main {
    grid-column-start: 2;
}

.aside-right {
    grid-area: right;
}

table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 20px;
}

table td,
table th {
    border: 1px solid #ddd;
    padding: 8px;
}

table tr:nth-child(even) {
    background-color: #f2f2f2;
}

table.table-normal tr:nth-child(even) {
    background-color: transparent;
}

table.table-normal tr:nth-child(even):hover {
    background-color: #ddd;
}

table tr:hover {
    background-color: #ddd;
}

table th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: left;
    background-color: var(--secondary-color);
    color: #fff;
}

table .fa-lg {
    display: block;
    margin: auto;
    opacity: .87;
}

/* style */

body {
    font-family: "Poppins", sans-serif;
    font-optical-sizing: auto;
    color: var(--main-text-color);
    background: rgba(255, 255, 255, .7);
}

.topbar {
    z-index: 80;
    position: sticky;
    top: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    transition: .3s;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, .50);
}

.down .topbar {
    background: rgba(255, 255, 255, .86);
}

.banner {
    width: 100%;
    max-width: 1160px;
    margin: auto;
    text-align: center;
}

.banner div h1 {
    margin: 0;
    color: var(--main-color);
    font-weight: 700;
    font-size: 64px;
}

.banner div h2 {
    margin: 0;
    font-weight: 500;
    font-size: 28px;
    margin-bottom: 24px;
}

main a,
aside a {
    color: var(--main-link-color);
    font-weight: 500;
    transition: all .3s ease-out;
}

main a:hover:not(.btn),
aside a:hover:not(.btn) {
    color: var(--main-link-hover-color);
}

.aside-left>.aside-container {
    background: #fff;
    padding: 8px 0;
    border-radius: var(--border-radius);
    margin: 0 0 16px;
}

.aside-left .logos {
    grid-column-start: 2;
}

.aside-left .links {
    margin: 16px;
    grid-column-start: 2;
}

.aside-left .links>a {
    display: grid;
    grid-gap: 8px;
    grid-template-columns: 32px 1fr;
    align-items: center;
    margin-bottom: 12px;
    text-decoration: none;
}

.aside-left .links>a:last-child {
    margin-bottom: 0;
}

.aside-right {
    grid-column-end: 6;
}

aside a,
main a {
    text-decoration: none;
}

main h1~img {
    margin-bottom: 20px;
}

aside .soc {
    margin: 0 0 4px 32px;
    text-indent: -32px;
}

aside .isoc {
    max-width: 24px;
    margin-right: 4px;
}

aside .isoc+span {
    position: relative;
    top: -6px;
}

header {
    position: sticky;
    top: 0;
    z-index: 100;
    margin-top: -46px;
}

header .mobile-header {
    display: none;
    margin: 19px 0 0;
    font-size: 1.2rem;
    color: #fff;
}

.logo {
    max-height: 70px;
    width: auto;
    margin: 8px 0 0;
    float: left;
    transition: .3s;
}

.brandname {
    display: block;
    font-size: 24px;
    margin: 5px 0 0 56px;
    white-space: nowrap;
    transition: .2s;
    user-select: none;
    font-weight: 700;
    color: var(--main-color);
}

#sidr-main {
    user-select: none;
}

#sidr-main a {
    cursor: pointer;
}

.sidr-inner>ul>li {
    border-bottom: none
}

.sidr li {
    background: transparent;
}

svg.sidr-class-svg-inline--fa {
    max-width: 8px;
}

header h1 {
    font-size: 1.8rem;
    font-weight: 900;
    text-transform: uppercase;
    margin: 22px 0 0;
    color: var(--main-dark-color);
    transition: .3s;
}


header h2 {
    font-size: .9rem;
    text-transform: uppercase;
    font-weight: 500;
    margin: 0;
    color: var(--secondary-color);
    transition: .3s;
    white-space: nowrap;
}

.top {
    background: linear-gradient(295deg, var(--main-color) 0%, var(--main-light-color) 100%);
    border-radius: 24px;
    margin: 0 auto;
    max-width: 800px;
}

.content {
    background: #fff;
    border-radius: 24px;
    margin: 0 auto;
    padding: 24px;
    max-width: 800px;
}

main h1 {
    color: var(--main-color);
    font-size: 1.7rem;
    line-height: 1;
    margin: 32px 0 0;
    text-align: center;
}

body:not(.full) h1 {
    text-align: left;
}

main .app-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin: 24px 0;
}

main .app {
    flex-basis: 180px;
    display: grid;
    grid-template-columns: 1fr;
    text-decoration: none;
    text-align: center;
    position: relative;
}

main .app:last-of-type+hr {
    margin-bottom: 64px;
}

main .app img {
    width: 150px;
    margin: 0 auto;
    z-index: 10;
    transition: .2s;
    transform-origin: bottom;
}

main .app:hover img {
	-webkit-animation: bounce-top 0.9s both;
	        animation: bounce-top 0.9s both;
}

main .app span {
    display: block;
    width: 120px;
    height: 120px;
    top: 27px;
    background-color: #fff;
    position: absolute;
    border-radius: 14px;
    left: 50%;
    transform: translateX(-50%);
    transition: .3s;
    transform-origin: bottom;
}

main .app:hover span {
    background-color: #ffb8e1;
}

main .app h3 {
    color: var(--main-light-text-color);
    margin: 8px 0 8px;
    font-size: 14px;
    line-height: 1.1;
    font-weight: 500;
}

main .app p {
    font-size: 14px;
    margin: 0;
    line-height: 1.2;
}

.ppid-links {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.ppid-link {
    padding: 10px;
    text-align: center;
    width: 120px;
    font-size: 90%;
}

.ppid-link p {
    line-height: 1.1;
}

.ppid-link img {
    height: 64px;
    padding: 10px;
    margin: auto;
}

h3 {
    line-height: 1.35;
}

aside h4 {
    font-size: 15px;
    margin:  0 0 6px;
}

.video-thumbnail {
    position: relative;
    cursor: pointer;
}

.video-thumbnail svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    margin-left: 2px;
    content: "\25BA";
    font-size: 24px;
    color: rgba(255, 255, 255, .9);
    transition: .3s;
    pointer-events: none;
}

.video-thumbnail svg:after {
    color: rgba(255, 255, 255, 1);
}

.video-thumbnail:before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .7);
    content: "";
    pointer-events: none;
    transition: .3s;
}

.video-thumbnail:hover:before {
    background: var(--main-color);
    opacity: .87;
}

.logos {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.logos img {
    display: block;
    max-width: 92px;
    max-height: 64px;
    object-fit: contain;
}

.logos a:first-child img {
    margin-top: 0;
}

.logos.logos-md img {
    max-width: 80px;
}

.logos.logos-l img {
    max-width: 144px;
    max-height: none;
}

.bottom {
    background: var(--main-dark-color);
    color: #fff;
    font-size: 14px;
    padding: 124px 24px 24px;
    display: grid;
    grid-template-columns: 380px 390px 390px;
    justify-content: center;
    margin-top: 32px;
}

.bottom>div {
    border-right: 2px solid rgba(255, 255, 255, .1);
    padding: 16px 32px;
    height: calc(100% - .5em);
    /* display: flex; */
}

.bottom>div:last-child {
    border-right: none;
    display: block;
}

.bottom>div:first-child>div:first-child {
    display: flex;
    align-items: flex-start;
}

.bottom>div:first-child>div:first-child>img {
    margin-right: 12px;
    max-width: 64px;
}

.bottom>div:first-child>div:first-child h1 {
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    margin: 11px 0 0;
    line-height: 1;
    color: var(--accent-color);
}

.bottom>div:first-child>div:first-child h2 {
    font-size: .65rem;
    text-transform: uppercase;
    font-weight: 500;
    margin: 0;
    color: var(--accent-color);
}

.bottom>div>div:nth-child(2) {
    margin-top: 18px;
}

.bottom>div:nth-child(2) ul {
    padding: 0;
    margin: 0;
}

.bottom>div:nth-child(2) li {
    list-style: none;
    margin-bottom: 12px;
}

.bottom>div:nth-child(2) ul>li>ul {
    margin-top: 8px;
    padding-left: 8px;
    display: none;
}

.bottom>div:nth-child(2) ul>li>ul>li {
    margin-bottom: 8px;
}

.bottom>div:nth-child(2) ul>li>ul>li>a {
    font-size: 90%;
    opacity: .7;
}

.bottom>div a {
    cursor: pointer;
    text-decoration: none;
    color: #fff;
    transition: .2s;
}

.bottom>div a:hover {
    color: var(--accent-color);
}

.bottom>div h4 {
    font-size: 18px;
    margin: 0 0 10px;
    color: var(--accent-color);
}

.bottom>div:nth-child(3)>div:first-child {
    display: flex;
}

.bottom>div:nth-child(3)>div:not(:first-child) {
    margin-top: 12px;
    display: block;
}

.bottom>div:nth-child(3)>div>div:first-child {
    margin-right: 28px;
}

.bottom>div:nth-child(3)>div:last-child {
    display: flex;
}

.bottom>div:nth-child(3)>div:last-child p>a {
    display: grid;
    align-items: center;
    margin-right: 18px;
    grid-template-columns: 20px 1fr;
}

.bottom .soc svg {
    width: 12px;
    height: 12px;
    background: #fff;
    padding: 4px;
    border-radius: 50%;
    color: var(--main-color);
}

footer {
    font-size: 70%;
    color: rgba(255, 255, 255, .86);
    padding: 8px 16px;
    text-align: center;
    background: #000;
}

/* form */

form label {
    display: block;
    font-size: 13.5px;
    margin-bottom: 2px!important;
}

input {
    display: block;
    padding: 8px;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, .1);
    margin: 6px 0 10px;
    outline: none;
    box-shadow: inset 0 0 2px rgba(0, 0, 0, .3);
    background: rgba(255, 255, 255, .9);
    /* width: calc(100% - 16px); */
    transition: all .2s ease-out;
    font-size: 14px;
}

input:focus {
    background: rgba(255, 255, 255, 1);
}

.btn {
    display: inline-block;
    font-weight: 400;
    padding: 8px 20px;
    background: var(--main-color);
    border: none;
    color: #fff;
    outline: none;
    text-decoration: none;
    border-radius: 4px;
    /* margin: 0 10px 10px 0; */
    line-height: 1.2;
    cursor: pointer;
    transition: all .3s ease-out;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .14), 0 3px 1px -2px rgba(0, 0, 0, .2), 0 1px 5px 0 rgba(0, 0, 0, .12);
}

/* nav */

#mobile-menu {
    float: left;
    transform: scale(.6);
    outline: none;
    position: relative;
    top: -6px;
}

#navigation {
    font-size: .9rem;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    max-height: 110px;
    left: 50%;
    height: 44px;
    transform: translateX(-50%);
}

#navigation a {
    font-weight: 500;
}

#navigation ul {
    padding: 0;
    margin: 0;
}

#navigation>ul li {
    list-style: none;
    display: block;
    float: left;
    margin: 0 8px;
    position: relative;
}

#navigation ul>li>ul {
    background: #fff;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    margin-top: 6px;
    left: 0;
    padding: 0;
    min-width: 210px;
    height: auto;
    pointer-events: none;
}

#navigation ul li:hover>ul,
#navigation ul li:focus-within>ul,
#navigation ul li ul:hover,
#navigation ul li ul:focus {
    visibility: visible;
    opacity: 1;
    display: flex;
    flex-direction: column;
    pointer-events: all;
    box-shadow: 0 3px 5px -1px rgba(0, 0, 0, .2), 0 6px 10px 0 rgba(0, 0, 0, .14), 0 1px 18px 0 rgba(0, 0, 0, .12);
}

#navigation>ul>li>a {
    text-decoration: none;
    padding: 10px;
    font-size: 16px;
    transition: .3s;
}

#navigation>ul>li>a:hover {
    color: var(--main-link-hover-color);
}

#navigation>ul>li>ul>li {
    clear: both;
    background: #fff;
    border-top: 1px solid #ddd;
    margin-bottom: 0px;
    font-size: 14px;
    line-height: 1.3;
}

#navigation>ul>li>ul>li:hover a {
    color: var(--main-link-hover-color);
}

#navigation>ul>li>ul>li>a {
    color: inherit;
    text-decoration: none;
    width: 100%;
    display: block;
    padding: 14px 20px;
}

#navigation a {
    cursor: pointer;
}

#navigation .fa-caret-down {
    padding: 0 0 0 3px;
}

#usermenu {
    display: none;
}

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */

.hamburger {
    padding: 15px 15px;
    display: inline-block;
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
}

.hamburger:hover {
    opacity: 0.7;
}

.hamburger-box {
    width: 40px;
    height: 24px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 40px;
    height: 4px;
    background-color: var(--main-text-color);
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: "";
    display: block;
}

.hamburger-inner::before {
    top: -10px;
}

.hamburger-inner::after {
    bottom: -10px;
}

.hamburger--arrow.is-active .hamburger-inner::before {
    transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

.hamburger--arrow.is-active .hamburger-inner::after {
    transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

@media all and (max-width: 1180px) {
    body {
        grid-template-columns:  1fr 22% 8% 48% 22% 1fr;
    }

    #mobile-menu {
        top: 0;
    }
    .banner {
        grid-column-start: 1;
        margin-top: 4px;
    }
    #navigation>ul>li>a {
        padding: 14px 17px 14px 0;
        font-size: 14px;
    }
    .aside-left>.aside-container {
        display: block;
    }
    .bottom {
        grid-template-columns: 270px 300px 320px;
        border-bottom: 2px solid var(--accent-color-dark);
    }
    .bottom>div {
        padding: 16px;
    }
    .bottom>div:nth-child(3)>div:first-child {
        display: block;
    }
    .bottom>div:nth-child(3)>div>div:first-child {
        margin: 0 0 12px;
    }
    footer {
        margin-bottom: -4px;
    }
}

@media all and (max-width: 1080px) {
    #navigation>ul>li>a {
        padding: 4px 0 0;
    }
}

/* mobile view */

@media all and (max-width: 991px) {
    /* grid */
    body, body.full, body.left {
        grid-template-areas: "header" "nav" "banner" "main" "left" "right" "bottom" "footer";
        grid-template-rows: 58px 0 auto 1fr auto auto auto auto;
        grid-template-columns: 100%;
    }
    /* style */

    .brandname {
        display: none;
    }

    form.search-mobile {
        display: block;
    }

    header {
        background: rgba(255, 255, 255, 1);
        position: fixed;
        left: 0;
        width: 100%;
        z-index: 1999999;
        box-shadow: 0 1px 8px 1px rgba(0, 0, 0, .1);
        /* border-bottom: 2px solid var(--accent-color-dark); */
        margin-top: 0;
        
    }

    .banner div h1 {
        font-size: 54px;
    }
    
    .banner div h2 {
        font-size: 20px;
    }

    main .app-container {
        margin-bottom: 24px;
    }

    main .app {
        margin: 8px 0;
    }

    .aside-left>.aside-container {
        border-radius: var(--border-radius);
        margin: 0 0 16px;
    }

    main .lokasi-container {
        margin: 32px 0 12px;
        grid-gap: 0;
        grid-template-columns: 1fr;
    }

    .lokasi-container label {
        text-align: center;
    }

    .lokasi-container .btn {
        margin-top: 12px;
    }

    .top {
        grid-template-columns: 1fr;
        grid-gap: 0;
    }

    main .app img {
        max-width: 140px;
        margin: 0 auto;
    }
    h1 {
        font-size: 1.5em;
    }
    h3 {
        font-size: 1.1em;
    }
    .aside-left {
        grid-column-start: 1;
    }
    .aside-right {
        grid-column-end: 1;
    }
    .logo {
        max-height: 52px;
        margin: 2px 0 0 -11px;
    }
    .logo-text {
        max-height: 42px;
        margin: 7px 0 0 0;
        filter: invert(1) brightness(1) hue-rotate(30deg) saturate(5)
    }

    header h1,
    header h2 {
        display: none;
    }
    header .mobile-header {
        display: inline-block;
    }
    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
    .bottom {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 100px 32px 32px;
    }
    .bottom>div {
        border-right: none;
        min-width: 340px;
    }

    
    main .app img {
        max-width: 144px;
        margin: 0 auto;
    }

    main .app span {
        display: block;
        width: 104px;
        height: 116px;
        top: 26px;
    }

    footer {
        padding-bottom: 75px;
    }
}

@media all and (min-width: 992px) {
    
    .scroll-down #navigation.hide {
        opacity: 0;
        pointer-events: none;
        transform: translateX(-100px);
    }
    
    .scroll-down #navigation>ul>li>a {
        color: var(--main-text-color);
    }

    .scroll-down #navigation>ul>li>a:hover {
        color: var(--main-color);
    }
    
    .scroll-down header {
        height: 42px;
    }
    
    .scroll-down header h2 {
        opacity: 0;
        font-size: 0;
        letter-spacing: -10px;
    }
    
    .scroll-down .logo {
        max-height: 38px;
        margin: 2px 5px 0 -11px;
    }

    .scroll-down .logo-text {
        max-height: 34px;
        margin: 3px 0 0;
        filter: invert(1) brightness(1) hue-rotate(30deg) saturate(5);
    }
    
    .scroll-down header h1 {
        font-size: 1.5rem;
        color: #fff;
        margin: 9px 0 0 48px;
    }
}

@media all and (max-width: 600px) {

    main .app-container {
        margin-top: 28px;
    }

    main .app {
        flex-basis: 110px;
    }

}

@media all and (min-width: 480px) {
    footer br {
        display: none;
    }
}
 
.alert {
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}

.alert-danger {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
}

/* sidr */

.sidr {
    top: 46px;
}

.sidr-inner {
    padding-top: 30px;
}

/* select2 */
.select2-container--default .select2-search--dropdown .select2-search__field {
    line-height: 1.6;
}


/* Animations */

/**
 * ----------------------------------------
 * animation bounce-top
 * ----------------------------------------
 */
 @-webkit-keyframes bounce-top {
    10% {
      -webkit-transform: scale(1,.95);
              transform: scale(1,.95);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
      opacity: 1;
    }
    24% {
      opacity: 1;
    }
    40% {
      -webkit-transform: translateY(-8px);
              transform: translateY(-8px);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    65% {
      -webkit-transform: translateY(-4px);
              transform: translateY(-4px);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    82% {
      -webkit-transform: translateY(-2px);
              transform: translateY(-2px);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    93% {
      -webkit-transform: translateY(-1px);
              transform: translateY(-1px);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    25%,
    55%,
    75%,
    87% {
      -webkit-transform: translateY(0px);
              transform: translateY(0px);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
    }
    100% {
      -webkit-transform: translateY(0px);
              transform: translateY(0px);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
      opacity: 1;
    }
  }
  @keyframes bounce-top {
    10% {
      -webkit-transform: scale(1,.95);
              transform: scale(1,.95);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
      opacity: 1;
    }
    24% {
      opacity: 1;
    }
    40% {
      -webkit-transform: translateY(-8px);
              transform: translateY(-8px);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    65% {
      -webkit-transform: translateY(-4px);
              transform: translateY(-4px);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    82% {
      -webkit-transform: translateY(-2px);
              transform: translateY(-2px);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    93% {
      -webkit-transform: translateY(-1px);
              transform: translateY(-1px);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    25%,
    55%,
    75%,
    87% {
      -webkit-transform: translateY(0px);
              transform: translateY(0px);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
    }
    100% {
      -webkit-transform: translateY(0px);
              transform: translateY(0px);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
      opacity: 1;
    }
  }

  /* google */
  
  #gmail-btn {
    position: fixed;
    z-index: 300;
    right: 16px;
    top: 1.5px;
    z-index: 9999999;
}

@media all and (max-width: 1180px) {
    #gmail-btn {
        top: 8px;
    }
}

/* nav */

@media all and (max-width: 991px) {
    ul#mainmenu {
        display: none;
        background: #fff;
        position: fixed;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        width: 100vw;
        height: 60px;
        top: calc(100vh - 60px);
        box-shadow: 0 -1px 10px rgba(0, 0, 0, .6);
      }
      ul#mainmenu>li {
        margin-right: 0;
        flex-basis: 20%;
      }
      ul#mainmenu>li:active a,
      ul#mainmenu>li:active i {
        color: var(--main-light-color);
      }
      ul#mainmenu>li>a {
        color: var(--main-text-color);
        font-size: .6rem;
        text-transform: none;
      }
      ul#mainmenu a svg, ul#mainmenu i {
        display: block;
        transform: scale(2);
        margin: 0 0 12px;
      }
      ul#mainmenu>li>a {
        white-space: nowrap;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
      }
      ul#mainmenu>li>ul {
        position: fixed;
        margin-top: auto;
        padding: 0;
        min-width: auto;
        width: 60vw;
        bottom: calc((100vh * -1) + 93px);
        left: 50%;
        transform: translateX(-50%);
        border-radius: var(--border-radius);
      }
      ul#mainmenu>li>ul>li {
        width: 100%;
        border-radius: var(--border-radius);
      }
      ul#mainmenu>li>ul>li>a {
        text-align: center;
      }
}

/* pagination */

main section.pagination {
    display: flex;
    width: 100%;
    margin-top: 20px;
    justify-content: space-between;
    flex-wrap: nowrap;
}

@media (max-width: 1024px) {
    main section.pagination a span {
        display: none;
    }
}

/* monospace */

.monospace {
    font-family: monospace;
}

/* nowrap */

.nowrap {
    white-space: nowrap;
}

/* timeline */

.timeline {
    position: relative
  }
  
  .timeline::before {
    content: '';
    background: var(--main-light-color);
    width: 4px;
    height: 100%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%)
  }
  
  .timeline-item {
    width: 100%;
  }
  
  .timeline-item:nth-child(even) .timeline-content {
    float: right;
    padding: 30px 30px 20px;
    text-align: right;
  }

  .timeline-item:nth-child(even) .timeline-content h2 {
    text-align: right;
    width: auto;
  }
  
  .timeline-item:nth-child(even) .timeline-content .date {
    right: auto;
    left: 0;
    border-top-left-radius: var(--border-radius);
    border-top-right-radius: 0
  }
  
  .timeline-item::after {
    content: '';
    display: block;
    clear: both
  }
  
  .timeline-content {
    position: relative;
    width: 46%;
    padding: 30px 30px 20px;
    background: var(--bs-gray-400);
    box-shadow: 0 20px 25px -15px rgba(0, 0, 0, .3);
    border-radius: var(--border-radius);
  }
  
  .timeline-content::after {
    content: '';
    position: absolute;
    border-style: solid;
    width: 0;
    height: 0;
    top: 50px;
    right: -14px;
    border-width: 10px 0 10px 15px;
    border-color: transparent transparent transparent var(--bs-gray-400);
  }
  
  .timeline-item:nth-child(even) .timeline-content::after {
    content: '';
    position: absolute;
    border-style: solid;
    width: 0;
    height: 0;
    top: 50px;
    left: -14px;
    border-width: 10px 15px 10px 0;
    border-color: transparent var(--bs-gray-400) transparent transparent
  }
  
  .timeline-img {
    width: 16px;
    height: 16px;
    background: #fff;
    border: 4px solid var(--main-light-color);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    margin-top: 52px;
    margin-left: -8px;
    color: #fff;
  }
  
  .timeline a {
    background: #3f51b5;
    color: #fff;
    padding: 8px 20px;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 20px;
    margin-top: 10px;
    display: inline-block;
    border-radius: 2px;
    box-shadow: 0 1px 3px -1px rgba(0, 0, 0, .6)
  }
  
  .timeline-card {
    padding: 0 !important
  }
  
  .timeline h2 {
    font-size: 1.2rem;
    margin-bottom: 4px;
    color: inherit;
    margin: 0;
    padding: 0;
  }
  
  .timeline p {
    font-size: 14px;
    margin: 0;
  }
  
  .timeline .date {
    font-size: 13px;
    background: var(--secondary-color);
    display: inline-block;
    color: #fff;
    padding: 4px 12px;
    position: absolute;
    top: 0;
    right: 0;
    border-top-right-radius: var(--border-radius)
  }
  
  @media screen and (max-width:700px) {
    .timeline::before {
      left: 16px
    }
  
    .timeline .timeline-img {
      left: 16px
    }
  
    .timeline .timeline-content {
      width: 100%;
    }
  
    .timeline-item {
      width: calc(100% - 32px);
      margin-left: 32px;
      margin-bottom: 20px;
    }
  
    .timeline-item:nth-child(odd) .timeline-content::after {
      left: -14px;
      border-width: 10px 15px 10px 0;
      border-color: transparent var(--bs-gray-400) transparent transparent
    }
  
    .timeline .timeline-item .timeline-content {
      padding: 40px 30px 20px
    }
  
    .timeline .timeline-item:nth-child(odd) .timeline-content .date {
      right: auto;
      left: 0;
      border-top-right-radius: 0;
      border-top-left-radius: var(--border-radius)
    }

    .timeline-item:nth-child(odd) .timeline-content {
        float: right;
        text-align: right;
      }
    
      .timeline-item:nth-child(odd) .timeline-content h2 {
        text-align: right;
        width: auto;
      }
  }

  table.daftar-harga tr td+td+td+td {
    text-align: right;
  }


.img-daftar-harga {
    display: block;
    max-width: 200px;
    margin: -211px 0 0 auto;
}

@media all and (max-width: 1180px) {
    .img-daftar-harga {
        margin: -34px auto -20px;
    }
}

.form-select {
    margin: 6px 0 10px;
}