/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 5 Aug, 2020, 7:33:35 PM
    Author     : john
*/

.row,.column {
    box-sizing: border-box ! important;
}

/* Create four equal columns that floats next to each other */
.column {
    float: left;
    width: 32%;
    min-width: 300px;
    padding: 10px;
    margin: 5px 5px 5px 5px ! important;
    border: 1px solid rgb(220,220,220);

}
.column > h1 {

    font-family: Roboto;
    font-weight: 700;
    font-size: 18px;
    line-height: 24.5px;
    letter-spacing: .45px;

}
.three_line_para {

    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;

}
.two_line_para {

    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

}
/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 900px) {
    .column  {
        width: 32%;
        min-width: 300px;

    }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
    .column  {
        width: 32%;  
        min-width: 200px;
    }
}


li.sub_cat_link > a{
    font-family: Roboto;
    font-weight: 500;
    font-size: 15px;
    line-height: 30px;
    letter-spacing: .45px;
}

.image_center{
    text-align: center;
}

.img_size{
    width: 48px ! important;
    height: 48px ! important;
    cursor: pointer;
}

.loader {
    border: 5px solid #f3f3f3;
    border-radius: 50%;
    border-top: 5px solid #3498db;
    width: 25px;
    height: 25px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

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