.apvr-showcase-wrap{
    opacity: 0;
}



.apvr-showcase-visible{
    opacity: 1;
}
.apvr-showcase-wrap-inner{
    display: grid;
    grid-gap: 1rem;
    justify-items: center;
    grid-template-columns: repeat(1, 1fr);
}

@supports (container-type: inline-size) {
    .apvr-showcase-wrap{
        container: apvr_showcase_query / inline-size;
    }
}
@container apvr_showcase_query (min-width: 600px){ 
    .apvr-showcase-dbt .apvr-showcase-wrap-inner { grid-template-columns: repeat(2, 1fr); }
}
@container apvr_showcase_query (min-width: 900px){ 
    .apvr-showcase-dbt .apvr-showcase-wrap-inner { grid-template-columns: repeat(3, 1fr); }
}
@container apvr_showcase_query (min-width: 1280px){ 
    .apvr-showcase-dbt .apvr-showcase-wrap-inner { grid-template-columns: repeat(4, 1fr); }
}
@container apvr_showcase_query (min-width: 800px){ 
    .apvr-showcase-drot .apvr-showcase-wrap-inner { grid-template-columns: repeat(2, 1fr); }
}
@container apvr_showcase_query (min-width: 1200px){ 
    .apvr-showcase-drot .apvr-showcase-wrap-inner { grid-template-columns: repeat(3, 1fr); }
}



