:root {
  --primary: #5cac44;
  --primary-hover: #2ea50d;
  --primary-solid: #5cac442e;
  --secondary: #f39200;
  --secondary-hover: #ff9f0e;
  --tertiary: #008df1;
  --tertiary-hover: #0082df;
  --observation: #813ab7;
  --resistance: #f32152;
  --font-black: Gilroy-Black;
  --font-bold: Gilroy-Bold;
  --font-semibold: Gilroy-Semibold;
  --font-medium: Gilroy-Medium;
  --font-heavy: Gilroy-Heavy;
  --font-regular: Gilroy-Regular;
  --font-light: Gilroy-Light;
  --font-thin: Gilroy-Thin;
  --font-ultralight: Gilroy-UltraLight;
  --color-0: #f8f9fa;
  --color-1: #f1f3f5;
  --color-2: #e9ecef;
  --color-3: #dee2e6;
  --color-4: #ced4da;
  --color-5: #adb5bd;
  --color-6: #868e96;
  --color-7: #495057;
  --color-8: #343a40;
  --color-9: #212529;
  --shadow-xs: 0px 4px 8px rgba(0, 0, 0, 0.12);
  --shadow-sm: 0 5px 10px rgba(0, 0, 0, 0.12);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 30px 60px rgba(0, 0, 0, 0.12);
  --shadow-hover: 0 30px 60px rgba(0, 0, 0, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
}

h1,
h2,
h3,
h4,
a,
p,
span {
  font-family: var(--font-medium);
  font-weight: 400;
  font-style: unset;
  outline: none !important;
}

html {
  font-family: sans-serif;
  line-height: 1.5;
  font-size: 20px;
  scroll-behavior: smooth;
}

body {
  padding: 0;
  margin: 0;
  font-family: var(--font-regular);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}

.layout {
  display: block;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  display: flex;
  width: 100%;
  transition: all 300ms ease;
  border-bottom: 1px solid var(--color-1);
  z-index: 9999;
  background: white;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding-left: 25px;
  padding-right: 25px;
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 350ms ease;
  color: var(--primary);
}

.d-header-notification {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  padding: 10px;
  border: 1px solid var(--color-2);
  border-radius: 10px;
  width: 40px;
  height: 38px;
  color: var(--color-5);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0, 0, 0.2, 1);
}

.d-header-notification:hover {
  border: 1px solid var(--primary);
  color: var(--primary);
}

.d-header-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  padding: 10px;
  border: 0.1rem solid var(--color-2);
  border-radius: 10px;
  width: 40px;
  height: 38px;
  color: var(--color-5);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0, 0, 0.2, 1);
}

.d-header-preview:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.d-header-user {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.d-header-user-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  overflow: hidden;
  cursor: pointer;
  user-select: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-2);
  color: var(--color-5);
  line-height: normal;
}

.d-header-user-avatar:hover {
  opacity: 0.8;
  border-color: var(--primary);
}

.d-header-user-avatar img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: center;
  user-select: none;
  pointer-events: none;
}

.d-header-search {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 40px;
  border: 1px solid var(--color-2);
  border-radius: 10px;
  user-select: none;
  width: 250px;
  position: relative;
  overflow: hidden;
  transition: all 350ms ease;
  margin-right: 1rem;
}

.d-header-search-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0.6rem;
  background: transparent;
  color: rgb(26 26 26 / 42%);
  line-height: normal;
  top: 0;
  bottom: 0;
  transition: all 350ms ease;
}

.d-header-search-target {
  border: none;
  height: inherit;
  width: 100%;
  appearance: none;
  user-select: none;
  padding-left: 40px;
  outline: none;
  color: var(--color-5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 5px;
  transition: all 350ms ease;
}

.d-header-user-drop {
  position: absolute;
  top: 42px;
  background: white;
  border-radius: 6px;
  width: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  right: 0px;
  box-shadow: var(--shadow-sm);
  z-index: 40;
  transform: scale(0.5);
  transition: all 150ms linear;
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  overflow: hidden;
}

.d-header-user-drop.opened {
  transform: scale(1);
  transition: all 150ms linear;
  visibility: visible;
  pointer-events: all;
  opacity: 1;
}

.d-header-user-drop-item {
  width: 100%;
  padding: 10px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-5);
  cursor: pointer;
  user-select: none;
  appearance: none;
  font-family: var(--font-bold);
}

.d-header-user-drop:before {
  content: "";
  width: 15px;
  height: 15px;
  background: white;
  position: absolute;
  top: -7px;
  right: 13px;
  transform: rotate(45deg);
  z-index: -1;
  box-shadow: 0 0 22px var(--color-2);
}

.d-header-user-drop-item:hover {
  color: var(--color-6);
  background: var(--color-0);
}

.side-menu {
  position: fixed;
  left: 0;
  top: 60px;
  bottom: 0;
  width: 200px;
  height: calc(100% - 60px);
  transition: all 200ms ease;
  border-right: 1px solid var(--color-1);
  z-index: 9999;
  user-select: none;
  overflow-y: auto;
  background-color: white;
}

.side-menu::-webkit-scrollbar {
  width: 10px;
}

.side-menu::-webkit-scrollbar-track {
  background: #f9f9f9;
  border-radius: 0px;
}

.side-menu::-webkit-scrollbar-thumb {
  background: #e1e3e6;
  border-radius: 0px;
}

.side-menu::-webkit-scrollbar-thumb:hover {
  background: #cfd1d3;
  border-radius: 0px;
}

.side-menu-list {
  display: flex;
  flex-direction: column;
  padding: 10px;
  justify-content: center;
  align-items: center;
}

.side-menu-item {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
}

.side-menu-item-btn {
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  flex-direction: row;
  text-align: center;
  position: relative;
  text-decoration: none;
  justify-content: space-between;
  background: transparent;
  color: var(--color-9);
  border-radius: 10px;
  font-family: var(--font-medium);
  margin-bottom: 8px;
  transition: all 200ms ease-in-out;
  padding-left: 10px;
  padding-right: 10px;
}

.side-menu-item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.side-menu-item .icon svg {
  width: 24px;
}

.side-menu-item .title {
  font-size: 15px;
  font-family: var(--font-regular);
  font-weight: 900;
}

.side-menu-drop {
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
}

.side-menu-drop .side-menu-item-btn:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 2px;
  background: #cfd0d4;
  left: -10px;
}

.side-menu-logout {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 10px;
}

.side-menu-logout a {
  margin: 0;
}

.main {
  position: absolute;
  padding-top: 60px;
  padding-left: 200px;
  width: 100%;
  height: 100%;
  background-color: rgb(245, 245, 245);
  overflow-x: hidden;
}

.main-container {
  padding: 15px;
  width: 100%;
  height: auto;
}

.main-container.p-0 {
  padding: 0 !important;
}

.products {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  position: relative;
  align-items: flex-start;
}

.product-card {
  position: relative;
  width: 23.7%;
  height: auto;
  display: flex;
  flex-direction: column;
  border: 1px solid #eee;
  border-radius: 10px;
  background: white;
  margin-right: 20px;
  margin-bottom: 20px;
}

.product-card:hover {
  border-radius: 10px 10px 0 0;
  border-bottom: 0;
  box-shadow: 0 0 10px #0000000f;
}

.product-card:nth-child(4n) {
  margin-right: 0px;
}

.product-card-image {
  width: 100%;
  position: relative;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  background: transparent;
  margin-bottom: 8px;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  user-select: none;
  pointer-events: none;
}

.product-card-content {
  width: 100%;
  position: relative;
  transition: all 200ms ease;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
}

.product-card-content .brand {
  font-size: 14px;
  line-height: normal;
  letter-spacing: -0.1px;
  user-select: none;
  margin-bottom: 1px;
  font-weight: bold;
  color: var(--color-8);
}

.product-card-content .title {
  font-size: 17px;
  font-family: var(--font-semibold);
  line-height: 1.4;
  letter-spacing: -0.1px;
  user-select: none;
  margin-bottom: 5px;
  font-weight: bold;
  color: var(--color-9);
}

.product-card-content .price {
  font-size: 16px;
  font-family: var(--font-semibold);
  line-height: 1.4;
  letter-spacing: -0.1px;
  user-select: none;
  font-weight: bold;
  color: var(--primary);
}

.product-card-content .price svg {
  margin-right: 3px;
}

.product-card-extend {
  width: 100.5%;
  padding: 10px;
  display: none;
  align-items: center;
  transition: all 200ms ease;
  position: absolute;
  bottom: -55px;
  background: white;
  border-radius: 0 0 10px 10px;
  border: 1px solid #eee;
  border-top: 0;
  left: -1px;
  right: 0;
  z-index: 10;
  box-shadow: 0 5px 10px #0000000f;
}

.product-card:hover .product-card-extend {
  display: flex;
}

.product-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 8px;
  text-decoration: none;
  color: white;
  border-radius: 10px;
  line-height: normal;
  user-select: none;
  border: none;
  font-size: 14px;
  cursor: pointer;
  transition: all 200ms linear;
  margin-right: 12px;
  height: 34px;
}

.product-btn:last-child {
  margin-right: 0px;
}

.product-btn svg {
  width: 18px;
  user-select: none;
  overflow: hidden;
  margin-right: 6px;
}

.product-btn.edit {
  background: var(--primary);
}

.product-btn.edit:hover {
  background: var(--primary-hover);
}

.product-btn.view {
  background: var(--secondary);
}

.product-btn.view:hover {
  background: var(--secondary-hover);
}

.main-header {
  display: flex;
  align-items: center;
  line-height: normal;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 20px;
  position: relative;
}

.main-header-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
}

.main-header-wrap .btn {
  margin-right: 10px;
}

.main-header-wrap .btn:last-child {
  margin-right: 0;
}

.main-header h1 {
  font-size: 28px;
  color: var(--color-9);
  font-family: var(--font-bold);
  display: flex;
  align-items: center;
}

.main-header .form-header-back {
  color: var(--color-8);
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  text-decoration: none;
  user-select: none;
  cursor: pointer;
  appearance: none;
  transition: all 150ms linear;
  background: var(--primary);
  color: white;
  border-radius: 15px;
  line-height: 1;
  font-size: 16px;
  position: relative;
  width: fit-content;
  text-align: center;
  border: none;
  height: 44px;
  margin-right: 10px;
}

