@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2392156863);
  border-radius: 10px 0px 0px 10px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0);
  border-radius: 10px 0px 0px 10px;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", serif;
}

.modal {
  background: rgba(0, 0, 0, 0.2196078431);
}

.form-control:focus {
  box-shadow: 0 0 0 0.25rem rgba(224, 224, 224, 0.25);
}

ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}

label.icon {
  position: absolute;
  top: 10px;
  right: 12px;
}

.modal {
  background: rgba(4, 24, 31, 0.43);
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  border: 1px solid #D3D5D5;
  -webkit-text-fill-color: #000000;
  -webkit-box-shadow: 0 0 0px 1000px #fafafa inset;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

.form-control {
  border-radius: 50px;
  min-height: 40px;
  font-size: 14px;
  padding-left: 20px;
}

select.form-control {
  color: rgba(0, 0, 0, 0.4);
}
select.form-control option {
  color: rgb(0, 0, 0);
}

input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.4);
}

input::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

/* Change color when an option is selected */
select:not(:invalid) {
  color: black;
}

input[type=checkbox] {
  margin-top: 4px;
  width: 12px;
  height: 12px;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background-color: #e0e0e0;
  border: 1px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
}

input[type=checkbox]:checked {
  background-color: #87DB1C;
  border: 1px solid #87DB1C;
  position: relative;
}
input[type=checkbox]:checked:after {
  left: 1px !important;
  top: 1px !important;
  width: 8px !important;
  height: 8px !important;
  border-width: unset !important;
  transform: unset !important;
  background-image: url(../uploads/dashboard/check.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 6px;
  height: 12px;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.select-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 2;
}

.locked {
  pointer-events: none;
}

.form-with-title label#title {
  position: absolute;
  height: 32px;
  width: 136px;
  border-radius: 50px;
  background-color: #EAEAEA;
  top: 4px;
  left: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.form-with-title .form-control.editing {
  border: 1px solid #98db8b !important; /* Show green border only when editing */
}
.form-with-title input.form-control.editing:focus {
  box-shadow: 0 0 0 0.25rem rgba(194, 231, 189, 0.25);
}
.form-with-title .form-control:focus {
  border-color: #dee2e6;
}
.form-with-title .form-control {
  padding-left: 150px;
}
.form-with-title .copied-text {
  font-size: 12px;
  color: #cdcdcd;
  margin-bottom: 5px;
  visibility: hidden;
  position: absolute;
  top: -25px;
  left: 150px;
  background: #000000;
  padding: 2px 8px;
  border-radius: 30px;
}
.form-with-title select.form-control option {
  padding-left: 15px;
}
.form-with-title .text-area {
  border-radius: 20px;
  border: 1px solid #D5D3D3;
  position: relative;
  padding: 5px 5px 0px;
}
.form-with-title .text-area textarea {
  width: 100%;
  margin-top: 5px;
  outline: none !important;
  border: 0px;
  font-size: 14px;
  padding: 10px;
}
.form-with-title .text-area label#title {
  position: unset;
  height: 32px;
  width: calc(100% - 50px);
  justify-content: start;
  padding-left: 15px;
}

.table {
  border-collapse: separate;
  border-spacing: 0 10px;
}
.table tr.green td {
  background-color: rgba(215, 255, 215, 0.37);
}
.table tr.green td:first-child:before {
  background-color: #3D9970;
}
.table tr.info td {
  background-color: rgba(228, 247, 255, 0.67);
}
.table tr.info td:first-child:before {
  background-color: #17A2B8;
}
.table tr.orange td {
  background-color: rgba(253, 126, 20, 0.1);
}
.table tr.orange td:first-child:before {
  background-color: #FD7E14;
}
.table tr.yellow td {
  background-color: rgba(255, 193, 7, 0.13);
}
.table tr.yellow td:first-child:before {
  background-color: #FFC107;
}
.table tr.teal td {
  background-color: rgba(32, 201, 151, 0.11);
}
.table tr.teal td:first-child:before {
  background-color: #20C997;
}
.table tr.red td {
  background-color: rgba(255, 0, 24, 0.08);
}
.table tr.red td:first-child:before {
  background-color: #E52538;
}
.table tr td:first-child {
  border-radius: 12px 0px 0px 12px;
  border: 1px solid #e0e0e0;
  border-right: 0px;
  min-width: 46px;
  text-align: center;
}
.table tr td:last-child {
  border-radius: 0px 12px 12px 0px;
  border: 1px solid #e0e0e0;
  border-left: 0px;
}
.table tr th {
  border: 1px solid #e0e0e0;
  border-left: 0px;
  padding: 10px 5px 10px 10px;
  color: #000;
  font-size: 12px;
}
.table tr th:first-child {
  border-left: 1px solid #e0e0e0;
  border-radius: 50px 0px 0px 50px;
  text-align: center;
}
.table tr th:last-child {
  border-radius: 0px 50px 50px 0px;
}
.table tr td {
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  padding: 10px 5px 10px 10px;
}
.table tbody, .table td, .table tfoot, .table th, .table thead, .table tr {
  font-size: 13px;
}
.table label.icon {
  position: absolute;
  top: 7px;
  right: 12px;
  z-index: 3;
}
.table td, .table th {
  vertical-align: middle;
}
.table select {
  font-size: 12px;
  min-height: 28px;
  padding-left: 11px;
}
.table > :not(caption) > * > * {
  border-bottom-width: inherit;
}
.table tbody tr.disabled {
  background-image: url(../uploads/dashboard/disable.svg);
  background-position: left center;
  background-size: auto 100%;
}
.table tbody tr {
  border-radius: 12px;
  z-index: 0;
  position: relative;
  transition: ease-in-out 0.3s;
}
.table tbody tr:hover {
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.27);
  transition: ease-in-out 0.3s;
  z-index: 10;
  transform: scale(1.01);
}
.table tbody tr td:first-child:before {
  height: 55%;
  width: 3px;
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: -1px;
  z-index: 10;
  border-radius: 5px;
  transform: translateY(-50%);
}
.table tbody tr td a img, .table tbody tr th a img {
  min-width: 18px;
}

