/*
-------media breakpoints-------
xs screen use : @media all and (max-width: 768px) 
sm screen use : @media all and (min-width: 768px) 
md screen use : @media all and (min-width: 992px) 
lg screen use : @media all and (min-width: 1200px) 
other example : @media all and (min-width: 768px) and (max-width: 992px)

-------common colors-------
nabtrade black : #2e2e2e
nabtrade red   : #c20000
dark red       : #62202a
grey           : #f7f7f7
light grey     : #f3f4f8
dark grey      : #e0e1e3
text color     : #4f565a

-------image path example-------
/etc/designs/bootstrap/bootstrap-managed-designs/bootstrap-nabtrade/clientlibs/img/image-file-name.png

*/ 

#customPaginate {
	width: 100%;
	padding-bottom: 100px;
	float: left;
	position: relative;		
}

#customPaginate .paginate {
    width: 100%;   
}

#customPaginate .swControls {
    position: absolute;
    margin-top: 20px;
    left: 50%;
    transform: translate(-50%, -50%); 
}

#customPaginate a.swShowPage {
    float:left;
    padding: 6px 12px;
    border: 1px solid #ddd;
    margin-left: -1px;
    text-decoration: none;
    color: #c20000;
}

#customPaginate a.swShowPage:hover {
    color: #760000;
    background: #eee;
}

#customPaginate a.swShowPage.active {
    background-color: #c20000;
    border-color: #c20000;
    color: #fff;
}

#customPaginate a.swShowPage:first-child {
    -webkit-border-radius: 4px 0px 0px 4px;
    -moz-border-radius: 4px 0px 0px 4px;
    border-radius: 4px 0px 0px 4px; 
}

#customPaginate a.swShowPage:last-child {
    -webkit-border-radius: 0px 4px 4px 0px;
    -moz-border-radius: 0px 4px 4px 0px;
    border-radius: 0px 4px 4px 0px; 
}

#customPaginate .clear {
    clear: both;
}

#customPaginate.bothControls {
    margin-top: 50px;
}

#customPaginate.bothControls .swControls.topc {
    margin-top: -40px;
}

/* offer filter options */
.nabtrade-pagination {
    position: relative;
}

.nabtrade-pagination .offer-filter {
	float: right;
    position: absolute;
    right: -15px;
    top: -10px;
}

.nabtrade-pagination .offer-filter .filterby {
    padding: 7px 10px;
    border-radius: 4px;
    background-color: #ffffff;
    color: #c20000;
    border: 1px solid #ddd;
}

/*screen-xs-max*/
@media all and (max-width: 768px) {
	
	.nabtrade-pagination .offer-filter {
	    position: relative;
        width: 100%;
        margin: 0 0 20px 0;
        top: 0;
        right: 0;
	}
	
	.nabtrade-pagination .offer-filter .filterby {
	    width: 100%;
	}
	
}