.aks-material-delete {
  display: none !important;
  padding: 7.5px;
  height: 25px;
}

.aks-crossing-material:hover .aks-material-delete {
  display: flex !important;
}

.aks-crossing-material {
  justify-content: space-between !important;
}

.action-row .btn {
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px !important;
  margin-right: 5px;
}

.d-table-body .action-row .btn {
  width: 40px;
  height: 40px;
}

.amean-table .action-row .btn > *:first-child {
  width: 15px;
  height: 15px;
}

.btn.w-auto {
  width: auto !important;
}

.btn:last-child {
  margin-right: 0;
}

.btn .btn-wrap {
  display: flex;
  align-items: center;
  margin-right: 6px;
}

.btn .btn-wrap:last-child {
  margin-right: 0px;
}

.btn:hover,
.btn:focus {
  background: var(--primary);
  opacity: 0.8;
}

.btn.disabled {
  background: var(--color-4) !important;
  pointer-events: none;
}

.btn.observation {
  background: var(--observation);
}

.btn.observation:hover,
.btn.observation:focus {
  background: var(--observation);
  opacity: 0.8;
}
.btn.add_observation {
  background: var(--primary);
}

.btn.add_observation:hover,
.btn.add_observation:focus {
  background: var(--primary);
  opacity: 0.8;
}

.btn.resistance {
  background: var(--resistance);
}

.btn.resistance:hover,
.btn.resistance:focus {
  background: var(--resistance);
  opacity: 0.8;
}

.btn.tree {
  background: var(--primary);
}

.btn.tree:hover,
.btn.tree:focus {
  opacity: 0.8;
}

.btn.edit {
  background: #0b6fff;
}

.btn.edit:hover,
.btn.edit:focus {
  background: #0b6fff;
  opacity: 0.8;
}

.btn.delete {
  background: #ef092a;
}

.btn.delete:hover,
.btn.delete:focus {
  background: #ef092a;
  opacity: 0.8;
}

.btn.secondary {
  background: var(--secondary);
}

.btn.secondary:hover,
.btn.secondary:focus {
  background: var(--secondary);
  opacity: 0.8;
}

.btn.blue-100 {
  background: #2196f3;
}

.btn.blue-100:hover,
.btn.blue-100:focus {
  background: #2196f3;
  opacity: 0.8;
}

.btn.photo {
  overflow: inherit;
  padding: 0;
  height: 44px;
  width: 54px;
}

.btn.photo .aks-picture {
  width: 100% !important;
  height: 100% !important;
}

.btn.photo img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  object-position: center;
  user-select: none;
  pointer-events: none;
  border-radius: 10px;
}

.btn .count {
  position: absolute;
  z-index: 1;
  border-radius: 9999px;
  background: var(--primary);
  padding: 4px;
  font-size: 11px;
  height: 22px;
  width: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-weight: 900;
  top: -6px;
  right: -6px;
  box-shadow: var(--shadow-sm);
  font-family: var(--font-medium);
}

.btn.photo {
  background: #009688;
}

.btn.photo:hover,
.btn.photo:focus {
  background: #009688;
  opacity: 0.8;
}

.btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 6px;
  position: relative;
}

.btn-edit {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  text-decoration: none;
  user-select: none;
  cursor: pointer;
  appearance: none;
  transition: all 150ms linear;
  background: var(--tertiary);
  color: white;
  border-radius: 10px;
  line-height: 1;
  outline: none;
  overflow: hidden;
  font-size: 16px;
  position: relative;
  width: fit-content;
  height: 45px;
  text-align: center;
}

.btn-edit:hover,
.btn-edit:focus {
  background: var(--tertiary-hover);
}

.btn-edit.secondary {
  background: var(--secondary);
}

.btn-edit.secondary:hover {
  background: var(--secondary-hover);
}

.btn-edit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 6px;
  position: relative;
}

.btn-edit-icon svg {
  width: 22px;
}

.btn-delete {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  text-decoration: none;
  user-select: none;
  cursor: pointer;
  appearance: none;
  transition: all 150ms linear;
  background: #ff0000;
  color: white;
  border-radius: 10px;
  line-height: 1;
  outline: none;
  overflow: hidden;
  font-size: 16px;
  position: relative;
  width: fit-content;
  height: 45px;
  text-align: center;
}

.btn-delete:hover,
.btn-delete:focus {
  background: #e00015;
}

.btn-delete-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.btn .btn-title {
  display: flex;
  align-items: center;
}

.btn .btn-title .arrow {
  display: flex;
  align-items: center;
  margin-left: 5px;
}

.aks-dropdown {
  margin-right: 10px;
  position: relative;
}

.aks-dropdown.full {
  position: inherit;
}

.aks-dropdown.full .aks-dropdown-container.opened {
  width: 100%;
}

.aks-dropdown-text {
  font-size: 16px;
  margin-bottom: 8px;
  font-family: var(--font-medium);
  color: var(--color-7);
  user-select: none;
  line-height: 1;
  font-weight: 800;
}

.aks-dropdown:last-child {
  margin-right: 0;
}

.aks-dropdown .btn {
  margin-right: 0;
  justify-content: flex-start;
  width: 100%;
}

.aks-dropdown .btn.active {
  border-radius: 10px 10px 0 0;
}

.aks-dropdown-container {
  width: 400px;
  position: absolute;
  right: 0;
  background: white;
  padding: 20px;
  border-radius: 10px 0 10px 10px;
  z-index: 40;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all 0.2s ease;
  display: none;
  height: 0;
}

.pag-dropdown .aks-dropdown-container {
  width: 100px;
  left: -25px;
  bottom: 0;
}

.material-page .aks-dropdown-container.lg {
  width: 500px;
}

.aks-dropdown-container.opened {
  display: block;
  height: auto;
}

.aks-dropdown-container .filter-form .aks-forms {
  position: relative;
  top: 0;
  padding: 0px;
  box-shadow: none;
  width: 100%;
  border-radius: 0px;
}

.aks-dropdown-container .filter-form .aks-forms .aks-form-row-group .aks-form {
  margin-right: 8px;
}

.aks-dropdown-container
  .filter-form
  .aks-forms
  .aks-form-row-group
  .aks-form:last-child {
  margin-right: 0px;
}

.aks-dropdown.filtered a .btn-icon svg path {
  fill: white;
}

.filter-search {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 40px;
  border: 1px solid var(--color-1);
  border-radius: 10px;
  user-select: none;
  width: 100%;
  position: relative;
  overflow: hidden;
  transition: all 350ms ease;
  background: var(--color-0);
  margin-bottom: 15px;
}

.filter-search .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0.6rem;
  background: transparent;
  color: rgb(26 26 26 / 42%);
  line-height: normal;
  top: 0;
  bottom: 0;
  transition: all 350ms ease;
}

.filter-search .input {
  border: none;
  height: inherit;
  width: 100%;
  appearance: none;
  user-select: none;
  padding-left: 40px;
  outline: none;
  color: var(--color-5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 5px;
  transition: all 350ms ease;
  background: transparent;
}

.filter-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  text-decoration: none;
  user-select: none;
  cursor: pointer;
  appearance: none;
  transition: all 0.2s linear;
  background: var(--primary);
  color: white;
  border-radius: 10px;
  line-height: normal;
  outline: none;
  overflow: hidden;
  font-size: 16px;
  position: relative;
  text-align: center;
  border: none;
  width: 100%;
  height: 40px;
}

.filter-btn:hover,
.filter-btn:focus {
  background: var(--primary-hover);
}

.aks-dropdown-container .btn {
  height: 40px;
  width: 100%;
  margin-bottom: 15px;
  text-align: center;
  background: var(--secondary);
}

.pag-dropdown .aks-dropdown-container .btn {
  display: flex;
  justify-content: center;
  align-items: center;
}

.aks-dropdown-container .btn:hover {
  background: var(--secondary-hover);
}

.aks-dropdown-container .btn:last-child {
  margin-bottom: 0px;
}

.form-header {
  display: flex;
  align-items: flex-start;
  line-height: normal;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 10px;
  position: relative;
  background: var(--primary);
  height: 160px;
  padding: 24px;
}

.form-header.tab-header {
  height: 180px;
}

.form-header-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.form-header-wrap h1 {
  font-size: 35px;
  color: white;
  font-family: var(--font-bold);
  display: flex;
  align-items: center;
  user-select: none;
}

.form-header-wrap .btn {
  background: white;
  color: var(--primary);
}

.form-header-wrap .btn-delete:hover {
  opacity: 0.9;
}

.aks-forms {
  position: relative;
  top: -80px;
  background: white;
  width: 96%;
  margin: 0 auto;
  padding: 40px 34px;
  border-radius: 10px;
  box-shadow: 0 0px 10px rgb(0 0 0 / 17%);
}

@media only screen and (max-width: 600px) {
  .aks-forms {
    top: -10; 
  }
}

.material-page .aks-forms {
  /* background-color: transparent; */
}

.aks-forms.selection-form {
  /* background-color: transparent; */
}

.aks-crossing-form .aks-form.group {
  border: none !important;
}

.form-header-back {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  width: fit-content;
  cursor: pointer;
  transition: all 200ms ease;
  user-select: none;
  appearance: none;
  margin-right: 10px;
}

.form-header-back:hover {
  opacity: 0.7;
}

.aks-forms .aks-form:last-child {
  margin-bottom: 0;
}

.table-container {
  display: block;
  overflow-x: auto;
  white-space: nowrap;
  height: calc(100vh - 150px);
  overflow-y: auto;
}

.table-container .d-table {
  white-space: nowrap;
}

.d-table {
  border-collapse: collapse;
  width: 100%;
  height: auto;
}

.d-table-top-header {
  width: 100%;
  background: var(--primary);
  color: white;
}

.d-table-top-header th {
  padding: 10px;
  font-family: var(--font-medium);
  text-align: left;
  border-right: 1px solid var(--color-1);
}

.d-table thead {
  text-align: left;
  width: 100%;
  background: var(--color-0);
  border: 1px solid var(--color-1);
}

.d-table thead.fix {
  position: sticky;
  z-index: 15;
  top: 0;
}

.d-table-header {
  width: 100%;
  background: var(--eight);
  position: relative;
}

