.kalki-web-story-wrap{
    padding-top: 50px;
    padding-bottom: 50px;
}
.kalki-web-story-wrap .container {
    padding-left: 15px;
    padding-right: 15px;
}
.kalki-web-story-wrap .container .row{
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}
.archive-title-wrap{
    padding-bottom: 50px;
    margin: 0;
}
.archive-title-wrap .archive-title{
    width: 100%;
    text-align: center;
    text-transform: capitalize;
}
.product-wrap {
    width: 25%;
    padding: 0 15px 40px 15px;
    color: #000;
}
.product-wrap .product-single {
    padding: 4px;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0,78,90,.12);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.product-single .product-img {
    padding-bottom: 133%;
    overflow: hidden;
    position: relative;
}
.product-single .product-img img {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.product-single .product-img .dashes {
    position: absolute;
    max-width: 90%;
    margin: 0 auto;
    height: auto;
    z-index: 1;
    bottom: 10px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
}
.product-single .product-img .dashes span{
    display: block;
    width: 20%;
    height: 2px;
    background-color: #fff;
    margin: 0 1%;
}
.product-single .product-data{
    height: 100%;
}
.product-single .product-data .product-title{
    margin-bottom: 10px;
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.product-single .product-data .product-title-date{
    padding: 10px;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.product-single .product-data .product-date{
    margin-top: auto;
}


/* Loader CSS */
.blog-loader-wrap{
    display: flex;
}
#webstory-loadmore-wrap{
    text-align: center;
    margin-top: 15px;
    display: block;
}
#webstory-loadmore-wrap a{
    border: 1px solid #000; 
    border-radius: 100px;
    padding: 7px 53px;
    display: inline-block;
}
.blog-loader {
    position: relative;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #666;
    color: #666;
    animation: loaderflash 1s infinite linear alternate;
    animation-delay: 0.5s;
    display: inline-block;
    margin: 0 auto;
    visibility: hidden;
}
.blog-loader:before, .blog-loader:after {
    content: '';
    display: inline-block;
    position: absolute;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #666;
    color: #666;
    animation: loaderflash 1s infinite alternate;
}
.blog-loader:before {
    left: -30px;
    animation-delay: 0s;
}
.blog-loader:after {
    left: 30px;
    animation-delay: 1s;
}
@keyframes loaderflash {
    0% {
        background-color: #666;
   }
    50%, 100% {
        background-color: #e9e9e9;
   }
}

@media only screen and (max-width: 991px) {
    .product-wrap{
        width: 33.33%;
    }
}
@media only screen and (max-width: 767px) {
    .blog-loader {
        width: 8px;
        height: 8px;
    }
   .blog-loader:before, .blog-loader:after {
        width: 8px;
        height: 8px;
    }
    .blog-loader:before {
        left: -12px;
    }
    .blog-loader:after {
        left: 12px;
    }
    .product-wrap{
        width: 50%;
    }
}
@media only screen and (max-width: 575px) {
    .kalki-web-story-wrap{
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .kalki-web-story-wrap .container .row{
        padding-bottom: 30px;
    }
    .product-single .product-data .product-title{
        font-size: 14px;
        line-height: 1.4;
    }
    .product-date{
        font-size: 14px;
        line-height: 1;
    }
}
@media only screen and (max-width: 480px) {
    .product-wrap{
        padding-bottom: 20px;
    }
}