.pagination li:first-child span.page-link, .pagination li:first-child a.page-link {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  padding: 6px 15px;
}
.pagination li:last-child span.page-link, .pagination li:last-child a.page-link {
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  padding: 6px 15px;
}
.pagination .page-link {
  color: #000;
  padding: 6px 15px;
}
.pagination .page-link:focus, .pagination .page-link:hover {
  color: #274600;
  background-color: #e6ffdd;
  box-shadow: none;
}
.pagination .active > .page-link, .pagination .page-link.active {
  z-index: 3;
  color: #000;
  background-color: #87db1c;
  border-color: #87db1c;
}

body {
  overflow-x: hidden;
}

#main {
  background-color: #003c50;
  height: 100vh;
  overflow: auto;
  padding: 0px 15px 15px 15px;
}

header {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header #logo.collapsedwidth {
  max-width: 230px;
  padding-left: 25px;
}
header #logo {
  max-width: 264px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding-left: 9px;
  padding-right: 18px;
}
header #logo .hamburger {
  cursor: pointer;
}
header #logo .hamburger:hover {
  opacity: 0.8;
  transition-duration: 0.4s;
}
header .info {
  width: calc(100% - 264px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .info .country {
  padding-left: 35px;
  display: flex;
  align-items: center;
  gap: 25px;
}
header .info .country .cpack {
  display: flex;
  align-items: center;
  gap: 5px;
}
header .info .country .cpack img {
  border-radius: 50px;
  border: 5px solid rgba(238, 238, 238, 0.18);
}
header .info .country .cpack .time p {
  margin: 0;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  margin-top: 2px;
}
header .right {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding-right: 9px;
}
header .right .button {
  font-size: 16px;
  font-weight: 500;
  padding: 0px 14px;
  border-radius: 50px;
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
header .right .button:hover {
  opacity: 0.8;
  transition-duration: 0.4s;
}
header .right .break {
  background-color: rgba(135, 219, 28, 0.3);
  color: #78CC0C;
  margin-right: 10px;
}
header .right .shiftend {
  background-color: rgba(255, 117, 117, 0.31);
  color: #FF7575;
}
header .right .user {
  gap: 12px;
}
header .right .user .img img {
  height: 50px;
  width: 50px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
header .right .user .info {
  width: -moz-fit-content;
  width: fit-content;
}
header .right .user .info p:first-child {
  font-size: 16px;
  color: #fff;
  margin: 0;
}
header .right .user .info p:last-child {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.42);
  margin: 0;
}
header .right .user .notification {
  position: relative;
}
header .right .user .notification #icon {
  height: 28px;
  width: 28px;
  background-color: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  cursor: pointer;
}
header .right .user .notification #icon:hover img {
  animation: ring 3s 0.3s ease-in;
  transform-origin: 50% 4px;
}
header .right .user .notification #notification-dropdown {
  height: 50vh;
  min-width: 300px;
  max-height: calc(100vh - 125px);
  background-color: rgb(255, 255, 255);
  position: absolute;
  right: 0;
  top: 69px;
  z-index: 20;
  border-radius: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.3411764706);
}
@keyframes ring {
  0% {
    transform: rotate(0);
  }
  1% {
    transform: rotate(30deg);
  }
  3% {
    transform: rotate(-28deg);
  }
  5% {
    transform: rotate(34deg);
  }
  7% {
    transform: rotate(-32deg);
  }
  9% {
    transform: rotate(30deg);
  }
  11% {
    transform: rotate(-28deg);
  }
  13% {
    transform: rotate(26deg);
  }
  15% {
    transform: rotate(-24deg);
  }
  17% {
    transform: rotate(22deg);
  }
  19% {
    transform: rotate(-20deg);
  }
  21% {
    transform: rotate(18deg);
  }
  23% {
    transform: rotate(-16deg);
  }
  25% {
    transform: rotate(14deg);
  }
  27% {
    transform: rotate(-12deg);
  }
  29% {
    transform: rotate(10deg);
  }
  31% {
    transform: rotate(-8deg);
  }
  33% {
    transform: rotate(6deg);
  }
  35% {
    transform: rotate(-4deg);
  }
  37% {
    transform: rotate(2deg);
  }
  39% {
    transform: rotate(-1deg);
  }
  41% {
    transform: rotate(1deg);
  }
  43% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(0);
  }
}
.g-22 {
  gap: 22px;
}

.g-10 {
  gap: 10px;
}

.w-35 {
  width: 35%;
  display: flex;
  gap: 22px;
}

