@import url("https://fonts.googleapis.com/css2?family=Public+Sans:ital,wght@0,100..900;1,100..900&display=swap");
/*
@font-face { 
  font-family: 'Inter'; 
  font-style: normal; 
  font-display: swap; 
  font-weight: 100 900; 
  src: url(@fontsource-variable/inter/files/inter-latin-wght-normal.woff2) format('woff2-variations'); 
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; 
}

*/
* {
  box-sizing: border-box;
  margin: 0;
  scrollbar-width: thin;
}

:root {
  --color__1: #5a9a2e;
  --color__2: #002b5b;
  --color__3: #3d474d;
  --color__4: #1c2033;
  --color__5: #6fbc44;
  --color__6: #161616;
  --color__7: #eaedf1;
  --color_9: #869199;
  --color_10: #a3a3a3;
  --color__white: #ffffff;
  --body__color: #f6fdf1;
  --border__color: #ced4da;
  --warning: #ffa503;
  --danger: #ff4858;
  --success: #24ad5d;
  --tranitions: all 0.3s ease;
  --body__family: "Public Sans", sans-serif;
  --body__font__size: 14px;
  --font__awesome__family: "Font Awesome 6 Free";
}

.password .eye-icon {
  padding: 10px 10px 10px;
  right: 0px;
  color: #9d9d9d;
}

[class*=fa-eye-] {
  font-size: 14px;
}

.container {
  max-width: 1440px !important;
}

ul,
ol {
  padding: 0;
  margin: 0;
}
ul li,
ol li {
  list-style-type: none;
}

button {
  font-family: var(--body__family);
}

body {
  font-family: var(--body__family);
  font-weight: 400;
  background: var(--body__color);
  font-size: var(--body__font__size);
}

a {
  transition: var(--tranitions);
  text-decoration: none;
}

.btn {
  border: 0;
  height: 49px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  min-width: 105px;
}
.back-button{
  color: var(--color__5);
  margin-left: 5px;
}

.btn-primary {
  background: var(--color__1);
}
.btn-primary:hover {
  background: var(--color__2);
}

.btn-outline-primary {
  background: transparent;
  border: 1px solid var(--color__1) !important;
  color: var(--color__1);
  min-height: 35px;
  padding-inline: 24px;
}
.btn-outline-primary:hover {
  background: var(--color__1);
  color: var(--color__white);
}

.form-item {
  margin-bottom: 20px;
}

.login {
  overflow: hidden;
  background: #ddfec6;
  background: linear-gradient(180deg, rgb(221, 254, 198) 0%, rgb(252, 254, 250) 100%);
  width: 100%;
  height: 100vh;
  position: relative;
}
.login .btm-bg {
  background: url("../images/green-bg.png") repeat-x;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 190px;
  z-index: 1;
}
.login .btm-bg::after {
  position: absolute;
  bottom: 0;
  left: 0px;
  content: "";
  background: url("../images/car.png") no-repeat;
  width: 100%;
  height: 55px;
}
.login .log-container {
  height: calc(100vh - 190px);
}
.login .content {
  width: 411px;
  background-color: var(--color__white);
  height: -moz-fit-content;
  height: fit-content;
  padding: 40px 30px;
  border-radius: 4px;
  position: relative;
  z-index: 2;
}
.login h2 {
  font-size: 24px;
  color: var(--color__3);
  font-weight: 600;
  margin-top: 18px;
}
.login .form {
  padding-top: 35px;
}
.login a {
  color: var(--color__1);
  font-size: 14px;
  margin-top: 3px;
}
.login .login-back i {
  font-size: 14px;
  color: var(--color__1);
}
.login .btn {
  border-radius: 9px;
}

@keyframes moveBackground {
  100% {
    background-position: 3000px;
  }
}
@keyframes car {
  0% {
    background-position: -30%;
  }
  100% {
    background-position: 150%;
  }
}
form label {
  font-size: 14px;
  color: var(--color__4);
  margin-bottom: 4px;
  font-weight: 500;
}

.forgot-pasword .content {
  padding-bottom: 70px;
}

.form-control {
  height: 41px;
  border-radius: 4px;
  border: 1px solid var(--border__color);
}
.form-control:focus {
  outline: 0;
  box-shadow: none;
  border-color: var(--color__1);
}
.form-control:focus {
  color: var(--color__6);
}

