.video-store-item {
    display: block;
    position: relative;
    margin-bottom: 50px;
    overflow: hidden;
}
.video-store-item a {
    /*position: absolute;*/
    /*width: 100%;*/
    /*height: 100%;*/
}
.video-store-item:hover .icon-sp-controller-play-border {
    display: block;
    cursor: pointer;
}
.video-store-item .video-store-img {
    position: relative;
}

.video-store-item .icon-sp-controller-play-border {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.7;
    padding: 25% 45%;
    font-size: 60px;
    color: #fff;
}
.video-store-item h4 {
    text-align: center;
    font-size: 14px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.video-store-item .video-store-options {
    display: grid; 
    align-items: center; 
    grid-template-columns: 40% 40% 20%;
    -ms-grid-columns: 40% 40% 20%;
    position: relative;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 0 10px;
    font-size: 12px;
}

.video-store-item .video-store-options > span:nth-child(1){
    text-align: left;
}
.video-store-item .video-store-options > span:nth-child(2){
    text-align: left;
    
}

.video-store-item .video-store-options > span:nth-child(2) > i{
    font-size: 10px;
    font-weight: 900;
    font-family: 'Open Sans Condensed';
    margin-right: 2px;
    background: #f7f7f7;
    color: #4a4a4a;
    padding: 0px 2px;
    border-radius: 2px;
    font-style: normal;
}

.video-store-item .video-store-options > span:nth-child(3){
    text-align: right;
    color: #32f242;
    font-weight:700;
}
.video-profile-preview {
    background-color: #000000;
    position: relative;
    width: 100%;
    /* padding-top: 56.25%; */ /* 16:9 Aspect Ratio */
    margin: 20px 0;
    max-height: 540px;
    overflow: hidden;
}

/*.video-profile-preview-inner,
.video-profile-preview-inner video {
    position:  absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    height: 100%;
    margin: 0 auto;
}*/

.video-profile-preview-inner,
.video-profile-preview-inner video,
.video-profile-preview-inner img {
    position: relative;
    width: 100%;
    height: auto;
    max-height: 540px;
    /*min-height: 540px;*/
    overflow: hidden;
}

.video-profile-info .video-price {
    text-align: center;
    padding-bottom: 20px;
    font-size: 34px;
    line-height: 50px;
}
.video-profile-info .button--primary-md {
    width: 100% !important;
}

.video-profile-info .video-specs span {
    display: block;
    text-align: left;
    margin: 5px 0;
}
.video-profile-info p {
    margin: 0;
}

.video-profile-page {
    display: none;
    position: relative;
    background: #f7f7f7;
}

@media only screen and (min-width : 768px) {
    .vertical-align {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: row;
    }
}

@font-face {
    font-family: 'icomoon';
    src: url('../../fonts/icomoon.eot?4pchm5');
    src: url('../../fonts/icomoon.eot?4pchm5#iefix') format('embedded-opentype'),
    url('../../fonts/icomoon.ttf?4pchm5') format('truetype'),
    url('../../fonts/icomoon.woff?4pchm5') format('woff'),
    url('../../fonts/icomoon.svg?4pchm5#icomoon') format('svg');
    font-weight: normal;
    font-style: normal;
}

[class^="icon2-"], [class*=" icon2-"] {
    font-family: 'icomoon' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon2-sp2-filesize:before {
    content: "\e900";
}
.icon2-sp2-clock:before {
    content: "\e901";
}

.product-item-layout {
    display: none;
}

div#store div span.product_duration,div#store div span.product_quality,div#store div span.product_size {
    display: inline;
}

div.load_more_row {
    text-align: center;
}

@media all and (display-mode: fullscreen) {
    .video-profile-preview-inner video,
    .video-profile-preview-inner img {
        max-height: 100%;
    }
}


/* video buy btn */

*,*:before,*:after {
    box-sizing:border-box;
    padding: 0;
    margin: 0;
}
.video-profile-info .store-btn {
    display: block;
    position: relative;
    width: 218px;
    height: 40px;
    overflow: hidden;
    border-radius: 6px;
    background-color: #159CD8;
    font-family: sans-serif;
    font-size: 16px;
    color:#fff;
    cursor:pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
}
.video-profile-info .store-btn  .main-label {
    position: absolute;
    top: 50%;
    transform: translate(0%, -50%);
    z-index: 1;
    transition: all 250ms linear;
    width:70%;
    display: inline-block;
    text-align: center;
    text-overflow: ellipsis;
    overflow: hidden;
}
.video-profile-info .store-btn  .main-label small{
    white-space: nowrap;
    font-size: 11px;
    display:block;
}

.video-profile-info .store-btn::after{
    top:0;
    right:-30%;
    content:attr(data-currency)attr(data-amount);
    position: absolute;
    border-radius: 0px 6px 6px 0px;
    background-color: #107aaa;
    border-left:1px solid #107aaa;
    width: 30%;
    transition: all 250ms linear,border-radius 1000ms;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.video-profile-info .store-btn.buy::after {
    right:0px;
}


.video-profile-info .store-btn.buy:hover::after{
    transition: none ;
    border-left:1px solid #ccc;
}
.video-profile-info .store-btn.buy:hover{
    background-color: #107aaa;
}
.video-profile-info .store-btn.confirm .main-label{
    padding-left:20%;

}
.video-profile-info .store-btn::before{
    content:'';
    position: absolute;
    left: -100%;
    top: 0;
    background-color: #159CD8;
    width: 20%;
    height: 100%;
    display: flex;
    background-image: url(../../images/svgs/check-ico.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 40%;
    align-items: center;
    justify-content: center;
    border-radius: 6px 0px 0px 6px;
    z-index:8;
    transition: all 250ms linear;
}
.video-profile-info .store-btn.confirm::before{
    left:0;
}
.video-profile-info .store-btn .cancel {
    right:-30%;
    top:0;
    position: absolute;
    border-radius: 0px 6px 6px 0px;
    background-color: #f34541;
    width: 30%;
    text-align: right;
    padding-right: 10px;
    transition: all 250ms linear,border-radius 1000ms;
    height: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: left;
    padding-left: 5px;

}
.video-profile-info .store-btn .cancel span{
    margin-right:-20px;
}
.video-profile-info .store-btn .cancel::after {
    position: absolute;
    right: 0;
    background-color: #f34541;
    border-radius: 6px;
    background-image: url(../../images/svgs/cancel-ico.svg);
    background-size: 40%;
    background-repeat: no-repeat;
    background-position: center;
    content:'';
    width: 100%;
    height: 100%;
    z-index: 5;
    transition: width 500ms;
}
.video-profile-info .store-btn .cancel:hover::after {
    transition: width 0ms;
    width: 25%;
}
.video-profile-info .store-btn.confirm .cancel {

    right:0;
    width: 20%;
}
.video-profile-info .store-btn.confirm .cancel:hover {
    width: 80%;
    border-radius: 0px 6px 6px 0px;
    transition: all 250ms linear,border-radius 10ms;
    background-position: 88%;


}

.video-profile-info .store-btn .cancel:hover span{
    margin-right:0px;
}
.video-profile-info .store-btn.loading {
    cursor:wait;
}
.video-profile-info .store-btn.loading .main-label{
    width:80%;
}
.video-profile-info .store-btn.loading::after{
    right:0;
    content:'';
    position: absolute;
    border-radius: 0px 6px 6px 0px;
    background-color: #107aaa;
    border-left:1px solid #ccc;
    width: 20%;
    transition: all 250ms linear,border-radius 1000ms;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

}
.video-profile-info .store-btn.loading::before{
    right:0;
    left:unset;
    content:'';
    background-color:transparent;
    width: 20%;
    height: 100%;


    position: absolute;
    background-image: url(../../images/svgs/loading-ico.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 60%;
    animation: spin 3s linear infinite;



}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }

}

.video-profile-info .store-btn.success {
    background-color: #0dbd3f;

}
.video-profile-info .store-btn.success .main-label {
    width: 80%;
}
.video-profile-info .store-btn.success::after{
    content:'';
    background-image: url(../../images/svgs/check-ico.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;
    position: absolute;
    right:0;
    top: 0;
    background-color: #0dbd3f;
    border-left:1px solid #ccc;
    width: 20%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0px 6px 6px 0px;
    z-index:8;
    transition: all 250ms linear;
}
.video-profile-info .store-btn.error {
    background-color: #B33535;

}
.video-profile-info .store-btn.error .main-label {
    width: 100%;
}
.video-profile-info .store-btn.error:hover{
    background-color: #8E1717;
}
.video-profile-info .store-btn.error::after{
    content:attr(data-error);
    position: absolute;
    right:-20%;
    top: 0;
    background-color: #8E1717;
    border-left:1px solid #ccc;
    width: 20%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0px 6px 6px 0px;
    z-index:8;
    transition: all 250ms linear;
}
.video-profile-info .store-btn.download {
    background-color: #0dbd3f;

}
.video-profile-info .store-btn.download .main-label {
    width:70%;
}
.video-profile-info .store-btn.download:hover {
    background-color: #0b9933;
}
.video-profile-info .store-btn.download::after{
    position: absolute;
    right:0;
    top: 0;
    background-color: #0b9933;
    border-left:1px solid #ccc;
    width: 30%;
    height: 100%;
    background-image: url(../../images/svgs/dwd-ico.svg);
    background-size: 50% 60%;
    background-repeat: no-repeat;
    background-position: center;
    content:'';
    border-radius: 0px 6px 6px 0px;
    z-index:8;
    transition: all 250ms linear;
}