﻿
.mobile {
    display: none;
}

    .mobile.active {
        display: block;
    }

.desktop {
    display: none;
}

    .desktop.active {
        display: block;
    }

.filterpanel-mobile {
    display: none;
}

    .filterpanel-mobile.active {
        display: block;
    }

/* #### Mobile Phones Portrait #### */
@media screen and (max-device-width: 480px) and (orientation: portrait) {
    
}

/* #### Mobile Phones Landscape #### */
@media screen and (max-device-width: 640px) and (orientation: landscape) {
    /* some CSS here */
}

/* #### Mobile Phones Portrait or Landscape #### */
@media screen and (max-device-width: 640px) {
    .box-layout {
        background: #fff;
        width:100%;
    }
    .navbar-brand {
        width: 70% !important;
        display: flex !important;
    }

    .navbar-brand-item2 {
        font-size: 0.5em !important;
    }
    .navbar-brand-item1 {
        font-size: 0.8em !important;
        color: black !important;
        font-weight: bold !important;
    }
    .title1 {
        font-family: Poppins,sans-serif;
        font-size: 2em !important;
        color: black;
        font-weight: bold;
        text-align: center;
        line-height: 1.1;
        margin-bottom: 13px;
    }
    .title3 {
        font-family: Poppins,sans-serif;
        font-size: 1em !important;
        color: black;
        font-weight: bold;
        text-align: center;
        line-height: 1.1;
        margin-bottom: 13px;
    }
    .konten2 {
        width:100%;
        overflow:scroll;
    }
    .col {
        flex: 1 0 0%;
        margin-left: 0px !important;
        margin-right: 0px !important;
        padding-left: 3px !important;
        padding-right: 2px !important;
    }
    .mobile .col {
        flex: none;
        margin-left: 0px !important;
        margin-right: 0px !important;
        padding-left: 3px !important;
        padding-right: 2px !important;
        margin-top: 4px;
        margin-bottom: 4px;
    }
    header .logo {
        width: 3.5em !important;
    }
}

/* #### iPhone 4+ Portrait or Landscape #### */
@media screen and (min-device-width: 320px) and (-webkit-min-device-pixel-ratio: 2) {
    /* some CSS here */
}

/* #### iPhone 5 Portrait or Landscape #### */
@media (device-height: 568px) and (device-width: 320px) and (-webkit-min-device-pixel-ratio: 2) {
    /* some CSS here */
}

/* #### iPhone 6 and 6 plus Portrait or Landscape #### */
@media (min-device-height: 667px) and (min-device-width: 375px) and (-webkit-min-device-pixel-ratio: 3) {
    /* some CSS here */
}

/* #### Tablets Portrait or Landscape #### */
@media screen and (min-device-width: 768px) and (max-device-width: 1024px) {
    /* some CSS here */
}

/* #### Desktops #### */
@media screen and (min-width: 1024px) {
    /* some CSS here */
}