header {
  padding-block: 10px;
  border-bottom: 1px solid var(--color__7);
  height: 75px;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background: var(--color__white);
}
header .user img {
  width: 32px;
  height: 32px;
  border-radius: 16px;
}
header .dropdown-menu {
  filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.09));
  border: 1px solid #dadada;
  padding: 15px;
  top: 10px !important;
}
header .dropdown-menu::after {
  position: absolute;
  top: -17px;
  right: 17px;
  content: "";
  border: 10px solid transparent;
  border-bottom-color: #fff;
}
header .dropdown-menu::before {
  position: absolute;
  top: -16px;
  right: 19px;
  content: "";
  border: 8px solid transparent;
  border-bottom-color: #dadada;
}
header .dropdown-menu a {
  color: var(--color__4);
  padding: 7px 0 !important;
  background: transparent !important;
}
header .dropdown-menu a:hover {
  color: var(--color__1);
}
header .dropdown-menu a:hover svg {
  fill: var(--color__1);
}
header .icons-list {
  gap: 18px;
}
header .icons-list button,
header .icons-list .button {
  width: 32px;
  height: 32px;
  border-radius: 16px;
  background-color: var(--color__white);
  border: 1px solid var(--border__color);
  color: var(--color__1);
  font-size: 16px;
  transition: var(--tranitions);
}
header .icons-list button svg,
header .icons-list .button svg {
  fill: var(--color__1);
  transition: var(--tranitions);
}
header .icons-list button:hover, header .icons-list button.active,
header .icons-list .button:hover,
header .icons-list .button.active {
  border-color: var(--color__4) !important;
  background: var(--color__4);
}
header .icons-list button:hover i,
header .icons-list button:hover svg, header .icons-list button.active i,
header .icons-list button.active svg,
header .icons-list .button:hover i,
header .icons-list .button:hover svg,
header .icons-list .button.active i,
header .icons-list .button.active svg {
  color: var(--color__white);
  fill: var(--color__white);
}
header .notifiation-count {
  width: 17px;
  height: 17px;
  border-radius: 9px;
  background-color: #ff0000;
  font-size: 12px;
  top: -6px;
  right: -7px;
}
header .dropdown-toggle {
  font-size: 14px;
  line-height: 30px;
  color: var(--color__4);
}
header .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: var(--font__awesome__family);
  font-weight: bold;
  margin: 0;
  font-size: 11px;
}

.dropdown * {
  font-size: var(--body__font__size);
}

.sidebar {
  max-width: 222px;
  width: 100%;
  height: calc(100vh - 77px);
  transition: var(--tranitions);
  position: sticky;
  top: 75px;
  left: 0;
  transition: var(--tranitions);
  filter: drop-shadow(0px 4px 6.5px rgba(0, 0, 0, 0.13));
}
.sidebar.close {
  max-width: 67px;
  transition: var(--tranitions);
}
.sidebar .navbars {
  padding-block: 50px;
}
.sidebar .navbars li:not(:last-child) {
  margin-bottom: 5px;
}
.sidebar .navbars a {
  font-size: 14px;
  line-height: 30px;
  color: var(--color__3);
  padding: 6px 20px 6px 25px;
  gap: 12px;
  position: relative;
  transition: var(--tranitions);
}
.sidebar .navbars a.active, .sidebar .navbars a:hover {
  background-color: var(--color__5);
  color: var(--color__white);
  font-weight: 500;
  transition: all 0.3s ease;
}
.sidebar .navbars a.active svg,
.sidebar .navbars a.active svg g, .sidebar .navbars a:hover svg,
.sidebar .navbars a:hover svg g {
  fill: var(--color__white) !important;
}
.sidebar .navbars a.active::after, .sidebar .navbars a:hover::after {
  position: absolute;
  left: 0;
  width: 6px;
  height: 100%;
  background-color: #467b21;
  content: "";
}
.sidebar .navbars a [class*=fa-angle-] {
  font-size: 11px;
  transition: var(--tranitions);
}
.sidebar .navbars a[aria-expanded=true] .arrow i {
  transform: rotate(-180deg);
}
.sidebar .sub-menu {
  margin-left: 30px;
}
.sidebar .sub-menu li {
  margin-bottom: 0 !important;
}
.sidebar .sub-menu a {
  display: block;
  line-height: 1.5;
  position: relative;
  margin: 0 26px;
  padding: 5px 20px;
}
.sidebar .sub-menu a::after {
  display: none;
}
.sidebar .sub-menu a::before {
  position: absolute;
  top: 14px;
  left: 0;
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 4px;
  background-color: #b0b0b0;
}
.sidebar .sub-menu a:hover, .sidebar .sub-menu a.active {
  color: var(--color__1);
  background: transparent;
}
.sidebar .sub-menu a:hover::before, .sidebar .sub-menu a.active::before {
  background: #018cf3;
}