.w-30 {
  width: 30%;
}

.w-70 {
  width: 70%;
}

.collapse .btn-light {
  background-color: #e9ebed !important;
}

.btn-success {
  background-color: #87DB1C;
  border-color: #87DB1C;
}
.btn-success:hover {
  background-color: #5f9a11;
  border-color: #5f9a11;
}

.btn {
  font-size: 14px;
}

.bodywraper {
  height: calc(100% - 90px);
  width: 100%;
  background: #fff;
  border-radius: 30px;
  display: flex;
  overflow: hidden;
}
.bodywraper .left-sidebar {
  height: 100%;
  width: 280px;
  background-color: #F5F5F5;
  border-right: 1px solid #D4D4D4;
  padding: 12px 2px 0px 12px;
  position: relative;
  transition: ease-in-out 0.4s;
}
.bodywraper .left-sidebar .menu-list {
  height: calc(100% - 108px);
  overflow-y: auto;
  padding-right: 5px;
}
.bodywraper .left-sidebar .menu-list::-webkit-scrollbar {
  width: 0 !important;
  display: none;
}
.bodywraper .left-sidebar .menu-list li > a.show {
  background-color: rgba(0, 0, 0, 0.08);
  transition-duration: 0.4s;
}
.bodywraper .left-sidebar .menu-list li a.show img.arrow {
  rotate: 180deg;
  transition: ease-in-out 0.4s;
}
.bodywraper .left-sidebar .menu-list li a.show ~ ul.submenu {
  height: auto;
}
.bodywraper .left-sidebar .menu-list li a {
  display: flex;
  align-items: center;
  gap: 9px;
  height: 45px;
  width: 100%;
  text-decoration: none;
  color: #000;
  padding: 0px 10px 0px 14px;
  border-radius: 50px;
  transition: ease-in-out 0.1s;
}
.bodywraper .left-sidebar .menu-list li a:hover {
  background-color: rgba(0, 0, 0, 0.08);
  transition-duration: 0.4s;
}
.bodywraper .left-sidebar .menu-list li a div {
  min-width: 23px;
}
.bodywraper .left-sidebar .menu-list li a p {
  margin: 0;
  white-space: nowrap;
  opacity: 1;
  transition: ease-in-out 0.4s;
}
.bodywraper .left-sidebar .menu-list li a .arrow {
  transition: ease-in-out 0.4s;
}
.bodywraper .left-sidebar .menu-list li a .bodywraper .left-sidebar .menu-list li a div {
  min-width: 23px;
}
.bodywraper .left-sidebar .menu-list li a.active {
  background-color: #87DB1C;
}
.bodywraper .left-sidebar .menu-list li ul.submenu {
  padding: 0px 10px 0px 19px;
  position: relative;
  height: 0;
  transition: max-height 0.3s ease-out;
  overflow: hidden;
}
.bodywraper .left-sidebar .menu-list li ul.submenu .line {
  height: calc(100% - 14px);
  position: absolute;
  left: 21px;
  width: 1.5px;
  background-color: #858585;
}
.bodywraper .left-sidebar .menu-list li ul.submenu li.active:before {
  background-color: #000000;
}
.bodywraper .left-sidebar .menu-list li ul.submenu li.active a {
  color: #000;
  background-color: unset;
}
.bodywraper .left-sidebar .menu-list li ul.submenu li {
  position: relative;
}
.bodywraper .left-sidebar .menu-list li ul.submenu li:hover a {
  color: #000;
  background-color: unset;
}
.bodywraper .left-sidebar .menu-list li ul.submenu li:before {
  content: "";
  height: 8px;
  width: 8px;
  border-radius: 10px;
  background-color: #858585;
  position: absolute;
  left: -1px;
  top: 13px;
  display: block;
}
.bodywraper .left-sidebar .menu-list li ul.submenu li:hover:before {
  background-color: #000000;
}
.bodywraper .left-sidebar .menu-list li ul.submenu li:first-child a {
  display: block;
  margin-top: 5px;
}
.bodywraper .left-sidebar .menu-list li ul.submenu li a {
  height: 35px;
  border-radius: unset;
  color: #858585;
  white-space: nowrap;
  font-size: 14px;
}
.bodywraper .left-sidebar .logout {
  position: absolute;
  bottom: 13px;
  width: 100%;
  left: 0;
  padding: 0px 10px 0px 10px;
}
.bodywraper .left-sidebar .logout .button {
  height: 45px;
  width: 100%;
  background-color: #000;
  border-radius: 50px;
  border: 0px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.bodywraper .left-sidebar .logout .button img {
  display: none;
}
.bodywraper .left-sidebar.collapsed {
  width: 65px;
  transition: ease-in-out 0.4s;
}
.bodywraper .left-sidebar.collapsed:hover {
  width: 280px;
}
.bodywraper .left-sidebar.collapsed:hover .menu-list li a p {
  opacity: 1;
  transition: ease-in-out 0.4s;
}
.bodywraper .left-sidebar.collapsed .menu-list li a p, .bodywraper .left-sidebar.collapsed .menu-list li ul.submenu li a {
  opacity: 0;
  transition: ease-in-out 0.3s;
}
.bodywraper .left-sidebar.collapsed .logout .button span,
.bodywraper .left-sidebar.collapsed:hover .logout .button img {
  display: none;
}
.bodywraper .left-sidebar.collapsed:hover .logout .button span, .bodywraper .left-sidebar.collapsed .logout .button img {
  display: block;
}
.bodywraper .left-sidebar.collapsed:hover .menu-list li ul.submenu li a {
  opacity: 1;
}
.bodywraper #right-section.expand {
  width: calc(100% - 65px);
  transition: ease-in-out 0.4s;
}
.bodywraper #right-section {
  width: calc(100% - 280px);
  padding: 30px 40px 40px;
  overflow-y: auto;
  transition: ease-in-out 0.4s;
}
.bodywraper #right-section h1 {
  font-size: 32px;
  font-weight: 600;
}
.bodywraper #right-section .expand, .bodywraper #right-section .closeexpand {
  opacity: 0.7;
  cursor: pointer;
}
.bodywraper #right-section .expand:hover, .bodywraper #right-section .closeexpand:hover {
  opacity: 1;
  transition-duration: 0.4s;
}
.bodywraper #right-section .status-card {
  border: 0.5px solid rgba(0, 0, 0, 0.2);
  padding: 16px 16px 16px 18px;
  border-radius: 15px;
  position: relative;
  cursor: pointer;
  transition: ease-in-out 0.2s;
}
.bodywraper #right-section .status-card:hover {
  box-shadow: 0px 9px 10px rgba(0, 0, 0, 0.16);
  transition: ease-in-out 0.3s;
}
.bodywraper #right-section .status-card:hover h3 {
  transition: ease-in-out 0.3s;
}
.bodywraper #right-section .status-card:hover .count {
  color: #67ba13;
  transition: ease-in-out 0.3s;
}
.bodywraper #right-section .status-card .icon {
  position: absolute;
  top: 16px;
  right: 16px;
}
.bodywraper #right-section .status-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin-bottom: 14px;
}
.bodywraper #right-section .status-card .count {
  font-size: 32px;
  font-weight: 600;
  color: #000;
  margin: 0;
}
.bodywraper #right-section .statics {
  border: 0.5px solid rgba(0, 0, 0, 0.2);
  padding: 20px 20px 17px 20px;
  border-radius: 15px;
  position: relative;
  transition: ease-in-out 0.2s;
}
.bodywraper #right-section .statics h3 {
  font-size: 18px;
  font-weight: 600;
  color: #36A800;
  margin-bottom: 0 px;
}
.bodywraper #right-section .statics .count {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin-bottom: 0px;
}
.bodywraper #right-section .statics .progress {
  margin-top: 16px;
  height: 22px;
  border-radius: 50px;
}
.bodywraper #right-section .statics .progress .progress-bar {
  background-color: #87DB1C;
  text-align: start;
  border-radius: 50px;
  font-size: 13px;
  font-weight: bold;
  padding-left: 8px;
  padding-top: 2px;
}
.bodywraper #right-section .collapse-section {
  margin-top: 50px;
  margin-bottom: 30px;
}
.bodywraper #right-section .collapse-section .collapseButton {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  background: none;
  border: none;
  margin-bottom: 20px;
}
.bodywraper #right-section .collapse-section .collapseButton .collapseButton span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.bodywraper #right-section .collapse-section .reset {
  opacity: 0.4;
  position: absolute;
  left: 166px;
  top: -1px;
  z-index: 5;
}
.bodywraper #right-section .collapse-section .reset:hover {
  opacity: 1;
  transition-duration: 0.4s;
}
.bodywraper #right-section .collapse-section .rotate {
  transition: transform 0.3s ease-in-out;
}
.bodywraper #right-section .collapse-section .collapsed .rotate {
  transform: rotate(0deg);
}
.bodywraper #right-section .collapse-section .rotate {
  transform: rotate(180deg);
}
.bodywraper #right-section .collapse-section label.icon {
  position: absolute;
  top: 7px;
  right: 12px;
  z-index: 3;
  cursor: pointer;
  opacity: 1;
  transition: ease-in-out 0.3s;
}
.bodywraper #right-section #bulkassignment {
  background-color: #fff;
}
.bodywraper #right-section #bulkassignment h3 {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  background: none;
  border: none;
  margin-bottom: 20px;
}
.bodywraper #right-section #order-id {
  display: flex;
  background: rgba(107, 107, 107, 0.07);
  border: 1px solid #D3D5D5;
  border-radius: 50px;
  color: #000;
}
.bodywraper #right-section #order-id .label {
  padding: 3px 10px;
  background: #fff;
  border-radius: 50px;
  border: 1px solid #D3D5D5;
  margin: -1px;
}
.bodywraper #right-section #order-id .id-number {
  padding: 3px 10px;
}
.bodywraper #right-section .edit-case-status {
  display: flex;
  gap: 22px;
  padding-bottom: 50px;
}
.bodywraper #right-section .edit-case-status .user-info-wrap {
  border-radius: 15px;
  border: 1px solid #D5D3D3;
  width: 50%;
  height: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.bodywraper #right-section .edit-case-status .user-info-wrap:hover {
  box-shadow: 0px 9px 10px rgba(0, 0, 0, 0.16);
  transition: ease-in-out 0.3s;
}
.bodywraper #right-section .edit-case-status .user-info-wrap .info {
  padding: 18px 16px 0px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  align-items: center;
}
.bodywraper #right-section .edit-case-status .user-info-wrap .info h4 {
  font-size: 0.938vw;
  text-align: center;
  font-weight: 700;
}
.bodywraper #right-section .edit-case-status .user-info-wrap .info img {
  height: 100px;
  width: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  border-radius: 10px;
}
.bodywraper #right-section .edit-case-status .user-info-wrap .info .name {
  font-weight: 600;
  color: #D3D5D5;
  text-align: center;
  margin: 0;
}
.bodywraper #right-section .edit-case-status .user-info-wrap .info h3 {
  font-size: 22px;
  color: #000;
  font-weight: 600;
}
.bodywraper #right-section .edit-case-status .user-info-wrap .joining {
  background-color: #EDEDED;
  text-align: center;
  padding: 10px 8px 8px;
  border-radius: 0px 0px 14px 14px;
}
.bodywraper #right-section .edit-case-status .user-info-wrap .joining p {
  font-size: 12px;
  margin: 0;
}
.bodywraper #right-section .edit-case-status .cards-wrap {
  display: flex;
  gap: 22px;
}
.bodywraper #right-section .edit-case-status .cards-wrap .fixed-width-115 {
  min-width: 115px;
}
.bodywraper #right-section .edit-case-status .cards-wrap .w-70-115 {
  width: calc(100% - 180px);
}
.bodywraper #right-section .edit-case-status .cards-wrap .small-cards {
  border-radius: 15px;
  border: 1px solid #D5D3D3;
  padding: 15px 18px 15px 20px;
  min-height: 146px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  position: relative;
  /* The switch - the box around the slider */
  /* Hide default HTML checkbox */
  /* The slider */
}
.bodywraper #right-section .edit-case-status .cards-wrap .small-cards:hover {
  box-shadow: 0px 9px 10px rgba(0, 0, 0, 0.16);
  transition: ease-in-out 0.3s;
}
.bodywraper #right-section .edit-case-status .cards-wrap .small-cards h4 {
  font-size: 0.938vw;
  font-weight: 700;
  color: #000;
  margin: 0;
  max-width: 94%;
}
.bodywraper #right-section .edit-case-status .cards-wrap .small-cards .count {
  font-size: 2.8vw;
  color: #D3D5D5;
  line-height: 40px;
  font-weight: 300;
}
.bodywraper #right-section .edit-case-status .cards-wrap .small-cards img.icon {
  max-width: 36px;
  position: absolute;
  right: 13px;
  bottom: 13px;
}
.bodywraper #right-section .edit-case-status .cards-wrap .small-cards img.icon-relation {
  max-width: 36px;
  position: absolute;
  right: 13px;
  top: 13px;
}
.bodywraper #right-section .edit-case-status .cards-wrap .small-cards .returns {
  font-size: 14px;
}
.bodywraper #right-section .edit-case-status .cards-wrap .small-cards .green {
  color: #36A800;
}
.bodywraper #right-section .edit-case-status .cards-wrap .small-cards .red {
  color: #C20E0E;
}
.bodywraper #right-section .edit-case-status .cards-wrap .small-cards .manager-img {
  height: 44px;
  width: 44px;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.bodywraper #right-section .edit-case-status .cards-wrap .small-cards .name {
  font-size: 1.5vw;
}
.bodywraper #right-section .edit-case-status .cards-wrap .small-cards .switch {
  font-size: 17px;
  position: relative;
  display: inline-block;
  width: 117px;
  height: 47px;
}
.bodywraper #right-section .edit-case-status .cards-wrap .small-cards .switch input {
  opacity: 1;
  width: 0;
  height: 0;
}
.bodywraper #right-section .edit-case-status .cards-wrap .small-cards .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0px;
  background: #fff;
  transition: 0.4s;
  border-radius: 13px;
  border: 1px solid #D5D3D3;
}
.bodywraper #right-section .edit-case-status .cards-wrap .small-cards .slider:before {
  position: absolute;
  content: "";
  height: 47px;
  width: 47px;
  border-radius: 12px;
  left: 0px;
  top: 0;
  bottom: 0;
  background-color: white;
  transition: 0.4s;
  border: 1px solid #D5D3D3;
  margin: -1px;
}
.bodywraper #right-section .edit-case-status .cards-wrap .small-cards input:checked + .slider {
  background-color: #c9c9c9;
  border: 1px solid #c9c9c9;
}
.bodywraper #right-section .edit-case-status .cards-wrap .small-cards input:checked + .slider:before {
  transform: translateX(70px);
}
.bodywraper #right-section .edit-case-status .special-care {
  border-radius: 15px;
  border: 1px solid #D5D3D3;
  padding: 15px 18px 15px 20px;
  position: relative;
  /* The switch - the box around the slider */
  /* Hide default HTML checkbox */
  /* The slider */
}
.bodywraper #right-section .edit-case-status .special-care:hover {
  box-shadow: 0px 9px 10px rgba(0, 0, 0, 0.16);
  transition: ease-in-out 0.3s;
}
.bodywraper #right-section .edit-case-status .special-care h4 {
  font-size: 0.938vw;
  font-weight: 700;
  color: #000;
  margin: 0;
  display: flex;
  gap: 8px;
  align-items: center;
}
.bodywraper #right-section .edit-case-status .special-care h4 img {
  opacity: 0.7;
  filter: grayscale(1);
  margin-bottom: 2px;
}
.bodywraper #right-section .edit-case-status .special-care .switch input[type=checkbox]:checked + h4.svg-icon {
  opacity: 1;
  filter: grayscale(0); /* or use any color effect you want */
}
.bodywraper #right-section .edit-case-status .special-care .switch {
  font-size: 17px;
  position: relative;
  display: inline-block;
  width: 56px;
  height: 23px;
}
.bodywraper #right-section .edit-case-status .special-care .switch input {
  opacity: 1;
  width: 0;
  height: 0;
}
.bodywraper #right-section .edit-case-status .special-care .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0px;
  background: #fff;
  transition: 0.4s;
  border-radius: 30px;
  border: 1px solid #D5D3D3;
}
.bodywraper #right-section .edit-case-status .special-care .slider:before {
  position: absolute;
  content: "";
  height: 23px;
  width: 30px;
  border-radius: 16px;
  left: 0px;
  top: 0;
  bottom: 0;
  background-color: white;
  transition: 0.4s;
  border: 1px solid #D5D3D3;
  margin: -1px;
}
.bodywraper #right-section .edit-case-status .special-care input:checked + .slider {
  background-color: rgb(135, 219, 28);
  border: 1px solid rgb(135, 219, 28);
}
.bodywraper #right-section .edit-case-status .special-care input:checked + .slider:before {
  transform: translateX(1.55em);
}
.bodywraper #right-section .edit-case-status .bttr {
  border-radius: 15px;
  border: 1px solid #D5D3D3;
  padding: 15px 20px 15px 20px;
  position: relative;
}
.bodywraper #right-section .edit-case-status .bttr:hover {
  box-shadow: 0px 9px 10px rgba(0, 0, 0, 0.16);
  transition: ease-in-out 0.3s;
}
.bodywraper #right-section .edit-case-status .bttr .mb-38 {
  margin-bottom: 38px;
}
.bodywraper #right-section .edit-case-status .bttr h4 {
  font-size: 0.938vw;
  font-weight: 700;
  color: #000;
  margin: 0;
}
.bodywraper #right-section .edit-case-status .bttr .days-wrap {
  border-top: 1px dashed #D3D5D5;
  display: flex;
  padding-top: 14px;
  justify-content: space-between;
  gap: 10px;
}
.bodywraper #right-section .edit-case-status .bttr .days-wrap .days.active {
  background-color: rgba(135, 219, 28, 0.2);
}
.bodywraper #right-section .edit-case-status .bttr .days-wrap .days.active:before {
  background-color: #A0D959;
}
.bodywraper #right-section .edit-case-status .bttr .days-wrap .days.active div {
  background-color: #A0D959;
  color: #fff;
}
.bodywraper #right-section .edit-case-status .bttr .days-wrap .days {
  width: 14.28%;
  height: 130px;
  border-radius: 50px;
  background-color: rgba(201, 201, 201, 0.21);
  display: flex;
  justify-content: end;
  flex-direction: column;
  position: relative;
}
.bodywraper #right-section .edit-case-status .bttr .days-wrap .days:before {
  height: 10px;
  width: 10px;
  content: "";
  display: block;
  position: absolute;
  background-color: #D9D9D9;
  top: -19px;
  left: 50%;
  border-radius: 50%;
  transform: translateX(-5px);
}
.bodywraper #right-section .edit-case-status .bttr .days-wrap .days div {
  aspect-ratio: 1/1;
  width: 100%;
  border-radius: 50%;
  background-color: rgba(201, 201, 201, 0.22);
  color: #000;
  justify-content: center;
  align-items: center;
  display: flex;
  font-size: 12px;
}
.bodywraper #right-section .task-todo {
  margin-top: 80px;
  padding: 0;
}
.bodywraper #right-section .task-todo h3 {
  font-size: 18px;
  font-weight: 600;
  color: #000;
}
.bodywraper #right-section .task-todo .outer-wrap {
  padding: 20px 15px 5px;
  border: 1.5px dashed hsl(0, 0%, 21.62%);
  border-radius: 19px;
  background: #f5f5f5;
}
.bodywraper #right-section .task-todo .task {
  margin-bottom: 14px;
}
.bodywraper #right-section .task-todo .task .toggle-wrap {
  display: flex;
  border-radius: 15px;
  border: 1px solid #c0c0c0;
  padding: 10px 18px 10px 20px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
  background: #fff;
  box-shadow: 0px 2px 5px #dddddd;
}
.bodywraper #right-section .task-todo .task .toggle-wrap .toggle-flex {
  display: flexd;
  justify-content: center;
  align-items: center;
}
.bodywraper #right-section .task-todo .task .toggle-wrap .name {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  line-height: 14px;
}
.bodywraper #right-section .task-todo .task .toggle-wrap .time-stamp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.bodywraper #right-section .task-todo .task .toggle-wrap .time-stamp span {
  font-size: 14px;
  line-height: 14px;
  margin-bottom: -2px;
}
.bodywraper #right-section .task-todo .task .toggle-wrap .status {
  border-radius: 9px;
  padding: 5px 12px;
  font-size: 12px;
}
.bodywraper #right-section .task-todo .task .toggle-wrap .status.success {
  color: #A1D364;
  border: 1px solid #A1D364;
  background-color: rgba(160, 217, 89, 0.12);
}
.bodywraper #right-section .task-todo .task .toggle-wrap .status.pending {
  color: #6494D3;
  border: 1px solid rgba(100, 148, 211, 0.87);
  background-color: rgba(100, 148, 211, 0.12);
}
.bodywraper #right-section .task-todo .task .toggle-wrap .status.terminated {
  color: #D36464;
  border: 1px solid rgba(211, 100, 100, 0.87);
  background-color: rgba(217, 89, 89, 0.12);
}
.bodywraper #right-section .task-todo .task .toggle-wrap .edit {
  cursor: pointer;
}

