 /*
Theme Name: Portal dakenzinkwerk.nl
Theme URI: http://portal.dakenzinkwerk.nl
Description: Internal Project Management Portal
Author: InterFryslân
Author URI: http://interfryslan.nl
Version: 1.0.0
License: Private
*/

 @charset "UTF-8";
 @import'assets/css/style.css';

 .page-link {
     color: #000 !important;
     text-decoration: none;
 }

 .current {
     background-color: #000 !important;
     color: #fff !important;
 }

 #preloader {
     position: fixed;
     left: 0;
     top: 0;
     width: 100%;
     height: 100%;
     z-index: 9999;
     background-color: #fff;
     transition: opacity 0.5s ease-in-out;
     /* Add this line */
 }

 .loader {
     position: absolute;
     left: 50%;
     top: 50%;
     width: 40px;
     height: 40px;
     margin: -20px 0 0 -20px;
     border: 4px solid #000;
     border-top: 4px solid #fff;
     border-radius: 50%;
     animation: spin 1s linear infinite;
 }

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

     100% {
         transform: rotate(360deg);
     }
 }