body {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
}

a {
  -webkit-transition: var(--transition);
  transition: var(--transition);
  color: var(--color-dark30);
  text-decoration: none;
  outline: 0 !important;
}

a:hover {
  color: var(--color-accent);
  text-decoration: none;
}

:focus {
  outline: 0 !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

img {
  max-width: 100%;
  height: auto;
}

p {
  font-family: var(--fontFamily2);
  color: var(--paragraphColor);
  font-size: var(--fontSize);
  margin-bottom: 15px;
  line-height: 1.8;
}


ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}


h4 {
  font-weight: 700;
  font-size: 14px;
  font-family: var(--poppins);
  color: var(--color-30);
  margin: 0;
}








.page-wrapper .sidebar-wrapper,
.sidebar-wrapper .sidebar-brand>a,
.sidebar-wrapper .sidebar-dropdown>a:after,
.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a:before,
.sidebar-wrapper ul li a i,
.page-wrapper .page-content,
.sidebar-wrapper .sidebar-search input.search-menu,
.sidebar-wrapper .sidebar-search .input-group-text,
.sidebar-wrapper .sidebar-menu ul li a,
#show-sidebar,
#close-sidebar {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/*----------------page-wrapper----------------*/

.page-wrapper {
  height: 100vh;
  padding-top: 0px;
  overflow: auto;
  background-color: #F4F7FA;
}

.page-wrapper .theme {
  width: 40px;
  height: 40px;
  display: inline-block;
  border-radius: 4px;
  margin: 2px;
}

.page-wrapper .theme.chiller-theme {
  background: #1e2229;
}

/*----------------toggeled sidebar----------------*/

.page-wrapper.toggled .sidebar-wrapper {
  left: 0px;
  top: 90px;
  background: white;
  mix-blend-mode: normal;
  padding-top: 30px;
}

@media screen and (min-width: 768px) {
  .page-wrapper.toggled .page-content {
    padding-left: 201px;
  }
}

/*----------------show sidebar button----------------*/
#show-sidebar {

  transition-delay: 0.3s;
}

.page-wrapper.toggled #show-sidebar {
  left: -40px;
}

/*----------------sidebar-wrapper----------------*/

.sidebar-wrapper {
  width: 201px;
  height: 100%;
  max-height: 100%;
  position: fixed;
  top: 0;
  left: -300px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sidebar-wrapper ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.sidebar-wrapper ul li {
  margin-bottom: 20px;
}

.sidebar-wrapper a {
  text-decoration: none;
}

/*----------------sidebar-content----------------*/

.sidebar-content {
  overflow-y: auto;
  position: relative;
}

.sidebar-content.desktop {
  overflow-y: hidden;
}

/*--------------------sidebar-brand----------------------*/

.sidebar-wrapper .sidebar-brand {
  padding: 10px 20px;
  display: flex;
  align-items: center;
}

.sidebar-wrapper .sidebar-brand>a {
  text-transform: uppercase;
  font-weight: bold;
  flex-grow: 1;
}

.sidebar-wrapper .sidebar-brand #close-sidebar {
  cursor: pointer;
  font-size: 20px;
}

/*-----------------------sidebar-search------------------------*/

.sidebar-wrapper .sidebar-search>div {
  padding: 10px 20px;
}

/*----------------------sidebar-menu-------------------------*/

.sidebar-wrapper .sidebar-menu {
  padding-bottom: 10px;
}

.sidebar-wrapper .sidebar-menu .header-menu span {
  font-weight: bold;
  font-size: 14px;
  padding: 15px 20px 5px 20px;
  display: inline-block;
}

.sidebar-wrapper .sidebar-menu .sidebar-dropdown ul li a,
.sidebar-wrapper .sidebar-menu ul li a {
  display: inline-block;
  width: 100%;
  text-decoration: none;
  position: relative;
  padding: 0px 4px 0px 18px;
  font-family: var(--Public);
  font-weight: 400;
  font-size: 12px;
  line-height: 27px;
}

.sidebar-wrapper .sidebar-menu ul li a {
  line-height: unset;
}

.sidebar-wrapper .sidebar-menu ul li a span {
  position: relative;
}

.sidebar-wrapper .sidebar-menu ul li a img {
  margin-right: 10px;
  font-size: 16px;
  margin-top: -3px;
}

.sidebar-wrapper .sidebar-menu ul li a:hover>i::before {
  display: inline-block;
  animation: swing ease-in-out 0.5s 1 alternate;
}

