/*#region ----------------- Animation */
@keyframes swipeupsmall {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes swipeLeft {
  from {
    opacity: 0;
    transform: translateX(10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes scaleZoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes scaleZoomOut {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0.8);
  }
}
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
/*#endregion -------------- Animation */
/*#region ----------------- General */
@font-face {
  font-family: "Yekan Bakh";
  src: url("../fonts/yekanbakh/YekanBakhFaNum-ExtraBlack.woff2") format("woff2"), url("../fonts/yekanbakh/YekanBakhFaNum-ExtraBlack.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Yekan Bakh";
  src: url("../fonts/yekanbakh/YekanBakhFaNum-ExtraBold.woff2") format("woff2"), url("../fonts/yekanbakh/YekanBakhFaNum-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Yekan Bakh";
  src: url("../fonts/yekanbakh/YekanBakhFaNum-Bold.woff2") format("woff2"), url("../fonts/yekanbakh/YekanBakhFaNum-Bold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Yekan Bakh";
  src: url("../fonts/yekanbakh/YekanBakhFaNum-Regular.woff2") format("woff2"), url("../fonts/yekanbakh/YekanBakhFaNum-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Yekan Bakh";
  src: url("../fonts/yekanbakh/YekanBakhFaNum-Light.woff2") format("woff2"), url("../fonts/yekanbakh/YekanBakhFaNum-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
*,
::before,
::after {
  outline: none !important;
}

body {
  font-family: "Yekan Bakh" !important;
  font-weight: 400;
  font-size: 16px;
  direction: rtl;
  margin: 0;
  background-color: #fff;
  text-align: right;
}

html {
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  line-height: 1.2;
  color: #001101;
}

h1,
h2,
h3,
h4,
h5,
h6,
input,
textarea,
strong,
spans,
p {
  font-family: "Yekan Bakh" !important;
}

p {
  color: #6c6c73;
}

hr {
  border-top: #ddd solid 1px;
}

img {
  font-size: 12px;
  font-weight: 300;
}

code,
pre {
  text-align: left;
  direction: ltr;
  white-space: pre-line;
  word-spacing: normal;
  word-break: normal;
  word-wrap: normal;
  -moz-tab-size: 4;
    -o-tab-size: 4;
       tab-size: 4;
  line-height: 1.5;
  -webkit-hyphens: none;
          hyphens: none;
  text-shadow: none !important;
  border-radius: 0.5rem;
}

pre {
  overflow: auto;
  margin: 0;
}

svg,
img {
  vertical-align: middle;
}

button {
  cursor: pointer;
}

input[type=number] {
  -webkit-appearance: none;
          appearance: none;
  -moz-appearance: textfield;
}
input[type=number]::-webkit-outer-spin-button, input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

::-moz-selection {
  background-color: #00381e;
  color: white;
}

::selection {
  background-color: #00381e;
  color: white;
}

.shadow-primary {
  box-shadow: 0 4px 40px rgba(0, 56, 30, 0.4);
}

.overflowHidden {
  overflow: hidden !important;
}

/*#endregion -------------- General */
/*#region ----------------- Container */
.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 640px) {
  .container,
  .container-sm {
    max-width: 640px;
  }
}
@media (min-width: 768px) {
  .container,
  .container-md,
  .container-sm {
    max-width: 750px;
  }
}
@media (min-width: 1024px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm {
    max-width: 1000px;
  }
}
@media (min-width: 1280px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1220px;
  }
}
@media (min-width: 1536px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1350px;
  }
}
/*#endregion -------------- Container */
/*#region ----------------- Buttons */
.btn {
  font-size: 14px;
  padding: 0.6rem 1.2rem;
  border-radius: 12px;
  border: 1px solid transparent;
  box-shadow: none;
  position: relative;
  transition: all 0.4s;
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  line-height: 1.8;
  height: 44px;
}
.btn:hover, .btn:focus {
  box-shadow: none !important;
}
.btn .lucide {
  width: 22px;
  height: 22px;
  color: #6c6c73;
}
.btn:disabled {
  background-color: #eaf2ff !important;
  border: 1px solid #eaf2ff !important;
  color: #6c6c73 !important;
  cursor: not-allowed !important;
}
.btn:disabled .lucide {
  color: #9e9e9e !important;
}
.btn.text-right {
  text-align: right;
}
.btn.text-left {
  text-align: left;
}
.btn.is-small {
  font-size: 13px;
  padding: 0.5rem 1rem;
  min-width: unset;
  height: 38px;
}
.btn.is-small .lucide {
  width: 18px;
  height: 18px;
}
.btn.is-small.icon-right {
  padding-right: 2.5rem !important;
}
.btn.is-small.icon-right .lucide {
  right: 10px;
  top: 9px;
}
.btn.is-small.icon-left {
  padding-left: 2.5rem !important;
}
.btn.is-small.icon-left .lucide {
  left: 10px;
  top: 9px;
}
.btn.is-small.loading::before {
  width: 20px;
  height: 20px;
  top: 10px;
}
.btn.loading {
  padding-right: 3rem;
}
.btn.loading::before {
  content: "";
  position: absolute;
  right: 12px;
  top: 10px;
  width: 24px;
  height: 24px;
  display: inline-block;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  background-color: transparent;
}

.icon-right {
  padding-right: 3rem !important;
}
.icon-right .lucide {
  position: absolute;
  right: 14px;
  top: 10px;
}

.icon-left {
  padding-left: 3rem !important;
}
.icon-left .lucide {
  position: absolute;
  left: 14px;
  top: 10px;
}

.btn-primary {
  background: linear-gradient(45deg, var(--color-secondary), var(--color-primary), var(--color-secondary)) var(--x, 0)/200%;
  color: white;
  border: none;
}
.btn-primary:hover, .btn-primary:focus {
  color: white;
  --x: 100%;
}
.btn-primary .lucide {
  color: white;
}
.btn-primary.loading::before {
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-top: 3px solid white;
}
.btn-primary.color-danger {
  background: linear-gradient(45deg, var(--color-danger), var(--color-dangerDark), var(--color-danger)) var(--x, 0)/200%;
}
.btn-primary.color-success {
  background: linear-gradient(45deg, var(--color-success), var(--color-successDark), var(--color-success)) var(--x, 0)/200%;
}
.btn-primary.color-info {
  background: linear-gradient(45deg, var(--color-info), var(--color-infoDark), var(--color-info)) var(--x, 0)/200%;
}
.btn-primary.color-warning {
  background: linear-gradient(45deg, var(--color-warning), var(--color-warningDark), var(--color-warning)) var(--x, 0)/200%;
}
.btn-primary.color-white {
  background: white;
  color: #00381e;
}
.btn-primary.color-white .lucide {
  color: #00381e;
}

.btn-secondary {
  background: linear-gradient(45deg, var(--color-secondary), var(--color-secondaryLight), var(--color-secondary)) var(--x, 0)/200%;
  color: white;
  border: none;
}
.btn-secondary:hover, .btn-secondary:focus {
  color: white;
  --x: 100%;
}
.btn-secondary .lucide {
  color: white;
}
.btn-secondary.loading::before {
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-top: 3px solid white;
}

.btn-primary-outline {
  background: transparent;
  color: #00381e;
  border-color: #00381e;
}
.btn-primary-outline::before {
  background-color: rgba(0, 56, 30, 0.3);
}
.btn-primary-outline:hover, .btn-primary-outline:focus {
  background: rgba(0, 56, 30, 0.15);
  color: #00381e;
}
.btn-primary-outline .lucide {
  color: #00381e;
}
.btn-primary-outline.loading::before {
  border: 3px solid rgba(0, 56, 30, 0.2);
  border-top: 3px solid #00381e;
}
.btn-primary-outline.color-gray {
  background-color: white;
  color: #001101;
  border-color: #ddd;
}
.btn-primary-outline.color-gray .lucide {
  color: #6c6c73;
}
.btn-primary-outline.color-gray:hover {
  background-color: #f6f6f8;
}

.btn-secondary-outline {
  background: transparent;
  color: #55bf9b;
  border-color: #55bf9b;
}
.btn-secondary-outline::before {
  background-color: rgba(85, 191, 155, 0.3);
}
.btn-secondary-outline:hover, .btn-secondary-outline:focus {
  background: rgba(85, 191, 155, 0.15);
  color: #55bf9b;
}
.btn-secondary-outline .lucide {
  color: #55bf9b;
}
.btn-secondary-outline.loading::before {
  border: 3px solid rgba(85, 191, 155, 0.2);
  border-top: 3px solid #55bf9b;
}

.btn-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6c6c73;
}
.btn-icon .lucide {
  width: 24px;
  height: 24px;
}
.btn-icon.is-big {
  width: 48px;
  height: 48px;
}
.btn-icon.is-small {
  width: 40px;
  height: 40px;
}
.btn-icon.is-small .lucide {
  width: 20px;
  height: 20px;
}
.btn-icon:hover, .btn-icon:focus {
  background-color: #f1f5f9;
  color: #6c6c73;
}
.btn-icon.color- .btn-icon.color-info {
  background-color: #0ea5e9;
  color: white;
}
.btn-icon.color- .btn-icon.color-info:hover, .btn-icon.color- .btn-icon.color-info:focus {
  background-color: rgb(12.88, 151.8, 214.36);
}
.btn-icon.color-grey {
  background-color: #f1f5f9;
  color: #6c6c73;
}
.btn-icon.color-grey:hover, .btn-icon.color-grey:focus {
  background-color: rgb(194.88, 217.7828571429, 255);
}
.btn-icon.color-danger {
  background-color: #ef4444;
  color: white;
}
.btn-icon.color-danger:hover, .btn-icon.color-danger:focus {
  background-color: rgb(237.0642364532, 45.3757635468, 45.3757635468);
}
.btn-icon.color-secondary {
  background-color: #55bf9b;
  color: white;
}
.btn-icon.color-secondary:hover, .btn-icon.color-secondary:focus {
  background-color: rgb(69.4482051282, 184.4717948718, 145.4071794872);
}
.btn-icon.color-warning {
  background-color: #fbbf24;
  color: white;
}
.btn-icon.color-warning:hover, .btn-icon.color-warning:focus {
  background-color: rgb(250.588161435, 184.4105829596, 13.451838565);
}
.btn-icon.color-primary {
  background-color: #00381e;
  color: white;
}
.btn-icon.color-primary:hover, .btn-icon.color-primary:focus {
  background-color: rgb(0, 51.52, 27.6);
}

.btn-ghost:hover {
  background-color: #f1f5f9;
}

/*#endregion -------------- Buttons */
/*#region ----------------- Dropdown */
.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown .dropdown-toggle .lucide {
  display: block;
  font-size: 22px;
}
.dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 170px;
  display: none;
  flex-direction: column;
  background-color: #fff;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  z-index: 888;
  text-align: right;
  padding: 5px;
}
.dropdown .dropdown-menu .dropdown-item {
  padding: 8px 10px;
  text-decoration: none;
  color: #001101;
  display: block;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  white-space: nowrap;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background-color: transparent;
  border: none;
  text-align: right;
  cursor: pointer;
}
.dropdown .dropdown-menu .dropdown-item:hover, .dropdown .dropdown-menu .dropdown-item:focus {
  background-color: rgba(0, 56, 30, 0.1);
  color: #00381e;
}
.dropdown .dropdown-menu .dropdown-item:hover .lucide, .dropdown .dropdown-menu .dropdown-item:focus .lucide {
  color: #00381e;
}
.dropdown .dropdown-menu .dropdown-item .lucide {
  margin-left: 10px;
  font-size: 18px;
  position: relative;
  top: 3px;
  color: #9e9e9e;
}
.dropdown .dropdown-menu.open {
  display: flex;
}
.dropdown .dropdown-menu.align-right {
  left: unset;
  right: 0;
}

/*#endregion -------------- Dropdown */
/*#region ----------------- Tabs */
.nav-tabs {
  border-bottom: 1px solid #ddd;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.nav-tabs .nav-link {
  vertical-align: middle;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 400;
  color: #6c6c73;
  border: none;
  border-bottom: 3px solid transparent;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  text-align: center;
}
.nav-tabs .nav-link.active {
  border-bottom-color: #00381e;
  color: #00381e;
  font-weight: 600;
}
.nav-tabs .nav-link.active .badge.badge-primary {
  background-color: #55bf9b;
}
.nav-tabs .nav-link .icon {
  font-size: 16px;
  margin-left: 6px;
}
.nav-tabs .nav-link .badge {
  background-color: #9e9e9e;
}
.nav-tabs.type-fill {
  border: none;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  padding: 8px 1rem;
  border-radius: 1rem;
}
.nav-tabs.type-fill .nav-link {
  min-width: unset;
  border: none;
  border-radius: 10rem;
  color: #6c6c73;
}
.nav-tabs.type-fill .nav-link.active {
  background-color: #00381e;
  color: white;
}
.nav-tabs.type-fill .nav-link.active:hover {
  color: white;
}
.nav-tabs.type-fill .nav-link:hover {
  color: #00381e;
}
.nav-tabs.nowrap {
  overflow-x: auto;
}
.nav-tabs.nowrap .nav-link {
  white-space: nowrap;
}
.nav-tabs.font-lg .nav-link {
  font-size: 18px;
}
.nav-tabs.font-sm .nav-link {
  font-size: 14px;
}
.nav-tabs.type-row {
  flex-direction: column;
  border-bottom: none;
}
.nav-tabs.type-row .nav-link {
  border: none;
  border-right: 4px solid transparent;
  position: relative;
  width: 100%;
  padding: 14px 20px 14px 30px;
}
.nav-tabs.type-row .nav-link.active {
  border-right-color: #00381e;
}
.nav-tabs.type-row .nav-link:hover {
  color: #001101;
}
.nav-tabs.type-code {
  border-bottom: none;
}
.nav-tabs.type-code .nav-link {
  color: rgba(255, 255, 255, 0.7);
}
.nav-tabs.type-code .nav-link.active {
  color: white;
  border-bottom-color: white;
}

.tab-content {
  margin-top: 15px;
}
.tab-content .tab-pane {
  margin-top: 20px;
}

@media (max-width: 1024px) {
  .nav-tabs.type-fill .nav-link {
    font-size: 14px;
  }
}
@media (max-width: 640px) {
  .nav-tabs.type-fill .nav-link {
    font-size: 12px;
  }
}
/*#endregion -------------- Tabs */
/*#region ----------------- Modal Styles */
.modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9998;
}
.modal.show {
  display: flex;
}
.modal .modal-dialog {
  background-color: white;
  width: 500px;
  margin: 0 auto;
  display: none;
  flex-direction: column;
  max-height: 95%;
  z-index: 9999;
  border-radius: 10px;
}
.modal .modal-dialog.show {
  display: flex;
  animation: scaleZoomIn 0.35s ease-in-out;
}
.modal .modal-dialog.modal-sm {
  width: 640px;
}
.modal .modal-dialog.modal-md {
  width: 768px;
}
.modal .modal-dialog.modal-lg {
  width: 1024px;
}
.modal .modal-dialog.modal-xl {
  width: 1280px;
}
.modal .modal-dialog.modal-full {
  width: 100%;
  max-height: 100%;
  height: 100%;
  border-radius: 0;
}
.modal .modal-header {
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  width: 100%;
  border-bottom: 1px solid #ddd;
}
.modal .modal-title {
  font-size: 18px;
  display: flex;
  align-items: center;
  color: #001101;
}
.modal .modal-title .lucide {
  margin-left: 10px;
  font-size: 20px;
  color: #6c6c73;
}
.modal .btn-close {
  width: 30px;
  height: 30px;
  background-color: transparent;
  padding: 4px;
  border: none;
  color: #9e9e9e;
}
.modal .btn-close:hover {
  color: #6c6c73;
}
.modal .modal-body {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 1rem;
  height: 100%;
}
.modal .modal-footer {
  padding: 1rem;
  gap: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-shrink: 0;
}

.modal-backdrop {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
}

@media (max-width: 575px) {
  .modal .modal-dialog {
    width: 95%;
  }
  .modal .modal-footer {
    flex-direction: column;
  }
  .modal .modal-footer .btn {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .modal .modal-dialog.modal-sm {
    width: 95%;
  }
}
@media (max-width: 1024px) {
  .modal .modal-dialog.modal-md {
    width: 95%;
  }
}
@media (max-width: 1280px) {
  .modal .modal-dialog.modal-lg {
    width: 95%;
  }
}
@media (max: 1280px) {
  .modal .modal-dialog.modal-xl {
    width: 95%;
  }
}
/*#endregion -------------- Modal Styles */
/*#region ----------------- Radio */
.form-radio {
  margin: 0.6rem 0;
  position: relative;
}
.form-radio.in-box .form-radio-input:checked ~ .form-radio-label {
  border-color: #00381e;
}
.form-radio.in-box .form-radio-label {
  display: block;
  border: 2px solid #ddd;
  padding: 8px 40px 8px 8px;
  border-radius: 10px;
}
.form-radio.in-box .form-radio-label::before {
  top: 12px;
  right: 12px;
}
.form-radio.in-box .form-radio-label::after {
  top: 18px;
  right: 1.25em;
}
.form-radio .form-radio-input {
  display: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.form-radio .form-radio-input:checked ~ .form-radio-label::before {
  background-color: #00381e;
  border-color: #00381e;
}
.form-radio .form-radio-input:checked ~ .form-radio-label::after {
  background-color: white;
}
.form-radio .form-radio-input:disabled {
  cursor: not-allowed;
}
.form-radio .form-radio-input:disabled ~ .form-radio-label {
  background-color: #eaf2ff;
  cursor: not-allowed;
}
.form-radio .form-radio-input:disabled ~ .form-radio-label h6 {
  opacity: 0.6;
}
.form-radio .form-radio-input:disabled ~ .form-radio-label p {
  opacity: 0.6;
}
.form-radio .form-radio-label {
  font-size: 16px;
  color: #001101;
  padding-right: 30px;
  cursor: pointer;
}
.form-radio .form-radio-label::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  display: inline-block;
  width: 1.3em;
  height: 1.3em;
  border: 2px solid #ddd;
  border-radius: 10rem;
  z-index: 0;
}
.form-radio .form-radio-label::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 0.4em;
  top: 0.4em;
  width: 0.5em;
  height: 0.5em;
  border-radius: 50%;
  background-color: transparent;
  z-index: 1;
  transition: all 0.2s ease-in-out;
}

.radio-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #6c6c73;
  margin-bottom: 5px;
}

/*#endregion -------------- Radio */
/*#region ----------------- Select */
.select-group {
  position: relative;
  margin-bottom: 20px;
}
.select-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #6c6c73;
  margin-bottom: 5px;
}
.select-group .select {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 0.8rem;
  font-size: 14px;
  padding: 0.67rem 0.875rem 0.67rem 2rem;
  height: 44px;
  transition: all 0.3s ease-in-out;
  -moz-appearance: none;
       appearance: none;
  background-color: white;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: left 0.75rem center;
  background-size: 16px 12px;
}
.select-group .select:hover, .select-group .select:focus {
  border-color: #9e9e9e;
}
.select-group.size-small label {
  font-size: 13px;
}
.select-group.size-small .select {
  padding: 0.544rem 0.875rem;
  height: unset;
  font-size: 14px;
}
.select-group .text-alert {
  font-size: 13px;
  margin-top: 5px;
}
.select-group .text-alert.error {
  color: #ef4444;
}
.select-group .text-alert.success {
  color: #ef4444;
}