.d-table-header th {
  padding: 10px;
  color: var(--five);
  font-family: var(--font-light);
  text-align: left;
  border-right: 1px solid var(--color-1);
}

.d-table td {
  padding: 10px;
  border-right: 1px solid var(--color-1);
}

.d-table td input {
  margin: 0 auto !important;
}

.d-table td.not-found-tr {
  padding: 0;
  border: 1px solid var(--color-1);
  border-top: none;
}

.d-table td a.link {
  color: #0083f6;
  text-decoration: none;
  transition: all 0.2s ease;
}

.d-table td a.link:hover {
  opacity: 0.8;
}

.d-table .not-found {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  font-size: 16px;
  color: var(--color-9);
  font-family: var(--font-medium);
}

.d-table tr:nth-child(2n) td {
  background: var(--color-0);
}

.d-table-body {
  border: 1px solid var(--color-1);
  height: 70px;
  width: 100% !important;
  background: white;
  font-size: 15px;
}

.d-table-body-selections {
  border: 1px solid var(--color-1);
  height: 85px;
  width: 100% !important;
  background: white;
  font-size: 13px;
}


/* ==================== GENEL (masaüstü + mobil) =================== */
/* Quantity = 5. sütun  */
.mobile-scroll .d-table th:nth-child(5),
.mobile-scroll .d-table td:nth-child(5){
    min-width: 80px !important;   /* masaüstünde de daralamaz        */
    text-align: center;
}

.mobile-scroll .d-table td:nth-child(5) input{
    width: 100%   !important;     /* hücreyi doldur                  */
    max-width: 80px !important;   /* 80 px sınır                     */
    min-width: 60px !important;   /* emniyet                         */
    text-align: center;
    box-sizing: border-box;
}

/* ==================== YALNIZ MOBİL (isterseniz kısaltın) ========= */
@media (max-width: 992px){

    .mobile-scroll .d-table th:nth-child(5),
    .mobile-scroll .d-table td:nth-child(5){
        min-width: 90px !important;   /* mobilde biraz daha esnek      */
        padding-left: 4px !important;
        padding-right: 4px !important;
    }

    .mobile-scroll .d-table td:nth-child(5) input{
        max-width: 80px !important;   /* mobilde de 70-80 px arası     */
    }
}

/* Quantity sütunundaki input’u serbest bırak */
.mobile-scroll .d-table td:nth-child(5) input{
    width: auto !important;      /* spinner + sayı kadar büyüsün      */
    min-width: 60px !important;  /* güvenlik: 2-3 basamaklık alan     */
    max-width: none !important;  /* 90 px sınırını kaldırdık          */
    padding: 2px 4px !important; /* hücrede yine ortalı dursun        */
    text-align: center;
    margin: 0 auto;              /* hücre içinde ortala               */
}









.d-table tr td.fix {
  position: sticky;
  left: var(--left);
  z-index: 10;
  background-color: white;
}

.d-table tr th.fix {
  position: sticky;
  left: var(--left);
  z-index: 10;
  background-color: #f8f9fa;
}

.d-table tr:nth-child(2n) td {
  background: var(--color-0);
}

.d-table-body.added td {
  background: var(--primary) !important;
  color: white;
}

.d-table-body.added td .row .copy {
  color: white;
}

.d-table tr td .row {
  display: flex;
  align-items: center;
  line-height: 1;
}

.d-table tr td .row span {
  margin-left: 8px;
  margin-right: 8px;
}

.d-table tr td .row span:last-child {
  margin-right: 0;
}

.d-table tr td .row .copy {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 5px;
  user-select: none;
  cursor: pointer;
  color: var(--color-7);
  transition: all 0.2s ease-in-out;
}

.d-table tr td .row .copy:active {
  transform: scale(0.7);
}

.d-table tr td .row .copy:hover {
  color: var(--color-8);
}

.status-dot {
  width: 15px;
  height: 15px;
  background: #e2e2e2;
  border-radius: 9999px;
  margin: 0 auto;
}

.status-dot.publish {
  background: green;
}

.status-dot.unpublished {
  background: red;
}

.status-dot.draft {
  background: orange;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

.d-table-body .action-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.d-table-body .btn-edit {
  margin-right: 10px;
}

.d-table-body .btn-edit:last-child {
  margin-right: 0;
}

.d-user-image {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  position: relative;
  overflow: hidden;
}

.d-user-name {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  position: relative;
  overflow: hidden;
  background: #71a0ff5c;
  color: #0055ff;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-align: center;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.5px;
  user-select: none;
}

.pagination-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  /* margin-top: 30px; */
  position: sticky;
  bottom: 0;
  z-index: 39;
  background: white;
  padding-top: 10px;
  border-radius: 0px 0px 10px 10px;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 0.8rem 2rem rgb(90 97 129 / 5%);
  width: fit-content;
  padding: 0;
}

.pagination .page-input {
  width: min-content;
  padding: 5px;
  font-size: 16px;
  color: black;
  border: 2px solid var(--primary);
  font-weight: 800;
  outline-width: 0;
  border-radius: 10px;
  text-align: center;
  max-width: 80px;
}

.pagination-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}

.pagination-btn.active {
  pointer-events: all;
}

.pagination-btn a {
  color: #cdd5f7;
  width: 26px;
  height: 26px;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 8px;
  font-size: 14px;
}

.pagination-btn.active a {
  color: var(--color-8);
}

.pagination-btn a svg {
  width: 22px;
}

.pagination-item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pagination-item a {
  width: 26px;
  height: 26px;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 8px;
  font-size: 14px;
  text-decoration: none;
  outline: none;
  appearance: none;
  cursor: pointer;
  line-height: 1;
  color: var(--color-9);
}

.pagination-item.active a {
  color: #ffffff;
  background: var(--primary);
  font-weight: 600;
  border: 1px solid var(--primary);
}

[tooltip] {
  position: relative;
}

[tooltip]::before,
[tooltip]::after {
  text-transform: none;
  font-size: 0.9em;
  line-height: 1;
  user-select: none;
  pointer-events: none;
  position: absolute;
  display: none;
  opacity: 0;
}

[tooltip]::before {
  content: "";
  border: 5px solid transparent;
  z-index: 1001;
}

[tooltip]::after {
  content: attr(tooltip);
  font-family: "Segoe UI", Arial, sans-serif;
  text-align: center;
  min-width: 3em;
  max-width: 21em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0.5em 1em;
  border-radius: 5px;
  box-shadow: 0 1em 2em -0.5em rgba(0, 0, 0, 0.35);
  background: #020204;
  color: #fff;
  z-index: 1000;
}

[tooltip]:hover::before,
[tooltip]:hover::after {
  display: block;
}

[tooltip=""]::before,
[tooltip=""]::after {
  display: none !important;
}

[tooltip]:not([flow])::before,
[tooltip][flow^="up"]::before {
  bottom: 100%;
  border-bottom-width: 0;
  border-top-color: #111;
}

[tooltip]:not([flow])::after,
[tooltip][flow^="up"]::after {
  bottom: calc(100% + 5px);
}

[tooltip]:not([flow])::before,
[tooltip]:not([flow])::after,
[tooltip][flow^="up"]::before,
[tooltip][flow^="up"]::after {
  left: 50%;
  transform: translate(-50%, -0.5em);
}

[tooltip]:not([flow])::before,
[tooltip][flow^="up-left"]::before {
  bottom: 100%;
  border-bottom-width: 0;
  border-top-color: #111;
}

[tooltip]:not([flow])::after,
[tooltip][flow^="up-left"]::after {
  bottom: calc(100% + 5px);
}

[tooltip]:not([flow])::before,
[tooltip][flow^="up-left"]::before {
  left: 25%;
}

[tooltip]:not([flow])::after,
[tooltip][flow^="up-left"]::after {
  left: 50%;
}

[tooltip]:not([flow])::before,
[tooltip][flow^="up-right"]::before {
  bottom: 100%;
  border-bottom-width: 0;
  border-top-color: #111;
}

[tooltip]:not([flow])::after,
[tooltip][flow^="up-right"]::after {
  bottom: calc(100% + 5px);
}

[tooltip]:not([flow])::before,
[tooltip][flow^="up-right"]::before {
  left: 75%;
  transform: translate(-50%, -0.5em);
}

[tooltip]:not([flow])::after,
[tooltip][flow^="up-right"]::after {
  left: 50%;
  transform: translate(-50%, -0.5em);
}

[tooltip][flow^="down"]::before {
  top: 100%;
  border-top-width: 0;
  border-bottom-color: #020204;
}

[tooltip][flow^="down"]::after {
  top: calc(100% + 5px);
}

[tooltip][flow^="down"]::before,
[tooltip][flow^="down"]::after {
  left: 50%;
  transform: translate(-50%, 0.5em);
}

[tooltip][flow^="down-left"]::before {
  top: 100%;
  border-top-width: 0;
  border-bottom-color: #020204;
}

[tooltip][flow^="down-left"]::after {
  top: calc(100% + 5px);
}

[tooltip][flow^="down-left"]::before {
  left: 30%;
}

[tooltip][flow^="down-left"]::after {
  left: 50%;
}

[tooltip][flow^="down-right"]::before {
  top: 100%;
  border-top-width: 0;
  border-bottom-color: #020204;
}

[tooltip][flow^="down-right"]::after {
  top: calc(100% + 5px);
}

[tooltip][flow^="down-right"]::before {
  left: 70%;
  transform: translate(-85%, 0.5em);
}

[tooltip][flow^="down-right"]::after {
  left: 50%;
  transform: translate(-50%, 0.5em);
}

[tooltip][flow^="left"]::before {
  top: 50%;
  border-right-width: 0;
  border-left-color: #020204;
  left: calc(0em - 5px);
  transform: translate(-0.5em, -50%);
}

[tooltip][flow^="left"]::after {
  top: 50%;
  right: calc(100% + 5px);
  transform: translate(-0.5em, -50%);
}

[tooltip][flow^="right"]::before {
  top: 50%;
  border-left-width: 0;
  border-right-color: #020204;
  right: calc(0em - 5px);
  transform: translate(0.5em, -50%);
}

[tooltip][flow^="right"]::after {
  top: 50%;
  left: calc(100% + 5px);
  transform: translate(0.5em, -50%);
}