.apvr-showcase-item{
    display: flex;
    position: relative;
    background: #eee;
    cursor: pointer;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s;
    /*box-shadow: rgb(0 0 0 / 15%) 0px 0 6px 0px;*/
}
.apvr-showcase-item-visible{
    opacity: 1;
}
.apvr-showcase-dbt .apvr-showcase-item{
    flex-direction: column;
}
.apvr-showcase-drot .apvr-showcase-item{
    flex-direction: row;
}
.apvr-showcase-item-hidden{
    display: none!important;
}
.apvr-showcase-search-hidden{
    display: none!important;
}
.apvr-showcase-thumb-wrap{
    position: relative;
}
.apvr-showcase-drot .apvr-showcase-thumb-wrap{
    max-width: 50%;
}
.apvr-showcase-thumb-img{
    display: block;
    max-width: 100%;
    position: relative;
    min-height: 100%;
    min-width: 100%;
    object-fit: cover;
}
.apvr-showcase-panorama-preview{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.8s;
}
.apvr-showcase-panorama-preview .pnlm-load-box{
    display: none!important;
}
.apvr-showcase-panorama-preview.pnlm-container{
    background-color: #111!important;
    background-image:none!important;
}
.apvr-showcase-video{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.apvr-showcase-panorama-preview-visible{
    opacity: 1;
}
.apvr-showcase-view-count{
    position: absolute;
    top: 5px;
    display: flex;
    flex-direction: row;
    align-items: center;
    right: 0;
    background: #fff;
    padding: 5px 10px;
    line-height: normal;
}
.apvr-showcase-view-count-icon{
    margin-right: 5px;
    display:block;
}
.apvr-showcase-view-count-icon svg{
    position: relative;
    display: block;
    top: 0;
    left: 0;
    fill: currentColor;
    height: 11px;
}
.apvr-showcase-view-count-value{
    display:block;
    font-size: 11px;
}
.apvr-showcase-play-icon{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    opacity: 0;
    transition: opacity 0.35s;
}
.apvr-showcase-play-icon-visible{
    opacity: 1;
}
.apvr-showcase-play-icon svg{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    fill: currentColor;
    height: 35px;
}
.apvr-showcase-info{
    margin: 0 10px;
}
.apvr-showcase-dbt .apvr-showcase-info{
    text-align: center;
} 
.apvr-showcase-title{
    color: #303c5e;
    font-weight: 600;
    font-size: 1.3em;
    margin: 8px 0 0 0;
}
.apvr-showcase-description{
    font-size: 0.8em;
    font-weight: 300;
    color: #111;
}

/* header */
.apvr-showcase-header-wrap{
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
}

/* tags */
.apvr-showcase-tag-wrap{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
}
.apvr-showcase-tag-btn{
    color: #333;
    text-align: center;
    vertical-align: middle;
    padding: 7px 10px;
    font-size: 1rem;
    border-radius: 5px;
    background-color: #fff;
    border-color: #666;
    border-style: solid;
    border-width: 1px;
    cursor: pointer;
    transition: all 0.5s;
}
@media (hover: hover) {
    .apvr-showcase-tag-btn:hover{
        background-color: #607D8B;
        color: #fff;
    }
}
.apvr-showcase-tag-btn-active{
    background-color: #607d8b;
    color: #fff;
}

/* sort, search wrap */
.apvr-showcase-header-action-wrap{
    display: flex;
    flex-direction: row;
    margin-top: 10px;
    /*align-items: center;*/
}

/*sort */
.apvr-showcase-sort-wrap{
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-left: 20px;
}
.apvr-showcase-sort-title{
    margin: 0 10px 0 0;
    padding: 0;
    white-space: nowrap;
}
.apvr-showcase-select{
    color: #333;
    vertical-align: middle;
    padding: 7px 10px;
    font-size: 1rem;
    border-radius: 5px;
    background-color: #fff;
    border-color: #666;
    border-style: solid;
    border-width: 1px;
}

.apvr-showcase-load-more-helper{
    height: 1px;
    position: relative;
    width: 1px;
}

/*search */

.apvr-showcase-search-wrap{
    display: flex;
    flex-direction: row;
    align-items: center;
}

.apvr-showcase-search-input{
    background-color: #fff;
    margin: 0;
    position: relative;
    left: 0;
    top: 0;
    padding: 6px;
    font-size: 16px;
    margin: 0 0 0 20px;
    box-shadow: none;
    line-height: 1;
    box-sizing: border-box;
    border-radius: 5px;
    border-color: #666;
    border-style: solid;
    border-width: 1px;
}
.apvr-showcase-search-msg{
    display: none;
    text-align: center;
    font-size: 1.2em;
}


/* voice search */

.apvr-showcase-contr-btn{
    display: flex;
    margin-left: 10px;
    align-items: center;
    justify-content: center;
}
.apvr-showcase-contr-btn svg{
    display: block;
    height: 15px;
    fill: currentColor;
}

.apvr-voice-search-microphone-btn-popup{
    fill: currentColor;
}





/* lang */
.apvr-showcase-lang-wrap{
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-left: 20px;
}
.apvr-showcase-lang-title{
    margin: 0 10px 0 0;
    white-space: nowrap;
    padding: 0;
}




@container apvr_showcase_query (max-width: 800px){ 
    .apvr-showcase-header-action-wrap{
        flex-direction: column;
        gap: 10px;
    }
}






/* showcase window */
#apvr-showcase-window{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    max-width: none!important;
    z-index: 2147483647;
    margin: 0;
    opacity: 0;
    transition: opacity 0.5s;
    display: none;
}
.apvr-showcase-window-visible{
    opacity: 1!important;
}
#apvr-showcase-window-bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center; 
    background-repeat: no-repeat; 
    background-size: cover; 
}
#apvr-showcase-window-header{
    position: absolute;
    top: 0;
    left: 0;
    height: 40px;
    width: 100%;
    background-color: #607d8b;
}
#apvr-showcase-window-container{
    position: absolute;
    top: 40px;
    left: 0;
    height: calc(100% - 40px);
    width: 100%;
}
#apvr-showcase-window-info{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    width: 100%;
    flex-direction: column;
    display: flex;
    text-align: center;
    text-shadow: 0 2px 3px rgba(0,0,0,0.2);
}
#apvr-showcase-window-title{
    color: #fff;
    font-size: 2em;
    margin: 0;
}
#apvr-showcase-window-description{
    color: #eee;
    font-size: 1em;
    margin: 0;
}
#apvr-showcase-content{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.apvr-body-overflow{
    overflow: hidden!important;
}
#apvr-showcase-logo{
    position: absolute;
    top:8px;
    left:15px;
}
#apvr-showcase-logo-img{
    display: block;
}
#apvr-showcase-window-close{
    position: absolute;
    top:10px;
    right:15px;
    height: 22px;
    width: 22px;
    cursor: pointer;
    color: #fff;
}
#apvr-showcase-window-close svg{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    fill: currentColor;
    height: 100%;
}

/* loader */

.apvr-showcase-loader-anim {
    position: relative;
    left: 50%;
    margin-top: 15px;
    transform: translateX(-50%);
}
.apvr-dual-ring {
    display: inline-block;
    width: 80px;
    height: 80px;
    opacity: 0.7;
}
.apvr-dual-ring:after {
    content: " ";
    display: block;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 6px solid #fff;
    border-color: #fff transparent #fff transparent;
    animation: apvr-dual-ring 1.2s linear infinite;
}
@keyframes apvr-dual-ring {
  0% {
      transform: rotate(0deg);
  }
  100% {
      transform: rotate(360deg);
  }
}

