/*
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 : 24 Des 14, 13:34:46
    Author     : Iqbal
*/

.col-xs-5ths, .col-sm-5ths, .col-md-5ths, .col-lg-5ths,
.col-xs-40ths, .col-sm-40ths, .col-md-40ths, .col-lg-40ths,
.col-xs-30ths, .col-sm-30ths, .col-md-30ths, .col-lg-30ths{
    position: relative;
    min-height: 1px;
    padding-right: 10px;
    padding-left: 10px;
}

.col-xs-5ths {
    width: 20%;
    float: left;
}

.col-xs-40ths {
    width: 40%;
    float: left;
}

.col-xs-30ths {
    width: 30%;
    float: left;
}

@media (min-width: 768px) {
    .col-sm-5ths {
        width: 20%;
        float: left;
    }
    
    .col-sm-30ths {
        width: 30%;
        float: left;
    }
    
    .col-sm-40ths {
        width: 40%;
        float: left;
    }
}
@media (min-width: 992px) {
    .col-md-5ths {
        width: 20%;
        float: left;
    }
    
    .col-md-30ths {
        width: 30%;
        float: left;
    }
    
    .col-md-40ths {
        width: 40%;
        float: left;
    }
    
}
@media (min-width: 1200px) {
    .col-lg-5ths {
        width: 20%;
        float: left;
    }
    
    .col-lg-30ths {
        width: 30%;
        float: left;
    }
    
    .col-lg-40ths {
        width: 40%;
        float: left;
    }
}