[tooltip]:not([flow]):hover::before,
[tooltip]:not([flow]):hover::after,
[tooltip][flow^="up"]:hover::before,
[tooltip][flow^="up"]:hover::after,
[tooltip][flow^="up-left"]:hover::before,
[tooltip][flow^="up-left"]:hover::after,
[tooltip][flow^="up-right"]:hover::before,
[tooltip][flow^="up-right"]:hover::after,
[tooltip][flow^="down"]:hover::before,
[tooltip][flow^="down"]:hover::after,
[tooltip][flow^="down-left"]:hover::before,
[tooltip][flow^="down-left"]:hover::after,
[tooltip][flow^="down-right"]:hover::before,
[tooltip][flow^="down-right"]:hover::after {
  animation: tooltips-vert 300ms ease-out forwards;
}

[tooltip][flow^="left"]:hover::before,
[tooltip][flow^="left"]:hover::after,
[tooltip][flow^="right"]:hover::before,
[tooltip][flow^="right"]:hover::after {
  animation: tooltips-horz 300ms ease-out forwards;
}

@-moz-keyframes tooltips-vert {
  to {
    opacity: 0.9;
    transform: translate(-50%, 0);
  }
}

@-webkit-keyframes tooltips-vert {
  to {
    opacity: 0.9;
    transform: translate(-50%, 0);
  }
}

@-o-keyframes tooltips-vert {
  to {
    opacity: 0.9;
    transform: translate(-50%, 0);
  }
}

@keyframes tooltips-vert {
  to {
    opacity: 0.9;
    transform: translate(-50%, 0);
  }
}

@-moz-keyframes tooltips-horz {
  to {
    opacity: 0.9;
    transform: translate(0, -50%);
  }
}

@-webkit-keyframes tooltips-horz {
  to {
    opacity: 0.9;
    transform: translate(0, -50%);
  }
}

@-o-keyframes tooltips-horz {
  to {
    opacity: 0.9;
    transform: translate(0, -50%);
  }
}

@keyframes tooltips-horz {
  to {
    opacity: 0.9;
    transform: translate(0, -50%);
  }
}

.aks-picture {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  position: relative;
}

.d-table .aks-picture img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  object-position: center;
}

.header-logo img {
  width: 100px;
  height: auto;
}

.aks-alert {
  width: auto;
  padding: 10px;
  background: white;
  border-top: 0;
  border-left: 5px;
  border-right: 0;
  border-bottom: 0;
  border-radius: 5px;
  border-style: solid;
  box-shadow: 0px 0px 17px #0000000d;
  border-color: #0072ff;
  display: flex;
  align-items: center;
  margin-left: 0;
  height: 50px;
  margin-bottom: 30px;
}

.aks-alert-header {
  display: flex;
  align-items: flex-start;
  width: auto;
  justify-content: space-between;
}

.aks-alert-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  color: #0072ff;
}

.aks-alert-icon svg {
  width: 26px;
  height: 26px;
}

.aks-alert-title {
  font-size: 20px;
  line-height: normal;
  font-weight: bold;
}

.aks-alert.aks-info {
  border-color: #0072ff;
}

.aks-alert.aks-info .aks-alert-icon {
  color: #0072ff;
}

.aks-alert.aks-danger {
  border-color: #fd000a;
}

.aks-alert.aks-danger .aks-alert-icon {
  color: #fd000a;
}

.aks-alert.aks-warning {
  border-color: #ffbe00;
}

.aks-alert.aks-warning .aks-alert-icon {
  color: #ffbe00;
}

.aks-alert.aks-successful {
  border-color: #00b943;
}

.aks-alert.aks-successful .aks-alert-icon {
  color: #00b943;
}

.handle svg {
  fill: var(--color-4);
  cursor: move;
}

.header-language {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: fit-content;
  position: relative;
  margin-right: 20px;
}

.header-language-active {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  position: relative;
  cursor: pointer;
  background: transparent;
  user-select: none;
  appearance: none;
  outline: none;
  padding: 5px 8px;
  border: 1px solid var(--color-2);
  border-radius: 10px;
  height: 40px;
  color: var(--color-6);
}

.header-language-active:focus {
  background: #f5f5f5;
  border-radius: 7px;
}

.header-language-img {
  width: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.2rem;
}

.header-language-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  user-select: none;
}

.header-language-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: fit-content;
}

.header-language-list {
  position: absolute;
  top: 42px;
  width: fit-content;
  background: white;
  border-radius: 10px;
  padding: 10px;
  box-shadow: var(--shadow-s);
  display: flex;
  flex-direction: column;
  transform: translate3d(0, 30%, 0) scale3d(0.6, 0.6, 0.6);
  transition: opacity 200ms cubic-bezier(0.165, 0.84, 0.44, 1) 0s,
    z-index 0s 100ms, visibility 0s 100ms,
    transform 100ms cubic-bezier(0.165, 0.84, 0.44, 1) 0s,
    transform 100ms cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
  will-change: visibility, z-index, opacity, transform;
  visibility: hidden;
  opacity: 0;
  box-shadow: var(--shadow-sm);
}

.header-language-list.opened {
  visibility: visible;
  opacity: 1;
  transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
  transition: opacity 100ms cubic-bezier(0.165, 0.84, 0.44, 1) 10ms,
    z-index 0s 0s, visibility 0s 0s,
    transform 100ms cubic-bezier(0.165, 0.84, 0.44, 1) 10ms,
    transform 100ms cubic-bezier(0.165, 0.84, 0.44, 1) 10ms;
}

.header-language-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 10px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  border-radius: 8px;
  user-select: none;
}

.header-language-item:hover,
.header-language-item:focus {
  background: #f5f5f5;
}

.header-language-list .header-language-img {
  margin-right: 0.5rem;
}

.header-language-list .header-language-title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 16px;
}

hr {
  border: none;
  width: 100%;
  height: 2px;
  background: var(--color-3);
  margin-bottom: 18px;
  border-radius: 9999px;
}

.tab-container {
  margin: 0;
  padding: 0;
  max-height: 35px;
  position: absolute;
  left: 20px;
  bottom: 70px;
}

ul.tabs {
  margin: 0;
  list-style-type: none;
  line-height: 35px;
  max-height: 35px;
  overflow: hidden;
  display: flex;
  padding-right: 20px;
}

ul.tabs > li.active {
  z-index: 2;
  background: var(--secondary-hover);
  color: white;
}

ul.tabs > li.active:before {
  border-color: transparent var(--secondary-hover) transparent transparent;
}

ul.tabs > li.active:after {
  border-color: transparent transparent transparent var(--secondary-hover);
}

ul.tabs > li {
  float: right;
  margin: 5px -10px 0;
  border-top-right-radius: 25px 170px;
  border-top-left-radius: 20px 90px;
  padding: 0 10px 0 10px;
  height: 170px;
  background: #fff;
  position: relative;
  box-shadow: 0 10px 20px rgb(0 0 0 / 5%);
  max-width: 200px;
  color: var(--color-8);
}

ul.tabs > li > a {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  text-decoration: none;
  color: currentColor;
  width: 100%;
  padding-left: 22px;
  padding-right: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-family: var(--font-medium);
  font-weight: 900;
  height: 30px;
  line-height: 1;
  white-space: pre;
}

ul.tabs > li:before,
ul.tabs > li:after {
  content: "";
  background: transparent;
  height: 20px;
  width: 20px;
  border-radius: 100%;
  border-width: 10px;
  top: 0px;
  border-style: solid;
  position: absolute;
}

ul.tabs > li:before {
  border-color: transparent #fff transparent transparent;
  transform: rotate(48deg);
  left: -23px;
}

ul.tabs > li:after {
  border-color: transparent transparent transparent #fff;
  transform: rotate(-48deg);
  right: -17px;
}

.aks-upload-btn.imageeditorbtn {
  display: none !important;
}

.aks-forms-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  width: 100%;
  position: relative;
  margin-bottom: 18px;
}

.aks-forms-row .aks-form {
  margin-bottom: 0 !important;
  margin-right: 20px;
}

.aks-forms-row .aks-form:last-child {
  margin-right: 0px;
}

.product-search {
  width: 100%;
  position: relative;
  margin-bottom: 18px;
}

.product-search-input {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 48px;
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  padding: 6px 12px;
  color: var(--color-5);
  border: 0.1rem solid #dfe2e6;
  margin-bottom: 30px;
}

.product-search-input svg {
  width: 24px;
  fill: currentColor;
  position: relative;
  z-index: 1;
}

.product-search-input input {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  border: none;
  background: var(--color-1);
  outline: none;
  appearance: none;
  user-select: none;
  padding-left: 47px;
  transition: all 200ms ease;
  font-size: 15px;
  border-radius: 10px;
}

.product-search-input input:focus {
  border-color: rgba(0, 0, 0, 0.12);
  background-color: #fff;
}

.product-table {
  width: 100%;
  position: relative;
}

.product-table-header {
  display: flex;
  width: 100%;
  align-items: center;
  height: 36px;
  position: relative;
  background: var(--color-1);
  border-radius: 10px;
  font-weight: bold;
  color: var(--color-8);
  line-height: normal;
}

.product-table-header .item {
  padding: 10px;
  display: flex;
  align-items: center;
  font-size: 16px;
  height: 100%;
}

.product-table-main {
  width: 100%;
  position: relative;
  height: auto;
  max-height: 300px;
  overflow-y: auto;
}

.product-table-item {
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
  height: 65px;
  border-bottom: 1px solid var(--color-1);
}

.product-table-item:last-child {
  border-bottom: 0;
}

.product-name {
  display: flex;
  align-items: center;
  position: relative;
  width: 20%;
  padding: 10px;
}

.product-name .image {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  object-fit: cover;
  object-position: center;
  margin-right: 12px;
}

.product-unit-price {
  width: 15%;
  padding: 10px;
}

.product-stock {
  width: 15%;
  padding: 10px;
}

.product-piece {
  width: 20%;
  padding: 10px;
}

.product-total-price {
  width: 25%;
  padding: 10px;
}

.product-delete {
  width: 5%;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: red;
  cursor: pointer;
}

.product-search-title {
  margin-bottom: 8px;
  color: #3c3c3cc7;
  font-weight: 600;
  text-transform: capitalize;
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin-left: 4px;
  line-height: normal;
}