/*#endregion -------------- Select */
/*#region ----------------- Table */
.table-custom .table-header {
  display: grid;
  border: 1px solid #ddd;
  border-radius: 0.75rem 0.7rem 0 0;
}
.table-custom .table-header .table-header-item {
  font-size: 14px;
  font-weight: 600;
  color: #001101;
  padding: 15px;
}
.table-custom .table-body {
  border-right: 1px solid #ddd;
  border-left: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  border-radius: 0 0 0.75rem 0.7rem;
}
.table-custom .table-body .table-row {
  display: grid;
  align-items: center;
  border-top: 1px solid #ddd;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.table-custom .table-body .table-row:hover {
  background-color: #eaf2ff;
}
.table-custom .table-body .table-row:hover:last-child {
  border-radius: 0 0 0.75rem 0.75rem;
}
.table-custom .table-body .t-item {
  padding: 15px;
}
.table-custom .table-body .t-title {
  display: none;
  font-size: 14px;
  font-weight: 500;
  color: #6c6c73;
}
.table-custom .table-body .t-desc {
  font-size: 14px;
  font-weight: 400;
  color: #001101;
}
.table-custom .table-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 15px;
}
.table-custom .table-footer .result {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.table-custom .table-footer .result h6 {
  font-size: 14px;
  margin-bottom: 0;
  color: #6c6c73;
}
.table-custom .table-footer .result .number {
  font-size: 14px;
  color: #6c6c73;
}
.table-custom.is-small .table-header .table-header-item {
  font-size: 12px;
  padding: 10px;
}
.table-custom.is-small .table-body .t-item {
  padding: 10px;
}
.table-custom.is-small .table-body .t-title {
  font-size: 12px;
}
.table-custom.is-small .table-body .t-desc {
  font-size: 12px;
}
.table-custom.is-small .table-footer {
  margin-top: 12px;
}
.table-custom.is-small .table-footer .result h6 {
  font-size: 12px;
}
.table-custom.is-small .table-footer .result .number {
  font-size: 12px;
}
.table-custom.is-simple .table-header {
  border: none;
  border-radius: 0;
}
.table-custom.is-simple .table-body {
  border: none;
  border-radius: 0;
}
.table-custom.is-simple .table-body .table-row:hover {
  border-radius: 0.375rem !important;
}

.table-responsive {
  overflow-x: auto;
}

.table {
  width: 100%;
  border: 1px solid #ddd;
  caption-side: bottom;
  border-collapse: collapse;
}
.table thead {
  border: 1px solid #ddd;
}
.table thead th {
  padding: 0.6rem 0.8rem;
  font-size: 14px;
  font-weight: 600;
  color: #001101;
}
.table tbody td {
  padding: 0.8rem;
  font-size: 14px;
  font-weight: 400;
  color: #001101;
  border-bottom: 1px solid #ddd;
}
.table.table-stripper > tbody > tr:nth-child(odd) {
  background: #f6f6f8;
}

@media (max-width: 1024px) {
  .table-custom .table-header {
    display: none;
    grid-template-columns: 100% !important;
  }
  .table-custom .table-body {
    border-top: 1px solid #ddd;
    border-radius: 0.7rem;
  }
  .table-custom .table-body .table-row {
    grid-template-columns: 100% !important;
    padding: 8px 0;
  }
  .table-custom .table-body .table-row:first-child {
    border-top: none;
  }
  .table-custom .table-body .table-row:hover {
    background-color: #eaf2ff;
  }
  .table-custom .table-body .table-row:hover:first-child {
    border-radius: 0.75rem 0.75rem 0 0;
  }
  .table-custom .table-body .t-title {
    display: block;
    padding-left: 20px;
  }
  .table-custom .table-body .t-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 10px;
  }
  .table-custom .table-body .t-desc {
    text-align: left;
  }
  .table-custom.is-small .table-header .table-header-item {
    padding: 6px 8px;
  }
  .table-custom.is-small .table-body .t-item {
    padding: 6px 8px;
  }
  .table-custom.is-small .table-footer {
    margin-top: 10px;
  }
}
@media (max-width: 768px) {
  .table-custom .table-footer {
    flex-direction: column;
  }
  .table-custom .table-footer .result {
    margin-bottom: 10px;
    justify-content: center;
  }
}
@media (max-width: 640px) {
  .table-custom .table-footer .result h6 {
    font-size: 12px;
  }
  .table-custom .table-footer .result .number {
    font-size: 12px;
  }
  .table-custom .table-footer .result .select-group .select {
    height: 40px;
    padding: 0.5rem 0.8rem 0.5rem 2rem;
  }
  .table-custom .table-footer .pagination .select-group .select {
    height: 40px;
    padding: 0.5rem 0.8rem 0.5rem 2rem;
  }
  .table-custom .table-footer .pagination .btn-icon {
    width: 40px;
    height: 40px;
  }
  .table-custom .table-footer .pagination .btn-icon .lucide {
    width: 18px;
    height: 18px;
  }
}
/*#endregion -------------- Table */
/*#region ----------------- Input */
.input-group {
  position: relative;
  margin-bottom: 20px;
}
.input-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #6c6c73;
  margin-bottom: 5px;
}
.input-group .input {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 0.8rem;
  font-size: 14px;
  padding: 0.65rem 3rem 0.65rem 1rem;
  transition: all 0.3s ease-in-out;
  height: 44px;
  background-color: white;
}
.input-group .input:hover, .input-group .input:focus {
  border-color: #9e9e9e;
}
.input-group .input:hover ~ .icon, .input-group .input:focus ~ .icon {
  color: #6c6c73;
}
.input-group .input:disabled {
  background-color: #eaf2ff;
}
.input-group .icon {
  position: absolute;
  top: 26px;
  right: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #9e9e9e;
  transition: all 0.3s ease-in-out;
}
.input-group .icon .lucide {
  display: flex;
}
.input-group .pcalBtn {
  width: 44px;
  height: 44px;
  position: absolute;
  left: 0;
  top: 26px;
  border: 1px solid #ddd;
}
.input-group.no-icon .input {
  padding-right: 0.7rem !important;
}
.input-group.no-label .icon {
  top: 0;
}
.input-group.no-label .pcalBtn {
  top: 0;
  left: 0;
}
.input-group.text-center .input {
  text-align: center;
}
.input-group.big-font-size .input {
  font-size: 18px;
}
.input-group.small label {
  font-size: 13px;
}
.input-group.small .input {
  font-size: 14px;
  padding: 0.544rem 3rem 0.544rem 0.7rem;
}
.input-group.small .pcalBtn {
  width: 40px;
  height: 40px;
}