.hamburger {
  padding: 8px;
}

.main-container {
  padding-left: 30px;
  padding-bottom: 30px;
  width: 100%;
}
.main-container .content {
  border-radius: 4px;
  filter: drop-shadow(0px 4px 6.5px rgba(0, 0, 0, 0.13));
  padding: 30px 27px;
}
.main-container .content .submit {
  margin-top: 40px;
}

.section-header {
  height: 74px;
}
.section-header h2 {
  line-height: 1;
  color: var(--color__4);
  font-weight: 500;
  margin: 0;
  font-size: 24px;
}
.section-header .btn {
  height: 41px;
  border-radius: 4px;
  border: 1px solid var(--border__color);
  justify-content: center;
}
.section-header .btn:focus {
  outline: 0;
  box-shadow: none;
  border-color: var(--color__1);
}

.current-page {
  color: #616060;
  font-weight: 400;
}

.fa-magnifying-glass {
  border-radius: 0 6px 6px 0;
}

::-moz-placeholder {
  font-size: 14px;
  color: var(--color__3);
  font-weight: 400;
}

::placeholder {
  font-size: 14px;
  color: var(--color__3);
  font-weight: 400;
}

.w-465 {
  width: 465px;
}

.table th {
  vertical-align: middle;
  font-size: 14px;
  color: var(--color__4);
  font-weight: 600;
  padding-block: 13px;
  position: sticky;
  top: 0;
  border-color: #f0f1f7;
}
.table th:first-child {
  padding-left: 33px;
}
.table a {
  color: var(--color__1);
}
.table td {
  color: var(--color__3);
  border-color: #f0f1f7;
  font-weight: 400;
}
.table td:first-child {
  padding-left: 33px;
}
.table tr:last-child td {
  border-bottom: 0 !important;
}

.action-btn {
  width: 21px;
  height: 20px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}
.action-btn.view {
  background-color: #ebf6fc;
  color: #299cdb;
}
.action-btn.view:hover {
  color: #ebf6fc;
  background-color: #299cdb;
}
.action-btn.edit {
  background-color: #ebe8f7;
  color: #845adf;
}
.action-btn.edit:hover {
  color: #ebe8f7;
  background-color: #845adf;
}
.action-btn.send {
  background-color: #e9f8f4;
  color: #26bf94;
}
.action-btn.send:hover {
  color: #e9f8f4;
  background-color: #26bf94;
}
.action-btn.delete {
  background-color: #fde8e4;
  color: #f06548;
}
.action-btn.delete:hover {
  color: #fde8e4;
  background-color: #f06548;
}

.td-gap {
  padding-block: 19px !important;
}

.error {
  color: red;
}

.optional-text {
  font-size: 13px;
  line-height: 24px;
  color: #888589;
  font-weight: 400;
}

h4 {
  font-size: 18px;
  line-height: 30px;
  color: var(--color__white);
  font-weight: 500;
}

.confirmation-modal .modal-header {
  background: var(--color__1);
  height: 45px;
}
.confirmation-modal .btn {
  min-width: inherit;
  font-size: var(--body__font__size);
  max-height: 36px;
  padding: 0 14px;
  display: flex;
  align-items: center;
}