#startshift {
  background: rgba(4, 24, 31, 0.43);
}
#startshift .modal-content {
  background-color: transparent;
  border: 0px;
  width: -moz-fit-content;
  width: fit-content;
}
#startshift .modal-content h3 {
  font-size: 50px;
  font-weight: 100;
  text-align: center;
  color: #fff;
  margin-bottom: 10px;
}
#startshift .modal-content .start-btn {
  height: 48px;
  background-color: #36A800;
  color: #fff;
  font-size: 18px;
  border: 0px;
  border-radius: 50px;
}
#startshift .modal-content .start-btn:hover {
  background-color: #3cbe00;
}

#breakmodal .modal-content {
  background-color: transparent;
  border: none;
  height: 355px;
  overflow: hidden;
}
#breakmodal #tracker-details.moved {
  margin-top: -355px;
  transition: margin-top 0.4s ease-in-out;
}
#breakmodal #tracker-details {
  min-width: 262px;
  min-height: 355px;
  background-position: center;
  background-size: cover;
  border-radius: 20px;
  background-color: #fd6011;
  padding: 22px 20px;
  margin-top: 0px;
  z-index: 5;
  transition: margin-top 0.3s ease;
}
#breakmodal #tracker-details .back-btn {
  cursor: pointer;
  opacity: 0.7;
}
#breakmodal #tracker-details .back-btn:hover {
  opacity: 1;
  transition-duration: 0.4s;
}
#breakmodal #tracker-details h3 {
  font-size: 18px;
  color: #fff;
  font-weight: 400;
  margin: 0;
}
#breakmodal #tracker-details ol.details {
  padding-left: 24px !important;
  height: 250px;
  display: block;
  margin-top: 20px;
  margin-bottom: 0px;
  overflow: auto;
}
#breakmodal #tracker-details ol.details li {
  font-size: 14px;
  margin-bottom: 10px;
  color: #fff;
}
#breakmodal #time-tracker {
  min-width: 262px;
  min-height: 355px;
  background-image: url("../uploads/dashboard/break-background.svg");
  background-position: center;
  background-size: cover;
  border-radius: 20px;
  background-color: #FEB626;
  padding: 22px 20px;
}
#breakmodal #time-tracker h3 {
  font-size: 18px;
  color: #fff;
  font-weight: 400;
  margin: 0;
}
#breakmodal #time-tracker .detail-btn {
  cursor: pointer;
  opacity: 0.7;
}
#breakmodal #time-tracker .detail-btn:hover {
  opacity: 1;
  transition-duration: 0.4s;
}
#breakmodal #time-tracker .timer {
  width: 180px;
}
#breakmodal #time-tracker .timer h2 {
  font-size: 46px;
  font-weight: 300;
  color: #fff;
  margin: 0;
  padding-top: 10px;
}
#breakmodal #time-tracker .actionbtns {
  display: flex;
  justify-content: space-between;
  gap: 7px;
}

