@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }
.serachLoader{
    -webkit-animation:spin 1s linear infinite;
    -moz-animation:spin 1s linear infinite;
    animation:spin 1s linear infinite;
}
.noContent{
    height: 40px;
    padding-top: 8px;
    text-align: center;
    width: 100%;
}
.tableCol{
    height: auto;
    padding: 10px 0px;
}
.howCookBtn{
    position: relative;
}
.howCookBtn i{
    position: absolute;
    left: 4px;
    top: -9px;
}