/*#endregion -------------- Input */
/*#region ----------------- Checkbox */
.checkbox-group {
  margin: 10px 0;
}
.checkbox-group .form-check-label {
  font-size: 14px;
  font-weight: 400;
  color: #001101;
  cursor: pointer;
  padding-right: 10px;
}
.checkbox-group .form-check-input {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 1.3em;
  height: 1.3em;
  border: 2px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  float: right;
  background-color: white;
}
.checkbox-group .form-check-input::before {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiNmZmYiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBjbGFzcz0ibHVjaWRlIGx1Y2lkZS1jaGVjay1pY29uIGx1Y2lkZS1jaGVjayI+PHBhdGggZD0iTTIwIDYgOSAxN2wtNS01Ii8+PC9zdmc+");
  background-size: 16px;
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}
.checkbox-group .form-check-input:checked {
  border-color: #00381e;
  background-color: #00381e;
}
.checkbox-group .form-check-input:checked::before {
  opacity: 1;
}
.checkbox-group .form-check-input:disabled {
  background-color: #f6f6f8;
  border-color: #f6f6f8;
}
.checkbox-group .form-check-input:disabled.checked {
  opacity: 0.6;
  border-color: #00381e;
  background-color: #00381e;
}
.checkbox-group .form-check-input:disabled.checked::before {
  opacity: 1;
}
.checkbox-group .form-check-input:disabled.checked ~ .form-check-label {
  cursor: default;
  color: #6c6c73;
}
.checkbox-group .form-check-input:disabled ~ .form-check-label {
  cursor: default;
  color: #6c6c73;
}
.checkbox-group .form-check-input:hover, .checkbox-group .form-check-input:focus {
  box-shadow: none;
}
.checkbox-group .form-check-input.checked {
  border-color: #00381e;
  background-color: #00381e;
}
.checkbox-group .form-check-input.checked::before {
  opacity: 1;
}

/*#endregion -------------- Checkbox */
/*#region ----------------- Switch */
.form-switch .form-switch-input {
  display: none;
}
.form-switch .form-switch-input:checked ~ .form-switch-label::before {
  background-color: #00381e;
}
.form-switch .form-switch-input:checked ~ .form-switch-label::after {
  right: 2px;
  background-color: white;
}
.form-switch .form-switch-input.checked ~ .form-switch-label::before {
  background-color: #00381e;
}
.form-switch .form-switch-input.checked ~ .form-switch-label::after {
  right: 2px;
  background-color: white;
}
.form-switch .form-switch-input:disabled {
  cursor: not-allowed !important;
}
.form-switch .form-switch-input:disabled:checked ~ .form-switch-label {
  cursor: not-allowed !important;
  opacity: 0.6;
}
.form-switch .form-switch-input:disabled:checked ~ .form-switch-label::before {
  background-color: #00381e;
  opacity: 0.6;
}
.form-switch .form-switch-label {
  position: relative;
  padding-right: 40px;
  font-size: 16px;
  color: #001101;
  cursor: pointer;
}
.form-switch .form-switch-label::before {
  content: "";
  position: absolute;
  right: 0;
  top: 2px;
  display: inline-block;
  width: 32px;
  height: 18px;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 10rem;
  z-index: 0;
}
.form-switch .form-switch-label::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 16px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #eaf2ff;
  z-index: 1;
  transition: all 0.2s ease-in-out;
}

/*#endregion -------------- Switch */
/*#region ----------------- Textarea */
.textarea-group {
  position: relative;
  margin-bottom: 20px;
}
.textarea-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #6c6c73;
  margin-bottom: 5px;
}
.textarea-group .textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 0.8rem;
  font-size: 14px;
  padding: 12px;
  transition: all 0.3s ease-in-out;
  background-color: white;
}
.textarea-group .textarea:hover, .textarea-group .textarea:focus {
  border-color: #9e9e9e;
}
.textarea-group .textarea:disabled {
  background-color: #eaf2ff;
}

/*#endregion -------------- Textarea */
/*#region ----------------- BreadCrumb */
.breadcrumb .breadcrumb-list {
  margin: 0 0 1rem 0;
  display: flex;
  flex-wrap: wrap;
}
.breadcrumb .breadcrumb-item {
  font-size: 13px;
  color: #6c6c73;
}
.breadcrumb .breadcrumb-item + .breadcrumb-item {
  padding-right: 8px;
}
.breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  padding-left: 8px;
  color: #9e9e9e;
}
.breadcrumb .breadcrumb-item.active {
  color: #00381e;
  font-weight: 600;
}

