 #anim-obj {
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     position: fixed;
     background: #e9ecef;

     opacity: 0.5;

     color: #6c757d;
     display: none;
 }

 .loader {
     height: 6px;
     width: 100%;
     position: relative;
     overflow: hidden;
     background-color: transparent;
 }

 .loader:before {
     display: block;
     position: absolute;
     content: "";
     left: -200px;
     width: 200px;
     height: 6px;
     background-color: #0984e3;
     animation: loading 2s linear infinite;
 }

 @keyframes loading {
     from {
         left: -200px;
         width: 30%;
     }

     50% {
         width: 30%;
     }

     70% {
         width: 70%;
     }

     80% {
         left: 50%;
     }

     95% {
         left: 120%;
     }

     to {
         left: 100%;
     }
 }

 body,
 html,
 h2,
 h3,
 h4,
 h5,
 p,
 h6,
 span,
 td {
     font-style: normal;
     font-size: 14px !important;
 }

 h1 {
     font-size: 18px !important;
 }

 h2 {
     font-size: 17px !important;
 }

 .nav-pills .nav-link.active,
 .nav-pills .show>.nav-link {
     color: #fff;
     background-color: #186DB0 !important;
     box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
 }

 .card {
     background: #fff;
     border-radius: 2px;
     display: inline-block;
     height: 300px;
     margin: 1rem;
     position: relative;
     width: 300px;
 }

 .card-1 {
     box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
     transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
 }

 .card-2 {
     box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
 }

 .card-3 {
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
 }

 .card-4 {
     box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
 }

 .card-5 {
     box-shadow: 0 19px 38px rgba(0, 0, 0, 0.30), 0 15px 12px rgba(0, 0, 0, 0.22);
 }