/*
Product Screenshot  frontend style.
Contain all frontend style of the plugin.

Since: 1.0.0

Table of contents:
==================
1. Wrapper
2. Gallery
3. Loading button
4. Preloader

*/

/* 1. Wrapper
======================================================= */
.prscrt-gallary-page-area{
    text-align: center;
    position: relative;
}
.prscrt-container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}
/* 2. Gallery
======================================================= */
.prscrt-gallary-box {
    display: flex;
    margin-left: -10px;
    margin-right: -10px;
    flex-wrap: wrap;
}
.prscrt-single-gallary-item {
    margin-left: 10px;
    margin-right: 10px;
    flex: 1 0 25%;
    max-width:calc(25% - 20px);
    margin-bottom: 22px;
    display: none;
    transition: none;
    text-decoration: none;
}

.prscrt-gallary-box a.prscrt-single-gallary-item:focus{
  background: transparent!important;
  border:none!important;
  outline: none!important;
  text-decoration: none!important;
}
.prscrt-single-gallary-item:focus img{
  outline: none!important;
}
.prscrt-single-gallary-item img {
    width: 100%;
    border: 1px solid #EDEDED;
    border-radius: 5px;
}
.prscrt-gallery-caption {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    display: block;
    padding: 8px;
    margin-top: 10px;
    transition: all 0.3s ease-in-out;
}
.prscrt-single-image {
    height: auto;
}
.prscrt-single-image a{
    width: 100%;;
}
.prscrt-single-image  img {
    height: 100%;
    object-fit: cover;
}

/* 3. Loading button
======================================================= */
.prscrt-loadMore{
    
    border: 1px solid transparent;
    padding: 9px 28px;
    background: #7456f1;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    margin-top: 20px;
    display: inline-block;
    position: relative;
    opacity: 0;
}
.loaded-btn.prscrt-loadMore{
    opacity: 1;
}
.prscrt-loadMore:hover{
    border: 1px solid #7456f1;
    background: transparent;
    color: #7456f1;
}
.prscrt-loadMore.noContent{
    display: none;
} 
.button--loading::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border: 4px solid transparent;
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: button-loading-spinner 1s ease infinite;
}
@keyframes button-loading-spinner {
    from {
        transform: rotate(0turn);
    }

    to {
        transform: rotate(1turn);
    }
}

/* 4. Preloader
======================================================= */
  .prscrt-preloader-deactive .prscrt-preloader-wrap {
    display: none;
  }
  .prscrt-preloader-wrap {
    background-color:transparent;
    position: absolute;
    left: 0;
    top: 0;
    height:250px;
    width: 100%;
    z-index: 9;
    overflow: hidden;
  }
  .prscrt-preloader-wrap .preloader {
    position: absolute;
    width: 25px;
    height: 25px;
    top: 50%;
    left: 50%;
    margin-left: -12px;
    margin-top: -13px;
}
  .prscrt-preloader-wrap .preloader .dot {
    height: 100%;
    width: 100%;
    display: block;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
    animation: la-rotateplane 1.2s infinite ease-in-out;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    background-color: #7456f1;
  }
  @keyframes la-rotateplane {
    0% {
      transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    }
    50% {
      transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    }
    100% {
      transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
  }
  #lg-share {
	display: none;
}
.prscrt-not-found{
  min-height: 100px;
  text-align: center;
}