.sidebar-wrapper .sidebar-menu .sidebar-dropdown>a span:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0d7";
  font-style: normal;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  background: 0 0;
  position: absolute;
  right: -12px;
  top: 0px;
  color: var(--color-white);
  font-size: 11px;
}

.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu ul {
  padding: 5px 0;
  background: #4061C4;
  border: 0.5px solid #79BBE0;
  box-shadow: 0px 0px 11px 4px rgba(0, 0, 0, 0.12);
  border-radius: 5px;
  margin: 10px 17px 0 24px;
}

.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li {
  font-size: 13px;
  margin: 0 4px 0 6px;
}

.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a {
  display: flex;
}

.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a.active {
  background: #2E4294;
  border-radius: 5px;
}

.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li:first-child a.active {
  border-radius: 5px 5px 0px 0px;
}

.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li:last-child a.active {
  border-radius: 0px 0px 5px 5px;
}

.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  font-size: 7px;
  position: absolute;
  left: 7px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
}

.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li:hover a:before,
.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a.active:before {
  opacity: 1;
}

.sidebar-wrapper .sidebar-menu li.sidebar-dropdown.active span {
  color: var(--color-white);
}

.sidebar-wrapper .sidebar-menu ul li a span.label,
.sidebar-wrapper .sidebar-menu ul li a span.badge {
  float: right;
  margin-top: 8px;
  margin-left: 5px;
}

.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a .badge,
.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a .label {
  float: right;
  margin-top: 0px;
}

.sidebar-wrapper .sidebar-menu .sidebar-submenu {
  display: none;
}

.sidebar-wrapper .sidebar-menu .sidebar-dropdown.active>a span:after {
  transform: rotate(270deg);
  right: -12px;
}

/*--------------------------side-footer------------------------------*/
.sidebar-footer {
  width: 100%;
  display: flex;
  margin-bottom: 150px;
  margin-top: 20px;
}

.sidebar-footer>a {
  background: var(--bg-2e);
  color: var(--color-white);
  height: 30px;
  line-height: 30px;
  padding: 0 14px 0 8px;
  border-radius: 4px;
  margin-left: 24px;
  font-weight: 400;
  font-size: 13px;
  font-family: var(--Public);
}

.sidebar-footer>a img {
  margin-right: 5px;
}

.sidebar-footer>a .notification {
  position: absolute;
  top: 0;
}

/*--------------------------page-content-----------------------------*/

main.page-content {
  background: var(--bg-f8);
  /* height: 100%; */
  
}


.page-wrapper .page-content {
  display: inline-block;
  width: 100%;
  padding-left: 0px;
  overflow-x: hidden;
  overflow-y: scroll;
  height: 100vh;
}


/*------scroll bar---------------------*/

::-webkit-scrollbar {
  width: 5px;
  height: 7px;
}

::-webkit-scrollbar-button {
  width: 0px;
  height: 0px;
}

::-webkit-scrollbar-thumb {
  background: #525965;
  border: 0px none #ffffff;
  border-radius: 0px;
}

::-webkit-scrollbar-thumb:hover {
  background: #525965;
}

::-webkit-scrollbar-thumb:active {
  background: #525965;
}

::-webkit-scrollbar-track {
  background: transparent;
  border: 0px none #ffffff;
  border-radius: 50px;
}

::-webkit-scrollbar-track:hover {
  background: transparent;
}

::-webkit-scrollbar-track:active {
  background: transparent;
}

::-webkit-scrollbar-corner {
  background: transparent;
}


/*-----------------------------chiller-theme-------------------------------------------------*/

.chiller-theme .sidebar-wrapper {
  background: #31353D;
}

.chiller-theme .sidebar-wrapper .sidebar-search input.search-menu,
.chiller-theme .sidebar-wrapper .sidebar-search .input-group-text {
  border-color: transparent;
  box-shadow: none;
}

.chiller-theme .sidebar-wrapper .sidebar-header .user-info .user-role,
.chiller-theme .sidebar-wrapper .sidebar-header .user-info .user-status,
.chiller-theme .sidebar-wrapper .sidebar-search input.search-menu,
.chiller-theme .sidebar-wrapper .sidebar-search .input-group-text,
.chiller-theme .sidebar-wrapper .sidebar-brand>a,
.chiller-theme .sidebar-wrapper .sidebar-menu ul li a,
.chiller-theme .sidebar-footer>a {
  color: var(--color-dark);
}

