/*
Name    : media-responsive.php
By      : Johan van Zijl
Version : 1.0
Date    : 13 July 2018
System  : css

Copyright 2018 PRIO-ICT. All rights reserved

Modification history @(#)

+-----+-----+------------+-----+-----------------------------------------------+
|  V  | Num | Date       | Pro | Description                   		       |
+-----+-----+------------+-----+-----------------------------------------------+
| 1.0 | 000 | 13/07/2018 | JVZ | Initial Version                       	       |
|-----+-----+------------+-----+-----------------------------------------------+

*/
/* Large desktops and laptops */
@media (min-width: 1200px) {

}

/* Landscape tablets and medium desktops */
@media (min-width: 992px) and (max-width: 1199px) {

}

/* Portrait tablets and small desktops */
@media (min-width: 768px) and (max-width: 991px) {

}

/* Landscape phones and portrait tablets */
@media (max-width: 767px) {

}

/* Portrait phones and smaller */
@media (max-width: 480px) {
    table {
        font-size: 3.6vw !important;
    }
    .pagination {
        top: -7px;
        position: absolute;
        right: 5px;
    }
    
    .pagination li a, .pagination li span {
        font-size: 14px;
    }

}