@import url('fonts.css');
@import url('color.css');
@import url('custom-monthpicker.css');
/************ Index Page css ************/
@import url('home.css');
/* load account.css */
@import url('account.css');
/* load contact.css */
@import url('contact.css');
/* load admin.css */
@import url('admin.css');
/* load add order form css */
@import url('addOrder.css');
/* load add search-order css */
@import url('search-order.css');
/* load add report css */
@import url('report.css');
/* load add complaints css */
@import url('complaints.css');
/* load add about-us css */
@import url('about-us.css');

/*--------------------------------------------------------------
>>> BASE STYLES:
----------------------------------------------------------------
# Common
--------------------------------------------------------------*/
.container {
  max-width: 1350px;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}

.container-fluid {
  width: 100%;
  max-width: 1699.98px;
  padding-left: 15px;
  padding-right: 15px;
}

body {
  font-family: var(--main-font);
  color: var(--main-black);
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  direction: ltr;
}

body.locked {
  overflow: hidden;
}
.text-accent{
  color: var(--accent-color) !important;
}
.text-primary{
  color: var(--main-primary) !important;
}
.text-red {
    color: rgba(255, 35, 15, 1);
}
.text-blue {
    color: rgba(0, 148, 255, 1);
}

.pb-40 {
  padding-bottom: 40px;
}

.pt-40 {
  padding-top: 40px;
}

.py-40 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.py-60 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pt-60 {
  padding-top: 60px;
}

.py-80 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.pt-80 {
  padding-top: 80px;
}

.pb-80 {
  padding-bottom: 80px;
}

.my-80 {
  margin-top: 80px;
  margin-bottom: 80px;
}

.mt-80 {
  margin-top: 80px;
}

.mb-80 {
  margin-bottom: 80px;
}

.text-primary {
  color: var(--main-primary) !important;
}

a {
  display: inline-block;
  vertical-align: middle;
}

body,
html {
  overflow-x: clip;
}

a,
a:hover,
a:focus,
a:visited {
  text-decoration: none;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: inherit;
  margin: 0;
}

p {
  margin: 0;
}

dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 0;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}
/* remove outline */
input,textarea,select,button{
  outline: none !important;
}

::placeholder {
  color: #76797c !important;
  opacity: 1;
}

li {
  vertical-align: middle;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

.vr {
  opacity: 1;
  width: 1px;
  border-radius: 3px;
  align-self: center;
}

.hero-title {
  font-weight: 800;
  font-size: 70px;
}

.sec-subtitle {
  font-family: var(--subtitle-font);
  color: var(--accent-color);
  font-size: 30px;
  line-height: 43px;
  font-weight: 400;
}

.sec-title {
  font-size: 40px;
  font-weight: 600;
  color: var(--main-primary);
}

.sec-description {
  font-size: 18px;
  line-height: 40px;
  text-align: justify;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--accent-color);
}

.owl-theme .owl-dots .owl-dot span {
  background-color: var(--accent-color);
}

/*********** image ************/

img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

/*--------------------------------------------------------------
# scroll top Button
--------------------------------------------------------------*/
.scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: none;
  z-index: 99;
  font-size: 18px;
  cursor: pointer;
  align-items: center;
  justify-content:center;
  transition: all 0.4s ease;
  background-color: var(--main-primary);
  color: var(--main-white);
  font-weight: 900;
  height: 46px;
  width: 46px;
  border: 2px solid var(--main-white);
  border-radius: 2px;
}

.scrollTopBtn:hover {
  background-color: var(--accent-color);
  color: var(--main-primary);
  font-weight: 900;
}

/*--------------------------------------------------------------
# Common Theme Buttons
--------------------------------------------------------------*/
.ctm-btn {
  color: var(--main-primary);
  background-color: var(--accent-color);
  padding: 22px 50px;
  text-transform: capitalize;
  font-size: 18px;
  font-weight: 500;
  transition: 0.4s all;
  box-shadow: none !important;
  border: none !important;
  outline: none;
  &.ctm-hover-white-btn:hover{
    color: var(--main-primary);
    background-color: var(--main-white);
  }
  &:disabled {
    background-color: rgba(var(--accent-color-rgb),0.8);
    cursor: not-allowed;
    color: var(--main-primary) !important;
  }
  
}