/*#endregion -------------- BreadCrumb */
/*#region ----------------- Collapse */
.btn-collapse {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: white;
  color: #001101;
  box-shadow: 0px 5px 45px rgba(0, 56, 30, 0.1);
  padding: 12px 15px 12px 12px;
  cursor: pointer;
  position: relative;
  width: 100%;
  border-radius: 0.8rem;
}
.btn-collapse .icon {
  width: 34px;
  height: 34px;
  font-size: 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(45deg, #00381e, #55bf9b);
  border-radius: 50%;
}
.btn-collapse .icon:before {
  content: "";
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: center center;
  color: #9e9e9e;
  width: 20px;
  height: 20px;
}
.btn-collapse .icon.angle::before {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22m15%2018-6-6%206-6%22%2F%3E%3C%2Fsvg%3E");
}
.btn-collapse .icon.plus::before {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M5%2012h14%22%2F%3E%3Cpath%20d%3D%22M12%205v14%22%2F%3E%3C%2Fsvg%3E");
}
.btn-collapse .text {
  font-size: 17px;
  font-weight: 600;
  color: #001101;
  text-align: right;
  padding-left: 10px;
  width: calc(100% - 40px);
}
.btn-collapse.collapsed {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-color: #00381e;
}
.btn-collapse.collapsed .text {
  color: white;
}
.btn-collapse.collapsed .icon {
  background: transparent;
  border: 1px solid white;
}
.btn-collapse.collapsed .icon.angle::before {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22m6%209%206%206%206-6%22%2F%3E%3C%2Fsvg%3E");
}
.btn-collapse.collapsed .icon.plus::before {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M5%2012h14%22%2F%3E%3C%2Fsvg%3E");
}

.card-collapse {
  max-height: 0;
  overflow: hidden;
}
.card-collapse.show {
  max-height: 1000px;
}
.card-collapse .text {
  background-color: #00381e;
  padding: 15px 30px 30px 30px;
  border-radius: 0 0 0.8rem 0.8rem;
  color: white;
  text-align: justify;
  font-size: 14px;
  line-height: 26px;
}

@media (max-width: 1024px) {
  .btn-collapse .text {
    font-size: 16px;
  }
  .btn-collapse .icon {
    width: 30px;
    height: 30px;
    font-size: 18px;
  }
}
@media (max-width: 640px) {
  .btn-collapse .text {
    font-size: 14px;
  }
  .card-collapse .text {
    font-size: 13px;
    line-height: 24px;
  }
}
/*#endregion -------------- Collapse */
/*#region ----------------- Navbar */
.mynavbar {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  z-index: 999;
  padding: 20px 0;
}
.mynavbar .inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 1rem;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
}
.mynavbar .nav-logo a {
  display: block;
  position: relative;
  width: 140px;
}
.mynavbar .nav-logo a img {
  width: 100%;
}
.mynavbar .nav-links {
  padding: 0 20px;
}
.mynavbar .nav-links ul {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.mynavbar .nav-links ul li {
  position: relative;
}
.mynavbar .nav-links ul li a {
  font-size: 16px;
  color: #001101;
  display: block;
  padding: 25px 10px;
  position: relative;
}
.mynavbar .nav-links ul li a:hover {
  color: #001101;
}
.mynavbar .nav-links ul li.have-child {
  padding-left: 10px;
}
.mynavbar .nav-links ul li.have-child::before {
  content: "";
  position: absolute;
  left: 0;
  top: 30px;
  width: 16px;
  height: 16px;
  display: block;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%236c6c73%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20class%3D%22lucide-chevron-down%22%3E%3Cpath%20d%3D%22m6%209%206%206%206-6%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: 16px;
}
.mynavbar .nav-links ul li.have-child:hover > ul {
  display: flex;
}
.mynavbar .nav-links ul li.have-child ul {
  position: absolute;
  top: 100%;
  right: 0;
  display: none;
  flex-direction: column;
  background-color: white;
  padding: 10px 0;
  width: auto;
  min-width: 180px;
  border-radius: 10px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.15);
  gap: 0;
  animation: swipeupsmall 0.3s ease-in-out;
}
.mynavbar .nav-links ul li.have-child ul li {
  display: block;
  width: 100%;
}
.mynavbar .nav-links ul li.have-child ul a {
  padding: 10px;
}
.mynavbar .nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.mynavbar .nav-actions .item {
  padding: 15px 0;
  margin-right: 10px;
  position: relative;
}
.mynavbar .nav-actions .item:first-child {
  margin-right: 0;
}
.mynavbar .nav-actions .user-login:hover > .navbar-user-login {
  display: block;
}
.mynavbar .mobile-menu {
  display: none;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.mynavbar .btn-show-mobile-menu {
  width: 48px;
  height: 48px;
  padding: 2px;
  border-radius: 0;
  border: none;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #001101;
}
.mynavbar .btn-show-mobile-menu .lucide {
  display: flex;
}

#sidebar-menu {
  position: fixed;
  top: 0;
  right: -100%;
  max-height: 100dvh;
  height: 100dvh;
  width: 300px;
  z-index: 2002;
  background: #fff;
  transition: all 0.3s ease-in-out;
}
#sidebar-menu.active {
  right: 0;
}
#sidebar-menu .side-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}
#sidebar-menu .sidebar-header {
  padding: 2rem 1rem;
  position: relative;
  flex-shrink: 0;
  position: relative;
}
#sidebar-menu .sidebar-header .btn-close-menu {
  position: absolute;
  left: 10px;
  top: 24px;
  width: 40px;
  height: 40px;
  color: black;
  background-color: rgba(0, 0, 0, 0.1);
  border: none;
  border-radius: 50%;
  padding: 0;
  opacity: 0.4;
  display: flex;
  align-items: center;
  justify-content: center;
}
#sidebar-menu .sidebar-header .btn-close-menu:hover {
  opacity: 1;
}
#sidebar-menu .sidebar-header .sidebar-logo a {
  display: block;
  width: 150px;
}
#sidebar-menu .sidebar-header .sidebar-logo a img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#sidebar-menu .sidebar-body {
  height: 100%;
  overflow-y: auto;
  flex: 1 1 auto;
  padding-bottom: 40px;
}
#sidebar-menu .sidebar-body .item a {
  padding: 0.7rem 1rem;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  color: #001101;
  position: relative;
  transition: all 0.2s ease;
}
#sidebar-menu .sidebar-body .item a:hover {
  color: #00381e;
}
#sidebar-menu .sidebar-body .item a .lucide {
  margin-left: 10px;
  color: #00381e;
  width: 20px;
  height: 20px;
  position: relative;
}
#sidebar-menu .btn-collapse {
  background-color: white;
  box-shadow: none;
  border-radius: 0 !important;
  justify-content: flex-start;
  align-items: center;
  padding-left: 24px;
}
#sidebar-menu .btn-collapse::before {
  content: "";
  color: #9e9e9e;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: center center;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9ImN1cnJlbnRDb2xvciIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGNsYXNzPSJsdWNpZGUgbHVjaWRlLWNoZXZyb24tZG93bi1pY29uIGx1Y2lkZS1jaGV2cm9uLWRvd24iPjxwYXRoIGQ9Im02IDkgNiA2IDYtNiIvPjwvc3ZnPg==");
  position: absolute;
  left: 10px;
  top: 10px;
  opacity: 0.3;
  transform: rotate(90deg);
}
#sidebar-menu .btn-collapse.collapsed::before {
  transform: rotate(0deg);
}
#sidebar-menu .card-collapse ul {
  background-color: #e1e1e1;
  padding-right: 30px;
}
#sidebar-menu .card-collapse ul li a {
  font-size: 14px !important;
}
#sidebar-menu .card-collapse ul li a:hover {
  color: #00381e !important;
}

.sidebar-overlay {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2001;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}
.sidebar-overlay.active {
  display: block;
  opacity: 1;
}

.navbar-user-login {
  width: 280px;
  padding: 15px;
  border-radius: 15px;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
}
.navbar-user-login .menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-user-login .menu-header .info {
  display: grid;
  grid-template-columns: 45px 1fr;
  align-items: center;
}
.navbar-user-login .menu-header .thumb {
  border-radius: 50%;
  width: 45px;
  height: 45px;
  overflow: hidden;
  border: 2px solid #ddd;
}
.navbar-user-login .menu-header .thumb img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.navbar-user-login .menu-header .title {
  padding: 0 10px;
}
.navbar-user-login .menu-header .title h6 {
  font-size: 13px;
  font-weight: 600;
  color: #001101;
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.navbar-user-login .menu-header .title p {
  font-size: 12px;
  margin-bottom: 0;
  color: #9e9e9e;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.navbar-user-login .promo-code {
  text-align: left;
  margin-top: 5px;
}
.navbar-user-login .promo-code span {
  display: inline-block;
  background-color: #00381e;
  color: white;
  border-radius: 5rem;
  padding: 2px 10px;
  font-size: 13px;
}
.navbar-user-login .menu {
  border-top: 1px solid #ddd;
  padding-top: 15px;
  margin-top: 15px;
}
.navbar-user-login .menu li a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 8px;
  border-radius: 8px;
}
.navbar-user-login .menu li .lucide {
  margin-left: 10px;
  color: #9e9e9e;
}
.navbar-user-login .menu li:hover a {
  background-color: #f6f6f8;
}