.userlisting {
  width: calc(100% - 350px);
  height: 100%;
  background-color: rgb(255, 255, 255);
  padding: 30px 40px 40px;
  overflow-y: auto;
}
.userlisting .adduser {
  height: 36px;
  background-color: #000;
  border-radius: 50px;
  border: 0px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 5px 15px;
  font-size: 16px;
  font-weight: 300;
}
.userlisting .userinfo-wrap {
  border: 0.5px solid rgba(0, 0, 0, 0.2);
  border-radius: 15px;
}
.userlisting .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px 12px 13px;
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.2);
}
.userlisting .header .user-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.userlisting .header .user-wrap .user-img img {
  height: 35px;
  width: 35px;
  border-radius: 50px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.userlisting .header .user-wrap span {
  font-weight: bold;
}
.userlisting .header .switch input {
  opacity: 1;
  width: 0;
  height: 0;
}
.userlisting .header .switch {
  font-size: 17px;
  position: relative;
  display: inline-block;
  width: 40px;
  height: 20px;
}
.userlisting .header .slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 22px;
  border-radius: 16px;
  left: 0px;
  top: 0;
  bottom: 0;
  background-color: white;
  transition: 0.4s;
  border: 1px solid #D5D3D3;
  margin: -1px;
}
.userlisting .header input:checked + .slider {
  background-color: rgb(135, 219, 28);
  border: 1px solid rgb(135, 219, 28);
}
.userlisting .header input:checked + .slider:before {
  transform: translateX(1.1em);
}
.userlisting .header .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0px;
  background: #fff;
  transition: 0.4s;
  border-radius: 30px;
  border: 1px solid #D5D3D3;
}
.userlisting .user-detail {
  padding: 18px;
}
.userlisting .user-detail .list {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 13px;
}
.userlisting .user-detail .list:last-child {
  margin-bottom: 0;
}
.userlisting .user-detail .list span {
  color: #000;
  opacity: 0.55;
  line-height: 16px;
}