.aks-docs-list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.aks-docs-item {
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
  -webkit-transition: all 30ms ease;
  transition: all 30ms ease;
  margin-bottom: 0.5rem;
}

.aks-docs-item .aks-docs-item-link:hover {
  background: var(--primary-solid);
  color: var(--primary);
}

.aks-docs-item .aks-docs-item-link {
  color: currentColor;
  font-family: var(--font-regular);
  text-decoration: none;
  width: -webkit-fill-available;
  height: -webkit-fill-available;
  padding-top: 8px;
  padding-right: 8px;
  padding-left: 13px;
  padding-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 7px;
  user-select: none;
  transition: all 300ms ease;
  font-weight: 900;
  max-height: 50px;
}

.aks-docs-item-link.active {
  background: var(--primary-solid);
  color: var(--primary);
}

.aks-docs-item svg {
  width: 22px;
  height: 22px;
  margin-right: 8px;
  line-height: normal;
}

.aks-docs-item-wrap:last-child svg {
  margin-right: 0;
}

.opened:not(.side-menu) .aks-docs-item-wrap svg {
  transform: rotate(180deg);
}

.aks-docs-item-wrap {
  display: flex;
  align-items: center;
}

.aks-docs-sub-list {
  list-style: none;
  display: none;
  padding-left: 0.5rem;
  margin: 0;
}

.aks-docs-sub-item {
  cursor: pointer;
  font-size: 14px;
  margin-top: 0;
  position: relative;
  display: flex;
  align-items: center;
}

.aks-docs-sub-item .aks-docs-sub-item-link {
  color: inherit;
  font-family: var(--font-light);
  text-transform: none;
  text-decoration: none;
  width: -webkit-fill-available;
  height: -webkit-fill-available;
  padding-top: 5px;
  padding-right: 7px;
  padding-left: 14px;
  padding-bottom: 7px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
  transition: all 100ms ease;
  font-weight: 900;
}

.aks-docs-sub-item:before {
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
  background: #bdbdbd;
  display: block;
  left: 4px;
}

.aks-docs-sub-item:hover:before {
  background: var(--primary);
}

.aks-docs-sub-item:hover {
  color: var(--primary);
}

.aks-docs-sub-item.active:before {
  background: var(--primary);
}

.aks-docs-sub-item.active {
  color: var(--primary);
}

.aks-docs-sub-list.opened {
  display: block;
}

.aks-docs-sub-item-wrap {
  overflow: hidden;
  word-wrap: break-word;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.dashboard-row {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  position: relative;
}

.dashboard-box {
  width: 100%;
  border: 1px solid var(--color-1);
  padding: 20px;
  border-radius: 10px;
  position: relative;
  margin-bottom: 20px;
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.dashboard-row .dashboard-box {
  width: calc(50% - 10px);
  margin-right: 20px;
}

.dashboard-row .dashboard-box.col-4 {
  width: calc(33.333% - 10px);
  margin-right: 20px;
}

.dashboard-row .dashboard-box.col-7 {
  width: calc(58.333% - 10px);
  margin-right: 20px;
}

.dashboard-row .dashboard-box.col-5 {
  width: calc(41.666% - 10px);
  margin-right: 20px;
}

.dashboard-row .dashboard-box.col-8 {
  width: calc(66.666% - 10px);
  margin-right: 20px;
}

.dashboard-row .dashboard-box:nth-child(2n) {
  margin-right: 0px;
}

.dashboard-box-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--color-1);
  padding-bottom: 5px;
  /* background-color: white; */
  /* box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px; */
}

.dashboard-box-header h2 {
  font-family: var(--font-regular);
  font-weight: 900;
  margin: 0;
  font-size: 22px;
  color: var(--color-8);
}

.dashboard-box-type-2 {
  flex: 1 1;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border: 1px solid var(--color-1);
  padding: 20px;
  border-radius: 10px;
  margin-right: 20px;
  margin-bottom: 20px;
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.dashboard-row .dashboard-box-type-2:last-child {
  margin-right: 0;
}

.dashboard-box-type-2 .wrap {
  display: flex;
  flex-direction: column;
  width: fit-content;
}

.dashboard-box-type-2 .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--bg);
  color: white;
  border-radius: 9999px;
  margin-right: 20px;
}

.dashboard-box-type-2 .sub-title {
  font-size: 14px;
  color: var(--color-6);
  font-weight: 900;
  font-family: var(--font-regular);
  line-height: 1;
  margin-bottom: 8px;
}

.dashboard-box-type-2 .title {
  font-size: 22px;
  color: var(--color-7);
  font-weight: 900;
  font-family: var(--font-medium);
  line-height: 1;
}

.dashboard-box-type-2.box-2 .icon {
  background-color: var(--secondary);
}

.dashboard-box-type-2.box-3 .icon {
  background-color: green;
}

.table-form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100%;
  margin-bottom: 15px;
}

.table-form-wrap {
  display: flex;
  align-items: center;
}

.table-form-search {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 40px;
  border: 1px solid var(--color-1);
  border-radius: 10px;
  user-select: none;
  width: 250px;
  position: relative;
  overflow: hidden;
  transition: all 350ms ease;
  background: var(--color-0);
}

.table-form-search .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0.6rem;
  background: transparent;
  color: rgb(26 26 26 / 42%);
  line-height: normal;
  top: 0;
  bottom: 0;
  transition: all 350ms ease;
}

.table-form-search .input {
  border: none;
  height: inherit;
  width: 100%;
  appearance: none;
  user-select: none;
  padding-left: 40px;
  outline: none;
  color: var(--color-5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 5px;
  transition: all 350ms ease;
  background: transparent;
}

.table-form-filter .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  text-decoration: none;
  user-select: none;
  cursor: pointer;
  appearance: none;
  transition: all 150ms linear;
  background: var(--color-3);
  color: var(--color-9);
  border-radius: 10px;
  line-height: 1;
  outline: none;
  overflow: hidden;
  font-size: 16px;
  position: relative;
  width: fit-content;
  height: fit-content;
  text-align: center;
}

.table-form-filter .btn:hover,
.table-form-filter .btn:focus {
  background: var(--color-4);
}

.table-form-filter .btn svg {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 6px;
  position: relative;
}

.material-tree svg path.link {
  fill: none;
  stroke-width: 2px;
  stroke: #e91e63;
}

.material-tree svg g.node {
  fill: var(--color-8);
  font-size: 20px;
}

.language-tabs {
  width: 100%;
  position: relative;
  margin-bottom: 18px;
}

.language-tab-btn-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  width: 100%;
}

.language-tab-btn {
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  padding-left: 15px;
  padding-right: 15px;
  border-left: 0.1rem solid var(--color-3);
  border-top: 0.1rem solid var(--color-3);
  border-right: 0.1rem solid var(--color-3);
  cursor: pointer;
  user-select: none;
  position: relative;
  margin-right: 5px;
  font-weight: 600;
  color: var(--color-7);
  border-radius: 10px 10px 0 0;
  line-height: normal;
  font-family: var(--font-regular);
  transition: all 0.2s ease;
}

.language-tab-btn.active {
  background: var(--color-2);
  color: var(--color-8);
  border-color: var(--color-3);
}

.language-tab-content-list {
  padding: 15px;
  border: 0.1rem solid var(--color-3);
  border-radius: 0 10px 10px 10px;
  width: 100%;
  position: relative;
}

.language-tab-content {
  width: 100%;
  position: relative;
  display: none;
}

.language-tab-content.active {
  display: block;
}

.material-search-list {
  width: 100%;
  max-height: 140px;
  height: auto;
  overflow-y: scroll;
  border: 0.1rem solid #dfe2e6;
  border-top: 0;
  margin: 0;
  border-radius: 0 0 10px 10px;
  transition: all 0.2s ease;
  display: none;
}

.material-search-list.active {
  display: block;
}

.material-search-item {
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  line-height: normal;
  font-size: 16px;
  user-select: none;
  transition: all 0.2s ease;
  background: white;
  font-family: var(--font-regular);
  cursor: pointer;
  border-bottom: 0.1rem solid #dfe2e6;
}

.material-search-item:last-child {
  border: none;
}

.material-search-item:hover {
  font-family: var(--font-medium);
  background: var(--color-2);
}

.active-border .aks-input {
  border-radius: 0 10px 0 0 !important;
}

.active-border .aks-icon {
  border-radius: 10px 0 0 0px !important;
}

.material-search-list .aks-spinner {
  border: 3px solid var(--color-2);
  border-top: 3px solid var(--primary);
}

.material-search-notfound {
  width: 100%;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-family: var(--font-medium);
  font-size: 16px;
}

.main-header-wrap-column {
  display: flex;
  flex-direction: column;
}

.main-header-wrap-column small {
  font-size: 18px;
  color: var(--primary-hover);
  margin-bottom: 3px;
  line-height: 1;
}

.aks-forms.selection-form {
  padding: 0;
  top: 0;
  width: 100%;
  box-shadow: none;
  border-radius: 0;
}

.excel-upload {
  border: 0.1rem dashed #dfe2e6;
  color: #232333;
  width: 100%;
  padding: 12px;
  background: white;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin-left: 20px;
  height: 296px;
  user-select: none;
  overflow: auto;
  position: relative;
}