@media (max-width: 1024px) {
  .mynavbar .inner {
    grid-template-columns: 100%;
    padding: 12px 10px;
  }
  .mynavbar .nav-links,
  .mynavbar .nav-actions {
    display: none;
  }
  .mynavbar .nav-logo {
    text-align: center;
  }
  .mynavbar .nav-logo a {
    margin: 0 auto;
  }
  .mynavbar .mobile-menu {
    display: block;
  }
}
@media (max-width: 350px) {
  #sidebar-menu {
    width: 100%;
    right: -100%;
  }
  #sidebar-menu.active {
    right: 0;
  }
}
/*#endregion -------------- Navbar */
/*#region ----------------- Hero */
.hero-home {
  padding-top: 140px;
  position: relative;
}
.hero-home::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 660px;
  height: 880px;
  background-image: url(../../assets-index/images/hero-back-logo.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right bottom;
  z-index: -1;
}
.hero-home .section-inner {
  position: relative;
  z-index: 10;
  background: linear-gradient(45deg, #00381e, #55bf9b);
  border-radius: 50px 0 50px 50px;
  padding: 20px 70px 90px 40px;
  position: relative;
  overflow: hidden;
}
.hero-home .section-inner.curve-bl {
  border-end-end-radius: 0;
  border-start-start-radius: 50px;
}
.hero-home .section-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../../assets-index/images/hero-bg-lines.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: 1;
}
.hero-home .text-content {
  position: relative;
  z-index: 12;
}
.hero-home .text-content h1 {
  color: white;
  margin-top: 0.8rem;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.hero-home .text-content p {
  color: white;
}
.hero-home .text-content .btns-action {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-home .image-content {
  position: relative;
  z-index: 12;
}
.hero-home .image-content .img-inner {
  width: 95%;
  margin: 0 auto;
}
.hero-home .image-content .img-inner img {
  width: 100%;
}
.hero-home .square-top {
  position: absolute;
  right: 0;
  top: 0;
  width: 80px;
  height: 80px;
  border-radius: 0 0 0 30px;
  background-color: white;
  z-index: 2;
}
.hero-home .square-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: -35px;
  width: 35px;
  height: 35px;
  display: block;
  background-image: url(../../assets-index/images/shape-curve.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}
.hero-home .square-top::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -35px;
  width: 35px;
  height: 35px;
  display: block;
  background-image: url(../../assets-index/images/shape-curve.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}
.hero-home .square-top.bottom-left {
  right: unset;
  left: 0;
  top: unset;
  bottom: 0;
  border-radius: 0 30px 0 0;
}
.hero-home .square-top.bottom-left::before {
  top: -35px;
  left: 0;
  transform: rotate(180deg);
}
.hero-home .square-top.bottom-left::after {
  right: -35px;
  bottom: 0;
  transform: rotate(180deg);
}
.hero-home.type-2 .section-inner {
  padding: 20px 70px;
}

.carousel-content {
  width: 65%;
  margin-right: auto;
  background-color: white;
  padding: 0 15px;
  border-radius: 0 40px 0 40px;
  position: relative;
  top: -82px;
  z-index: 11;
}
.carousel-content::before {
  content: "";
  position: absolute;
  left: 0;
  top: -50px;
  width: 50px;
  height: 50px;
  display: block;
  background-image: url(../../assets-index/images/shape-curve.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  transform: rotate(-180deg);
}
.carousel-content::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -50px;
  width: 50px;
  height: 50px;
  display: block;
  background-image: url(../../assets-index/images/shape-curve.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  transform: rotate(-180deg);
}
.carousel-content .carousel-inner::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 100px;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgb(255, 255, 255));
  z-index: 11;
  border-radius: 0 50px 0 0;
}
.carousel-content .carousel-inner::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100px;
  height: 100%;
  background: linear-gradient(90deg, rgb(255, 255, 255), rgba(255, 255, 255, 0.1));
  z-index: 11;
}

.swiper-partners-hero .swiper-slide img {
  width: 100%;
  filter: grayscale(1);
  opacity: 0.5;
  transition: all 0.3s ease-in-out;
}
.swiper-partners-hero .swiper-slide:hover img {
  opacity: 1;
  filter: grayscale(0);
}

@media (min-width: 1536px) {
  .carousel-content {
    top: -92px;
  }
}
@media (max-width: 1280px) {
  .hero-home::before {
    width: 620px;
    height: 740px;
  }
  .hero-home .section-inner {
    padding-top: 10px;
  }
  .hero-home .square-top {
    width: 65px;
    height: 65px;
  }
  .hero-home .text-content h1 {
    font-size: 28px;
  }
}
@media (max-width: 1024px) {
  .hero-home {
    padding-bottom: 80px;
    padding-top: 120px;
  }
  .hero-home::before {
    width: 50%;
    height: 100%;
    background-size: cover;
  }
  .hero-home .section-inner {
    padding: 70px 40px 20px 40px;
    border-radius: 40px 0 40px 40px;
  }
  .hero-home .square-top {
    width: 65px;
    height: 65px;
  }
  .hero-home .square-top::before, .hero-home .square-top::after {
    width: 28px;
    height: 28px;
  }
  .hero-home .square-top::before {
    left: -28px;
  }
  .hero-home .square-top::after {
    bottom: -28px;
  }
  .hero-home .square-top.bottom-left::before {
    top: -28px;
    left: 0;
  }
  .hero-home .square-top.bottom-left::after {
    right: -28px;
    bottom: 0;
  }
  .hero-home .text-content p {
    font-size: 14px;
  }
  .hero-home .text-content .btns-action {
    justify-content: center;
  }
  .hero-home .image-content .img-inner {
    width: 65%;
  }
  .hero-home.type-2 {
    padding-bottom: 0;
  }
  .hero-home.type-2 .section-inner {
    padding: 40px;
  }
  .carousel-content {
    top: 0;
    width: 100%;
  }
  .carousel-content::after, .carousel-content::before {
    display: none;
  }
  .carousel-content .carousel-inner::before {
    border-radius: 0;
    width: 80px;
  }
  .carousel-content .carousel-inner::after {
    width: 80px;
  }
}
@media (max-width: 768px) {
  .hero-home::before {
    width: 450px;
    height: 618px;
  }
  .hero-home .text-content h1 {
    font-size: 24px;
  }
  .hero-home .text-content p {
    font-size: 13px;
  }
}
@media (max-width: 640px) {
  .hero-home::before {
    width: 300px;
    height: 412px;
  }
  .hero-home .image-content .img-inner {
    width: 80%;
  }
}
/*#endregion -------------- Hero */
/*#region ----------------- Page Title */
.page-title {
  margin-bottom: 2.5rem;
}
.page-title .title-inner {
  text-align: center;
  position: relative;
}
.page-title .title-en {
  font-size: 54px;
  font-weight: 800;
  margin-bottom: 0;
  text-transform: uppercase;
  line-height: 1;
  background: -webkit-linear-gradient(-90deg, rgba(0, 56, 30, 0.3) 3%, rgba(85, 191, 155, 0.2) 56%, rgba(255, 255, 255, 0) 90%);
  -webkit-background-clip: text;
  -webkit-text-stroke: 2px transparent;
  color: white;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.page-title .title-fa {
  font-size: 32px;
  font-weight: 800;
  position: relative;
  top: -20px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  margin-bottom: 0;
}
.page-title p {
  margin-top: 12px;
}

@media (max-width: 1024px) {
  .page-title .title-inner {
    width: 100%;
  }
  .page-title .title-en {
    font-size: 48px;
  }
  .page-title .title-fa {
    font-size: 30px;
    top: -20px;
  }
  .page-title p {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .page-title .title-en {
    font-size: 44px;
  }
  .page-title .title-fa {
    font-size: 28px;
    top: -20px;
  }
}
@media (max-width: 640px) {
  .page-title .title-en {
    font-size: 40px;
  }
  .page-title .title-fa {
    font-size: 24px;
    top: -20px;
  }
}
/*#endregion -------------- Page Title */
/*#region ----------------- Master Background */
.features-section .section-inner {
  position: relative;
}
.features-section .section-inner::before {
  content: "";
  position: absolute;
  left: -5px;
  top: -18px;
  width: 93px;
  height: 118px;
  background-image: url(../../assets-index/images/shape-logo-triangle.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}
.features-section .section-inner::after {
  content: "";
  position: absolute;
  right: -10px;
  bottom: -12px;
  width: 93px;
  height: 118px;
  background-image: url(../../assets-index/images/shape-logo-triangle.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  z-index: -1;
}

@media (max-width: 1280px) {
  .features-section .section-inner::before {
    width: 80px;
    height: 102px;
  }
  .features-section .section-inner::after {
    width: 80px;
    height: 102px;
  }
}
@media (max-width: 640px) {
  .features-section .section-inner::before {
    width: 60px;
    height: 77px;
  }
  .features-section .section-inner::after {
    width: 60px;
    height: 77px;
  }
}
/*#endregion -------------- Master Background */
/*#region ----------------- Registration */
.development-section .section-inner {
  position: relative;
}
.development-section .section-inner::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 255px;
  height: calc(100% + 110px);
  background-image: url(../../assets-index/images/back-3.webp);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
}
.development-section .list-items {
  position: relative;
  padding: 10px 99px 40px 30px;
  width: 70%;
  margin-right: auto;
}
.development-section .list-items .item {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 12px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease-in-out;
  width: 100%;
}
.development-section .list-items .item:hover {
  background-color: rgba(255, 255, 255, 0.4);
}
.development-section .list-items .item .arrow {
  background: linear-gradient(45deg, #00381e, #55bf9b);
}

@media (max-width: 1280px) {
  .development-section .list-items {
    width: 80%;
    padding: 10px 65px 40px 60px;
  }
}
@media (max-width: 1024px) {
  .development-section .section-inner::before {
    display: none;
  }
  .development-section .list-items {
    display: none;
  }
}
/*#endregion -------------- Registration */
/*#region ----------------- Creation */
.creation-section .section-inner {
  position: relative;
}
.creation-section .section-inner::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 250px;
  height: calc(100% + 96px);
  background-image: url(../../assets-index/images/back-1.webp);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
}
.creation-section .image-content {
  position: relative;
}
.creation-section .image-content .img-inner {
  position: relative;
}

@media (max-width: 1280px) {
  .creation-section .section-inner {
    position: relative;
  }
  .creation-section .section-inner::before {
    width: 232px;
  }
}
@media (max-width: 1024px) {
  .creation-section .section-inner::before {
    width: 100%;
    height: 147px;
    background-image: url(../../assets-index/images/back-2.webp);
  }
}
@media (max-width: 768px) {
  .creation-section .section-inner::before {
    height: 125px;
  }
}
@media (max-width: 640px) {
  .creation-section .section-inner::before {
    height: 120px;
    background-position: right center;
    border-radius: 1rem 0 0 1rem;
  }
}
/*#endregion -------------- Creation */
/*#region ----------------- Application */
.application-section {
  margin: 180px 0;
}
.application-section .section-inner {
  background: linear-gradient(45deg, #55bf9b, #00381e 65%);
  position: relative;
  border-radius: 1.5rem;
}
.application-section .section-inner::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50%;
  height: 100%;
  background-image: url(../../assets-index/images/pattern-2.png);
  background-repeat: no-repeat;
  background-position: right top;
  border-radius: 0 0 0 1.5rem;
}
.application-section .text-content {
  padding: 50px 50px 50px 500px;
  position: relative;
}
.application-section .page-title .title-inner {
  text-align: right;
}
.application-section .page-title .title-en {
  background: -webkit-linear-gradient(-90deg, rgba(255, 255, 255, 0.4) 3%, rgba(255, 255, 255, 0.2) 56%, rgba(255, 255, 255, 0) 90%);
  -webkit-background-clip: text;
  -webkit-text-stroke: 2px transparent;
  color: #00381e;
}
.application-section .page-title .title-fa {
  color: white !important;
}
.application-section .image-content {
  position: absolute;
  left: 0;
  top: 50%;
  width: 500px;
  transform: translateY(-50%);
}
.application-section .image-content .img-inner img {
  width: 100%;
}

#talkcontent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
}
#talkcontent .talk {
  display: grid;
  grid-template-columns: 44px auto;
  align-items: center;
  background-color: rgba(0, 56, 30, 0.2);
  border-radius: 10rem;
  padding: 8px 8px 8px 20px;
  position: absolute;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
}
#talkcontent .talk .icon {
  width: 44px;
  height: 44px;
  overflow: hidden;
  border-radius: 50%;
}
#talkcontent .talk .icon img {
  width: 100%;
}
#talkcontent .talk .text {
  margin-right: 10px;
}
#talkcontent .talk .text h4 {
  font-size: 14px;
  font-weight: 800;
  color: white;
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
#talkcontent .talk .text p {
  margin-bottom: 0;
  font-size: 13px;
  color: white;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