.userlisting-detail {
  background-color: #F5F5F5;
  height: 100%;
  width: 350px;
  padding: 30px 25px 20px;
}
.userlisting-detail .user-name-block {
  display: flex;
  gap: 15px;
  padding: 5px;
  background: #fff;
  border-radius: 15px;
  border: 1px solid #D5D3D3;
  margin-bottom: 20px;
}
.userlisting-detail .user-name-block .img img {
  height: 75px;
  width: 75px;
  border-radius: 5px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.userlisting-detail .user-name-block .name {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.userlisting-detail .user-name-block .name span {
  font-weight: 600;
  color: #bdbdbd;
}
.userlisting-detail .user-name-block .name h3 {
  font-size: 20px;
  font-weight: 700;
}
.userlisting-detail ul {
  padding-bottom: 8px;
  border-bottom: 1px solid #000000;
  margin-bottom: 20px;
}
.userlisting-detail ul li {
  margin-bottom: 10px;
}
.userlisting-detail ul li .text-green {
  color: #36A800;
}
.userlisting-detail .edituser {
  height: 46px;
  width: 100%;
  border-radius: 50px;
  background-color: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 0px;
  font-weight: 300;
}

.user-roles .row {
  flex-wrap: wrap;
}
.user-roles .row .col {
  max-width: 20%;
  min-width: 20%;
}
.user-roles .row .col .add-roles-card {
  border: 2px dotted rgba(0, 0, 0, 0.1);
  padding: 30px 20px;
  border-radius: 16px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  min-height: 145px;
  cursor: pointer;
}
.user-roles .row .col .add-roles-card:hover {
  transition-duration: 0.4s;
  border: 2px dotted rgb(204, 204, 204);
  background-color: #f5f5f5;
}
.user-roles .row .col .add-roles-card:hover img {
  opacity: 0.8;
}
.user-roles .row .col .add-roles-card img {
  opacity: 0.4;
}
.user-roles .row .col .roles-card {
  padding: 30px 20px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 16px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  min-height: 145px;
  transition: ease-in-out 0.5s;
}
.user-roles .row .col .roles-card:hover {
  box-shadow: 0px 5px 10px #dedede;
}
.user-roles .row .col .roles-card:hover .action-buttons {
  margin-right: 0px;
  transition: ease-in-out 0.5s;
  opacity: 1;
}
.user-roles .row .col .roles-card span {
  font-size: 16px;
  font-weight: 600;
  color: #000;
}
.user-roles .row .col .roles-card .action-buttons {
  width: 34px;
  position: absolute;
  top: 8px;
  right: 0px;
  margin-right: -34px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  opacity: 0;
  transition: ease-in-out 0.5s;
}
.user-roles .row .col .roles-card .action-buttons a {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 50%;
  z-index: 1;
  border: 1px solid rgba(0, 0, 0, 0.2);
  transition: ease-in-out 0.2s;
}
.user-roles .row .col .roles-card .action-buttons a:hover {
  transform: scale(1.1);
  z-index: 2;
  background-color: #000;
  border-color: #000;
}
.user-roles .row .col .roles-card .action-buttons a:hover img {
  filter: invert(1);
}

.input-file {
  line-height: 40px;
  padding-left: 12px !important;
}

.role-item-wrap {
  padding: 15px 23px;
  border-radius: 15px;
  border: 1px solid #dee2e6;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 26px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
  position: relative;
}
.role-item-wrap img {
  max-width: 32px;
}
.role-item-wrap:after {
  content: "";
  display: block;
  height: 40px;
  width: 1px;
  background-color: #dee2e6;
  position: absolute;
  bottom: -40px;
}

.role-listing {
  min-height: 50vh;
  border-radius: 20px;
  border: 1px solid #dee2e6;
  position: relative;
  width: 100%;
  padding: 0px 35px 35px 35px;
}
.role-listing h4 {
  background: rgb(255, 255, 255);
  margin-top: -10px;
  left: 50px;
  font-size: 16px;
  padding: 0px 15px;
  z-index: 10;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 10px;
  font-weight: 700;
}
.role-listing .listing-item {
  background-color: #F4F4F4;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 15px;
}
.role-listing .listing-item label {
  cursor: pointer;
  margin-left: 5px;
}

@media screen and (max-width: 1600px) {
  .user-roles .row {
    flex-wrap: wrap;
  }
  .user-roles .row .col {
    max-width: 25%;
    min-width: 25%;
  }
}
@media screen and (max-width: 1400px) {
  .user-roles .row {
    flex-wrap: wrap;
  }
  .user-roles .row .col {
    max-width: 33.3%;
    min-width: 33.3%;
  }
}
@media screen and (max-width: 1100px) {
  .user-roles .row {
    flex-wrap: wrap;
  }
  .user-roles .row .col {
    max-width: 50%;
    min-width: 50%;
  }
}
@media screen and (min-width: 1200px) {
  .col-xl-20 {
    width: 20%;
  }
}
a.btn.btn-block.add-btn {
  background-color: rgba(135, 219, 28, 0.3);
  color: #78CC0C;
  margin-right: 10px;
}

a.btn.btn-block.add-btn:hover {
  opacity: 0.8;
  transition-duration: 0.4s;
}/*# sourceMappingURL=style.css.map */