/* ---FONTS--- */

@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700,800);
@import url(https://fonts.googleapis.com/css?family=Lato:400,700,900);
@import url(https://maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css);

/* ---/FONTS--- */
div.fcc_test_ui{
  top: 50px!important;
}
/* ---GENERAL--- */
body, html {
  height: 100%;
}

body{
  font-family: 'Lato','Open Sans', Helvetica, sans-serif;
	font-style: normal;
	font-variant: normal;
	font-weight: 100;
  color: white;
	
}

/* fixing flicker */

/* ---/GENERAL--- */

/* ---NAV BAR--- */

#myNavbar a:hover{
  background-color: #8a8989;
}


/* ---/NAV BAR--- */

/* ---HOME SECTION--- */

.home {
  position: relative;
  background-color: rgb(0, 102, 102);
  background-size: cover;
  height: 70%;
}



#print_track_code_modal {
    font-family: Consolas, monospace;
}

/* ---/HOME SECTION--- */


/* ---ABOUT SECTION--- */

.about {
  position: relative;
  background-color: rgb(0, 102, 102);
  background-size: cover;
  color: white;
}

.about h2{
  color: white;
  text-align: center;
}
.about-myself-row{
  padding-top: 30px;
  padding-bottom: 30px;
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

p.about-text{
  font-size: 140%;
  
}

/* ---/ABOUT SECTION--- */


/* ---PORTFOLIO SECTION--- */

.portfolio {
    padding-bottom: 5em;
    overflow: hidden;
    background-color: rgb(0, 51, 51);
    background-size: cover;      
} 

/*
.portfolio-overlay-bg{
  height: 850px;
  background:rgba(0, 0, 0, 0.5);
}
*/
.portfolio-row1{
  padding-top: 50px;
  text-align: center;
}

.portfolio-row1 p{
  color: white;
  text-shadow: 2px 2px 2px black;
  
}

.portfolio-row1 .portfolio-title{
  font-size: 200%;
}

.portfolio-row1 .portfolio-subtitle{
  font-size: 140%;
}

.portfolio-row2{
  padding-top: 50px; 
  text-align: center;
  max-width: 1090px;
  margin: 0 auto;
}

.portfolio-row3{
  padding-top: 50px;
  text-align: center;
}

.portfolio-item-container{
  display: inline-block;
  width: 300px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.portfolio-item-container img{
    overflow: hidden;
    min-height: 230px;
    max-height: 200px;
    margin-top :10px;
}

.portfolio-item-container:hover{
  box-shadow: 12px 5px 5px rgba(0,0,0,0.9);
  transition: 0.3s;
}
.portfolio-item-title{
  text-align: center;
  position: absolute;
  height: 50px;
  width: 91%;
  background: rgba(0, 0, 0, 0.4);
  bottom: 0;
  left: 0%;
  right: 0%;
  margin: 0 auto;
}

.portfolio-item-title p{
  padding-top: 5px;
  color: white;
  font-size: 15px;
  line-height: 70%;
}

/* ---/PORTFOLIO SECTION--- */


/* ---CONTACT SECTION--- */

.contact {
  background-color: rgb(0, 51, 51);
  background-size: cover;
  height: 900px;    
}


.contact-row{
  padding: 80px;
  padding-top: 200px;
}



/* ---/CONTACT SECTION--- */


/* ---FOOTER--- */

footer {
	  background-color: #cccccc;
    height: 150px;
    padding: 50px; 
}

.footer-list a{
  text-decoration:none;
  color: black;
}

.footer-list a:hover{
  color: gray;
}

#copyright {
  color: #404040;
  font-size: 80%;
}

/* ---/FOOTER--- */


/* ---BUTTONS--- */

.btn {
    display: inline-block;
    vertical-align: middle;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.4);
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
    transition-duration: 0.1s; /* this cause the flick */
    transition-property: transform;
    background-color: #bfbfbf;   
}

.btn:hover,
.btn:focus,
.btn:active {
    transform: scale(1.1);
    color: white;
    background-color: rgba(0, 0, 0, 0.6);
    
}

/* ---/BUTTONS--- */

@media all and (max-width:760px) {
  
   .home{
    padding-top: 30px;
    height: 680px;
   }
  
   .home-btn-list li{ 
     display: block;
   }
  
   #intro-message{
       font-size: 3em;
   }
  
  .contact, .contact-overlay-bg{
       height: 600px;
  }
  
  .contact-row{
      padding-top: 30px;
      text-align: center;
  }
  
  .contact-row ul{
      padding-top: 30px;
  }
}