.chiller-theme .sidebar-wrapper .sidebar-menu ul li:hover>a,
.chiller-theme .sidebar-wrapper .sidebar-menu .sidebar-dropdown.active>a,
.chiller-theme .sidebar-wrapper .sidebar-header .user-info,
.chiller-theme .sidebar-wrapper .sidebar-brand>a:hover,
.chiller-theme .sidebar-footer>a:hover i {
  color: var(--color-white);
}

.page-wrapper.chiller-theme.toggled #close-sidebar {
  color: #bdbdbd;
}

.page-wrapper.chiller-theme.toggled #close-sidebar:hover {
  color: var(--color-white)
}

.chiller-theme .sidebar-wrapper ul li:hover a i,
.chiller-theme .sidebar-wrapper .sidebar-dropdown .sidebar-submenu li a:hover:before,
.chiller-theme .sidebar-wrapper .sidebar-search input.search-menu:focus+span,
.chiller-theme .sidebar-wrapper .sidebar-menu .sidebar-dropdown.active a i {
  color: var(--color-white);
  text-shadow: 0px 0px 10px rgba(22, 199, 255, 0.5);
}



.chiller-theme .sidebar-wrapper .sidebar-menu .header-menu span {
  color: #6c7b88;
}








.separator {
  border-bottom: 0.5px solid var(--border-separate-color) !important;
  display: block;
  width: 100%;

}







/* ====================================
          Input Style Css
==================================== */


.modal .formTitle {
  font-weight: 600;
  font-size: 15px;
  line-height: 50px;
  color: var(--color-dark30);
  font-family: var(--poppins);
  margin: 0;
}
.modal form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
form .form-group {
  margin-bottom: 15px;
}
form .form-group{
  width: 100%;
}
.modal form .form-group.w50{
  width: 49% !important;
}
.form-group.w50 {
  width: 49%;
}
.form-group.w60 {
  width: 60%;
}
form input {
  height: 33px;
}

form label {
  font-weight: 700;
  font-size: 12px;
  line-height: 23px;
  color: var(--color-61);
  font-family: var(--Public);
  margin-bottom: 0px !important;
}

form .form-control {
  display: block;
  width: 100%;
  padding: 0 14px;
  font-size: 11px;
  font-weight: 400;
  line-height: 33px;
  color: #212529;
  background-color: var(--bg-white);
  background-clip: padding-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0.5px solid var(--border-separate-color);
  border-radius: 4px;
  transition: all 0.15s ease-in-out;
  box-shadow: none;
  box-sizing: border-box;
  font-family: var(--Public);
}






form .form-control:focus {
  color: #212529;
  background-color: #fff;
  border: 0.5px solid var(--color-accent);
  box-shadow: 0px 0px 4px rgba(79, 26, 148, 0.25);
  outline: 0;
}

form .form-control::-webkit-input-placeholder {
  font-weight: 300;
  font-size: 11px;
  color: var(--color-96);
}

form .form-control:-ms-input-placeholder {
  font-weight: 300;
  font-size: 11px;
  color: var(--color-96);
}

form .form-control::-ms-input-placeholder {
  font-weight: 300;
  font-size: 11px;
  color: var(--color-96);
}

form .form-control::placeholder {
  font-weight: 300;
  font-size: 11px;
  color: var(--color-96);
}










.sigleBox {
  background: var(--bg-white);
  padding: 21px 24px 16px;
  border: 0.5px solid var(--border-input-color);
  box-shadow: 0px 0px 10px 4px rgba(33, 30, 48, 0.07);
  border-radius: 6px;
  margin-bottom: 14px;
}
.sigleBox:hover{
  border: 0.5px solid var(--broder-accent);
}

.singleBoxTitle {
  font-weight: 600;
  font-size: 14px;
  color: var(--color-dark30);
  font-family: var(--poppins);
  margin-bottom: 0;
}
.addAndEditOptionBtn {
  background: var(--bg-f8);
  border-radius: 15px;
  height: 23px;
  line-height: 23px;
  font-weight: 400;
  font-size: 12px;
  color: var(--color-61);
  padding: 0 10px;
  display: flex;
  align-items: center;
  transition: var(--3s);
}
.addAndEditOptionBtn:hover{
  background: var(--bg-accent);
  color: var(--color-white);
}
.addAndEditOptionBtn .icon{
  margin-left: 10px;
    transition: var(--3s);
}
.addAndEditOptionBtn:hover .icon{
  filter: brightness(0) invert(1);
}
.boxItemSeparator {
  opacity: 0.7;
  border-bottom: 0.5px solid #CECED8;
  display: block;
}
.addSearchlistBtn {
  background: var(--bg-f8);
  border-radius: 15px;
  height: 29px;
  line-height: 27px;
  font-weight: 600;
  font-size: 12px;
  color: var(--color-accent);
  border: 1px solid var(--broder-accent);
  padding: 0 10px;
  display: flex;
  align-items: center;
  display: flex;
  font-family: var(--Public);
  margin: 3px 12px 3px 0;
  min-width: 81px;
  justify-content: space-between;
}
.addSearchlistBtn .removeIcon {
  margin-left: 10px;
  margin-top: -2px;
}











