body,html{
    font-family: Roboto, Arial, Helvetica, sans-serif;
    background:#fff;
    overflow: hidden;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(100vh - 30px);
}
#magazine{ 
    margin: auto !important;
}
#magazine .turn-page{
    background-color:#fff;
    background-size:100% 100%;
}
#magazine {
    touch-action: pan-y;
    user-select: none;
    cursor: grab;
}
.top_search{
    position: fixed;
    z-index: 999;
    top: 6vh;
    left: 50vw;
    width: 0; 
    height: 0px;
    overflow: visible;
}
.search_container{
    position: relative;  
    overflow: visible; 
}
.search_bg{
    display: inline-flex; 
    align-items: center; 
    position: relative;
    width: 300px;
    height: 30px; 
    margin-left: -150px;
}
.search_bg input{ 
    width: 100%;
    height: 30px;
    border-radius: 30px;
    text-align: center;
    color: #000;
    background-color: #fff;
    border: none;
    box-shadow: 0px 0px 10px 0px #c5c5c5;
}
.search_bg input:focus{  
    outline: none;
}
.search_bg > div{  
    position: absolute;
    right: 0;
    top: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.search_bg svg path{  
    fill: #4c4b4b;
} 
.list_produkhighlight{
    position: fixed;
    z-index: 9999;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #a9a9ab;
}
.lp_container{
    display: flex;
    align-items: center; 
    flex-direction: row;
}
.lp_container .swiper{
    padding-left: 20px;
}
.filter_mode{  
    position: relative;   
    cursor: pointer;
}
.filter_mode .fname{   
    white-space: nowrap;
    padding-left: 20px;
    padding-right: 25px;
    background: #f2ff53;
    display: inline-flex;
    height: 36px;
    font-size: 13px;
    font-style: italic;
    align-items: center;
    font-weight: 500;
} 
.filter_icon{
    position: absolute;
    right: 0;
    z-index: 11;
    background: #0a1b37;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    width: 30px;
    border: 3px solid #f2ff53;
    border-radius: 50%;
    margin-right: -15px;
}
.swiper-wrapper{
    display: flex;
}
.swiper-slide{
    width: auto !important;
}
.swiper-slide a{
    white-space: nowrap;
    text-decoration: none;
    padding: 0 15px;
    background: #fff;
    border-radius: 15px;
    color: #000;
    font-size: 14px;
    border: 1px solid #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 22px;
}
.swiper-slide a.active{ 
    background: #0a1b37; 
    color: #fff; 
    border: 1px solid #0a1b37;
} 
/* Preloader full screen */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #c5c3c3;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
}

/* Spinner loading animasi */
.spinner {
  width: 60px;
  height: 60px;
  border: 6px solid #ddd;
  border-top-color: #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Animasi spin */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}