#talkcontent .talk.talkitem1 {
  top: 30%;
  right: 0;
}
#talkcontent .talk.talkitem2 {
  bottom: 200px;
  left: 0;
}

@media (max-width: 1280px) {
  .application-section .image-content {
    width: 430px;
  }
  .application-section .text-content {
    padding-left: 430px;
  }
  #talkcontent .talk.talkitem1 {
    top: 90px;
  }
  #talkcontent .talk.talkitem2 {
    bottom: 100px;
  }
}
@media (max-width: 1024px) {
  .application-section {
    margin: 80px 0 130px 0;
  }
  .application-section .section-inner {
    background: linear-gradient(45deg, #55bf9b, #00381e 50%);
  }
  .application-section .section-inner::before {
    width: 100%;
    height: 300px;
  }
  .application-section .page-title .title-inner {
    text-align: center;
  }
  .application-section .text-content {
    padding: 50px 40px 0 40px;
  }
  .application-section .text-content .information p {
    text-align: center;
  }
  .application-section .text-content .btns-action {
    justify-content: center !important;
  }
  .application-section .image-content {
    position: relative;
    top: 40px;
    transform: unset;
    margin: 0 auto;
  }
}
@media (max-width: 640px) {
  .application-section .image-content {
    width: 80%;
  }
}
@media (max-width: 500px) {
  #talkcontent .talk {
    grid-template-columns: 38px auto;
  }
  #talkcontent .talk .icon {
    width: 38px;
    height: 38px;
  }
  #talkcontent .talk .text h4 {
    font-size: 13px;
  }
  #talkcontent .talk .text p {
    font-size: 12px;
  }
  #talkcontent .talk.talkitem1 {
    top: 30px;
  }
  #talkcontent .talk.talkitem2 {
    bottom: 70px;
  }
}
/*#endregion -------------- Application */
/*#region ----------------- Comments */
.comments-section {
  margin: 100px 0;
}
.comments-section .section-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 0 40px;
}
.comments-section .section-inner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 70%;
  height: 100%;
  background-color: #f6f6f8;
  z-index: -1;
  border-radius: 1rem;
}
.comments-section .section-inner::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 70%;
  height: 100%;
  background-image: url(../../assets-index/images/pattern-3.svg);
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.4;
  z-index: -1;
  border-radius: 1rem;
}
.comments-section .carousel-title {
  width: 280px;
}
.comments-section .carousel-title h3 {
  font-weight: 600;
  font-size: 22px;
}
.comments-section .carousel-title h3 span {
  margin: 1.2rem 0;
  font-size: 36px;
  display: block;
  position: relative;
  right: -30px;
  background: linear-gradient(38.44deg, #55bf9b 70%, #00381e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.swiper-comments {
  width: calc(100% - 280px);
}
.swiper-comments .swiper-wrapper {
  padding: 60px 0 80px 0;
}
.swiper-comments .swiper-slide {
  padding: 0 10px;
}
.swiper-comments .swiper-pagination {
  bottom: 20px !important;
}
.swiper-comments .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  border-radius: 1rem;
  border: 2px solid #00381e;
  opacity: 1;
  background-color: transparent;
  transition: all 0.2s ease-in-out;
}
.swiper-comments .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 32px;
  border: none;
  background: linear-gradient(45deg, #55bf9b, #00381e);
}

.card-comment {
  box-shadow: 0px -4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 1.5rem;
  padding: 30px;
  position: relative;
  background-color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.card-comment::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 15px;
  width: 48px;
  height: 48px;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22%23001101%22%3E%3Cpath%20class%3D%22st0%22%20d%3D%22M5%2C22h3c1.6%2C0%2C3-1.3%2C3-3v-6c0-1.7-1.4-3-3-3v-1c0-.5.5-1%2C1-1%2C1.1%2C0%2C2-.9%2C2-2v-2c0-1.1-.9-2-2-2-3.9%2C0-7%2C3.1-7%2C7v10c0%2C1.7%2C1.3%2C3%2C3%2C3Z%22%2F%3E%3Cpath%20class%3D%22st0%22%20d%3D%22M16%2C22h3c1.6%2C0%2C3-1.3%2C3-3v-6c0-1.7-1.4-3-3-3v-1c0-.5.5-1%2C1-1%2C1.1%2C0%2C2-.9%2C2-2v-2c0-1.1-.9-2-2-2-3.9%2C0-7%2C3.1-7%2C7v10c0%2C1.7%2C1.3%2C3%2C3%2C3Z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: 100%;
  opacity: 0.1;
}
.card-comment .c-header {
  display: grid;
  grid-template-columns: 80px auto;
  align-items: center;
}
.card-comment .c-header .thumb {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
}
.card-comment .c-header .thumb img {
  width: 100%;
  height: 100%;
}
.card-comment .c-header .info {
  padding-right: 10px;
}
.card-comment .c-header .info h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #001101;
}
.card-comment .c-header .info p {
  margin-bottom: 0;
  font-size: 14px;
  background: linear-gradient(38.44deg, #55bf9b 58%, #00381e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.card-comment .text {
  margin-top: 20px;
}
.card-comment .text p {
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
}

@media (max-width: 1280px) {
  .comments-section .section-inner::before, .comments-section .section-inner::after {
    width: 60%;
  }
  .card-comment .c-header {
    grid-template-columns: 70px auto;
  }
  .card-comment .c-header .thumb {
    width: 70px;
    height: 70px;
  }
  .card-comment .c-header .info h3 {
    font-size: 14px;
    margin-bottom: 5px;
  }
  .card-comment .c-header .info p {
    font-size: 13px;
  }
}
@media (max-width: 1024px) {
  .comments-section .section-inner {
    flex-direction: column;
    padding: 40px 30px 0 30px;
  }
  .comments-section .section-inner::before, .comments-section .section-inner::after {
    width: 80%;
  }
  .comments-section .carousel-title {
    width: 100%;
  }
  .comments-section .carousel-title h3 {
    font-size: 20px;
  }
  .comments-section .carousel-title h3 span {
    font-size: 30px;
    margin: 1rem 0;
  }
  .swiper-comments {
    width: 100%;
  }
  .swiper-comments .swiper-wrapper {
    padding-top: 20px;
  }
}
@media (max-width: 768px) {
  .card-comment {
    padding: 25px;
  }
  .card-comment::before {
    width: 38px;
    height: 38px;
  }
  .card-comment .c-header {
    grid-template-columns: 60px auto;
  }
  .card-comment .c-header .thumb {
    width: 60px;
    height: 60px;
  }
  .card-comment .text p {
    font-size: 13px;
    text-align: justify;
    line-height: 24px;
  }
}
@media (max-width: 640px) {
  .card-comment {
    padding: 20px;
  }
}
/*#endregion -------------- Comments */
/*#region ----------------- Faqs */
.faqs-section {
  margin: 100px 0;
}
.faqs-section .section-inner {
  background-color: #f6f6f8;
  border-radius: 1.5rem;
  position: relative;
  padding: 60px 50px 50px 50px;
}
.faqs-section .section-inner::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 200px;
  height: 290px;
  background-image: url(../../assets-index/images/pattern-4.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top right;
  opacity: 1;
  border-radius: 1rem;
}
.faqs-section .section-inner .page-title .title-en {
  color: #f6f6f8;
}
.faqs-section .faqs-list {
  width: 70%;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .faqs-section .section-inner {
    padding: 50px 40px 40px 40px;
  }
  .faqs-section .faqs-list {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .faqs-section .section-inner {
    padding: 50px 30px 30px 30px;
  }
}
/*#endregion -------------- Faqs */
/*#region ----------------- Blogs */
.swiper-custom-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
}

#swiper-custom-prevBtn,
#swiper-custom-nextBtn {
  width: 48px;
  height: 48px;
  background-color: transparent;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
#swiper-custom-prevBtn:hover,
#swiper-custom-nextBtn:hover {
  border-color: #00381e;
  color: #00381e;
}

.swiper-bloghome .swiper-wrapper {
  padding: 2px;
}

.card-blog .card-inner {
  display: block;
  border-radius: 20px;
  padding: 10px;
  border: 1px solid #ddd;
}
.card-blog .thumb img {
  width: 100%;
  border-radius: 10px;
}
.card-blog .info {
  margin-top: 10px;
}
.card-blog .info h3 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.7;
  height: 48px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-blog .status {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card-blog .status .date {
  font-size: 12px;
  color: #9e9e9e;
}
.card-blog .status .see-more {
  padding: 6px 20px;
  background-color: rgba(0, 56, 30, 0.1);
  color: #00381e;
  border-radius: 10rem;
  transition: all 0.2s ease-in-out;
}
.card-blog .status .see-more .lucide {
  width: 20px;
}
.card-blog:hover .status .see-more {
  background-color: #00381e;
  color: white;
}

/*#endregion -------------- Blogs */
/*#region ----------------- Subscription */
.subscription-section {
  margin: 100px 0;
  position: relative;
}
.subscription-section .section-inner {
  position: relative;
}
.subscription-section .section-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  height: 100%;
  background-color: #f6f6f8;
  border-radius: 1.5rem;
}
.subscription-section .logo {
  padding: 20px 10px 15px 20px;
  width: 200px;
  margin-right: 80px;
  position: relative;
}
.subscription-section .logo img {
  width: 100%;
}
.subscription-section .subscription {
  position: relative;
  border-radius: 30px;
  padding: 70px 80px 60px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.subscription-section .subscription::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0, 56, 30, 0.8) 0.42%, rgba(85, 191, 155, 0.8) 99.55%);
  border-radius: 30px;
  border: 1px solid white;
  transform: rotate(0.5deg) skewY(1deg);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.subscription-section .subscription .text,
