/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #3895D3;
  text-decoration: none;
}

a:hover {
  color: #34e5a6;
  text-decoration: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #3895D3;
  border-top-color: #d2f9eb;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #3895D3;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #3995d3;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 80px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  background: #002552;
}

#header.header-transparent {
  background: transparent;
}

#header.header-scrolled {
  background: rgb(5 31 59);
  height: 60px;
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 48px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar .getstarted, .navbar .getstarted:focus {
    background: #3895D3;
    padding: 8px 20px;
    margin-left: 30px;
    border-radius: 4px;
    color: #fff;
}

.navbar .getstarted:hover, .navbar .getstarted:focus:hover {
    color: #fff;
    background: #58CCED;
}

.navbar a.getstarted:hover:before {
    visibility: hidden;
    width: 25px;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar>ul>li>a:before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 3px;
  left: 30px;
  background-color: #3895D3;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
  visibility: visible;
  width: 25px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #fff;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 30px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #002552;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #3895D3;
  text-decoration: none;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: #002552;
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 27px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 8px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile>ul>li>a:before {
  left: 20px;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #0205a1;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #3f43fd;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul,
.navbar-mobile .dropdown .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li,
.navbar-mobile .dropdown .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a,
.navbar-mobile .dropdown .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i,
.navbar-mobile .dropdown .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a,
.navbar-mobile .dropdown .dropdown ul a:hover,
.navbar-mobile .dropdown .dropdown ul .active:hover,
.navbar-mobile .dropdown .dropdown ul li:hover>a {
  color: #3895D3;
}

.navbar-mobile .dropdown>.dropdown-active,
.navbar-mobile .dropdown .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  background: url("../img/cta-bg.jpeg");
  position: relative;
  padding: 120px 0 0 0;
}

#hero:before {
  content: "";
  background: rgba(0, 37, 82, .91);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero h1 {
  margin: 0 0 20px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: rgba(255, 255, 255, 0.8);
}

#hero h1 span {
  color: #fff;
  border-bottom: 4px solid #3895D3;
}

#hero h2 {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  font-size: 24px;
}

#hero .btn-get-started {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 50px;
  transition: 0.5s;
  color: #fff;
  background: #3895D3;
}

#hero .btn-get-started:hover {
  background: #58CCED;
  text-decoration: none;
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 991px) {
  #hero {
    padding-top: 80px;
  }

  #hero .animated {
    animation: none;
  }

  #hero .hero-img {
    text-align: center;
  }

  #hero .hero-img img {
    max-width: 50%;
  }

  #hero h1 {
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 10px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

.hero-waves {
  display: block;
  margin-top: 60px;
  width: 100%;
  height: 60px;
  z-index: 5;
  position: relative;
}

.wave1 use {
  animation: move-forever1 10s linear infinite;
  animation-delay: -2s;
}

.wave2 use {
  animation: move-forever2 8s linear infinite;
  animation-delay: -2s;
}

.wave3 use {
  animation: move-forever3 6s linear infinite;
  animation-delay: -2s;
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }

  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.inner-page{
  margin-top: 80px;
}

.btn-success {
  background: #3895D3 !important;
  border-radius: 4px;
  color: #fff;
  border: 1px solid #3895D3 !important;
}

.btn-success:hover {
  background: rgb(5 31 59) !important;
  border: 1px solid rgb(5 31 59) !important;
}

.section-bg {
  background-color: #f5f5ff;
}

.section-title {
  padding-bottom: 100px;
  padding-top: 50px;
}

.section-title h2 {
    font-size: 18px;
    font-weight: 500;
    padding: 0;
    margin: 0;
    text-transform: capitalize;
    color: #808080;
    font-family: "Poppins", sans-serif;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #072F5F;
}

.table-dark th{
  background: #002552;
  white-space: nowrap;
}
table.compare tr td img {
  height: 16px; 
  width: auto; 
  float: right; 
  margin-top: 5px;
}
table.user-listing tr td img {
  width: 22px;
  height: auto;
}
table.user-listing tr td:last-child {
  vertical-align: middle;
  white-space: nowrap;
}
.login-initials{
    width: 2em;
    height: 2em;
    padding: 0!important;
    margin-left: 24px;
}