.select {
  position: relative;
  border-radius: 15px;
  cursor: pointer;
}

.select .selectBtn {
  background: var(--bg-f8);
  border-radius: 15px;
  height: 29px;
  line-height: 27px;
  font-weight: 600;
  font-size: 12px;
  color: var(--color-accent);
  border: 1px solid var(--broder-accent);
  padding: 0 25px 0 10px;
  display: flex;
  align-items: center;
  display: inline-block;
  font-family: var(--Public);
  margin: 3px 12px 3px 0;
  min-width: 81px;
}
.select .selectBtn:after {
  content: "";
  position: absolute;
  top: 43%;
  right: 23px;
  width: 8px;
  height: 8px;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  border-right: 2px solid var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
  transition: 0.2s ease;
}

.select .selectBtn.toggle {
  border-radius: 3px 3px 0 0;
}

.select .selectBtn.toggle:after {
  -webkit-transform: translateY(-50%) rotate(-135deg);
  transform: translateY(-50%) rotate(-135deg);
}
.select .selectDropdown {
  border: 0.5px solid var(--broder-85);
  box-shadow: 0px 0px 11px 4px rgb(0 0 0 / 12%);
  border-radius: 5px;
  background: var(--bg-white);
  position: absolute;
  top: 100%;
  width: 100%;
  overflow: hidden;
  z-index: 1;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  -webkit-transform-origin: top center;
  transform-origin: top center;
  visibility: hidden;
  transition: 0.2s ease;
  padding: 5px 0;
}
.select .selectDropdown .option {
  padding: 4px 10px;
  box-sizing: border-box;
  cursor: pointer;
    font-weight: 600;
    font-size: 12px;
    font-family: var(--Public);
    color: var(--color-61);
}

.select .selectDropdown .option:hover {
  color: var(--color-accent);
}

.select .selectDropdown.toggle {
  visibility: visible;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}








.inventoryQty {
  background: var(--bg-f8);
  border-radius: 15px;
  height: 29px;
  line-height: 27px;
  font-weight: 600;
  font-size: 12px;
  color: var(--color-accent);
  border: 1px solid var(--broder-accent);
  padding: 0 10px 0 10px;
  display: flex;
  align-items: center;
  font-family: var(--Public);
  margin: 3px 12px 3px 0;
  min-width: 81px;
}


.inventoryQty input {
  width: 60px;
  padding: 0;
  margin: 0;
  text-align: center;
  border-left: none;
  border-right: none;
  border: none;
  background: transparent;
    font-weight: 600;
    font-size: 12px;
    font-family: var(--Public);
    color: var(--color-accent);
}

.inventoryQty button {
  color: black;
  text-decoration: none;
}

.inventoryQty button {
  width: auto;
  padding: 0;
  text-align: center;
  border: none;
  background-color :transparent;
}

.inventoryQty button span {
  margin: auto !important;
}


.inventoryQty input[type=number]::-webkit-inner-spin-button,
.inventoryQty input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}


.inventoryQty input::-webkit-input-placeholder {
  font-weight: 600;
  font-size: 12px;
  font-family: var(--Public);
  color: var(--color-accent);
}

.inventoryQty input:-ms-input-placeholder {
  font-weight: 600;
  font-size: 12px;
  font-family: var(--Public);
  color: var(--color-accent);
}

.inventoryQty input::-ms-input-placeholder {
  font-weight: 600;
  font-size: 12px;
  font-family: var(--Public);
  color: var(--color-accent);
}

.inventoryQty input::placeholder {
  font-weight: 600;
  font-size: 12px;
  font-family: var(--Public);
  color: var(--color-accent);
}


.btn {
  background:var(--bg-white);
  border-radius: 6px;
  min-width: 125px;
  height: 41px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color:var(--color-accent) ;
  padding: 0 15px;
  border: 1px solid var(--broder-accent) !important;
  font-family: var(--Public);
}
.btn:hover{
  background: var(--bg-accent) !important;
  color: var(--color-white) !important;
}
.btn.active{
  background: var(--bg-accent);
  color: var(--color-white);
}