.close-btn {
  position: absolute;
  top: -11px;
  right: -11px;
  background: var(--color__white);
  color: var(--color__1);
  border-radius: 100%;
  width: 32px;
  height: 31px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.close-btn:hover {
  background: var(--color__1);
  color: var(--color__white);
}

.us-state .item {
  width: 24.4%;
  height: 62px;
  border-radius: 5px;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid var(--border__color);
  padding: 12px;
}
.us-state .item p {
  color: var(--color__4);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 90px;
}
.us-state .icons {
  color: var(--color__3);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 16px;
  border: 1px solid var(--border__color);
}
.us-state .icons:hover {
  background-color: var(--color__1);
  color: var(--color__white);
}
.us-state .fa-landmark {
  margin-top: -2px;
}
.us-state .form-check-input {
  width: 54px;
  height: 26px;
  border-radius: 13px;
  background-color: #cbcfd0;
  box-shadow: none;
}
.us-state .violation-content {
  width: 400px;
}
.us-state .violation-title {
  min-width: 265px;
  max-width: 265px;
  margin-right: 10px;
  color: var(--color__3);
}
.us-state .violation-list {
  position: relative;
  padding-left: 22px;
}
.us-state .violation-list:not(:last-child) {
  margin-bottom: 10px;
}
.us-state .violation-list::after {
  position: absolute;
  top: 11px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: var(--color__5);
  content: "";
}
.us-state .violation-list input {
  width: 134px;
  height: 32px;
  border-radius: 5px;
  border: 1px solid var(--border__color);
  background: transparent;
  font-size: 14px;
}
.us-state .accordion-body {
  padding-top: 0;
}

.for-user-informations {
  margin-top: 40px;
}
.for-user-informations p {
  pointer-events: none;
}

.accordion-item {
  border: 0;
  border-left: 8px solid var(--color__5);
  border-radius: 10px !important;
  background: #f5fdf0;
}
.accordion-item:not(:last-child) {
  margin-bottom: 20px;
}
.accordion-header:hover, .accordion-header[aria-expanded=true] {
  color: var(--color__5);
}
.accordion-header::after {
  position: absolute;
  content: "\f107";
  top: 0;
  right: 16px;
  font-family: var(--font__awesome__family);
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  height: 100%;
  transition: var(--tranitions);
}
.accordion-header[aria-expanded=true]::after {
  transform: rotate(-180deg) translate(0);
}

.operations-title {
  padding: 10px 20px;
  font-size: 18px;
  color: var(--color__4);
  font-weight: 500;
  min-height: 60px;
  transition: var(--tranitions);
}
.operations-title .sub-heading {
  margin-top: 3px;
  font-size: 14px;
  color: var(--color__5);
  font-weight: 500;
  display: block;
}

.other-violations h2 {
  font-size: 18px;
  color: var(--color__4);
  font-weight: 500;
}

input[type=checkbox] {
  width: 21px;
  height: 21px;
  border-radius: 2px;
  background-color: transparent;
  border: 1px solid var(--color__3);
  -webkit-appearance: none;
  position: relative;
  cursor: pointer;
}
input[type=checkbox]:checked {
  border: 1px solid var(--color__1);
}
input[type=checkbox]:checked::before {
  content: "";
  position: absolute;
  right: 50%;
  top: 50%;
  width: 6px;
  height: 12px;
  border: solid var(--color__1);
  border-width: 0 2px 2px 0;
  margin: -1px -1px 0 -1px;
  transform: rotate(45deg) translate(-50%, -50%);
  z-index: 1;
}

.form-check input[type=checkbox] {
  cursor: pointer;
  transition: var(--tranitions);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23ffffff'/%3e%3c/svg%3e");
}
.form-check input[type=checkbox]:checked {
  background-color: var(--color__1);
}
.form-check input[type=checkbox]:checked::before {
  display: none;
}

.logo-cont {
  width: 222px;
}

.page-url {
  color: var(--color__5);
}

#alerts-container {
  position: fixed;
  top: 10px;
  z-index: 99999;
  left: 50%;
  transform: translateX(-50%);
  max-width: 500px;
}
#alerts-container .alert {
  border: 0;
  min-width: 437px;
  border-left-width: 6px;
  line-height: 1.4;
  padding: 11px;
}
#alerts-container .alert:not(:last-child) {
  margin-bottom: 5px;
}
#alerts-container i {
  font-size: 22px;
}
#alerts-container .alert-danger {
  color: var(--danger);
  border-left: 6px solid var(--danger);
  background: #ffe0e3;
}
#alerts-container .alert-success {
  color: var(--success);
  border-left: 6px solid var(--success);
  background: #c3f3d7;
}
#alerts-container .alert-warning {
  color: var(--warning);
  border-left: 6px solid var(--warning);
  background: #fceccf;
}
#alerts-container .fa-circle-xmark {
  cursor: pointer;
  transition: var(--tranitions);
}
#alerts-container .fa-circle-xmark:hover {
  color: var(--color__3);
}

.lawer-details {
  color: var(--color__4);
  font-weight: 500;
  filter: drop-shadow(0px 4px 6.5px rgba(0, 0, 0, 0.13));
  width: calc(100% - 325px);
}

.tab {
  background: #f1f2f2;
  padding-inline: 18px;
  gap: 18px;
}
.tab .nav-link {
  color: var(--color__4);
  background: transparent !important;
  padding-block: 20px;
  position: relative;
  margin: 0;
  font-size: 15px;
}
.tab .nav-link.active {
  color: var(--color__5) !important;
  border-bottom: 1px solid var(--color__5) !important;
}

