.sk-ffs-category-row,
.sk-ffs-cca-entries-row{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
}

.sk-ffs-category-row > div,
.sk-ffs-cca-entries-row > div {
    width: 33%;
    box-sizing: border-box;
}

.sk-ffs-category-row .sk-ffs-category-col{
    padding: 5px 5px;
    box-sizing: border-box;
}

.sk-ffs-category-row .sk-ffs-category-col a{
    text-decoration: none;
}

.sk-ffs-category-row .sk-ffs-category-col .sk-ffs-category-box{
    padding: 10px;
    text-align: center;
    color: #fff;
    font-size: 16px;
}

.sk-ffs-category-row .sk-ffs-category-col .sk-ffs-category-box img{
    width: 150px;
    height: 150px;
}

/* entries page */

.sk-ffs-cca-entries-wraper .sk-ffs-cca-heading h1{
    font-size: 32px;
}

.sk-ffs-cca-entries-container .sk-ffs-cca-entry-col{
    padding: 15px 5px;
}
.sk-ffs-cca-entries-row .sk-ffs-cca-entry-col .sk-ffs-cca-entry-box{
    background-color: #f2f2f2;
    max-width: 100%;
    overflow: hidden;
    text-align: center;
    padding: 15px;
    box-sizing: border-box;
    font-size: 16px;
}

.sk-ffs-cca-entries-row .sk-ffs-cca-entry-col .sk-ffs-cca-entry-box img{
    width: 100%;
    height: auto;
    /* #a3162f */
}

.sk-ffs-cca-entry-col .sk-ffs-cca-entry-box .sk-ffs-entry-product-name{
    font-size: 20px;
    color: #a3162f;
    margin-bottom: 15px;
}

.sk-ffs-cca-entry-col .sk-ffs-cca-entry-box .sk-ffs-entry-price{
    font-weight: bold;
    font-size: 18px;
}
.sk-ffs-cca-entry-col .sk-ffs-cca-entry-box .sk-ffs-button {
   margin-top: 15px;
}

.sk-ffs-button a{
    display: inline-block;
    background-color: #a3162f;
    border: 4px solid #a3162f;
    font-size: 16px;
    padding: 5px 15px;
    color: #fff;
    text-decoration: none;
    transition: all .2s linear;
}

.sk-ffs-button a:hover{
    background-color: #333;
    border-color: #333;
}

/* product page styling */
.sk-cca-product-wraper .sk-cca-product-title{
    margin-bottom: 30px;
}
.sk-cca-product-wraper .sk-cca-product-title h1{
    font-size: 30px;
    font-weight: bold;  
    padding-left: 15px;
    border-left: 2px solid #a3162f;
    margin: 0px;
}

.sk-cca-product-wraper .sk-cca-product-attrs{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 40px;
}

.sk-cca-product-attrs > div{
    width: 50%;
    padding: 15px 0;
}

.sk-cca-product-attrs .sk-cca-right-cont{
text-align: right;
}

.sk-cca-product-attrs .sk-cca-brand-name{
    font-size: 18px;
}

.sk-cca-product-attrs .sk-cca-right-cont .sk-cca-price{
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}

.sk-cca-product-wraper .sk-cca-product-description{
    margin-top: 15px;
    border-top: 3px solid #ccc;
    padding: 25px 15px 0px;
}

.sk-cca-product-image-slider{
    margin-top: 10px;
}

.sk-cca-product-image-slider .carousel-cell {
    width: 100%; /* full width */
    margin-right: 10px;
    text-align: center;
  }

  .sk-cca-product-image-slider .carousel-cell img{
    max-width: 100%;
    height: auto;
  }

.sk-cca-product-wraper .sk-cca-product-video > div{
    width: 100% !important;
}

.sk-cca-product-wraper .sk-cca-product-video{
    margin-top: 30px;
}

.sk-ffs-vote-now-btn{
    text-align: right;
}

.flickity-viewport {
    transition: height 0.2s;
  }


/* media query */

@media all and (max-width: 767px){

    .sk-ffs-category-row > div,
    .sk-ffs-cca-entries-row > div{
        width: 100%;
    }
    
}