.excel-upload-center {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.excel-upload.drag-over {
  border-color: var(--primary);
}

.excel-upload .icon {
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.excel-upload .icon svg {
  width: 100%;
  height: auto;
}

.excel-upload .title {
  font-size: 24px;
  margin-bottom: 20px;
  font-family: var(--font-medium);
  color: var(--color-9);
  line-height: normal;
  text-align: center;
}

.d-table td .aks-form-row {
  justify-content: center;
}

.selection-page table {
  font-weight: 800;
}

.t-center {
  text-align: center !important;
}

.selection-page table .material-list {
  padding-left: 10px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: auto;
}

.selection-page table .material-list .material-list-item {
  width: 50%;
  margin-bottom: 5px;

}

.selection-page table .material-list-item span {
  font-size: 13px; 
}


.selection-page table .material-list .material-list-item .line {
  margin-left: 5px;
  margin-right: 5px;
}

.selection-page table .material-list .material-list-item:last-child {
  margin-bottom: 0;
}

.selection-page table .link-list {
  padding: 0px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  list-style: none;
}

.selection-page table .link-list .link-item {
  width: 100%;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
}

.selection-page table .link-list .link-item:last-child {
  margin-bottom: 0;
}

.selection-page table .link-list .link-item a {
  text-decoration: none;
  color: var(--color-8);
  display: flex;
  align-items: center;
  margin-right: 20px;
  font-size: 13px;
}

.selection-page table .link-list .link-item a:hover {
  color: var(--primary);
}

.selection-page table .link-list .link-item a:last-child {
  margin-right: 0px;
}

.crossing-drag-drop {
  width: 100%;
  position: relative;
}

.crossing-row {
  display: flex;
  align-items: flex-start;
  width: 100%;
  height: auto;
  position: relative;
  margin-bottom: 30px;
}

.crossing-gender {
  width: 30%;
  margin-right: 30px;
  position: relative;
  background: var(--color-0);
  padding: 15px;
  border-radius: 10px;
  overflow: hidden;
}

.crossing-gender-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 16px;
  line-height: normal;
  padding: 15px;
  border-radius: 10px;
  background: white;
  user-select: none;
  margin-bottom: 20px;
  color: var(--color-8);
}

.crossing-gender-main {
  width: 100%;
  position: relative;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  padding: 15px;
  transition: all 0.1s ease-in-out;
  border: 0.1rem dashed white;
  min-height: 150px;
}

.crossing-gender-main.hover {
  border: 0.1rem dashed var(--primary);
}

.crossing-materials {
  width: 40%;
  position: relative;
  background: var(--color-0);
  padding: 15px;
  border-radius: 10px;
  overflow: hidden;
}

.crossing-materials-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 16px;
  line-height: normal;
  padding: 15px;
  border-radius: 10px;
  background: white;
  user-select: none;
  margin-bottom: 20px;
  color: var(--color-8);
}

.crossing-materials-main {
  width: 100%;
  position: relative;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  padding: 15px;
}

.crossing-material {
  width: 100%;
  height: 36px;
  background: var(--color-1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  cursor: move;
  padding: 15px;
  font-size: 16px;
  line-height: normal;
  user-select: none;
  margin-bottom: 10px;
  font-family: var(--font-medium);
}

.crossing-material:last-child {
  margin-bottom: 0;
}

.crossing-material:hover {
  background: var(--color-2);
}

.crossing-material.selected {
  background: var(--primary);
  color: white;
}

.crossing-material.ui-draggable-dragging {
  width: fit-content;
}

.material-card-top {
  width: 40%;
}

.material-card {
  width: 100%;
  height: 172px;
  position: relative;
  background: white;
  margin-bottom: 20px;
  border: 1px solid var(--color-2);
}

.material-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 40px;
  padding: 10px;
  border-bottom: 1px solid var(--color-2);
}

.material-card-header .title {
  font-size: 16px;
  line-height: normal;
  display: flex;
  align-items: center;
  font-family: var(--font-medium);
}

.material-card-header .logo {
  width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.material-card-header .logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  pointer-events: none;
}

.material-card-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 10px;
  height: 100px;
}

.material-card-main .detail {
  display: flex;
  flex-direction: column;
}

.material-card-main .title {
  font-size: 28px;
  line-height: normal;
  color: var(--primary-hover);
  font-family: var(--font-bold);
}

.material-card-main .qr-code {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.material-card-main .qr-code img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  pointer-events: none;
}

.material-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 30px;
  padding: 10px;
  border-top: 1px solid var(--color-2);
}

.material-card-footer .title {
  font-size: 15px;
  line-height: normal;
  display: flex;
  align-items: center;
  font-family: var(--font-regular);
}

.material-row {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

.material-row .material-card-top {
  width: calc(33% - 10px);
  margin-right: 20px;
}

.material-row .material-card-top:nth-child(3n) {
  margin-right: 0px;
}

.uplaod-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: normal;
  width: 90%;
  height: 60px;
  box-shadow: var(--shadow-sm);
  border-radius: 10px;
  padding: 10px;
  position: relative;
  overflow: hidden;
}

.uplaod-item .wrap {
  display: flex;
  align-items: center;
  width: calc(80% - 10px);
  margin-right: 10px;
}

.uplaod-item .wrap:nth-child(2) {
  width: 20%;
  margin-right: 0px;
  justify-content: flex-end;
}

.uplaod-item .wrap .aks-progress-spinner {
  width: 25px;
  height: 25px;
}

.uplaod-item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  margin-bottom: 0;
  margin-right: 10px;
}

.uplaod-item .name {
  font-size: 16px;
  line-height: normal;
  align-items: center;
  color: var(--color-8);
  font-family: var(--font-medium);
  overflow: hidden;
  word-wrap: break-word;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  width: 90%;
}

.uplaod-item .progress-bar {
  position: absolute;
  width: 0%;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  height: 5px;
  user-select: none;
}

.excel-upload .content-list {
  width: 100%;
  height: auto;
  position: relative;
}

.excel-upload .content-list .d-table {
  margin-bottom: 15px;
}

.excel-upload .content-list h3 {
  margin-top: 0;
  margin-bottom: 5px;
}

.excel-upload .error-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 10px;
}

.excel-upload .error-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 900;
  line-height: normal;
  color: var(--color-9);
}

.excel-upload .error-item:last-child {
  margin-bottom: 0;
}

.excel-upload .error-item svg {
  margin-right: 6px;
}

.material-form-excel .excel-upload {
  margin-left: 0;
  height: fit-content;
  max-height: 70vh;
}

.table-padding {
  position: relative;
  top: -60px;
  background: white;
  width: 96%;
  margin: 0 auto;
  padding: 34px 34px;
  border-radius: 10px;
  box-shadow: 0 0px 10px rgb(0 0 0 / 7%);
}

.excel-upload-example {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  align-items: center;
  width: fit-content;
  padding: 8px 8px;
  background: white;
  border-radius: 6px;
  box-shadow: var(--shadow-xs);
  user-select: none;
  line-height: normal;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  font-size: 15px;
  color: var(--color-8);
}

.excel-upload-example:hover {
  box-shadow: var(--shadow-sm);
}

.excel-upload-example:active {
  transform: scale(0.7);
}

.excel-upload-example svg {
  width: 20px;
}

.excel-upload-example span {
  display: flex;
  align-items: center;
  margin-left: 6px;
}

.excel-upload-template {
  position: absolute;
  top: 10px;
  right: 150px;
  display: flex;
  align-items: center;
  width: fit-content;
  padding: 8px 8px;
  background: white;
  border-radius: 6px;
  box-shadow: var(--shadow-xs);
  user-select: none;
  line-height: normal;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  font-size: 15px;
  color: var(--color-8);
}

.excel-upload-template:hover {
  box-shadow: var(--shadow-sm);
}

.excel-upload-template:active {
  transform: scale(0.7);
}

.excel-upload-template svg {
  width: 20px;
}

.excel-upload-template span {
  display: flex;
  align-items: center;
  margin-left: 6px;
}

.row-wrap {
  width: 100%;
  position: relative;
  margin-top: 5px;
  display: flex;
  flex-wrap: wrap;
}

.row-wrap .aks-form {
  width: calc(25% - 14px);
  margin-right: 18px;
}

.row-wrap .aks-form:nth-child(4n) {
  margin-right: 0;
}

.filter-delete {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 5px 8px;
  position: absolute;
  right: 8px;
  top: 8px;
  z-index: 1;
  text-decoration: none;
  line-height: normal;
  background: #ff00002e;
  border-radius: 6px;
  color: red;
  cursor: pointer;
  font-size: 12px;
  transition: all 0.2s ease;
}

.filter-delete span {
  margin-right: 4px;
}

.filter-delete:hover {
  background: #ff000052;
  color: red;
}

.aks-dropdown-container.filter-container {
  padding-top: 45px;
}

.auth-expire {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.auth-expire-overlay {
  width: 100%;
  height: 100%;
  background-color: #00000096;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.auth-expire-content {
  width: 400px;
  height: 300px;
  background: white;
  position: relative;
  z-index: 1;
  border-radius: 20px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  user-select: none;
}

.auth-expire-content .heading {
  font-size: 30px;
  font-family: var(--font-bold);
  font-weight: 400;
  margin: 0;
  line-height: 1;
  margin-bottom: 15px;
  color: var(--color-9);
}

.auth-expire-content .sub-heading {
  font-family: var(--font-medium);
  margin-bottom: 15px;
  color: var(--color-7);
  font-size: 16px;
}

.auth-expire-container {
  width: 100%;
  height: 100%;
}

.split-btn {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 9997;
  display: none;
}

.split-btn.active {
  display: block;
}

.split-btn-content {
  display: flex;
  align-items: center;
  background: var(--primary);
  color: white;
  user-select: none;
  font-family: var(--font-medium);
  height: 45px;
  overflow: hidden;
  border-radius: 8px;
  position: relative;
  transition: all 0.2s ease;
}

.split-btn-content .heading {
  padding: 10px 12px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: var(--primary);
}

.split-btn-content .arrow {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  cursor: pointer;
  border-left: 1px solid var(--color-4);
  background-color: var(--primary);
  transition: all 0.2s ease;
}

.split-btn-content .arrow:hover {
  background-color: var(--primary-hover);
}

.split-btn-popup {
  display: none;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 45px;
  background: white;
  box-shadow: var(--shadow-sm);
  border-radius: 10px 10px 0px 0px;
  right: 0;
  width: 180px;
  padding-top: 6px;
  padding-bottom: 6px;
  flex-direction: column;
}

.split-btn-popup.active {
  display: flex;
}

.split-btn-popup-btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 40px;
  text-decoration: none;
  line-height: 1.5;
  color: var(--color-8);
  font-family: var(--font-medium);
  font-weight: 900;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  background: white;
  outline: none;
  user-select: none;
}

.split-btn-popup-btn:hover {
  background-color: var(--color-1);
}

.split-btn-popup-btn .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.split-btn-popup-btn .icon svg {
  width: 24px;
}

.split-btn-popup-btn .text {
  display: flex;
  align-items: center;
  justify-content: center;
}

