.hidden {
    display: none!important;
}

.single-products .entry-header {
    display: none!important;
}
.single-products .post-navigation {
    display: none!important;
}


.slider-wrapper {
    text-align: center;
    position: absolute;
    bottom: 30px;
    width: 100%;
}
.f-main-img-wrapper {
    position: relative;
}
.main-img  {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 3 / 2;
    max-height: 73vh;

}
.img-dot {
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 100%;
    display: inline-block;
    margin-left: 5px;
    margin-right: 5px;
    cursor: pointer;
}

.active-img-dot {
    background: #333;
}

.f-gallery-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 15px;
}

.f-gallery-wrapper img {
    width: 150px;
    height: 150px;
    object-fit: cover;
}

.sidebar-wrapper {
    position: fixed;
    top: 0;
    right: -100vw;
    width: 100%;
    min-height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 99;
}
.inner-sidebar {
    background: #f6f6f6;
    width: 33vw;
    min-width: 500px;
    height: 100vh;
    position: fixed;
    top: 0;
    right: -100vw;
    z-index: 100;
    padding: 30px;

}
.sidebar-heading {
    font-size: 36px;
    margin-top: 90px;
    font-weight: 400;
}
.close-sidebar {
        font-size: 26px;
        margin-top: 60px;
        float: right;
        right: 0;
}

.open-sidebar {

 animation: openSidebar 0.4s normal forwards ease-in-out;
 top: 0;
}
.close-side {

 animation: closeSidebar 0.4s normal forwards ease-in-out;
 top: 0;
}

@keyframes openSidebar {
  from {
      right: -100vw;
      opacity: 0;
  }
  to {
      right: 0;
       opacity: 1;
  }
}

@keyframes closeSidebar {
  from {
     right: 0;
      opacity: 1;
  }
  to {
      opacity: 0;
      right: -100vw;
  }
}
.info-wrapper i {
    margin: 0;
    padding: 0;
    font-size: 18px;
}
.info-wrapper p {
    margin: 0;
    padding: 0;
    font-size: 18px;
}
.product-info-wrapper-line {
    height: 1px;
    background-color: #000!important;

}
.info-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.product-info-inner-wrapper {
    cursor: pointer;
    padding: 15px 0;
    border-bottom: 1px solid #000;
    width: 100%;
}

.sidebar-output pre {
    white-space: pre-wrap;
    font-size: 16px;
    font-family: inherit;
    background: transparent;
    padding: 0;
    margin: 0;
}
.sidebar-output {
    max-height: 74vh;
    overflow: auto;
}
.download-wrapper {
    display: flex;
    flex-direction: column;
}
.download-button {
    background: transparent;
    border: 1px solid #000;
    border-radius: 5px;
    padding: 5px 15px;
    min-width: 200px;

    cursor: pointer;
    display: inline-block;
    margin-bottom: 15px;
    color: #000;
    text-align: center;
}

.download-button:hover {
    background: #000;
    transition: 0.2s ease-in-out;

    color: #fff;
}

.read-more {
    max-height: 120px;
    overflow: hidden;
}
.slide-out {
    animation: slideOut 2s normal forwards ease-in-out;
}

@keyframes slideOut {
  from {
      max-height: 120px;

  }
  to {
      max-height: 100%;
  }
}


/* Media queries */
@media (max-width: 768px) {
    .inner-sidebar {

        width: 100%;
        min-width: 90%;

    }
    .sidebar-heading {
        font-size: 20px;
        margin-top: 0;
    }
    .close-sidebar {
    font-size: 20px;
    margin-top: 10px;

}
.sidebar-output pre {
    font-size: 16px;
}
.f-gallery-wrapper img {
    width: 75px;
    height: 75px;
    object-fit: cover;
}
.slider-wrapper {

    bottom: 15px;

}
}