.login-initials img {
    border: 1px solid #ffffff;
    border-radius: 16px;
    background-color: #ffffff;
}
.navbar .dropdown ul {
    right: -2px;
    left: initial;
}
.bi-x:before {
    content: "\00d7";
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
    text-align: center;
    background: #fefefe;
    box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
    padding: 35px 20px;
    transition: all ease-in-out 0.3s;
    width: 100%;
}
.services .icon-box:hover {
    background: #3995d3;
    border-color: #3995d3;
    }
.services .icon-box:hover .icon {
    background: #fff;
}
.services .icon-box:hover .icon::before {
    background: #6bb6e9;
}
.services .icon-box:hover .icon i svg path{
    color: #0a305a;
    fill: #0a305a;
}
.services .icon-box .icon {
    margin: 0 auto;
    width: 100px;
    height: 100px;
    background: #072F5F;
    border-radius: 5px;
    transition: all 0.3s ease-out 0s;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transform-style: preserve-3d;
    position: relative;
    z-index: 2;
}
.services .icon-box .icon::before {
    position: absolute;
    content: "";
    left: -8px;
    top: -8px;
    height: 100%;
    width: 100%;
    background: #3a95d3;
    border-radius: 5px;
    transition: all 0.3s ease-out 0s;
    transform: translateZ(-1px);
    z-index: 1;
}

.services .icon-box .icon .step12-i svg{
    width: 65px;
    height:auto;
    

}
.services .icon-box .icon i svg{
    width: 70px;
    height:auto;
     
}


/* Safari 10.1+ (alternate method) */

@media not all and (min-resolution:.001dpcm)
{ @supports (-webkit-appearance:none) {

    .services .icon-box .icon i svg { 
 position: relative;
	z-index: 1;
	top: -5px;
	left: -7px;

    }
}}
.services .icon-box .icon i svg path{
    color: #fff;
    font-size: 28px;
    fill: #fff;
    width: 100px;
    height:auto;
}

.services .icon-box h4 {
    font-weight: 600;
    margin-bottom: 30px;
    font-size: 24px;
    font-family: "Poppins", sans-serif;
}
.services .icon-box:hover h4 a, .services .icon-box:hover p {
    color: #fff;
}
.services .icon-box p {
    line-height: 20px;
    font-size: 16px;
    margin-bottom: 0;
    color: #212529;
}
.services .icon-box:hover h4 a, .services .icon-box:hover p {
    color: #fff;
}
.services a .icon-box:hover  {
    color: #fff;
}
.services .icon-box:hover svg rect {
    fill: #072f5f;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  padding: 0px 0 150px 0;
}

.about .icon-boxes h3 {
  font-size: 28px;
  font-weight: 700;
  color: #010483;
  margin-bottom: 15px;
}

.about .icon-box {
  margin-top: 40px;
}

.about .icon-box .icon {
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 84px;
    height: 84px;
    border: 4px solid #3995d3;
    border-radius: 50px;
    transition: 0.5s;
}

.about .icon-box .icon i {
    color: #3895D3;
    font-size: 48px;
}

.about .icon-box:hover .icon {
  background: #3895D3;
  border-color: #3895D3;
}

.about .icon-box:hover .icon i {
  color: #fff;
}

.about .icon-box .title {
    margin-left: 115px;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 24px;
}

.about .icon-box .title a {
  color: #343a40;
  transition: 0.3s;
}

.about .icon-box .title a:hover {
  color: #3895D3;
}

.about .icon-box .description {
    margin-left: 115px;
    line-height: 28px;
    font-size: 18px;
}


@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #002552;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .copyright {
  border-top: 1px solid #010479;
  text-align: center;
  padding-top: 30px;
  font-style:normal !important;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

@media (max-width: 575px) {
  #footer .footer-top .footer-info {
    margin: -20px 0 30px 0;
  }
  #header .logo img {
    padding: 0;
    margin: 0;
    max-height: 36px;
}
}

.favour
{
  background-color: #1a82c4 !important;
  color: white !important;
}

.loss
{
  background-color: #f15b60 !important;
  color: white !important;
}