.lawer-info {
  max-width: 325px;
  padding: 40px 30px;
  filter: drop-shadow(0px 4px 6.5px rgba(0, 0, 0, 0.13));
}
.lawer-info .title {
  font-size: 18px;
  color: var(--color__3);
  font-weight: 500;
  line-height: 1.3;
}
.lawer-info .username {
  font-size: 14px;
  color: var(--color__1);
  line-height: 1.3;
}
.lawer-info h5 {
  font-size: 14px;
  font-weight: 400;
}
.lawer-info h6 {
  font-size: 12px;
  line-height: 22px;
  color: var(--color__1);
  font-weight: 400;
}
.lawer-info .list:not(:last-child) {
  margin-bottom: 12px;
}
.lawer-info .icon {
    height: 65px;
    object-fit: contain;
}
.lawer-info .user-img {
  width: 121px;
  height: 122px;
  border-radius: 50%;
}

.select2 {
  width: 100%;
  height: 41px;
  border-radius: 4px;
  border: 1px solid var(--border__color);
}
.select2:focus {
  outline: 0;
  box-shadow: none;
  border-color: var(--color__1);
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 40px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100%;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  display: none;
}
.select2-container--default .select2-selection--single .select2-selection__arrow::after {
  content: "\f107";
  position: absolute;
  inset: 0 10px auto auto;
  font-family: var(--font__awesome__family);
  font-weight: 600;
  color: var(--color_10);
  inset: auto 10px 10px auto;
}

.select2-container--default .select2-selection--single {
  border: 0;
  height: 100%;
}

.select2-dropdown {
  border: 1px solid var(--border__color);
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: var(--color__5);
  color: white;
}

.tickets .nav-tabs {
  background-color: var(--color__1);
  overflow: hidden;
  border-radius: 4px 4px 0 0;
  border: 0 !important;
}
.tickets .nav-link {
  color: var(--color__white);
  border: 0 !important;
  font-size: 16px;
  font-weight: 500;
  border-radius: 0;
  padding-inline: 33px;
}
.tickets .nav-link.active, .tickets .nav-link:hover {
  color: var(--color__1);
  background: var(--color__white);
}
.tickets h5 {
  font-size: 12px;
  font-weight: 400;
  color: var(--color__1);
}

.ticket-header {
  padding: 35px 30px;
  filter: drop-shadow(0px 4px 6.5px rgba(0, 0, 0, 0.13));
}
.ticket-header h4 {
  font-size: 18px;
  line-height: 22px;
  color: var(--color__3);
  font-weight: 500;
}
.ticket-header .state {
  color: var(--color_10);
  font-size: 14px;
}
.ticket-header p {
  font-size: 14px;
}
.ticket-header .user-img {
  width: 121px;
  height: 122px;
}

.gap-6 {
  gap: 50px;
}

.ticket-details-info {
  padding: 50px 30px;
  filter: drop-shadow(0px 4px 6.5px rgba(0, 0, 0, 0.13));
}
.ticket-details-info .first {
  width: 180px;
}
.ticket-details-info .second {
  width: 320px;
}
.ticket-details-info .third {
  width: 240px;
}
.ticket-details-info .four {
  width: 160px;
}
.ticket-details-info .five {
  width: -moz-fit-content;
  width: fit-content;
}
.ticket-details-info .assign-heading {
  font-size: 16px;
  line-height: 38px;
  color: var(--color__4);
  font-weight: 600;
  padding-left: 15px;
  position: relative;
}
.ticket-details-info .assign-heading::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--color__5);
  content: "";
}

.assigning-form .form-item {
  width: 380px;
}
.assigning-form .table-responsive {
  height: 232px;
  border-radius: 5px;
  border: 1px solid var(--border__color);
}
.assigning-form .lawyers-lists .table th:first-child {
  padding-left: 60px;
}
.assigning-form .lawyers-lists .items {
  gap: 20px;
  padding-left: 20px;
}

input[type=radio] {
  width: 20px;
  height: 20px;
  border-radius: 10px;
  border: 1px solid var(--border__color);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  transition: var(--tranitions);
}
input[type=radio]:checked {
  background: var(--color__1) !important;
  border: 3px solid #fff !important;
  outline: 1px solid var(--color__1);
}

.loader {
  width: 25px;
  padding: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #6fbc44;
  --_m: conic-gradient(#0000 10%, #000), linear-gradient(#000 0 0) content-box;
  -webkit-mask: var(--_m);
  mask: var(--_m);
  -webkit-mask-composite: source-out;
  mask-composite: subtract;
  animation: l3 1s infinite linear;
}

@keyframes l3 {
  to {
    transform: rotate(1turn);
  }
}/*# sourceMappingURL=style.css.map */