
@media (min-width: 992px) {
  .theme-navigation-and-icons
    .theme-search-and-mini-cart-group
    .theme-search
    .theme-search-field-container {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    transition: 0.3s linear;
    padding: 30px 100px;
    background: #fff;
    form {
      width: 100% !important;
      border: 1px solid #ddd !important;
      display: flex;
      position: relative;

      .theme-search-go {
        opacity: 0;
      }
      .theme-search-go-icon {
        position: absolute;
        right: 0;
        background: none;
        cursor: pointer;
        margin-inline: 20px;
        
        height: 100%;
      }
    }
      
    [data-search-input] {
      width: 100% !important;
    }
  }
  .theme-search-hide-overlay {
    z-index : 330 !important;
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
  }
  .theme-search-close-icon {
        position: fixed;
        display: flex;
        width: 26px;
        height: 20px;
        right: 3%;
        top: 6%;
        cursor: pointer;
      }
}
.theme-custom-sort-option-conatiner {
  position : relative;
  [data-sortby-check="checked"] {
        width: 100%;
        display: flex;
        height: 100%;
        position: absolute;
        bottom: 0;
        border-block-end: 1px solid;
  }
}
@media (max-width : 768px) {
    .theme-portal-login svg {
  display : none
}
    .zpstorecollection-container a:hover {
   background : transparent !Important;
   color : #000 !Important;
 }
    .theme-mobile-header-style-04.theme-mobile-header-bottom .theme-mobile-header-icon-wrapper {
   justify-content : center;
   gap :0;
   [data-zs-drawer-open-button] {
     position : absolute;
   }
   .theme-mobile-header-icon {
     margin-inline-start : auto;
   }
 }

}
  [data-theme-product-image-skeleton-loader]{
    &.theme-product-image-loader-dots {
      height: 100%;
      width: 100%;
      top: 50%;
      left: 50%;
      translate: -50% -50%;
      font-weight: normal;
      text-align: center;
      display: block;
      -webkit-appearance: none;
      position: absolute;
      border-radius: 0px;
      opacity: 0.2;

      span {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        height: 8px;
        width: 8px;
        background: #000;
        animation: searchLoader 0.5s ease-in-out infinite alternate;
        border-radius: 50%;
        animation-delay: -0.16s;

        &:after,
        &:before {
          width: 8px;
          height: 8px;
          content: "";
          display: block;
          background: #000;
          position: absolute;
          animation: searchLoader 0.5s ease-in-out infinite alternate;
          border-radius: 50%;
          left: -12px;
        }

        &:before {
          animation-delay: -0.32s;
        }

        &:after {
          left: 12px;
        }
      }

    }

    &.theme-product-image-loader-skeleton{
      height: 100%;
      width: 100%;
      top: 50%;
      left: 50%;
      translate: -50% -50%;
      font-weight: normal;
      text-align: center;
      display: block;
      -webkit-appearance: none;
      position: absolute;
      border-radius: 0px;
      opacity: 0.2;
      svg{
        width: 100%;
        height: 100%;
        animation: skeleton-loading 1s linear infinite alternate;
      }
    }

    &.theme-product-image-loader-shimmer {
      background: linear-gradient(to right, #f2f2f2 8%, #ffffff 18%, #f2f2f2 33%);
      background-size: 1000px 100%;
      animation: shimmer 1.5s infinite;
      rotate: 45deg;
      opacity: 1;
      position: absolute;
      top: 50%;
      left: -50%;
      width: 200%;
      height: 200%;
      translate: -0% -50%;
    }
    
    @keyframes shimmer {
      0% {
        background-position: -500px 0;
      }
      100% {
        background-position: 500px 0;
      }
    }    

    @keyframes skeleton-loading {
      0%{
        background-color: hsl(200, 20%, 70%);
      }
      100%{
        background-color: hsl(200, 20%, 95%);
      }
    }
  }
 