.ctm-btn.ctm-primary-btn {
  color: var(--main-white);
  background-color: var(--main-primary);
  &:hover {
    color: var(--main-primary);
    background-color: var(--accent-color);
    &.text-accent{color: var(--main-primary) !important;}
  }
  &:disabled {
    background-color: rgba(var(--main-primary-rgb),0.8);
    cursor: not-allowed;
    color: var(--main-white) !important;
  }
}
.ctm-btn.ctm-white-btn {
  color: var(--main-primary);
  background-color: var(--main-white);
  &:hover {
    color: var(--main-primary);
     background-color: var(--accent-color);
  }
}

.ctm-btn:hover {
  color: var(--main-white);
  background-color: var(--main-primary);
}

.news-letter .ctm-btn {
  background-color: var(--main-white);
  &:hover {
    background-color: var(--accent-color);
    color: var(--main-primary);
  }
}

.ctm-outline-btn {
  color: var(--accent-color);
  background-color: transparent;
  border: 1px solid var(--accent-color);
  padding: 14px 28px;
  text-transform: uppercase;
  transition: 0.4s all;
  font-size: 19px;
}

.ctm-outline-btn:hover {
  background-color: var(--accent-color);
  color: var(--main-primary);
}

.ctm-btn.ctm-white-outline-btn {
  background-color: transparent;
  border: 1px solid var(--main-primary);

  &:hover {
    color: var(--main-primary);
    background-color: var(--accent-color);
    border: 1px solid var(--accent-color);
  }
}

