﻿#ZLSTRYPUJA .menu-search.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
}

:root {
  --base-color: #60DEAF
}

#ZLSTRYPUJA.header .talk h2 {
  color: #ffffff;
  background-color: #60DEAF;
}

#ZLSTRYPUJA.header .menu-item-ZLSTRYPUJA-search {
  height: 90px;
}

.header .search button {
  display: flex;
  justify-content: center;
  align-items: center;
}

#ZLSTRYPUJA.header .main-menu ul {
  flex-wrap: wrap;
}

#ZLSTRYPUJA.header .main-menu li {
  margin: unset;
  padding: unset;
  transition: all .2s;
  /* height: 35px; */
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 35px;
  border-radius: 5px;
  text-wrap: nowrap;
}

.header .main-menu li:hover {
  background: unset;
  padding: unset;
  border-radius: unset;
  margin: unset;
}

.menu-item-ZLSTRYPUJA {
  position: relative;
  cursor: pointer;
  display: flex;
}

#ZLSTRYPUJA.header .main-menu li a,
#ZLSTRYPUJA.header .main-menu li .label {
  margin: 4px 0 0 5px;
  padding: 4px 10px;
  border-radius: 5px;
  height: 100%;
}

#ZLSTRYPUJA.header .main-menu li a:hover,
#ZLSTRYPUJA.header .main-menu li .label:hover,
#ZLSTRYPUJA.header .main-menu li.menu-item-ZLSTRYPUJA.show > a,
#ZLSTRYPUJA.header .main-menu li.menu-item-ZLSTRYPUJA.show > .label {
  background-color: #ffd05a;
}

.menu-item-ZLSTRYPUJA .label {
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  text-align: right;
  cursor: pointer;
  width: 100%;
}

.menu-item-ZLSTRYPUJA:not(.show) .label .fa.fa-angle-down,
.menu-item-ZLSTRYPUJA .menu-item-ZLSTRYPUJA:not(.show) .label .fa.fa-angle-left {
  margin-right: 10px;
  transition: transform 200ms linear;
}

.menu-item-ZLSTRYPUJA.show .label .fa.fa-angle-down,
.menu-item-ZLSTRYPUJA .menu-item-ZLSTRYPUJA.show .label .fa.fa-angle-left {
  transform: rotate(180deg);
  transition: transform 200ms linear;
}

.menu-item-ZLSTRYPUJA .section-dropdown {
  position: absolute;
  padding: 15px;
  background-color: #f3f3f3;
  top: 45px;
  right: 0;
  border-radius: 4px;
  box-shadow: 0 14px 35px 0 rgba(9, 9, 12, 0.4);
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: all 200ms linear;
  width: max-content;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.menu-item-ZLSTRYPUJA .section-dropdown:after {
  position: absolute;
  top: -7px;
  right: 30px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #f3f3f3;
  content: '';
  display: block;
  z-index: 2;
  transition: all 200ms linear;
}

.menu-item-ZLSTRYPUJA.show>.section-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.menu-item-ZLSTRYPUJA a {
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  justify-content: space-between;
  -ms-flex-pack: distribute;
}

.menu-item-ZLSTRYPUJA .section-dropdown .menu-item-ZLSTRYPUJA .section-dropdown {
  top: 0;
  right: calc(100% + 30px);
}

.menu-item-ZLSTRYPUJA .section-dropdown .menu-item-ZLSTRYPUJA .section-dropdown:after {
  top: 7px;
  right: -16px;
  border-left: 8px solid #f3f3f3;
  border-right: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-top: 8px solid transparent;
}

@media (max-width: 900px) {
  #ZLSTRYPUJA.header .menu-search {
    padding: 5px 0;
  }

  #ZLSTRYPUJA.header #mobile-main-bar .main-menu ul,
  .intro #mobile-main-bar ul {
    padding: 30px 12px;
    gap: 0;
  }

  #ZLSTRYPUJA.header .main-menu li {
    margin: 0 !important;
    align-items: flex-start;
  }

  #ZLSTRYPUJA.header .main-menu li> a {
    width: 100%;
  }

  .menu-item-ZLSTRYPUJA {
    width: 100%;
    flex-direction: column;
    text-align: right;
  }

  .menu-item-ZLSTRYPUJA .section-dropdown {
    position: absolute;
    padding: unset;
    top: unset;
    right: unset;
    border-radius: unset;
    box-shadow: unset;
    z-index: inherit;
    width: 100%;
    background-color: unset;
    transition: transform, opacity 200ms linear;
    transform: scaleY(0);
    height: 0;
    gap: 0;
    border-right: 1px solid #e3e3e3;
    padding-bottom: 10px;
    padding-right: 15px;
  }

  .menu-item-ZLSTRYPUJA .section-dropdown::after {
    display: none;
  }

  .menu-item-ZLSTRYPUJA.show>.section-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: scaleY(1);
    height: 100%;
    position: relative;
  }

  .menu-item-ZLSTRYPUJA .section-dropdown .menu-item-ZLSTRYPUJA .section-dropdown {
    top: unset;
    right: unset;
  }

  .menu-item-ZLSTRYPUJA .menu-item-ZLSTRYPUJA:not(.show) .label .fa.fa-angle-left {
    transform: rotate(270deg);
  }

  .menu-item-ZLSTRYPUJA .menu-item-ZLSTRYPUJA.show .label .fa.fa-angle-left {
    transform: rotate(90deg);
  }
}