.equate
{
  background-color:#8ac640 !important;
  color: white !important;
}

.gray
{
  background-color:gray !important;
  color: white !important;
}

.late_delivery_fedex
{
  background-color: #ee3e3e !important;
  color: white !important;
}

.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: #002552 !important;
  border-color: #002552 !important;
}

@media print{
      .noprint{
        display:none;
    }
    table th table td{
      border:1px solid #000;
    }
    html, body {
      width:  595pt;
      height: 842pt;
    }

}

a.text-dark:hover
{
  text-decoration: none;
}
.mandatory-field
{
  color:red;
}

/* eye button css */
.conatiner{
  height:100%;
    width:100%;
}
.center{
  margin:0 auto;
  border-color:#000;
  border-width:1px;
}
.image{
     width: 100%;
  position: relative;
  
}
.ab{
 
  display: flex;
  align-items: center;
  position: absolute;
  height: 100%;
  top: 15px;
  right: 5px;
  padding-right: 1px;
}
.input{
  display: block;
  width: 100%;
  height: 45px;
  padding: 0 5px;
  border-radius:2px;
}
.navbar a:hover:before, .navbar li:hover>a:before
{
visibility: hidden !important;
}

/*--------------------------------------------------------------
# Learn
--------------------------------------------------------------*/
.learn {
  background: #072f5f;
  margin-bottom: 60px;
  color: #fff;
  text-align: center;
  font-size: 24px;
}
.learn .section-title p {
  color: rgba(255, 255, 255, 0.8) ;
}
.learn a {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  transition: 0.5s;
  color: #fff ;
  background: #3895D3;
  width: auto;
}