.smBtn{
    background:var(--bg-white);
    border-radius: 6px;
    min-width: 100px;
    height: 29px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  font-weight: 400;
  font-size: 12px;
    color:var(--color-accent);
    padding: 0 18px;
    border: 1px solid var(--broder-accent) !important;
    font-family: var(--Public);
    transition: var(--3s);
}
.smBtn:hover {
  background: var(--bg-accent) !important;
  color: var(--color-white) !important;
}

.smBtn.active {
  background: var(--bg-accent);
  color: var(--color-white);
}
.smBtn.radius{
  border-radius: 50px;
}



.searchInBtns {
  display: flex;
}
.searchInBtns .searchInBtn{
  background: rgb(98 168 208 / 12%);
  border-radius: 15px;
  height: 29px;
  line-height: 28px;
font-weight: 600;
font-size: 12px;
  color: var(--color-3d);
  padding: 0 13px;
  display: flex;
  align-items: center;
  margin-right: 9px;
}
.searchInBtns .searchInBtn:last-child{
  margin-right: 0;
}
.searchInBtns .searchInBtn .icon{
  margin-left: 5px;
}











    .swiper-slide {
      width: 120px;
    }







.modalHeader {
  text-align: center;
}
.modalHeader h3 {
  font-weight: 600;
  font-size: 15px;
  font-family: var(--poppins);
  color: var(--color-dark30);
  margin: 0;
  padding: 30px 0 0;
}
    
    .headerMenuNotification .modal-footer {
      justify-content: flex-start;
      border: none;
    }
    .headerMenuNotification .modal-body {
      padding: 0;
    }
    .modal-footer button {
      border-radius: 4px !important;
      border: 0.5px solid var(--broder-accent) !important;
      height: 27px !important;
      padding: 0 12px !important;
      min-width: 60px;
      font-weight: 600 !important;
      font-size: 12px !important;
      color: var(--color-accent);
    }
    .modal-footer button.active{
      background: var(--bg-accent) !important;
    }
    .modalDefault{
      max-width: 411px;
    }
    .greenNotification {
      background: rgba(214, 254, 193, 0.5);
      font-weight: 400;
      font-size: 11px;
      line-height: 15px;
      color: #418D5A;
      padding: 4px 19px;
      margin: 0;
      text-align: left;
      display: inline-block;
      border-radius: 4px;
    }
.modal-footer {
  border-top: none;
  padding: 10px 23px 14px;
}
.dateField span{
  padding: 0 15px;
  font-weight: 600;
  font-size: 12px;
  color: var(--color-61);
}

    .select .selectBtn {
      background: var(--bg-f8);
      border-radius: 15px;
      height: 33px;
      line-height: 33px;
      font-weight: 400;
      font-size: 11px;
      color: var(--color-accent);
      border: 1px solid var(--broder-accent);
      padding: 0 25px 0 10px;
      display: flex;
      align-items: center;
      display: inline-block;
      font-family: var(--Public);
      margin: 3px 12px 3px 0;
      min-width: 100%;
    }

span.btnCloseIcon {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 30px;
  height: 30px;
  line-height: 27px;
  cursor: pointer;
}





.drag-container {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
}

.board {
  position: relative;
}

.board-column {
  position: absolute;
  left: 0;
  top: 0;
  padding: 0 10px;
  width: calc(100% / 1);
  z-index: 1;
}
.board-column.muuri-item-releasing {
  z-index: 2;
}

.board-column.muuri-item-dragging {
  z-index: 3;
  cursor: move;
}

.board-column-container {
  position: relative;
  width: 100%;
  height: 100%;
}


.board-column-content {
  position: relative;
  min-height: 100%;
}

.board-item {
  position: absolute;
  width: 48%;
  margin: 0 10px;
}



.taskItems{
  min-height: 60px;
}
.board-item.muuri-item-releasing {
  z-index: 9998;
}

.board-item.muuri-item-dragging {
  z-index: 9999;
  cursor: move;
}

.board-item.muuri-item-hidden {
  z-index: 0;
}


@media (max-width: 600px) {
  .board-item-content {
    text-align: center;
  }

  .board-item-content span {
    display: none;
  }
}
agm-map {
  height: 300px !important;
  width: 100%; /* This is really important*/
}
.flex{
  display: flex;
}