/*--------------------------------------------------------------
>>> Preloader STYLES:
--------------------------------------------------------------*/
.site-preloader {
  position: fixed;
  z-index: 99999;
  background-color: rgba(var(--main-primary-rgb), 0.8);
  left: 0;
  right: -50px;
  top: -50px;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-preloader svg {
  max-width: 300px !important;
  max-height: 300px !important;
} 
.site-preloader .preloader-svg {
  width: 100px;
  height: 100px;
}
.site-preloader .preloader-svg path {
  -webkit-transform-origin: 8px 42px;
  -ms-transform-origin: 8px 42px;
  transform-origin: 8px 42px;
  -webkit-transition: -webkit-transform 1s;
  transition: -webkit-transform 1s;
  -o-transition: transform 1s;
  transition: transform 1s;
  transition: transform 1s, -webkit-transform 1s;
}

.site-preloader .preloader-svg path:nth-child(1) {
  -webkit-animation: pxl_rotate_card_one 3s cubic-bezier(.65, .05, .36, 1) infinite .21s;
  -khtml-animation: pxl_rotate_card_one 3s cubic-bezier(.65, .05, .36, 1)infinite .21s;
  -moz-animation: pxl_rotate_card_one 3s cubic-bezier(.65, .05, .36, 1)infinite .21s;
  -ms-animation: pxl_rotate_card_one 3s cubic-bezier(.65, .05, .36, 1)infinite .21s;
  -o-animation: pxl_rotate_card_one 3s cubic-bezier(.65, .05, .36, 1)infinite .21s;
  animation: pxl_rotate_card_one 3s cubic-bezier(.65, .05, .36, 1) infinite .21s;
}

.site-preloader .preloader-svg path:nth-child(2) {
  -webkit-transform: rotate(-19deg);
  -khtml-transform: rotate(-19deg);
  -moz-transform: rotate(-19deg);
  -ms-transform: rotate(-19deg);
  -o-transform: rotate(-19deg);
  transform: rotate(-19deg);
  -webkit-animation: pxl_rotate_card_two 3s cubic-bezier(.65, .05, .36, 1) infinite .14s;
  -khtml-animation: pxl_rotate_card_two 3s cubic-bezier(.65, .05, .36, 1)infinite .14s;
  -moz-animation: pxl_rotate_card_two 3s cubic-bezier(.65, .05, .36, 1)infinite .14s;
  -ms-animation: pxl_rotate_card_two 3s cubic-bezier(.65, .05, .36, 1)infinite .14s;
  -o-animation: pxl_rotate_card_two 3s cubic-bezier(.65, .05, .36, 1)infinite .14s;
  animation: pxl_rotate_card_two 3s cubic-bezier(.65, .05, .36, 1) infinite .14s;
}

.site-preloader .preloader-svg path:nth-child(3) {
  webkit-transform: rotate(-43deg);
  -khtml-transform: rotate(-43deg);
  -moz-transform: rotate(-43deg);
  -ms-transform: rotate(-43deg);
  -o-transform: rotate(-43deg);
  transform: rotate(-43deg);
  -webkit-animation: pxl_rotate_card_three 3s cubic-bezier(.65, .05, .36, 1) infinite 70ms;
  -khtml-animation: pxl_rotate_card_three 3s cubic-bezier(.65, .05, .36, 1)infinite 70ms;
  -moz-animation: pxl_rotate_card_three 3s cubic-bezier(.65, .05, .36, 1)infinite 70ms;
  -ms-animation: pxl_rotate_card_three 3s cubic-bezier(.65, .05, .36, 1)infinite 70ms;
  -o-animation: pxl_rotate_card_three 3s cubic-bezier(.65, .05, .36, 1)infinite 70ms;
  animation: pxl_rotate_card_three 3s cubic-bezier(.65, .05, .36, 1) infinite 70ms;
}

.site-preloader .preloader-svg path:nth-child(4) {
  -webkit-transform: rotate(-72deg);
  -khtml-transform: rotate(-72deg);
  -moz-transform: rotate(-72deg);
  -ms-transform: rotate(-72deg);
  -o-transform: rotate(-72deg);
  transform: rotate(-72deg);
  -webkit-animation: pxl_rotate_card_four 3s cubic-bezier(.65, .05, .36, 1) infinite;
  -khtml-animation: pxl_rotate_card_four 3s cubic-bezier(.65, .05, .36, 1)infinite;
  -moz-animation: pxl_rotate_card_four 3s cubic-bezier(.65, .05, .36, 1)infinite;
  -ms-animation: pxl_rotate_card_four 3s cubic-bezier(.65, .05, .36, 1)infinite;
  -o-animation: pxl_rotate_card_four 3s cubic-bezier(.65, .05, .36, 1)infinite;
  animation: pxl_rotate_card_four 3s cubic-bezier(.65, .05, .36, 1) infinite;
}

@keyframes pxl_rotate_card_one {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  25%,
  35% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  100%,
  70% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes pxl_rotate_card_two {
  0% {
    -webkit-transform: rotate(-19deg);
    transform: rotate(-19deg);
  }

  25%,
  35% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  100%,
  70% {
    -webkit-transform: rotate(343deg);
    transform: rotate(343deg);
  }
}

@keyframes pxl_rotate_card_three {
  0% {
    -webkit-transform: rotate(-43deg);
    transform: rotate(-43deg);
  }

  25%,
  35% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  100%,
  70% {
    -webkit-transform: rotate(317deg);
    transform: rotate(317deg);
  }
}

@keyframes pxl_rotate_card_four {
  0% {
    -webkit-transform: rotate(-72deg);
    transform: rotate(-72deg);
  }

  25%,
  35% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  100%,
  70% {
    -webkit-transform: rotate(287deg);
    transform: rotate(287deg);
  }
}

/*--------------------------------------------------------------
>>> HEADER STYLES:
--------------------------------------------------------------*/
.top-info-bar {
  padding: 15px 0;
  color: var(--main-white);
  background-color: var(--main-primary);
}

.top-info-bar a {
  font-weight: 400;
  color: inherit;
}

.login-link,
.download-link,
.sign-up-link {
  color: var(--main-white);
  transition: all 0.3s ease-in-out;
}

.login-link:hover,
.download-link:hover,
.sign-up-link:hover {
  color: var(--accent-color);
}

.site-header {
  position: relative;
  z-index: 2;
}

.header-main {
  padding: 30px 0;
}

.site-logo {
  max-height: 85px;
  height: 100%;
}

.nav-wrapper .nav-item a {
  color: var(--main-white);
  font-size: 19px;
  font-weight: 400;
  transition: 0.4s all;
  text-transform: uppercase;
}

.nav-wrapper .nav-item a:hover {
  color: var(--main-secondary);
}

.nav-wrapper .nav-item a.active {
  color: var(--accent-color);
  font-weight: 500;
}

.nav-wrapper {
  background-color: var(--main-primary);
}

.conDetail {
  color: var(--main-primary);
}

.conDetail p:first-child {
  color: #979797;
}

.conImg img {
  height: 40px;
  width: 40px;
}

/* for common pages header */
.site-header .common-site-sticky-nav {
  width: 100%;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  right: 0;
  padding: 12px 15px !important;
  padding: 10px 0;

  &.header-main {
    background-color: var(--main-white);
    box-shadow: 0 0 15px #bdd1ffa6;
  }
}

/*--------------------------------------------------------------
>>> FOOTER STYLES:
--------------------------------------------------------------*/
.site-footer {
  background-size: cover;
  background-color: var(--main-secondary);
}

.footer-logo {
  max-height: 115px;
}

.copyright-section {
  border-top: 1px solid #333;
  padding-top: 30px;
  margin-top: 3rem;
}

.site-footer h5 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.site-footer ul {
  padding-left: 1.2rem;
}

.site-footer .list-unstyled {
  padding-left: 0;
}

.site-footer ul li {
  margin-bottom: 8px;
}

.site-footer ul li a {
  color: var(--light-gray-text-color);
}

.site-footer .footer-text {
  color: var(--light-gray-text-color);
  margin-top: 20px;
}

.site-footer .social-icon {
  color: var(--main-primary);
  background-color: transparent;
  border: 1px solid var(--main-primary);
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  transition: all 0.4s ease;
}

.social-icon i {
  font-size: 18px;
  text-align: center;
  transition: all 0.4s ease;
}

.social-icon:hover {
  color: var(--main-white);
  background-color: var(--main-primary);
}

.site-footer a:hover {
  color: var(--accent-color);
  transition: 0.4s all;
}

.copyright-panel {
  background-color: var(--main-primary);
  color: var(--main-white);
  position: relative;
  z-index: 1;
}

.copyright-panel::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: -100%;
  bottom: 0;
  z-index: -1;
  background-color: var(--main-primary);
  border-top: 20px solid #fff;
}

.copyright-panel p {
  padding-top: 20px;
}

.footer-description {
  border-right: 20px solid #fff;
}

.footer-description p {
  text-align: justify;
}
/* common ui datepicker */

body .ui-datepicker.ui-widget {
    background: var(--main-secondary);
}
body .ui-datepicker th {
    padding: .5em .3em;
    color: var(--main-primary);
}
body .ui-widget-header {
    border: 1px solid var(--main-primary);
    background: var(--main-primary) !important;
}
body .ui-widget-header .ui-icon {
    background-image: url(../images/icons/ui-icons_444444_256x240.png);
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(231deg) brightness(106%) contrast(103%);
}
body .ui-state-default, 
body .ui-widget-content .ui-state-default, 
body .ui-widget-header .ui-state-default {
    border: 1px solid #ccc;
    background: #f6f6f6;
    font-weight: bold;
    color: var(--main-primary);
    text-align: center;
    vertical-align: middle;
}
body .ui-state-highlight, 
body .ui-widget-content .ui-state-highlight, 
body .ui-widget-header .ui-state-highlight {
    border: 1px solid var(--main-primary);
    background: var(--main-primary) !important;
    color: var(--main-white);
}
body .ui-state-hover, .ui-widget-content .ui-state-hover,
body .ui-widget-header .ui-state-hover, .ui-state-focus, 
body .ui-widget-content .ui-state-focus,
body .ui-widget-header .ui-state-focus {
    border: 1px solid var(--accent-color);
    background: var(--accent-color) !important;
    font-weight: bold;
    color: var(--main-primary);
    outline: none;
}
.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover,
 .ui-datepicker .ui-datepicker-prev, 
.ui-datepicker .ui-datepicker-next {
    top: 4px !important;
    right: 3px !important;
}
.ui-datepicker .ui-datepicker-prev{
    left: 3px !important;
}

#orderDataTable_length select {
  background: transparent;
  -moz-appearance: auto !important;
  -webkit-appearance: auto !important;
  appearance: auto !important;
}

/*--------------------------------------------------------------
>>> END ALL STYLE
--------------------------------------------------------------*/