.subscription-section .subscription .btns-action {
  position: relative;
}
.subscription-section .subscription .text h3 {
  font-size: 22px;
  font-weight: 600;
  color: white;
  margin-bottom: 1rem;
}
.subscription-section .subscription .text p {
  color: white;
  margin-bottom: 0;
  opacity: 0.8;
}
.subscription-section .subscription .btns-action {
  padding-left: 50px;
}

@media (max-width: 1024px) {
  .subscription-section .subscription .text h3 {
    font-size: 20px;
    margin-bottom: 0.8rem;
  }
  .subscription-section .subscription .text p {
    font-size: 14px;
  }
  .subscription-section .subscription .btns-action {
    padding-left: 0;
  }
  .subscription-section .logo {
    width: 200px;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .subscription-section .subscription {
    flex-direction: column;
    justify-content: center;
    padding: 30px;
  }
  .subscription-section .subscription .text {
    margin-bottom: 20px;
    text-align: center;
  }
  .subscription-section .subscription .text h3 {
    font-size: 18px;
    margin-bottom: 0.6rem;
  }
}
/*#endregion -------------- Subscription */
/*#region ----------------- Master Background */
#inner-text-description {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: all 3.3s ease-in-out;
  height: auto;
}
#inner-text-description.expanded {
  -webkit-line-clamp: unset;
}
#inner-text-description h1 {
  font-size: 20px;
  font-weight: 800;
  color: #001101;
  margin-bottom: 10px;
}
#inner-text-description h2,
#inner-text-description h3,
#inner-text-description h4,
#inner-text-description h5,
#inner-text-description h6 {
  margin: 2rem 0 1rem 0;
  font-size: 16px;
  font-weight: 600;
  color: #001101;
}
#inner-text-description p {
  font-size: 14px;
  font-weight: 400;
  color: #6c6c73;
  text-align: justify;
}
#inner-text-description ul li,
#inner-text-description ol li {
  font-size: 16px;
  font-weight: 400;
  color: #9e9e9e;
  text-align: justify;
  margin: 5px 0;
}
#inner-text-description ul {
  list-style: disc !important;
}
#inner-text-description .tags-list {
  margin: 10px 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
#inner-text-description .tags-list li {
  margin: 10px 0 10px 20px;
}
#inner-text-description .tags-list li a {
  display: inline-block;
  color: #00381e;
  font-size: 14px;
  font-weight: 400;
}

.description-section {
  margin: 80px 0;
}
.description-section .btns-action {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

#btn-seeMore-text {
  position: relative;
  padding: 10px 10px 10px 28px;
  font-size: 14px;
  background: linear-gradient(38.44deg, #55bf9b 3.98%, #00381e 95.98%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  display: flex;
  align-items: center;
}
#btn-seeMore-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 22px;
  height: 22px;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%2300381e%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M5%2012h14%22%2F%3E%3Cpath%20d%3D%22M12%205v14%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: 100%;
}
#btn-seeMore-text.active::before {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%2300381e%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M5%2012h14%22%2F%3E%3C%2Fsvg%3E");
}

.progress-container {
  width: 100%;
  position: relative;
  margin-bottom: 30px;
}

.progress-bar {
  width: 100%;
  height: 15px;
  background-color: #eaf2ff;
  border-radius: 10px;
  position: relative;
}
.progress-bar .progress-thumb {
  width: 22px;
  height: 22px;
  background-color: #00381e;
  box-shadow: 0px 5px 45px rgba(0, 56, 30, 0.1);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  cursor: pointer;
}
.progress-bar .progress-static {
  background-color: rgba(85, 191, 155, 0.5);
  height: 15px;
}

.value-popup {
  position: absolute;
  top: 22px;
  left: 0;
  background-color: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  padding: 8px;
  z-index: 10;
}

.popup-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.popup-content .text {
  margin-bottom: 5px;
  font-size: 13px;
  margin-left: 10px;
  text-align: right;
}
.popup-content .number {
  font-size: 13px;
  font-weight: 800;
  text-align: left;
}
.popup-content .number small {
  font-weight: 500;
}

.controls {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 20px;
}

.controls button {
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.controls button.decrease {
  background-color: #e0e0e0;
}

.controls button.increase {
  background-color: #4caf50;
  color: white;
}

.controls button:hover {
  opacity: 0.8;
}

.controls button.decrease:hover {
  background-color: #d0d0d0;
}

@media (max-width: 768px) {
  .description-section {
    margin: 60px 0;
  }
}
@media (max-width: 768px) {
  .text-expanded p {
    font-size: 11px;
    margin-bottom: 5px;
  }
}
@media (max-width: 640px) {
  .wavy-background::before {
    background-size: 200px;
  }
}
/*#endregion -------------- Master Background */
/*#region ----------------- Hero */
.footer .social-icons {
  margin: 10px 0;
}
.footer .social-icons ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.footer .social-icons ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
}
.footer .social-icons ul li a:hover {
  background-color: rgba(85, 191, 155, 0.2);
}
.footer .footer-links {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.footer .footer-social {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer .certificate ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.footer .certificate ul li {
  margin: 5px;
}
.footer .certificate ul li a {
  display: block;
  width: 70px;
}
.footer .certificate ul li a img {
  width: 100%;
  border-radius: 8px;
}
.footer .copyright {
  padding: 20px 15px;
  text-align: center;
  background: linear-gradient(45deg, #00381e, #55bf9b);
}

@media (max-width: 1024px) {
  .footer {
    padding-bottom: 110px;
  }
}
/*#endregion -------------- Hero */
/*#region ----------------- Toast Message */
.toast-container {
  position: fixed;
  bottom: 0;
  right: 50%;
  transform: translateX(50%);
  display: flex;
  flex-direction: column;
  z-index: 9999;
}

.toast-content {
  display: none;
  padding: 10px 0;
  width: 300px;
  max-width: 300px;
  animation: slideIn 0.3s ease, fadeOut 0.3s ease 3.5s forwards;
}
.toast-content .inner {
  display: grid;
  grid-template-columns: 40px auto;
  align-items: center;
  padding: 10px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.15);
  position: relative;
}
.toast-content .inner .icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.toast-content .inner .icon .fi {
  display: flex;
}
.toast-content .inner .text {
  padding: 5px 10px 5px 35px;
  font-size: 14px;
  color: #001101;
}
.toast-content.show {
  display: block;
}
.toast-content.success .inner .icon {
  background-color: rgba(34, 197, 94, 0.1);
  color: #22c55e;
}
.toast-content.error .inner .icon {
  background-color: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}
.toast-content.warning .inner .icon {
  background-color: rgba(251, 191, 36, 0.1);
  color: #fbbf24;
}
.toast-content.info .inner .icon {
  background-color: rgba(14, 165, 233, 0.1);
  color: #0ea5e9;
}
.toast-content .close-toastMessage {
  position: absolute;
  left: 10px;
  top: 12px;
  width: 28px;
  height: 28px;
  padding: 2px;
  background: none;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  color: #6c757d;
}

#blazor-error-ui {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100%;
  z-index: 1011;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  text-align: right;
  padding: 20px 15px 20px 100px;
  color: white;
  font-size: 14px;
  line-height: normal;
  background-color: rgba(239, 68, 68, 0.85);
}
#blazor-error-ui.error {
  background-color: rgba(239, 68, 68, 0.85);
}
#blazor-error-ui.success {
  background-color: rgba(34, 197, 94, 0.85);
}
#blazor-error-ui.info {
  background-color: rgba(14, 165, 233, 0.85);
}
#blazor-error-ui.warning {
  background-color: rgba(251, 191, 36, 0.85);
  color: #001101;
}
#blazor-error-ui.warning .dismiss {
  border-color: #6c6c73;
  color: #6c6c73;
}
#blazor-error-ui.warning .dismiss:hover {
  background-color: #6c6c73;
  color: #fbbf24;
}
#blazor-error-ui.warning .reload {
  background-color: rgba(0, 0, 0, 0.1);
  color: #6c6c73;
}
#blazor-error-ui.warning .reload:hover {
  background-color: #6c6c73;
  color: #fbbf24;
}
#blazor-error-ui .dismiss {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  font-size: 18px;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  border: 1px solid white;
  border-radius: 50%;
  cursor: pointer;
}
#blazor-error-ui .dismiss:hover {
  background-color: white;
  color: #ef4444;
}
#blazor-error-ui .dismiss .fi {
  display: flex;
}
#blazor-error-ui .reload {
  position: absolute;
  left: 60px;
  top: 50%;
  transform: translateY(-50%);
  height: 36px;
  width: 36px;
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  border-radius: 50%;
  font-size: 18px;
}
#blazor-error-ui .reload:hover {
  background-color: white;
  color: #ef4444;
}
#blazor-error-ui .reload .fi {
  display: flex;
}

@keyframes slideIn {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeOut {
  to {
    opacity: 0;
    transform: translateY(100%);
  }
}
@media (max-width: 575px) {
  .toast-container {
    width: 90%;
  }
  .toast-content {
    width: 100%;
    max-width: 100%;
  }
}
/*#endregion -------------- Toast Message */
/*#region ----------------- Master Background */
.navbar-bottom {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  padding: 16px;
  display: none;
}
.navbar-bottom .inner {
  border: 1px solid rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 1rem;
  display: grid;
  padding: 10px 8px;
  grid-template-columns: 25% 25% 25% 25%;
}
.navbar-bottom .item {
  text-align: center;
  position: relative;
}
.navbar-bottom .item::before {
  content: "";
  position: absolute;
  bottom: -10px;
  right: 50%;
  transform: translateX(50%);
  width: 12px;
  height: 4px;
  border-radius: 10px;
}
.navbar-bottom .item a {
  display: block;
}
.navbar-bottom .item .icon {
  width: 22px;
  height: 22px;
  margin: 0 auto;
  color: #6c6c73;
}
.navbar-bottom .item .icon .lucide {
  width: 22px;
  height: 22px;
}
.navbar-bottom .item .text {
  font-size: 12px;
  font-weight: 500;
  margin-top: 4px;
  color: #001101;
}
.navbar-bottom .item.active::before {
  background-color: rgba(0, 56, 30, 0.8);
}
.navbar-bottom .item.active .icon,
.navbar-bottom .item.active .text {
  color: #00381e;
}
.navbar-bottom .item.active .text {
  font-weight: 600;
}

@media (max-width: 1024px) {
  .navbar-bottom {
    display: block;
  }
}
@media (max-width: 640px) {
  .navbar-bottom .item .icon {
    width: 20px;
    height: 20px;
  }
  .navbar-bottom .item .icon .lucide {
    width: 20px;
    height: 20px;
  }
  .navbar-bottom .item .text {
    font-size: 10px;
  }
}
/*#endregion -------------- Master Background */
/*#region ----------------- Login */
.login-wrapper {
  width: 100%;
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 100px 0;
}
.login-wrapper::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../../assets-index/images/login-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: 1;
}
.login-wrapper .login-inner {
  width: 500px;
  background-color: rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 20px;
  border-radius: 1.2rem;
  position: relative;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.15);
  z-index: 100;
}
.login-wrapper .login-inner .logo {
  width: 160px;
  margin: 0 auto;
}
.login-wrapper .login-inner .logo img {
  width: 100%;
}
.login-wrapper .login-inner .login-button {
  text-align: center;
  padding: 20px 0 5px 0;
}
.login-wrapper .login-inner .login-button .btn {
  width: 100%;
}
.login-wrapper .form-content {
  margin-top: 40px;
}
.login-wrapper .form-content .input-group label {
  color: white;
}
.login-wrapper .form-content .input-group .input {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
  font-size: 17px;
}
.login-wrapper .form-content .input-group .input:hover, .login-wrapper .form-content .input-group .input:focus {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: white;
}