/* faq page style */ 
.accordion-button {font-weight:600; color:#3895d3;font-size:18px;}
.accordion-button:not(.collapsed) {background-color: #072F5F; color: #fff;}
.accordion-button:focus {border: none;box-shadow: none;}
.accordion-body {background: #f7f7f7;}
.accordion-button:not(.collapsed)::after {
  background-color: white;
  border-radius: 5px;
}
/* faq page style end*/ 


.app-ups-button {
    text-align: center;
    background: #c7c5c5;
    box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
    padding: 25px 10px;
    transition: all ease-in-out 0.3s;
    width: 100%;
    color:#fff;
    font-size: 36px;
    font-weight: 700;
    border-radius: 10px;
   
   
}
.app-ups-button:hover {
  color: #002552;
  
}
.app-fedex-button {
    text-align: center;
    background:#c7c5c5;
    box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
    padding: 34px 10px;
    transition: all ease-in-out 0.3s;
    width: 100%;
    color:#fff;
    font-size: 36px;
    font-weight: 700;
    border-radius: 10px;
}

.app-dhl-button {
  text-align: center;
  background:#c7c5c5;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
  padding: 1px 10px;
  transition: all ease-in-out 0.3s;
  width: 100%;
  color:#fff;
  font-size: 36px;
  font-weight: 700;
  border-radius: 10px;
}

.app-endicia-button {
  text-align: center;
  background:#c7c5c5;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
  padding: 30px 10px;
  transition: all ease-in-out 0.3s;
  width: 100%;
  color:#fff;
  font-size: 36px;
  font-weight: 700;
  border-radius: 10px;
}
.app-fedex-button:hover {
  color: #3895D3;
  
}
p ,a
{
font-style:normal !important;
}

.error {
  width: 100%;
  font-size: .875em;
  color: #dc3545;
}

.highlight-issue
{
  background: #d0949b !important;
  --bs-table-bg: none !important;
}
.legend
{
   vertical-align: middle; 
  font-size: 16px;
  border: 1px solid black;
  padding: 20px;

  
}
.legend strong
{
  vertical-align: middle;
}
.legend .col
{

  white-space: nowrap;
}

.legend img
{
width:auto !important;
}

.courier-column
{
  text-transform:UPPERCASE;
  font-weight: 800;
}

.header-right-fedex
{
padding-left:180px;
}

.header-right-ups
{
padding-left:215px;
}
.downloadFilesSections
{
  text-decoration: underline;
}

@media only screen and (max-width: 600px) {
	  .btn-get-started{
	       margin-left: 15px;
	       margin-top:20px;
	  }
	  .app-fedex-button
	  {
	  margin-top:20px;
	  }
	  .btn-success
	  {
	  width: 100% !important;
	  font-size: 14px;
	  }
	 .inner-page img
	  {
	      width: 100%;
	  }
  	.header-right-fedex 
	{
	padding-left:0px;
	text-align:center;
	}
	.header-right-ups
	{
	padding-left:0px;
	text-align:center;
	}
	.app-home-btns
	  {
	    max-width:50%;
	  }
	  .app-endicia-button
	  {
	    margin-top:25px;
	    padding: 30px 0;
	  }
	  .app-dhl-button
	  {
	    padding: 15px 0;
	  }
	  .app-ups-button > img
	  {
	    max-width:30% !important;
	  }
	 .margin-bottom
	  {
	    margin-bottom:10px;
	  }
	  #reportrange
	  {
	    margin:auto;
	    width: 90%;
	  }
	  #reportTable_filter
	  {
	  position: unset !important;
	  margin-left: 10px;
	  }
	  .buttons-pdf
	  {
	      margin-top: 5px;
	  }
	  .date-range-block
	  {
	    text-align: center;
	  }	
    
 
}



/*  ipads*/
@media only screen 
  and (min-device-width: 768px) 
  and (max-device-width: 1024px) 
  and (-webkit-min-device-pixel-ratio: 1) {
	.btn-get-started{
       	margin-left: 40px;
       	margin-top:20px;
  	}
  	.inner-page img
	  {
	      width: 100%;
	  }
	   .header-right-ups
		{
		padding-left:0px;
		}
     .header-right-fedex 
    {
    padding-left:0px;
    }
    .header-right-dhl 
    {
    padding-left:0px;
    }
    .header-right-endicia 
    {
    padding-left:0px;
    }
	.app-home-btns
    {
      max-width:70%;
    }
    .app-endicia-button
    {
         padding: 28px 0;
    }
    .app-dhl-button
    {
      padding: 20px 0;
    }
    .app-ups-button > img
    {
      max-width:45% !important;
    }
     .date-range-block
    {
      text-align: center;
    }
    #reportrange
    {
      margin:auto;
      width: 70%;
    } 
    #reportTable_filter
    {
    position: unset !important;
    margin-left: 10px;
    }
    .buttons-pdf
    {
        margin-top: 5px;
    }
}

.safari-fix{
        position: relative;
        z-index: 1;
        top: -5px;
        left: -7px;
       
    }
    
   #printTable td,tr,h6
    {
      font-size: 18px;
    }
    
    .usersTable td,tr,h6
    {
     font-size: 16px;
    }
    
    .headerFont h6
    {
    font-size: 18px;
    }
    .dt-button
    {
      color: #fff;
      background: #3895D3;
      border-radius: 5px;
      font-family: 'Montserrat', sans-serif;
      font-weight: 500;
      font-size: 16px;
      letter-spacing: 1px;
      padding: 10px 30px;
      border: none;
      margin-left:15px;
    }
	#btns
	{
	  display: flex;
	  margin-bottom: 5px;
	}
	
	#reportTable_filter {
	  position: absolute;
	  right: 15px;
	}
	#reportTable_filter label{
	display: flex;
	align-items: center;
	}
	#reportTable_filter input
	{
	  margin-left: 10px;
	  width: 300px;
	  padding: 0px 10px;
	  font-size: 16px;
	  height: 45px;
	}
	.pay-now
	{
	  padding:10px 45px !important;
	  margin-left:15px;
	
	}
	.tracking-btn
	{
	  background: transparent;
	    border: none;
	    text-decoration: underline;
	}
	
	.popup-modal-content
	{
	  background-color: #fefefe;
	  margin: 5% auto 15% auto;
	  border: 1px solid #888;
	  width: 50%;
	  height: 60%;
	}
	.popup-container {
	  padding: 10px;
	  text-align: left;
	}
	.tracking-popup
	{
	  color:#002552;
	}
	#reportTable_wrapper > .row 
	{
	  margin-bottom: 10px;
	}