@media (max-width: 600px) {
  .header .top-header {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .header .top-header img {
    width: 90vw !important;
    max-height: 70px;
    object-fit: contain;
  }
}#MVYQOQWYEO {
    --thumbnail-blur: 6px;
}

.post-related img {
    object-fit: cover;
}

.post-container .post-related img {
    height: 15vmax;
}

.post-container .thumb img {
    position: relative;
    width: 100%;
    height: 100% !important;
    object-fit: contain;
    z-index: 2;
}

.post-container .thumb {
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 50vh;
    isolation: isolate;
}

.post-container .post-related h2 {
    height: 4.3em;
}

.pdf {
    margin-left: 10px;
    color: red;
}

.galeri {
    border-bottom: 1px dashed #ddd;
    margin: 0px auto 10px auto !important;
    padding-bottom: 25px;
}

.post-container .galeri span {
    margin: 20px auto 0px;
}

.galeri li img {
    object-fit: cover;
    width: 100%;
    height: 20vmax !important;
}

.galeri li video {
    object-fit: cover;
    width: 100%;
    height: 20vmax;
}

.lg-outer .lg-inner {
    direction: ltr;
}

.empty {
    text-align: center;
    padding: 50px;
}

.comment #comment_MVYQOQWYEO {
    flex: 1 1 0;
}

#MVYQOQWYEO .thumb .blur {
    position: absolute;
    z-index: 1;
    inset: 0;
    backdrop-filter: blur(var(--thumbnail-blur));
}

#MVYQOQWYEO .thumb video {
    position: relative;
    display: block;
    margin: auto;
    object-fit: contain;
    height: 100%;
    z-index: 2;
    max-width: 100%;
}

@media (max-width: 900px) {
    .post-container .post-related-pack {
        padding-top: 30px !important;
    }

    .post-container .content {
        padding: unset;
    }

    .post-container .galeri img {
        height: 20vmax !important;
    }

    .post-related-pack {
        flex-wrap: wrap;
    }

    .post-related-pack>div {
        min-width: 34%;
    }

    .post-container .post-related img {
        height: 25vmax;
    }
}

@media (max-width: 600px) {
    .post-related-pack>div {
        min-width: 49%;
    }
}

@media (max-width: 450px) {
    .post-related-pack>div {
        min-width: 90%;
    }
}#MXOENLVJRI{
    margin-top:10px !important;
    margin-bottom: 10px !important;
}

#MXOENLVJRI .list-slider{
    height: 35vmax;
    flex-direction: column;
}

#MXOENLVJRI.list-sidebar .list-item .item {
    width: 100%;
    display: block;
}

#MXOENLVJRI [show=false] {
    display: none !important;
}
#MXOENLVJRI .text-overflow-3 {
    max-height: unset;
}

#MXOENLVJRI .item .date {
    font-size: 18px;
}
#MXOENLVJRI .item .title {
    font-size: 12px;
}
#MXOENLVJRI .item .text {
    font-size: 12px;
}

@media (max-width: 900px) {
    #MXOENLVJRI.list-sidebar .list-item .item {
        padding: 10px 20px 10px 10px !important;
    }
}

@media(max-width:600px) {
    .list-slider{
        height: auto !important;
    }
    .list-slider .list-item{
        height: 50vh !important;
    }
}
#IOWKTKIGVU{
    margin-top:10px !important;
    margin-bottom: 10px !important;
}
#IOWKTKIGVU .video{
    text-align: center;
    position: relative;
}
#IOWKTKIGVU .video video{
    width: 100%;
    margin: auto;
    text-align: center;
}

#IOWKTKIGVU .play{
    /* z-index: 999999999; */
    position: absolute;
    left: 50%;
    top: 50%;
    border: 5px solid #fff;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    color: #000;
    display: inline-block;
    transform: translate(-50%, -50%);
}#FTWNRHHHMM{
    margin-top:10px !important;
    margin-bottom: 10px !important;
}
#FTWNRHHHMM .recent-post-box img{
    height: 80px;
    object-fit: cover;
    flex-shrink: 0;
}

.recent-post-box h2{
    text-align: justify;
}.footer{
    background:#423f5e;
}
.footer .footer-pack {
    justify-content: space-evenly;
}