.stock-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.stock-btn {
  padding: 8px;
  border-radius: 9999px;
  border: none;
  background: var(--color-1);
  color: var(--color-7);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  transition: all 0.2s ease;
  outline: none;
  width: 28px;
  height: 28px;
  margin-left: 10px;
}

.stock-btn:hover {
  color: var(--primary);
  background: var(--primary-solid);
}

.material-stock {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: all 0.2s ease;
  overflow: hidden;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.material-stock-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #00000078;
}

.material-stock-content {
  width: 600px;
  background: white;
  position: relative;
  z-index: 1;
  padding: 20px;
  border-radius: 15px;
  height: 400px;
  overflow: hidden;
}

.material-stock-content-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 20px;
}

.material-stock-content-header .tabs {
  display: flex;
  align-items: center;
  position: relative;
}

.material-stock-content-header .tabs .tab {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 2px;
  border-bottom: 2px solid var(--color-3);
  padding-right: 10px;
  text-align: center;
  padding-left: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font-medium);
}

.material-stock-content-header .tabs .tab.active {
  border-color: var(--primary);
}

.material-stock-content-header .close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: var(--color-1);
  color: var(--color-8);
  border-radius: 9999px;
  user-select: none;
  cursor: pointer;
}

.material-stock-content-header .close:hover {
  background: var(--color-2);
}

.material-stock-content .aks-form {
  position: relative;
  width: 170px;
  margin-top: 18px;
  margin-bottom: 0;
}

.material-stock-content-main {
  width: 100%;
  height: calc(400px - 135px);
  position: relative;
}

.material-stock-content-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  position: relative;
}

.aks-popup {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: all 0.2s ease;
  overflow: hidden;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aks-popup-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #00000078;
}

.aks-popup-content {
  width: 600px;
  background: white;
  position: relative;
  z-index: 1;
  padding: 20px;
  border-radius: 15px;
  height: 400px;
  overflow: hidden;
}

.aks-popup-content-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 20px;
}

.aks-popup-content-header .tabs {
  display: flex;
  align-items: center;
  position: relative;
}

.aks-popup-content-header .tabs .tab {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 2px;
  border-bottom: 2px solid var(--color-3);
  padding-right: 10px;
  text-align: center;
  padding-left: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font-medium);
}

.aks-popup-content-header .tabs .tab.active {
  border-color: var(--primary);
}

.aks-popup-content-header .close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: var(--color-1);
  color: var(--color-8);
  border-radius: 9999px;
  user-select: none;
  cursor: pointer;
}

.aks-popup-content-header .close:hover {
  background: var(--color-2);
}

.aks-popup-content .aks-form {
  width: 100%;
}

.aks-popup-content-main {
  width: 100%;
  height: calc(400px - 135px);
  position: relative;
}

.aks-popup-content-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  position: relative;
}

.cms {
  width: 100%;
  max-height: 90vh;
  height: auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-bottom: 100px;
}

.cms-row {
  display: flex;
  align-items: center;
  width: fit-content;
  height: auto;
  position: relative;
}

.cms-row.mb-30 {
  margin-bottom: 30px;
}

.cms-circle {
  width: 150px;
  height: 150px;
  background: white;
  border-radius: 9999px;
  border: 2px solid var(--color-9);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  text-align: center;
}

.cms-circle.mb-40 {
  margin-bottom: 40px;
}

.cms-circle.bg-dots {
  background-image: url(/core/public/uploads/dots.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.cms-in-circle {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  border: 2px solid var(--color-9);
  border-radius: 9999px;
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow-xs);
  font-family: var(--font-medium);
  line-height: 1;
}

.cms-role-text {
  position: absolute;
  top: -6px;
  left: -6px;
  font-size: 18px;
  font-weight: bolder;
}

.cms-cross {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-left: 40px;
  margin-right: 40px;
  padding-bottom: 20px;
  color: var(--color-9);
}

.cms-circle-left {
  position: absolute;
  left: -44px;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  font-size: 25px;
  font-family: var(--font-semibold);
  color: var(--color-8);
}

.cms-circle-left small {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-left: 2px;
  padding-top: 15px;
  line-height: 1;
}

.cms-circle-right {
  position: absolute;
  right: -44px;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  font-size: 25px;
  font-family: var(--font-semibold);
  color: var(--color-8);
}

.cms-circle-right small {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-left: 2px;
  padding-top: 15px;
  line-height: 1;
}

.cms-circle-bottom {
  position: absolute;
  bottom: -35px;
  font-family: var(--font-medium);
  font-weight: 500;
  color: var(--color-8);
  white-space: nowrap;
}

.cms-circle-top {
  position: absolute;
  top: -48px;
  font-family: var(--font-medium);
  font-weight: 500;
  color: var(--color-8);
}

.cms-arrow-down {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
  padding-top: 10px;
  padding-bottom: 20px;
  color: var(--color-8);
}

.cms-right-left-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  margin-top: 50px;
  margin-bottom: 20px;
}

.cms-left-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 30px;
  color: var(--color-8);
}

.cms-right-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0px;
  color: var(--color-8);
}

.cms-right-center-left-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  margin-top: 30px;
  margin-bottom: 30px;
}

.cms-right-center-left-arrow .cms-arrow-down {
  width: fit-content;
  padding-top: 10px;
  padding-bottom: 0;
  margin-right: 30px;
}

.space-between-4 .cms-circle {
  margin-right: 40px;
}

.space-between-4 .cms-circle:last-child {
  margin-right: 0px;
}

.cms-circle-bottom.b-60 {
  bottom: -60px;
}

.cms-circle-bottom span {
  display: block;
}

.cms-circle-in-text {
  font-weight: 900;
  position: absolute;
  bottom: 20px;
  right: 36px;
  line-height: 1;
  font-family: var(--font-medium);
  user-select: none;
}

.cms-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: white;
  box-shadow: var(--shadow-xs);
  border-radius: 10px;
  padding: 20px;
  top: 0;
  width: 340px;
}

.cms-form .name {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  line-height: 1;
  margin-bottom: 15px;
  color: var(--color-9);
  font-weight: 900;
}

.cms-form-row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.cms-form input {
  width: calc(100% - 60px);
  height: 40px;
  border-radius: 10px;
  border: 0.1rem solid var(--color-2);
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  appearance: none;
  transition: all 0.2s ease;
  text-align: left;
}

.cms-form input:hover,
.cms-form input:focus {
  border-color: var(--primary-hover);
}

.cms-form button {
  width: 50px;
  height: 40px;
  border-radius: 10px;
  border: none;
  background: var(--primary);
  color: white;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-weight: 900;
  font-family: var(--font-regular);
  cursor: pointer;
  transition: all 0.2s ease;
}

.cms-form button.ml-15 {
  margin-left: 15px;
}

.cms-form button:hover,
.cms-form button:focus {
  background: var(--primary-hover);
}

.d-table.cms-material-table {
  width: 100%;
  margin-bottom: 20px;
}

.d-table.cms-material-table .aks-form {
  margin-bottom: 0;
}

.aks-forms.cms-material-table-form {
  top: 0;
  width: 60%;
  box-shadow: var(--shadow-sm);
  padding: 20px;
}

.cms-btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: fit-content;
  background: white;
  box-shadow: var(--shadow-xs);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 30px;
}

.cms-btns .name {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  line-height: 1;
  margin-bottom: 10px;
  color: var(--color-9);
  font-weight: 900;
}

.cms-btn-row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.cms-btn {
  width: fit-content;
  height: 45px;
  position: relative;
  user-select: none;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 15px;
  padding-right: 15px;
  border-left: 1px solid var(--color-1);
  border-bottom: 1px solid var(--color-1);
  color: var(--color-8);
  text-decoration: none;
  white-space: nowrap;
}

.cms-btn:hover {
  color: var(--color-7);
  background: var(--color-0);
}

.cms-btn.active {
  background: var(--primary) !important;
  color: white !important;
}

.cms-btn:last-child {
  margin-right: 0;
}

.cms-btn.secondary {
  background: var(--secondary);
}

.cms-btn.secondary:hover,
.cms-btn.secondary:focus {
  background: var(--secondary-hover);
}

.cms-form .aks-form-row-group.flex-end {
  align-items: flex-end;
  margin-bottom: 0;
}

.cms-table {
  width: 100%;
  position: relative;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cms-table .d-table.cms-material-table {
  margin-top: 10px;
  display: none;
}

.cms-table .aks-form {
  display: none;
}

.cms-table.active .d-table.cms-material-table {
  display: table;
}

.cms-table.active .aks-form {
  display: block;
}

.cms-table-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  cursor: pointer;
}

.cms-table-header .name {
  display: flex;
  align-items: center;
  line-height: 1;
  font-family: var(--font-semibold);
  color: var(--color-8);
}

.cms-table-header-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 28px;
  height: 28px;
  background: white;
  border-radius: 6px;
  color: var(--color-8);
  padding: 0;
  transform: rotate(180deg);
}

.cms-table.active .cms-table-header-btn {
  transform: rotate(0deg);
}

.cms-table-header-btn:hover {
  background: var(--color-1);
  color: var(--color-7);
}

.aks-tabs {
  width: 100%;
  position: relative;
  margin-bottom: 18px;
}

.aks-tab-btn-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  width: 100%;
}

.aks-tab-btn {
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  padding-left: 15px;
  padding-right: 15px;
  border-left: 0.1rem solid var(--color-3);
  border-top: 0.1rem solid var(--color-3);
  border-right: 0.1rem solid var(--color-3);
  cursor: pointer;
  user-select: none;
  position: relative;
  margin-right: 5px;
  font-weight: 600;
  color: var(--color-7);
  border-radius: 10px 10px 0 0;
  line-height: normal;
  font-family: var(--font-regular);
  transition: all 0.2s ease;
}

.aks-tab-btn.active {
  background: var(--color-2);
  color: var(--color-8);
  border-color: var(--color-3);
}

.aks-tab-content-list {
  padding: 15px;
  border: 0.1rem solid var(--color-3);
  border-radius: 0 10px 10px 10px;
  width: 100%;
  position: relative;
}

.aks-tab-content {
  width: 100%;
  position: relative;
  display: none;
}

.aks-tab-content.active {
  display: block;
}