.time-countdown {
  text-align: center;
  margin-bottom: 15px;
}
.time-countdown .time-show {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0;
  text-align: center;
  color: white;
}
.time-countdown .btn-link {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10rem;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  color: white;
  margin: 0 auto;
  padding-bottom: 5px;
}

@media (max-width: 768px) {
  .login-wrapper .login-inner {
    width: 100%;
    margin: 0 20px;
  }
}
/*#endregion -------------- Login */
/*#region ----------------- Documents */
.body-bg-pattern {
  background-color: white;
  background: repeating-linear-gradient(-45deg, #ddd, #eee 1px, #f7f7f8 1px, #f7f7f8 10px);
}

.navbar-doc {
  background-color: white;
  position: fixed;
  top: 0;
  right: 0;
  inset-inline: 0;
  border: 1px solid #ddd;
  z-index: 300;
}
.navbar-doc .nav-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  padding: 8px 0;
  height: 58px;
}
.navbar-doc .nav-logo {
  display: flex;
  align-items: center;
}
.navbar-doc .nav-logo a {
  width: 140px;
  display: block;
}
.navbar-doc .nav-logo img {
  width: 100%;
}
.navbar-doc .nav-logo .version {
  background-color: #e1e1e1;
  font-size: 14px;
  font-weight: 400;
  color: #6c6c73;
  padding: 1px 8px;
  border-radius: 5rem;
  margin-right: 10px;
  white-space: nowrap;
}
.navbar-doc .nav-action {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.navbar-doc .nav-search {
  display: grid;
  grid-template-columns: auto 24px;
  align-items: center;
  background-color: #e1e1e1;
  border-radius: 10px;
  padding-left: 8px;
  cursor: pointer;
}
.navbar-doc .nav-search .text {
  width: 130px;
  font-size: 13px;
  font-weight: 400;
  height: 34px;
  padding: 5px 10px 5px 20px;
  color: #001101;
}
.navbar-doc .nav-search .icon {
  width: 24px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9e9e9e;
}
.navbar-doc .nav-search .icon .lucide {
  width: 20px;
  height: 20px;
}
.navbar-doc .nav-menu {
  display: none;
}
.navbar-doc .nav-menu .btn-sidebar {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.documeny-wrapper {
  min-height: 100dvh;
  padding-top: 58px;
  display: flex;
  align-items: start;
  justify-content: flex-start;
  flex-wrap: wrap;
  position: relative;
}
.documeny-wrapper .sidebar {
  border-left: 1px solid #ddd;
  background-color: white;
  width: 285px;
  position: sticky;
  right: 0;
  top: 58px;
  height: 100dvh;
  max-height: calc(100dvh - 58px);
  padding: 1rem;
  overflow-y: auto;
}
.documeny-wrapper .sidebar .btn-close-sidebar {
  position: absolute;
  left: 10px;
  top: 10px;
  width: 40px;
  height: 30px;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0.4;
}
.documeny-wrapper .sidebar .btn-close-sidebar:hover {
  opacity: 1;
}
.documeny-wrapper .main {
  width: calc(100% - 325px);
  min-height: 100dvh;
  margin-right: 40px;
  background-color: white;
  padding: 30px 40px 40px 280px;
  border-right: 1px solid #ddd;
}
.documeny-wrapper .page-link {
  margin-bottom: 30px;
}
.documeny-wrapper .page-link li.active a {
  border-right-color: #55bf9b;
}
.documeny-wrapper .page-link li.active .lucide {
  color: #001101 !important;
}
.documeny-wrapper .page-link li.active span {
  color: #001101 !important;
}
.documeny-wrapper .page-link li a {
  border-right: 4px solid transparent;
}
.documeny-wrapper .page-link li a:hover .lucide {
  color: #6c6c73 !important;
}
.documeny-wrapper .page-link li a:hover span {
  color: #6c6c73 !important;
}
.documeny-wrapper .sidebar-links .mini-title {
  font-size: 13px;
  font-weight: 400;
  color: #001101;
  margin-bottom: 10px;
  display: block;
}
.documeny-wrapper .sidebar-links > li {
  padding-right: 15px;
  border-right: 2px solid #ddd;
}
.documeny-wrapper .sidebar-links > li > ul {
  margin-bottom: 30px;
}
.documeny-wrapper .sidebar-links > li > ul > li {
  border-right: none;
}
.documeny-wrapper .sidebar-links > li > ul > li a {
  font-size: 14px;
  font-weight: 400;
  color: #9e9e9e;
  display: block;
  padding: 5px 0;
  position: relative;
}
.documeny-wrapper .sidebar-links > li > ul > li a::before {
  content: "";
  position: absolute;
  right: -16px;
  top: 0;
  width: 2px;
  height: 100%;
  background-color: transparent;
}
.documeny-wrapper .sidebar-links > li > ul > li a:hover {
  color: #001101;
}
.documeny-wrapper .sidebar-links > li > ul > li a.active {
  color: #001101;
}
.documeny-wrapper .sidebar-links > li > ul > li a.active::before {
  background-color: black;
}
.documeny-wrapper .sidebar-links > li > ul > li > ul {
  padding-right: 20px;
}
.documeny-wrapper .sidebar-links > li > ul > li > ul a::before {
  right: -31px;
}

@media (max-width: 1024px) {
  .navbar-doc .nav-inner {
    grid-template-columns: 64px auto 1fr;
  }
  .navbar-doc .nav-logo a {
    width: 130px;
  }
  .navbar-doc .nav-logo .version {
    font-size: 13px;
  }
  .navbar-doc .nav-search {
    padding: 0;
    grid-template-columns: 100%;
    background-color: transparent;
  }
  .navbar-doc .nav-search .text {
    display: none;
    height: unset;
  }
  .navbar-doc .nav-search .icon {
    width: 40px;
    height: 40px;
  }
  .navbar-doc .nav-search .icon .lucide {
    width: 24px;
    height: 24px;
  }
  .navbar-doc .nav-menu {
    display: block;
  }
  .documeny-wrapper {
    overflow: hidden;
  }
  .documeny-wrapper .sidebar {
    position: fixed;
    right: -285px;
    top: 0;
    z-index: 2002;
    height: 100dvh;
    max-height: unset;
    transition: all 0.2s ease-in-out;
    padding-top: 40px;
  }
  .documeny-wrapper .sidebar.active {
    right: 0;
  }
  .documeny-wrapper .sidebar .btn-close-sidebar {
    display: flex;
  }
  .documeny-wrapper .main {
    width: calc(100% - 32px);
    margin: 0 auto;
    border-left: 1px solid #ddd;
    padding: 30px;
  }
  #scrollspy-menus {
    display: none;
  }
}
@media (max-width: 640px) {
  .documeny-wrapper .main {
    width: calc(100% - 20px);
    padding: 30px 20px 20px 20px;
  }
}
@media (max-width: 400px) {
  .documeny-wrapper .sidebar {
    width: 100%;
    right: -100%;
  }
}
/*#endregion -------------- Documents */
/*#region ----------------- Register Steps */
.register-steps {
  margin: 100px 0;
}

.card-step {
  background: linear-gradient(45deg, #55bf9b, #00381e);
  padding: 40px 30px 30px 40px;
  border-radius: 1.2rem;
  position: relative;
  margin-bottom: 20px;
}
.card-step::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 105px;
  height: 100%;
  background-image: url(../../assets-index/images/fino-line.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  border-radius: 0 0 0 1.2rem;
  opacity: 0.5;
}
.card-step h4 {
  color: white;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
}
.card-step p {
  margin-bottom: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  min-height: 68px;
  text-align: justify;
}
.card-step .number {
  position: absolute;
  left: -10px;
  top: -10px;
  width: 54px;
  height: 54px;
  background-color: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 22px;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

/*#endregion -------------- Register Steps */
/*#region ----------------- Page Header */
.page-header {
  position: relative;
  padding-top: 140px;
  margin-bottom: 64px;
}
.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 660px;
  height: 500px;
  background-image: url(../../assets-index/images/hero-back-logo.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right bottom;
  z-index: -1;
}
.page-header .section-inner {
  position: relative;
  z-index: 10;
  background: linear-gradient(45deg, #00381e, #55bf9b);
  border-radius: 50px;
  padding: 70px 40px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.page-header .section-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../../assets-index/images/hero-bg-lines.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left top;
  z-index: 1;
}
.page-header .title {
  font-size: 26px;
  font-weight: 600;
  color: white;
  text-align: center;
  position: relative;
  z-index: 5;
}
.page-header p {
  color: white;
  margin-bottom: 0;
  opacity: 0.85;
  text-align: center;
  position: relative;
  z-index: 5;
}
.page-header .btns-action {
  position: relative;
  z-index: 5;
}

@media (max-width: 1024px) {
  .page-header {
    padding-top: 130px;
  }
  .page-header::before {
    width: 500px;
  }
  .page-header .title {
    font-size: 24px;
  }
  .page-header p {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .page-header::before {
    width: 60%;
  }
  .page-header .section-inner {
    padding: 60px 30px;
    border-radius: 35px;
  }
  .page-header .title {
    font-size: 22px;
  }
  .page-header p {
    font-size: 13px;
  }
}
@media (max-width: 640px) {
  .page-header .section-inner {
    padding: 50px 20px;
  }
}
/*#endregion -------------- Page Header */