@media (min-width: 1024px){
	.dropdown-menu .dropdown-toggle:after{
		border-top: .3em solid transparent;
	    border-right: 0;
	    border-bottom: .3em solid transparent;
	    border-left: .3em solid;
	}
	.dropdown-menu .dropdown-menu{
		margin-left:0; margin-right: 0;
	}
	.dropdown-menu li{
		position: relative;
	}
	.nav-item .submenu{
		display: none;
		position: absolute;
		top:-4px;
        margin-right:-84%;
	}
	.nav-item .submenu-left{ 
		right:100%; left:auto;
	}
	.dropdown-menu > li:hover{ background-color: #f1f1f1 }
	.dropdown-menu > li:hover > .submenu{
		display: block;
	}

	.nav-item .submenu-3rd{
		display: none;
		position: absolute;
		top:-4px;
        margin-right:-101%;
	}
	.nav-item .submenu-3rd-left{ 
		right:100%; left:auto;
	}
	.dropdown-menu > li:hover{ background-color: #f1f1f1 }
	.dropdown-menu > li:hover > .submenu-3rd{
		display: block;
	}
}

@media (min-width: 768px) and (max-width: 1023px){
	.dropdown-menu .dropdown-toggle:after{
		border-top: .3em solid transparent;
	    border-right: 0;
	    border-bottom: .3em solid transparent;
	    border-left: .3em solid;
	}
	.dropdown-menu .dropdown-menu{
		margin-left:0; margin-right: 0;
	}
	.dropdown-menu li{
		position: relative;
	}
	.nav-item .submenu{
		display: none;
		position: absolute;
		top:-4px;
        margin-right:-84%;
	}
	.nav-item .submenu-left{ 
		right:100%; left:auto;
	}
	.dropdown-menu > li:hover{ background-color: #f1f1f1 }
	.dropdown-menu > li:hover > .submenu{
		display: block;
	}

	.nav-item .submenu-3rd{
		display: none;
		position: absolute;
		top:-4px;
        margin-right:-101%;
	}
	.nav-item .submenu-3rd-left{ 
		right:100%; left:auto;
	}
	.dropdown-menu > li:hover{ background-color: #f1f1f1 }
	.dropdown-menu > li:hover > .submenu-3rd{
		display: block;
	}
}

@media (max-width: 767px){
	.dropdown-menu .dropdown-toggle:after{
		border-top: .3em solid transparent;
	    border-right: 0;
	    border-bottom: .3em solid transparent;
	    border-left: .3em solid;
	}
	.dropdown-menu .dropdown-menu{
		margin-left:0; margin-right: 0;
	}
	.dropdown-menu li{
		position: relative;
	}
	.nav-item .submenu{
		display: none;
		position: absolute;
		top:-4px;
        margin-right:-84%;
        background-color: #dfdfdf
	}
	.nav-item .submenu-left{ 
		right:100%; left:auto;
	}
	.dropdown-menu > li:hover{ background-color: #f1f1f1 }
	.dropdown-menu > li:hover > .submenu{
		display: block;
	}

	.nav-item .submenu-3rd{
		display: none;
		position: absolute;
		top:-4px;
        margin-right:-101%;
        background-color: #b8b8b8
	}
	.nav-item .submenu-3rd-left{ 
		right:100%; left:auto;
	}
	.dropdown-menu > li:hover{ background-color: #f1f1f1 }
	.dropdown-menu > li:hover > .submenu-3rd{
		display: block;
	}
}



header.carousel {
  height: 100%;
}

header.carousel .item,
header.carousel .item.active,
header.carousel .carousel-inner {
  height: 100%;
}

header.carousel .fill {
  width: 100%;
  height: 100%;
  background-size: cover;
  margin: auto;
}


div.corner {
  position: absolute;
  left: auto;
  height: 100%;
  width: 100%;
} 


.user-pic {
  float: left;
  width: 230px;
  padding: 2px;
  border-radius: 12px;
  margin-right: 15px;
  overflow: hidden;
}
  
.user-pic img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.banner-deped {
  float: left;
  width: 200px;
  padding: 2px;
  border-radius: 12px;
  margin-right: 15px;
  overflow: hidden;
}


/* CONTACT CSS */
.holder {
  background-color: rgb(146, 149, 150);
}
.child {

  margin-left: 10%;

  margin-right: 10%;
}

section {
  margin: auto;
}
.contact-info {
display: inline-block;
width: 100%;
text-align: center;
margin-bottom: 10px;
}
.contact-info-icon {
margin-bottom: 15px;
}
.contact-info-item {
background: #071c34;
padding: 30px 0px;
}
.contact-page-sec .contact-page-form h2 {
color: #071c34;
text-transform: capitalize;
font-size: 22px;
font-weight: 700;
}
.contact-page-form .col-md-6.col-sm-6.col-xs-12 {
padding-left: 0;
}  
.contact-page-form.contact-form input {
margin-bottom: 5px;
}  
.contact-page-form.contact-form textarea {
height: 110px;
}
.contact-page-form.contact-form input[type="submit"] {
background: #071c34;
width: 150px;
border-color: #071c34;
}
.contact-info-icon i {
font-size: 48px;
color: #fda40b;
}
.contact-info-text p{margin-bottom:0px;}
.contact-info-text h2 {
color: #fff;
font-size: 22px;
text-transform: capitalize;
font-weight: 600;
margin-bottom: 10px;
}
.contact-info-text span {
color: #999999;
font-size: 16px;
display: inline-block;
width: 100%;
}

.contact-page-form input {
background: #f9f9f9 none repeat scroll 0 0;
border: 1px solid #f9f9f9;
margin-bottom: 20px;
padding: 12px 16px;
width: 100%;
border-radius: 4px;
}

.contact-page-form select {
background: #f9f9f9 none repeat scroll 0 0;
border: 1px solid #f9f9f9;
margin-bottom: 20px;
padding: 12px 16px;
width: 100%;
border-radius: 4px;
}

.contact-page-form .message-input {
display: inline-block;
width: 100%;
padding-left: 0;
}
.single-input-field textarea {
background: #f9f9f9 none repeat scroll 0 0;
border: 1px solid #f9f9f9;
width: 100%;
height: 120px;
padding: 12px 16px;
border-radius: 4px;
}
.single-input-fieldsbtn input[type="submit"] {
background: #fda40b none repeat scroll 0 0;
color: #fff;
display: inline-block;
font-weight: 600;
padding: 10px 0;
text-transform: capitalize;
width: 150px;
margin-top: 20px;
font-size: 16px;
}
.single-input-fieldsbtn input[type="submit"]:hover{background:#071c34;transition: all 0.4s ease-in-out 0s;border-color:#071c34}
.single-input-field  h4 {
color: #464646;
text-transform: capitalize;
font-size: 14px;
}
.contact-page-form {
display: inline-block;
width: 100%;
margin-top: 30px;
}

.contact-page-map {
margin-top: 36px;
}
.contact-page-form form {
padding: 20px 15px 0;
}
/* END CONTACT CSS */


/* BANNER */
.banner{
  padding-top: 50px;
  max-width:100%;
  background-color: #ffffff;
}

.banner_image{
    padding-top: 2%;
}


@media print {
  .noPrint {
      display: none;
   }
   .areaPrint {
      display: block;
      padding-top: 20%;
   }
}

.button {
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  border-color:#071c34;
}

.button5 {
  background-color: white;
  color: black;
  border: 2px solid #555555;
}

.button5:hover {
  background-color: #555555;
  color: white;
}

.center {
  position:absolute; 
  margin-left:-50px;
  left:50%;
  width:100px;
  bottom:0px;
}


/*Admin Datatable 8*/
#admin_datatable8 {
  font-family: Arial, Helvetica, sans-serif;
  border-collapse: collapse;
  max-width: 100%;
}

#admin_datatable8 td, #admin_datatable8 th {
  border: 1px solid rgb(194, 194, 194);
  padding: 8px;
}

#admin_datatable8 tr:nth-child(even){background-color: #d3d3d3;}

#admin_datatable8 tr:hover {background-color: rgb(180, 180, 180);}

#admin_datatable8 th {
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: left;
  background-color: #a3a3a3;
  color: rgb(0, 0, 0);
  font-size: 12px;
}
#admin_datatable8 td {
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: left;
  color: rgb(0, 0, 0);
  font-size: 13px;
}
/*Admin Datatable 8*/


/* DATATABLE CSS */
.tile
{
  width:100%;
  margin:10px auto;
}
#tile-1 .tab-pane
{
  padding:15px;
  height:80px;
}
#tile-1 .nav-tabs
{
  position:relative;
  border:none!important;
  background-color:#fff;
/*   box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 1px 5px 0 rgba(0,0,0,0.12), 0 3px 1px -2px rgba(0,0,0,0.2); */
  border-radius:6px;
}
#tile-1 .nav-tabs li
{
  margin:0px!important;
}
#tile-1 .nav-tabs li a
{
  position:relative;
  margin-right:0px!important;
  padding: 5px 5px!important;
  font-size:14px;
  border:none!important;
  color:#333;
}
#tile-1 .nav-tabs a:hover
{
  background-color:#fff!important;
  border:none;
}
#tile-1 .slider
{
  display:inline-block;
  width:30px;
  height:4px;
  border-radius:3px;
  background-color:#39bcd3;
  position:absolute;
  z-index:1200;
  bottom:0;
  transition:all .4s linear;
  
}
#tile-1 .nav-tabs .active
{
  background-color:transparent!important;
  border:none!important;
  color:#39bcd3!important;
}


/* DATATABLE CSS */
table { width: 100%; table-layout: fixed; }
.two { width: 2%; }
.five { width: 5%; }
.six { width: 6%; }
.seven { width: 7%; }
.eight { width: 8%; }
.ten { width: 10%; }
.eleven { width: 11%; }
.twelve { width: 12%; }
.thirteen { width: 13%; }
.fifteen { width: 15%; }
.sixteen { width: 16%; }
.seventeen { width: 17%; }
.eighteen { width: 18%; }
.twenty { width: 20%; }
.twentytwo { width: 22%; }
.twentyfive { width: 25%; }
.twentyseven { width: 27%; }
.thirty { width: 30%; }
.thirtyfive { width: 35%; }
.forty { width: 40%; }
.fortyfive { width: 45%; }
.fifty { width: 50%; }
.sixty { width: 60%; }

/* DATATABLE CSS */



/* GRAPH CSS */
/* === Improved Graph CSS === */

:root {
  --primaryColor: #f05a00;
  --secondaryColor: #2c3e50;
  --secondaryColorLight: #34495e;
  --boxShadowLight: 0 4px 20px rgba(0,0,0,0.06);
  --boxShadowDark: 0 4px 25px rgba(0,0,0,0.2);
}

*, *::after, *::before {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

h2, h4, h6 {
  margin: 0;
  padding: 0;
  display: inline-block;
}

.root {
  padding: 2rem 1.5rem;
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--boxShadowDark);
  transition: transform 0.3s ease;
}

.root:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

figure {
  display: flex;
  align-items: center;
}

figure img {
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  border: 3px solid var(--primaryColor);
  margin-right: 1.5rem;
  object-fit: cover;
  box-shadow: var(--boxShadowLight);
  transition: transform 0.3s ease;
}

figure img:hover {
  transform: scale(1.05);
}

figure figcaption {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

figure figcaption h4 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--secondaryColor);
}

figure figcaption h2 {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--secondaryColorLight);
}

.order-track {
  margin-top: 2rem;
  padding: 2rem 1rem 0;
  border-top: 1px dashed var(--secondaryColor);
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
}

.order-track-step {
  display: flex;
  align-items: flex-start;
  position: relative;
  height: auto;
  margin-bottom: 2rem;
}

.order-track-status {
  margin-right: 1.5rem;
  position: relative;
  flex-shrink: 0;
}

.order-track-status-dot {
  display: block;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primaryColor), #ff7e33);
  box-shadow: 0 0 0 4px rgba(240,90,0,0.1);
  position: relative;
  z-index: 1;
}

.order-track-status-line {
  display: block;
  margin: 0 auto;
  width: 2px;
  background: var(--primaryColor);
  position: absolute;
  top: 1.8rem;
  bottom: -2rem;
  opacity: 0.3;
}

.order-track-step:last-child .order-track-status-line {
  display: none;
}

.order-track-text-stat {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--secondaryColor);
}

.order-track-text-sub {
  font-size: 0.95rem;
  font-weight: 300;
  color: #666;
}

/* Mobile responsive */
@media (max-width: 600px) {
  .root {
    padding: 1.5rem 1rem;
  }

  figure img {
    width: 5rem;
    height: 5rem;
  }

  figure figcaption h4 {
    font-size: 1.2rem;
  }

  .order-track-text-stat {
    font-size: 1rem;
  }
}
.date-range-container {
  display: flex;
  justify-content: center; /* center horizontally */
  align-items: center;     /* align vertically */
  gap: 10px;               /* space between elements */
  margin-bottom: 20px;     /* space below */
}

.date-range-container input,
.date-range-container button {
  padding: 8px 12px;
  font-size: 14px;
}
/* GRAPH CSS */