.aks-tab-info-list {
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.aks-tab-info-item {
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  position: relative;
}

.aks-tab-info-item b {
  display: flex;
  align-items: center;
  margin-right: 4px;
}

.tox-tinymce {
  width: 100%;
}

.kvkk-container {
  width: 100%;
  position: relative;
}

.kvkk-detail {
  border-radius: 10px;
  height: calc(100vh - 160px);
  overflow: auto;
  margin-bottom: 10px;
  background: white;
  box-shadow: var(--shadow-sm);
  padding: 20px;
}

.kvkk-detail p {
  margin-bottom: 10px;
  font-family: var(--font-regular);
}

.kvkk-bottom {
  padding: 20px;
  padding-top: 15px;
  padding-bottom: 15px;
  background: white;
  box-shadow: var(--shadow-sm);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.kvkk-bottom .aks-form {
  margin-bottom: 0;
}

.kvkk-bottom .aks-form {
  width: fit-content;
}

.aks-form.kvkk-bottom-button {
  width: 100px;
}

.aks-pedigree-list {
  display: flex;
  align-items: flex-start;
  width: 100%;
  overflow: auto;
  position: relative;
}

.aks-pedigree-item {
  position: relative;
  display: flex;
  width: fit-content;
}

.aks-pedigree-column {
  min-width: 200px;
  height: 60px;
  border-right: 1px solid var(--color-2);
}

.aks-pedigree-column:last-child {
  border-right: 0;
}

.aks-pedigree-title {
  width: 100%;
  height: 30px;
  display: flex;
  align-items: center;
  background: var(--color-1);
  padding: 10px;
}

.aks-pedigree-value {
  width: 100%;
  height: 30px;
  display: flex;
  align-items: center;
  background: var(--color-0);
  padding: 10px;
}

.cms-card {
  width: 100%;
  position: relative;
  border: 1px solid var(--color-1);
  overflow: hidden;
  border-radius: 10px;
  display: flex;
  background-color: white;
}

.cms-card-header {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  width: 100%;
  height: auto;
  position: relative;
}

.cms-card-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.cms-card-slider {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  border-right: 1px solid var(--color-1);
}

.cms-card-actions {
  width: 80px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.cms-card-slider-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 100%;
  background: var(--color-0);
  color: var(--color-9);
  cursor: pointer;
  transition: all 0.2s ease;
  outline: none;
}

.cms-card-slider-arrow:hover {
  background: var(--color-1);
}

.cms-card-slider-arrow.prev {
  border-right: 1px solid var(--color-1);
}

.cms-card-slider-arrow.next {
  border-left: 1px solid var(--color-1);
}

.cms-card-list {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  overflow: auto;
  padding-bottom: 50px;
}

.cms-card-item {
  display: flex;
  align-items: center;
  width: fit-content;
  height: 100px;
  width: 100%;
  position: relative;
  cursor: pointer;
  margin-bottom: 10px;
  padding: 10px;
}

.cms-card-item:hover {
  opacity: 0.8;
}

.cms-card-item.active {
  background-color: var(--color-0);
}

.cms-card-item.active:hover {
  background-color: var(--color-1);
}

.cms-card-item.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: var(--primary);
  left: 0;
  right: 0;
}

.cms-card-item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.cms-card-item .cms-circle {
  width: 80px;
  height: 80px;
  margin-bottom: 0;
}

.cms-card-item .cms-in-circle {
  width: 35px;
  height: 35px;
}

.cms-card-item .cms-circle-in-text {
  font-size: 12px;
  right: 4px;
}

.cms-card-item .name {
  font-size: 16px;
  font-weight: 900;
  display: flex;
  align-items: center;
}

.cms-card-item .cms-circle-bottom {
  display: none;
}

.cms-card-item .cms-in-circle {
  font-size: 12px;
}

.cms-card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--color-1);
  color: var(--color-8);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cms-card-btn:hover {
  background: var(--color-2);
}

.cms-card-tabs {
  width: 100%;
  height: 45px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-bottom: 1px solid var(--color-2);
}

.cms-card-tab {
  width: fit-content;
  height: 100%;
  position: relative;
  user-select: none;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 15px;
  padding-right: 15px;
  border-right: 1px solid var(--color-1);
  color: var(--color-8);
}

.cms-card-tab:hover {
  color: var(--color-7);
  background: var(--color-0);
}

.cms-card-tab.active {
  background: var(--color-0);
}
.cms-card-tab.hidden {
  display: none;
}

.cms-card-tab.active::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary);
}

.cms-card-main {
  width: 100%;
  height: auto;
  position: relative;
}

.cms-card-footer {
  width: 100%;
  height: 10px;
  position: relative;
  background-color: var(--color-0);
}

.cms-card-form {
  padding: 10px;
  border-bottom: 1px solid var(--color-1);
  width: 100%;
  position: relative;
  top: 0;
  box-shadow: none;
  border-radius: 0;
}

.cms-card-form .aks-form-row-group {
  align-items: flex-end;
  flex-wrap: wrap;
}

.cms-card-form .aks-form-row-group:last-child {
  margin-bottom: 0;
}

.cms-card-form .aks-form.group {
  border: none !important;
  padding: 5px !important;
  margin-bottom: 0 !important;
  border-radius: 0 !important;
}

.aks-form.aks-form-button {
  width: 30%;
}

.cms-card-table {
  width: 100%;
  height: auto;
  position: relative;
  padding: 15px;
  overflow: auto;
}

.cms-card-table .aks-form {
  margin-bottom: 0;
}

.cms-card-table .aks-form-label.group-title {
  margin-left: 0;
  margin-bottom: 15px;
  font-size: 16px;
  color: var(--color-7);
}

.cms-card-tab-content {
  width: 100%;
  position: relative;
  display: none;
}

.cms-card-tab-content.active {
  display: block;
}

.aks-forms.cms-card-table-form {
  top: 0;
  width: 100%;
  padding: 0;
  box-shadow: none;
  border-radius: 0;
}

.aks-forms.cms-card-table-form .d-table {
  margin-bottom: 15px;
}

.cms-card-material-content {
  width: 100%;
  height: auto;
  position: relative;
  display: none;
}

.cms-card-material-content.active {
  display: block;
}

.cms-card-not-found {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  position: relative;
  padding: 20px;
}

.cms-card-not-found .icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 10px;
  opacity: 0.8;
}

.cms-card-not-found .icon svg {
  width: 100%;
  height: 100%;
}

.cms-card-not-found .text {
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-medium);
  color: var(--color-7);
}

.slick-slider {
  position: relative;
  display: block;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: 0;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-list,
.slick-slider .slick-track {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.slick-track:after,
.slick-track:before {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.header-user-company-id {
  display: flex;
  align-items: center;
  padding: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-1);
  font-size: 14px;
  color: var(--color-8);
  font-family: var(--font-medium);
  line-height: 1;
}

.header-user-company-id b {
  margin-right: 4px;
}

.aks-zebra-color {
  background: white;
}

.aks-zebra-color:nth-child(2n) {
  background: #e0e0e0;
}

.cms-card-header-wrap {
  display: flex;
  align-items: center;
  width: fit-content;
  position: relative;
}

.cms-card-list-container {
  width: 25%;
  height: 700px;
  position: sticky;
  top: 0;
}

.cms-card-opration-container {
  width: 75%;
  overflow-y: scroll;
}

.aks-form.different-group-no {
  display: none;
}

.aks-form.different-group-no.opened {
  display: block;
}

.mobile-icon {
  display: none;
}

.amean-table {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  overflow-x: scroll;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 10px 10px 0px 0px;
}

.amean-table-container {
  min-width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.amean-table-head {
  width: fit-content;
  min-width: 100%;
  display: flex;
}

.amean-table-header {
  width: fit-content;
  min-width: 100%;
  display: flex;
  align-items: center;
  background-color: var(--primary);
  overflow: hidden;
  border-radius: 10px 10px 0px 0px;
}

.amean-table-head-cell {
  min-width: 100px;
  color: white;
  padding: 5px 15px;
  display: flex;
  align-items: center;
  font-size: 14px;
  font-family: var(--font-bold);
}

.amean-table-head-cell:not(:last-child) {
  border-right: 2px solid #489f2e;
}

.amean-table-head-cell:last-child {
  flex: 40;
}

.amean-table-body {
  width: 100% !important;
  background-color: white;
  display: flex;
  width: fit-content;
}

.amean-table-body:nth-child(even) {
  background-color: #f0f0f0;
}

.amean-table-cell {
  min-width: 100px;
  color: black;
  padding: 15px 20px;
  border-bottom: 2px solid #f0f0f0;
  display: flex;
  align-items: center;
  font-family: var(--font-medium);
}

.amean-table-body:nth-child(even) .amean-table-cell {
  border-color: white;
}

.amean-table-cell .row {
  display: flex;
  gap: 5px;
  align-items: center;
}

.amean-table-cell:not(:last-child) {
  border-right: 2px solid #f0f0f0;
}

.amean-table-cell:last-child {
  flex: 40;
}

.amean-table-cell .action-row {
  display: flex;
}

.amean-table .not-found {
  width: 100%;
  background-color: white;
  padding: 10px;
  text-align: left;
}

.material-logs {
  background-color: #438fe9;
}

.log-type {
  padding: 10px 20px;
  border-radius: 10px;
  background-color: rgba(128, 128, 128, 0.205);
  color: gray;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
}

.log-type.update {
  background-color: #0c55f13b;
  color: #0c55f1;
}

.log-type.delete {
  background-color: #ee3e083b;
  color: #ee3e08;
}

.log-type.create {
  background-color: #5ee60f3b;
  color: #4ac502;
}

@media screen and (max-width: 992px) {
  .dashboard-row {
    flex-direction: column;
  }

  .mobile-icon {
    display: flex;
  }

  .side-menu {
    display: none;
  }

  .side-menu.opened {
    display: block;
    width: 100vw;
  }

  .main {
    padding-left: 0px;
  }

  .dashboard-box {
    width: 100% !important;
  }

  .amean-table-container {
    min-width: 1000px;
  }

  .row-wrap {
    flex-wrap: wrap;
  }

  .main-header {
    flex-direction: column;
  }

  .main-header-wrap {
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .main-header-wrap > * {
    flex: 1;
  }

  .aks-dropdown-container {
    left: 0px;
  }
}
