/*#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% {
    -webkit-transform: rotate(360deg);
    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: #04002c;
}

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

p {
  color: #6c6c73;
}

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

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

svg,
img {
  vertical-align: middle;
}

button {
  cursor: pointer;
}

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

::selection {
  background-color: #fa193f;
  color: white;
}

.shadow-primary {
  box-shadow: 0 4px 40px rgba(250, 25, 63, 0.4);
}

/*#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.8rem 1.2rem;
  border-radius: 0.8rem;
  border: none;
  box-shadow: none;
  position: relative;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  height: 48px;
  line-height: 1.6;
}
.btn:hover, .btn:focus {
  box-shadow: none !important;
}
.btn .lucide {
  width: 22px;
  height: 22px;
  color: #6c6c73;
  transition: all 0.2s ease-in-out;
}
.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: 12px;
}
.icon-right:hover .lucide {
  right: 10px;
}

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

.btn-primary {
  background: #fa193f;
  color: white;
  border-color: none;
}
.btn-primary:hover, .btn-primary:focus {
  color: white;
  background: rgb(250.5, 48, 82.2);
}
.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: #f10604;
}
.btn-primary.color-danger:hover, .btn-primary.color-danger:focus {
  background: rgb(251.9714285714, 74.0428571429, 72.5285714286);
}
.btn-primary.color-success {
  background: #0a9d57;
}
.btn-primary.color-success:hover, .btn-primary.color-success:focus {
  background: rgb(12.0538922156, 189.2461077844, 104.8688622754);
}
.btn-primary.color-info {
  background: #4864ef;
}
.btn-primary.color-info:hover, .btn-primary.color-info:focus {
  background: rgb(90.3, 115.5, 240.6);
}
.btn-primary.color-warning {
  background: #e2c80b;
  color: #04002c;
}
.btn-primary.color-warning:hover, .btn-primary.color-warning:focus {
  background: rgb(243.5962025316, 216.6417721519, 20.7037974684);
}
.btn-primary.color-white {
  background: white;
  color: #fa193f;
}
.btn-primary.color-white .lucide {
  color: #fa193f;
}
.btn-primary.color-ghost {
  background: #f3f3f5;
  color: #fa193f;
  border: none;
}
.btn-primary.color-ghost .lucide {
  color: #fa193f;
}
.btn-primary.color-ghost:hover, .btn-primary.color-ghost:focus {
  background: rgb(216.3818181818, 216.3818181818, 222.8181818182);
}

.btn-secondary {
  background: #3a62b9;
  color: white;
  border: none;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: rgb(92.3827160494, 127.5432098765, 204.0172839506);
}
.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: #fa193f;
  border: 1px solid #fa193f;
}
.btn-primary-outline::before {
  background-color: rgba(250, 25, 63, 0.3);
}
.btn-primary-outline:hover, .btn-primary-outline:focus {
  background: rgba(250, 25, 63, 0.15);
  color: #fa193f;
}
.btn-primary-outline .lucide {
  color: #fa193f;
}
.btn-primary-outline.loading::before {
  border: 3px solid rgba(250, 25, 63, 0.2);
  border-top: 3px solid #fa193f;
}
.btn-primary-outline.color-gray {
  background-color: white;
  color: #04002c;
  border-color: #ddd;
}
.btn-primary-outline.color-gray .lucide {
  color: #6c6c73;
}
.btn-primary-outline.color-gray:hover {
  background-color: #f3f3f5;
}

.btn-secondary-outline {
  background: transparent;
  color: #3a62b9;
  border: 1px solid #3a62b9;
}
.btn-secondary-outline::before {
  background-color: rgba(58, 98, 185, 0.3);
}
.btn-secondary-outline:hover, .btn-secondary-outline:focus {
  background: rgba(58, 98, 185, 0.15);
  color: #3a62b9;
}
.btn-secondary-outline .lucide {
  color: #3a62b9;
}
.btn-secondary-outline.loading::before {
  border: 3px solid rgba(58, 98, 185, 0.2);
  border-top: 3px solid #3a62b9;
}

.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: #f3f3f5;
  color: #6c6c73;
}
.btn-icon.color- .btn-icon.color-info {
  background-color: #4864ef;
  color: white;
}
.btn-icon.color- .btn-icon.color-info:hover, .btn-icon.color- .btn-icon.color-info:focus {
  background-color: rgb(90.3, 115.5, 240.6);
}
.btn-icon.color-grey {
  background-color: #f3f3f5;
  color: #6c6c73;
}
.btn-icon.color-grey:hover, .btn-icon.color-grey:focus {
  background-color: rgb(236.1, 243.3, 255);
}
.btn-icon.color-danger {
  background-color: #f10604;
  color: white;
}
.btn-icon.color-danger:hover, .btn-icon.color-danger:focus {
  background-color: rgb(251.106122449, 22.3408163265, 20.393877551);
}
.btn-icon.color-secondary {
  background-color: #3a62b9;
  color: white;
}
.btn-icon.color-secondary:hover, .btn-icon.color-secondary:focus {
  background-color: rgb(72.0555555556, 111.6111111111, 197.6444444444);
}
.btn-icon.color-warning {
  background-color: #e2c80b;
  color: white;
}
.btn-icon.color-warning:hover, .btn-icon.color-warning:focus {
  background-color: rgb(243.5962025316, 216.6417721519, 20.7037974684);
}
.btn-icon.color-primary {
  background-color: #fa193f;
  color: white;
}
.btn-icon.color-primary:hover, .btn-icon.color-primary:focus {
  background-color: rgb(250.5, 48, 82.2);
}

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

/*#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(42, 42, 44, 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: #04002c;
  display: block;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  white-space: nowrap;
  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(250, 25, 63, 0.1);
  color: #fa193f;
}
.dropdown .dropdown-menu .dropdown-item:hover .lucide, .dropdown .dropdown-menu .dropdown-item:focus .lucide {
  color: #fa193f;
}
.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: #fa193f;
  color: #fa193f;
  font-weight: 600;
}
.nav-tabs .nav-link.active .badge.badge-primary {
  background-color: #3a62b9;
}
.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: #fa193f;
  color: white;
}
.nav-tabs.type-fill .nav-link.active:hover {
  color: white;
}
.nav-tabs.type-fill .nav-link:hover {
  color: #fa193f;
}
.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: #fa193f;
}
.nav-tabs.type-row .nav-link:hover {
  color: #04002c;
}

.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: 0.8rem;
}
.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: #04002c;
}
.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: #fa193f;
}
.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;
  appearance: none;
}
.form-radio .form-radio-input:checked ~ .form-radio-label::before {
  background-color: #fa193f;
  border-color: #fa193f;
}
.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: #04002c;
  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: 16px;
}
.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.5rem;
  font-size: 14px;
  padding: 0.67rem 0.875rem 0.67rem 2rem;
  height: 44px;
  transition: all 0.3s ease-in-out;
  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: #f10604;
}
.select-group .text-alert.success {
  color: #f10604;
}

/*#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: #04002c;
  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;
  user-select: none;
}
.table-custom .table-body .table-row:hover {
  background-color: rgba(250, 25, 63, 0.15);
}
.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: #04002c;
}
.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;
}

@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: 16px;
}
.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.5rem;
  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: #04002c;
  cursor: pointer;
  padding-right: 10px;
}
.checkbox-group .form-check-input {
  cursor: pointer;
  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: #fa193f;
  background-color: #fa193f;
}
.checkbox-group .form-check-input:checked::before {
  opacity: 1;
}
.checkbox-group .form-check-input:disabled {
  background-color: #f3f3f5;
  border-color: #f3f3f5;
}
.checkbox-group .form-check-input:disabled.checked {
  opacity: 0.6;
  border-color: #fa193f;
  background-color: #fa193f;
}
.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: #fa193f;
  background-color: #fa193f;
}
.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: #fa193f;
}
.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: #fa193f;
}
.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: #fa193f;
  opacity: 0.6;
}
.form-switch .form-switch-label {
  position: relative;
  padding-right: 40px;
  font-size: 16px;
  color: #04002c;
  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: 16px;
}
.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.5rem;
  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: #fa193f;
  font-weight: 600;
}

/*#endregion -------------- BreadCrumb */
/*#region ----------------- Collapse */
.collapse-item {
  box-shadow: 0px 5px 45px rgba(42, 42, 44, 0.08);
  position: relative;
  z-index: 10;
  background-color: white;
}

.btn-collapse {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  background-color: white;
  color: #04002c;
  width: 100%;
  padding: 20px 20px 20px 10px;
  cursor: pointer;
  position: relative;
  border-radius: 1rem;
  text-align: right;
}
.btn-collapse .icon {
  width: 24px;
  height: 24px;
  font-size: 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-collapse .icon:before {
  content: "";
  position: relative;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: center center;
  transition: all 0.2s ease-in-out;
}
.btn-collapse .icon.arrow-down::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%22currentColor%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20data-lucide%3D%22chevron-down%22%20class%3D%22lucide%20lucide-chevron-down%20arrow-icon%22%3E%3Cpath%20d%3D%22m6%209%206%206%206-6%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E");
  transform: rotate(90deg);
}
.btn-collapse .icon.plus::before {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9ImN1cnJlbnRDb2xvciIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGRhdGEtbHVjaWRlPSJwbHVzIiBjbGFzcz0ibHVjaWRlIGx1Y2lkZS1wbHVzIj48cGF0aCBkPSJNNSAxMmgxNCI+PC9wYXRoPjxwYXRoIGQ9Ik0xMiA1djE0Ij48L3BhdGg+PC9zdmc+");
}
.btn-collapse .name {
  font-size: 14px;
  font-weight: 600;
  color: #04002c;
}
.btn-collapse.collapsed .icon.plus::before {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9ImN1cnJlbnRDb2xvciIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGRhdGEtbHVjaWRlPSJtaW51cyIgY2xhc3M9Imx1Y2lkZSBsdWNpZGUtbWludXMiPjxwYXRoIGQ9Ik01IDEyaDE0Ij48L3BhdGg+PC9zdmc+");
}
.btn-collapse.collapsed .icon.arrow-down::before {
  transform: rotate(0deg);
}
.btn-collapse.type-simple {
  border: none;
}

.card-collapse {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.card-collapse.show {
  max-height: 1000px;
}
.card-collapse .text {
  padding: 0 20px 20px 20px;
  color: #6c6c73;
  font-size: 14px;
}

@media (max-width: 768px) {
  .btn-collapse {
    font-size: 14px;
  }
  .card-collapse .text {
    font-size: 13px;
  }
}
/*#endregion -------------- Collapse */
/*#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(42, 42, 44, 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: #04002c;
}
.toast-content.show {
  display: block;
}
.toast-content.success .inner .icon {
  background-color: rgba(10, 157, 87, 0.1);
  color: #0a9d57;
}
.toast-content.error .inner .icon {
  background-color: rgba(241, 6, 4, 0.1);
  color: #f10604;
}
.toast-content.warning .inner .icon {
  background-color: rgba(226, 200, 11, 0.1);
  color: #e2c80b;
}
.toast-content.info .inner .icon {
  background-color: rgba(72, 100, 239, 0.1);
  color: #4864ef;
}
.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;
  backdrop-filter: blur(10px);
  text-align: right;
  padding: 20px 15px 20px 100px;
  color: white;
  font-size: 14px;
  line-height: normal;
  background-color: rgba(241, 6, 4, 0.85);
}
#blazor-error-ui.error {
  background-color: rgba(241, 6, 4, 0.85);
}
#blazor-error-ui.success {
  background-color: rgba(10, 157, 87, 0.85);
}
#blazor-error-ui.info {
  background-color: rgba(72, 100, 239, 0.85);
}
#blazor-error-ui.warning {
  background-color: rgba(226, 200, 11, 0.85);
  color: #04002c;
}
#blazor-error-ui.warning .dismiss {
  border-color: #6c6c73;
  color: #6c6c73;
}
#blazor-error-ui.warning .dismiss:hover {
  background-color: #6c6c73;
  color: #e2c80b;
}
#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: #e2c80b;
}
#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: #f10604;
}
#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: #f10604;
}
#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 ----------------- Navbar */
.mynavbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0px 2px 8px rgba(42, 42, 44, 0.1);
  display: flex;
  align-items: center;
  backdrop-filter: blur(10px);
}
.mynavbar .container {
  height: 100%;
}
.mynavbar .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
  padding: 8px 0;
}
.mynavbar .nav-logo {
  flex-shrink: 0;
}
.mynavbar .nav-logo a {
  display: flex;
  align-items: center;
  width: 70px;
}
.mynavbar .nav-logo a img {
  width: 100%;
}
.mynavbar .nav-links {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mynavbar .nav-links > ul {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.mynavbar .nav-links > ul > li {
  position: relative;
}
.mynavbar .nav-links > ul > li > a {
  display: flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
  font-size: 14px;
  font-weight: 500;
  color: #04002c;
  border-radius: 0.5rem;
  transition: all 0.2s ease-in-out;
  white-space: nowrap;
}
.mynavbar .nav-links > ul > li > a:hover {
  background-color: #f3f3f5;
  color: #fa193f;
}
.mynavbar .nav-links > ul > li.have-child > a::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 4px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236c6c73' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m6 9 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: transform 0.2s ease-in-out;
}
.mynavbar .nav-links > ul > li.have-child:hover > a::after {
  transform: rotate(180deg);
}
.mynavbar .nav-links > ul > li .dropdown-menu-nav {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  padding: 6px;
  min-width: 180px;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s ease-in-out;
  z-index: 100;
}
.mynavbar .nav-links > ul > li .dropdown-menu-nav li a {
  display: block;
  padding: 8px 12px;
  font-size: 14px;
  color: #04002c;
  border-radius: 8px;
  transition: all 0.15s ease-in-out;
  white-space: nowrap;
}
.mynavbar .nav-links > ul > li .dropdown-menu-nav li a:hover {
  background-color: rgba(0, 56, 30, 0.08);
  color: #fa193f;
}
.mynavbar .nav-links > ul > li .dropdown-menu-nav.mega-menu {
  min-width: 360px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mynavbar .nav-links > ul > li .dropdown-menu-nav.mega-menu .mega-col {
  list-style: none;
}
.mynavbar .nav-links > ul > li .dropdown-menu-nav.mega-menu .mega-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 12px;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.15s ease-in-out;
  text-decoration: none;
  color: inherit;
}
.mynavbar .nav-links > ul > li .dropdown-menu-nav.mega-menu .mega-item:hover {
  background-color: #f3f3f5;
}
.mynavbar .nav-links > ul > li .dropdown-menu-nav.mega-menu .mega-item .mega-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mynavbar .nav-links > ul > li .dropdown-menu-nav.mega-menu .mega-item .mega-icon .lucide {
  width: 26px;
  height: 26px;
}
.mynavbar .nav-links > ul > li .dropdown-menu-nav.mega-menu .mega-item > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mynavbar .nav-links > ul > li .dropdown-menu-nav.mega-menu .mega-item > div:last-child strong {
  font-size: 14px;
  font-weight: 600;
  color: #04002c;
  display: block;
}
.mynavbar .nav-links > ul > li .dropdown-menu-nav.mega-menu .mega-item > div:last-child span {
  font-size: 12px;
  color: #6c6c73;
  display: block;
}
.mynavbar .nav-links > ul > li .dropdown-menu-nav.mega-menu .mega-divider {
  height: 1px;
  background-color: #ddd;
  margin: 8px 0;
}
.mynavbar .nav-links > ul > li .dropdown-menu-nav.mega-menu .mega-col-footer a {
  display: block;
  padding: 8px 12px;
  font-size: 14px;
  color: #6c6c73;
  border-radius: 8px;
  transition: all 0.15s ease-in-out;
}
.mynavbar .nav-links > ul > li .dropdown-menu-nav.mega-menu .mega-col-footer a:hover {
  background-color: rgba(0, 56, 30, 0.08);
  color: #fa193f;
}
.mynavbar .nav-links > ul > li .dropdown-menu-nav.mega-menu .mega-col-footer a strong {
  font-weight: 600;
  color: #04002c;
}
.mynavbar .nav-links > ul > li.have-child:hover .dropdown-menu-nav {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mynavbar .nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.mynavbar .mobile-menu {
  display: none;
}
.mynavbar .btn-show-mobile-menu .lucide {
  width: 38px;
  height: 28px;
}

#sidebar-menu {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background-color: #fff;
  z-index: 10000;
  transition: right 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
}
#sidebar-menu.open {
  right: 0;
}
#sidebar-menu .side-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}
#sidebar-menu .sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid #ddd;
  flex-shrink: 0;
}
#sidebar-menu .sidebar-logo img {
  height: 36px;
}
#sidebar-menu .btn-close-menu {
  background: none;
  border: none;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #6c6c73;
  cursor: pointer;
}
#sidebar-menu .btn-close-menu:hover {
  background-color: #f3f3f5;
}
#sidebar-menu .btn-close-menu .lucide {
  width: 20px;
  height: 20px;
}
#sidebar-menu .sidebar-body {
  flex: 1;
  overflow-y: auto;
  padding: 0.75rem;
}
#sidebar-menu .sidebar-body .item {
  border-radius: 10px;
  margin-bottom: 2px;
}
#sidebar-menu .sidebar-body .item > a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 500;
  color: #04002c;
  border-radius: 10px;
  transition: all 0.15s ease-in-out;
}
#sidebar-menu .sidebar-body .item > a .lucide {
  width: 18px;
  height: 18px;
  color: #6c6c73;
  flex-shrink: 0;
}
#sidebar-menu .sidebar-body .item > a:hover {
  background-color: #f3f3f5;
}
#sidebar-menu .sidebar-body .item.has-sub .sub-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 500;
  color: #04002c;
  border-radius: 10px;
  transition: all 0.15s ease-in-out;
  cursor: pointer;
  width: 100%;
}
#sidebar-menu .sidebar-body .item.has-sub .sub-toggle .lucide {
  width: 18px;
  height: 18px;
  color: #6c6c73;
  flex-shrink: 0;
}
#sidebar-menu .sidebar-body .item.has-sub .sub-toggle .arrow-icon {
  margin-right: auto;
  margin-left: 0;
  transition: transform 0.2s ease-in-out;
}
#sidebar-menu .sidebar-body .item.has-sub .sub-toggle:hover {
  background-color: #f3f3f5;
}
#sidebar-menu .sidebar-body .item.has-sub.open .sub-toggle {
  background-color: #f3f3f5;
}
#sidebar-menu .sidebar-body .item.has-sub.open .sub-toggle .arrow-icon {
  transform: rotate(180deg);
}
#sidebar-menu .sidebar-body .item.has-sub .sub-menu {
  list-style: none;
  padding: 4px 0 4px 14px;
  margin: 0;
  display: none;
}
#sidebar-menu .sidebar-body .item.has-sub .sub-menu.open {
  display: block;
}
#sidebar-menu .sidebar-body .item.has-sub .sub-menu li a {
  display: block;
  padding: 9px 14px;
  font-size: 13px;
  color: #6c6c73;
  border-radius: 8px;
  transition: all 0.15s ease-in-out;
}
#sidebar-menu .sidebar-body .item.has-sub .sub-menu li a:hover {
  background-color: rgba(0, 56, 30, 0.08);
  color: #fa193f;
}
#sidebar-menu .sidebar-footer {
  padding: 1rem;
  border-top: 1px solid #ddd;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex-shrink: 0;
}
#sidebar-menu .sidebar-footer .btn {
  width: 100%;
}

.sidebar-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 9999;
  display: none;
}
.sidebar-overlay.show {
  display: block;
}

@media (max-width: 1024px) {
  .mynavbar .inner {
    display: grid;
    grid-template-columns: 60px 60px 1fr;
  }
  .mynavbar .nav-logo {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mynavbar .nav-logo a {
    width: 60px;
  }
  .mynavbar .nav-links {
    display: none;
  }
  .mynavbar .nav-actions {
    justify-content: flex-end;
  }
  .mynavbar .nav-actions .item.sign {
    display: none;
  }
  .mynavbar .nav-actions .item.create .btn {
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mynavbar .nav-actions .item.create .btn span {
    font-size: 13px;
  }
  .mynavbar .nav-actions .item.create .btn.icon-right {
    padding-right: 2.7rem !important;
  }
  .mynavbar .mobile-menu {
    display: flex;
  }
}
@media (max-width: 640px) {
  .mynavbar .nav-logo a {
    width: 50px;
  }
  .mynavbar .nav-actions {
    justify-content: flex-end;
  }
  .mynavbar .nav-actions .item.sign {
    display: none;
  }
  .mynavbar .nav-actions .item.create .btn {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mynavbar .nav-actions .item.create .btn span {
    font-size: 13px;
  }
  .mynavbar .nav-actions .item.create .btn .lucide {
    right: 10px;
    top: 10px;
  }
  .mynavbar .nav-actions .item.create .btn.icon-right {
    padding-right: 2.3rem !important;
  }
}
@media (max-width: 370px) {
  #sidebar-menu {
    width: 100%;
    right: -100%;
  }
}
/*#endregion -------------- Navbar */
/*#region ----------------- Hero */
.hero-home {
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
  background-color: #fff;
}
.hero-home::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: url(/landing/images/shape-hero.svg);
  background-repeat: no-repeat;
  background-size: auto 90%;
  background-position: top right;
  opacity: 0.05;
  pointer-events: none;
}
.hero-home .section-inner {
  position: relative;
  z-index: 10;
  text-align: center;
}
.hero-home .span {
  font-size: 18px;
  font-weight: 500;
  color: #3a62b9;
  display: inline-block;
  margin-bottom: 20px;
  background-color: rgba(58, 98, 185, 0.1);
  border-radius: 5rem;
  padding: 5px 15px;
}
.hero-home h1 {
  font-size: 26px;
  font-weight: 800;
  color: #04002c;
  margin-bottom: 20px;
  line-height: 1.5;
}
.hero-home p {
  font-size: 16px;
  font-weight: 500;
  color: #6c6c73;
}
.hero-home .btns-action .btn {
  box-shadow: 0px 5px 45px rgba(250, 25, 63, 0.4);
}
.hero-home .checklist {
  margin-top: 30px;
}
.hero-home .checklist ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.hero-home .checklist ul li {
  display: flex;
  align-items: center;
  white-space: nowrap;
  color: #6c6c73;
  font-size: 14px;
}
.hero-home .checklist ul li .lucide {
  margin-left: 5px;
  color: #fa193f;
}

@media (max-width: 1024px) {
  .hero-home {
    padding-top: 60px;
    padding-bottom: 80px;
  }
  .hero-home::before {
    width: 100%;
    height: 100%;
    opacity: 0.04;
    background-position: top;
  }
  .hero-home .span {
    font-size: 16px;
  }
  .hero-home h1 {
    font-size: 24px;
  }
  .hero-home p {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .hero-home {
    padding-bottom: 50px;
  }
  .hero-home .span {
    font-size: 14px;
  }
  .hero-home h1 {
    font-size: 22px;
  }
  .hero-home p {
    font-size: 13px;
  }
  .hero-home .checklist ul {
    gap: 12px;
  }
}
/*#endregion -------------- Hero */
/*#region ----------------- Portfolio Slider */
.portfolio-slider {
  overflow: hidden;
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.portfolio-slider .ps-track {
  overflow: hidden;
  width: 100%;
}
.portfolio-slider .ps-track .ps-inner {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  width: max-content;
  will-change: transform;
}
.portfolio-slider .ps-track:hover .ps-inner {
  animation-play-state: paused;
}
.portfolio-slider .ps-card {
  flex-shrink: 0;
  width: 320px;
  border-radius: 16px;
  overflow: hidden;
  background-color: #fff;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.portfolio-slider .ps-card img {
  width: 100%;
  height: auto;
  display: block;
}
.portfolio-slider .ps-card .logo {
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  width: 80%;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}
.portfolio-slider .ps-card .card-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.portfolio-slider .ps-card .card-overlay .name {
  font-size: 16px;
  font-weight: 500;
  color: white;
  line-height: 24px;
  text-align: center;
}
.portfolio-slider .ps-card .card-overlay .btn {
  border-color: white;
  color: white;
}
.portfolio-slider .ps-card .card-overlay .lucide {
  color: white;
}
.portfolio-slider .ps-card:hover .logo {
  opacity: 0;
}
.portfolio-slider .ps-card:hover .card-overlay {
  opacity: 1;
}

@media (max-width: 768px) {
  .portfolio-slider {
    gap: 10px;
    padding: 40px 0;
  }
  .portfolio-slider .ps-card {
    width: 240px;
  }
  .portfolio-slider .ps-card .card-overlay .name {
    font-size: 14px;
  }
  .portfolio-slider .ps-card .card-overlay .btn {
    height: 44px;
    font-size: 13px;
    padding: 0.7rem 1rem;
  }
  .portfolio-slider .ps-card .card-overlay .btn.icon-left {
    padding-left: 2.5rem !important;
  }
  .portfolio-slider .ps-card .card-overlay .btn .lucide {
    left: 10px;
    top: 11px;
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 640px) {
  .portfolio-slider {
    gap: 8px;
  }
  .portfolio-slider .ps-track .ps-inner {
    gap: 8px;
  }
  .portfolio-slider .ps-card {
    width: 210px;
  }
  .portfolio-slider .ps-card .card-overlay .name {
    font-size: 13px;
  }
  .portfolio-slider .ps-card .card-overlay .btn {
    font-size: 12px;
    padding-left: 2.2rem !important;
    padding: 0.6rem 1rem;
    height: 42px;
  }
  .portfolio-slider .ps-card .card-overlay .btn .lucide {
    left: 10px;
    top: 11px;
    width: 18px;
    height: 18px;
  }
}
@media (max-width: 450px) {
  .portfolio-slider .ps-card {
    width: 180px;
  }
}
/*#endregion -------------- Portfolio Slider */
/*#region ----------------- Features */
.card-feature {
  background-color: white;
  position: relative;
  box-shadow: 0px 5px 45px rgba(42, 42, 44, 0.08);
  padding: 30px;
  border-radius: 0;
  transition: all 0.2s ease-in-out;
  overflow: hidden;
}
.card-feature .icon {
  width: 50px;
  height: 50px;
  position: relative;
  z-index: 5;
}
.card-feature .icon img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.card-feature .text {
  margin-top: 20px;
}
.card-feature .text h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0.8rem;
}
.card-feature .text p {
  font-size: 14px;
  color: #6c6c73;
  text-align: justify;
}
.card-feature:hover {
  box-shadow: 0px -4px 20px rgba(42, 42, 44, 0.1);
}
.card-feature:hover.is-primary {
  box-shadow: 0px 5px 45px rgba(250, 25, 63, 0.4);
}
.card-feature:hover.is-secondary {
  box-shadow: 0px 5px 45px rgba(11, 42, 57, 0.5);
}
.card-feature.is-primary, .card-feature.is-secondary {
  border-radius: 1.2rem;
}
.card-feature.is-primary::after, .card-feature.is-secondary::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 50%;
  transform: translateX(50%);
  width: 150%;
  height: 270px;
  background-image: url(/landing/images/bg-circle-shape.svg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100%;
}
.card-feature.is-primary .text, .card-feature.is-secondary .text {
  position: relative;
  z-index: 10;
}
.card-feature.is-primary .text h3, .card-feature.is-secondary .text h3 {
  color: white;
}
.card-feature.is-primary .text p, .card-feature.is-secondary .text p {
  color: rgba(255, 255, 255, 0.8);
}
.card-feature.is-primary {
  background-color: #fa193f;
}
.card-feature.is-primary::after {
  opacity: 0.45;
}
.card-feature.is-secondary {
  background-color: #3a62b9;
}
.card-feature.is-secondary::after {
  opacity: 0.15;
}

@media (max-width: 768px) {
  .card-feature {
    padding: 25px;
  }
  .card-feature.is-primary::after, .card-feature.is-secondary::after {
    height: 220px;
  }
  .card-feature .icon {
    width: 45px;
    height: 45px;
  }
  .card-feature .text h3 {
    font-size: 16px;
  }
  .card-feature .text p {
    font-size: 13px;
  }
}
@media (max-width: 640px) {
  .card-feature {
    padding: 20px;
  }
  .card-feature.is-primary::after, .card-feature.is-secondary::after {
    width: 220px;
    height: 100%;
    right: unset;
    left: 0;
    transform: unset;
  }
  .card-feature .icon {
    width: 40px;
    height: 40px;
  }
  .card-feature .text h3 {
    font-size: 14px;
  }
  .card-feature .text p {
    font-size: 12px;
  }
}
/*#endregion -------------- Features */
/*#region ----------------- Page Title */
.page-title {
  margin-bottom: 2.5rem;
}
.page-title .title-inner {
  text-align: center;
  position: relative;
}
.page-title.color-secondary .icon {
  background-color: rgba(58, 98, 185, 0.1);
  color: #3a62b9;
}
.page-title.color-info .icon {
  background-color: rgba(72, 100, 239, 0.1);
  color: #4864ef;
}
.page-title.align-right .title-inner {
  padding-right: 0;
}
.page-title.align-right .icon {
  margin: 0;
}
.page-title.align-right h2 {
  text-align: right;
}
.page-title .icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  background-color: rgba(250, 25, 63, 0.1);
  border-radius: 0.8rem;
  color: #fa193f;
}
.page-title h2 {
  margin-top: 20px;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 0;
}
.page-title p {
  margin-top: 12px;
}

@media (max-width: 1024px) {
  .page-title .title-inner {
    width: 100%;
  }
  .page-title h2 {
    font-size: 26px;
    margin-bottom: 1rem;
  }
  .page-title p {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .page-title h2 {
    font-size: 24px;
    margin-bottom: 1rem;
  }
}
@media (max-width: 640px) {
  .page-title h2 {
    font-size: 22px;
    margin-bottom: 1rem;
  }
}
/*#endregion -------------- Page Title */
/*#region ----------------- About Shopsaz */
.about-shopsaz {
  position: relative;
}
.about-shopsaz::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -80px;
  width: 500px;
  height: 378px;
  background-image: url(/landing/images/cube-shape.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}
.about-shopsaz .text-content p {
  font-size: 15px;
  color: #6c6c73;
  margin: 20px 0 30px;
  line-height: 2;
  text-align: justify;
}
.about-shopsaz .text-content .btns-action {
  margin-top: 10px;
}
.about-shopsaz .image-content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
}
.about-shopsaz .image-content::before {
  content: "";
  position: absolute;
  top: 50px;
  left: -40px;
  width: 150px;
  height: 150px;
  display: block;
  background-image: url(/landing/images/icons/icon-chart.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  z-index: 20;
  animation: animUpDown 5s ease-in-out infinite;
}
.about-shopsaz .image-content::after {
  content: "";
  position: absolute;
  bottom: 20px;
  right: -20px;
  width: 120px;
  height: 120px;
  display: block;
  background-image: url(/landing/images/icons/icon-cart.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  z-index: 20;
  animation: animRightUp 5s ease-in-out infinite;
}

.scroll-image-wrapper {
  width: 100%;
  max-width: 95%;
  height: 380px;
  overflow: hidden;
  border-radius: 1.2rem;
  box-shadow: 0 0.9375rem 3.75rem rgba(53, 55, 57, 0.07);
  border: 5px solid white;
  position: relative;
}
.scroll-image-wrapper .scroll-image {
  width: 100%;
  height: auto;
  display: block;
  animation: scrollUpDown var(--scroll-duration, 8s) ease-in-out infinite;
}

@keyframes scrollUpDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(var(--scroll-offset, -55%));
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes animUpDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(30px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes animRightUp {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(20px, 10px);
  }
  100% {
    transform: translate(0, 0);
  }
}
@media (max-width: 1280px) {
  .scroll-image-wrapper {
    height: 300px;
  }
}
@media (max-width: 1024px) {
  .about-shopsaz .text-content,
  .about-shopsaz .image-content {
    padding: 0;
  }
  .about-shopsaz .image-content {
    margin: 40px auto 0 auto;
  }
  .scroll-image-wrapper {
    max-width: 95%;
    height: 360px;
  }
}
@media (max-width: 768px) {
  .about-shopsaz::before {
    width: 70%;
    height: 378px;
    background-position: center bottom;
  }
  .about-shopsaz .image-content::before {
    left: -20px;
    width: 100px;
    height: 100px;
  }
  .about-shopsaz .image-content::after {
    bottom: 20px;
    right: 0px;
    width: 90px;
    height: 90px;
  }
  .scroll-image-wrapper {
    height: 300px;
  }
}
@media (max-width: 575px) {
  .about-shopsaz .image-content::before {
    left: -10px;
    width: 90px;
    height: 90px;
  }
  .about-shopsaz .image-content::after {
    width: 70px;
    height: 70px;
  }
  .scroll-image-wrapper {
    height: 220px;
  }
}
/*#endregion -------------- About Shopsaz */
/*#region ----------------- Master Background */
.free-text {
  display: inline-block;
  margin: 0 5px;
  padding: 0 5px;
  position: relative;
  color: #fa193f;
}
.free-text::before {
  content: "";
  position: absolute;
  bottom: -10px;
  right: 0;
  width: 100%;
  height: 16px;
  background-image: url(/landing/images/shape/scratch-primary.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}

.faqs-section.have-shape {
  position: relative;
  margin-bottom: 0;
  padding-bottom: 100px;
}
.faqs-section.have-shape::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 600px;
  height: 165px;
  background-image: url(/landing/images/shape/shape-lines.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right center;
  z-index: -1;
}

@media (max-width: 768px) {
  .faqs-section.have-shape::before {
    width: 400px;
  }
}
@media (max-width: 400px) {
  .faqs-section.have-shape::before {
    width: 200px;
  }
}
/*#endregion -------------- Master Background */
/*#region ----------------- Products */
.box-grid-items {
  background: radial-gradient(#ddd, white 75%);
  gap: 1px;
}

.box-info {
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0px 5px 45px rgba(250, 25, 63, 0.4);
  position: relative;
}
.box-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(/landing/images/shape/line-horizontal-pattern.svg);
  background-repeat: repeat;
  background-size: 100px;
  opacity: 0.4;
}
.box-info h4 {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 0;
  text-align: justify;
}
.box-info h4 strong {
  color: white;
}
.box-info .btn-action {
  padding-right: 40px;
}
.box-info h4,
.box-info .btn-action {
  position: relative;
  z-index: 10;
}

@media (max-width: 1024px) {
  .box-info {
    flex-direction: column;
    gap: 1rem;
  }
  .box-info h4 {
    width: 100%;
    font-size: 16px;
  }
  .box-info .btn-action {
    width: 100%;
    padding-right: 0;
    text-align: center;
  }
}
@media (max-width: 640px) {
  .box-info .btn-action .btn {
    width: 100%;
  }
}
/*#endregion -------------- Products */
/*#region ----------------- Levels */
.level-steps {
  position: relative;
}
.level-steps::before {
  content: "";
  position: absolute;
  right: 0;
  top: 80px;
  width: 110px;
  height: 280px;
  background-image: url(/landing/images/shape/shape-square-secondary.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  z-index: -1;
}

.card-level .number {
  text-shadow: 0 5px 20px rgba(250, 25, 63, 0.6);
}

/*#endregion -------------- Levels */
/*#region ----------------- Comments */
.user-comments .section-inner {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.swiper-comments {
  height: auto !important;
  position: unset;
  overflow: unset;
}
.swiper-comments .swiper-wrapper {
  padding-bottom: 50px;
}
.swiper-comments .swiper-slide {
  padding: 20px;
}
.swiper-comments .swiper-pagination {
  bottom: 20px !important;
}
.swiper-comments .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 10px;
  transition: all 0.2s ease-in-out;
}
.swiper-comments .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 16px;
  background-color: #fa193f;
}

.card-comment {
  display: grid;
  grid-template-columns: 180px 1fr;
  background-color: white;
  box-shadow: 0px -4px 20px rgba(42, 42, 44, 0.1);
  border-radius: 1rem;
}
.card-comment::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 30px;
  width: 40px;
  height: 40px;
  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%22currentColor%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20class%3D%22lucide%20lucide-quote-icon%20lucide-quote%22%3E%3Cpath%20d%3D%22M16%203a2%202%200%200%200-2%202v6a2%202%200%200%200%202%202%201%201%200%200%201%201%201v1a2%202%200%200%201-2%202%201%201%200%200%200-1%201v2a1%201%200%200%200%201%201%206%206%200%200%200%206-6V5a2%202%200%200%200-2-2z%22%2F%3E%3Cpath%20d%3D%22M5%203a2%202%200%200%200-2%202v6a2%202%200%200%200%202%202%201%201%200%200%201%201%201v1a2%202%200%200%201-2%202%201%201%200%200%200-1%201v2a1%201%200%200%200%201%201%206%206%200%200%200%206-6V5a2%202%200%200%200-2-2z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center center;
  opacity: 0.06;
}
.card-comment .c-info {
  padding: 30px 20px 20px 20px;
  border-radius: 0 1rem 1rem 0;
  border-left: 1px solid #ddd;
}
.card-comment .c-info .logo {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  background-color: white;
  position: relative;
  padding: 5px;
}
.card-comment .c-info .logo img {
  width: 100%;
  height: 100%;
}
.card-comment .c-info .logo .blur-img {
  position: absolute;
  bottom: -15px;
  right: 0;
  filter: blur(15px);
  z-index: 4;
  opacity: 0.4;
}
.card-comment .c-info h4 {
  text-align: center;
  margin: 15px 0 0 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}
.card-comment .c-info h5 {
  font-size: 13px;
  font-weight: 400;
  text-align: center;
  margin: 10px 0 0 0;
  line-height: 1.5;
}
.card-comment .c-body {
  padding: 30px;
}
.card-comment .c-body .text {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .user-comments .section-inner {
    padding: 0 70px;
  }
}
@media (max-width: 768px) {
  .user-comments .section-inner {
    padding: 0 40px;
  }
  .card-comment {
    grid-template-columns: 170px 1fr;
  }
  .card-comment .c-info .logo {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 640px) {
  .user-comments .section-inner {
    padding: 0 20px;
  }
  .card-comment {
    grid-template-columns: 150px 1fr;
  }
  .card-comment .c-info {
    padding: 20px 10px 10px 10px;
  }
  .card-comment .c-info .logo {
    width: 50px;
    height: 50px;
  }
  .card-comment .c-info h4 {
    font-size: 13px;
  }
  .card-comment .c-info h5 {
    font-size: 12px;
  }
}
@media (max-width: 550px) {
  .user-comments .section-inner {
    padding: 0 10px;
  }
  .card-comment {
    grid-template-columns: 100%;
  }
  .card-comment .c-info {
    display: grid;
    grid-template-columns: 60px 1fr;
    align-items: center;
    border: none;
  }
  .card-comment .c-info .info {
    padding-right: 10px;
  }
  .card-comment .c-info .logo {
    width: 60px;
    height: 60px;
  }
  .card-comment .c-info h4 {
    margin-top: 0;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: right;
  }
  .card-comment .c-info h5 {
    margin-top: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: right;
  }
  .card-comment .c-body {
    padding: 10px 20px 20px 20px;
  }
}
/*#endregion -------------- Comments */
/*#region ----------------- Blog */
.card-blog.type-row {
  display: grid;
  grid-template-columns: 234px 1fr;
}
.card-blog.type-row .info {
  margin-top: 5px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.card-blog.type-row .desc {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 40px;
}
.card-blog .info {
  margin-top: 15px;
}
.card-blog .title {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-blog .desc {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 1280px) {
  .card-blog.type-row {
    grid-template-columns: 188px 1fr;
  }
}
@media (max-width: 1024px) {
  .card-blog {
    display: grid;
    grid-template-columns: 188px 1fr;
  }
  .card-blog .info {
    margin-top: 5px;
  }
}
@media (max-width: 768px) {
  .card-blog {
    display: grid;
    grid-template-columns: 150px 1fr !important;
  }
  .card-blog .info {
    margin-top: 5px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .card-blog .title {
    font-size: 14px;
  }
  .card-blog .desc {
    display: none !important;
  }
}
@media (max-width: 575px) {
  .card-blog {
    display: grid;
    grid-template-columns: 125px 1fr !important;
  }
  .card-blog .info {
    margin-top: 5px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .card-blog .title {
    font-size: 14px;
  }
  .card-blog .desc {
    display: none !important;
  }
  .card-blog .arrow span {
    display: none;
  }
}
/*#endregion -------------- Blog */
/*#region ----------------- Footer */
.footer {
  background-color: oklch(96.8% 0.007 247.896deg);
  border-top: 1px solid #ddd;
}

.footer-top {
  padding: 60px 0 40px;
}
.footer-top .footer-top-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.4fr;
  gap: 40px;
}

.footer-col-title {
  font-size: 16px;
  font-weight: 700;
  color: #04002c;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 28px;
  height: 2px;
  background-color: #fa193f;
  border-radius: 999rem;
}

.footer-brand .footer-logo {
  display: inline-block;
  margin-bottom: 16px;
}
.footer-brand .footer-logo img {
  display: block;
}
.footer-brand .footer-desc {
  font-size: 13px;
  color: #6c6c73;
  line-height: 2;
  margin-bottom: 20px;
}
.footer-brand .footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-brand .footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 0.8rem;
  background-color: white;
  box-shadow: 0px 2px 8px rgba(42, 42, 44, 0.1);
  opacity: 0.7;
  transition: opacity 0.2s, transform 0.2s;
}
.footer-brand .footer-social a:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links-list li a {
  font-size: 13px;
  color: #6c6c73;
  transition: color 0.2s, padding-right 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-links-list li a::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #fa193f;
  opacity: 0;
  transition: opacity 0.2s;
  flex-shrink: 0;
}
.footer-links-list li a:hover {
  color: #fa193f;
  padding-right: 4px;
}
.footer-links-list li a:hover::before {
  opacity: 1;
}

.footer-newsletter p {
  font-size: 13px;
  color: #6c6c73;
  line-height: 1.8;
  margin-bottom: 14px;
}
.footer-newsletter .newsletter-form {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}
.footer-newsletter .newsletter-form input {
  flex: 1;
  min-width: 0;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 0.8rem;
  font-size: 13px;
  font-family: "Yekan Bakh";
  background-color: white;
  outline: none;
  transition: border-color 0.2s;
}
.footer-newsletter .newsletter-form input:focus {
  border-color: #fa193f;
}
.footer-newsletter .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-newsletter .footer-contact .contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #6c6c73;
  direction: ltr;
  justify-content: flex-end;
}
.footer-newsletter .footer-contact .contact-item .lucide {
  width: 16px;
  height: 16px;
  color: #fa193f;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 18px 0;
}
.footer-bottom .footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom .footer-copy {
  font-size: 13px;
  color: #9e9e9e;
}
.footer-bottom .footer-badges {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-bottom .footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #6c6c73;
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 999rem;
  padding: 4px 12px;
}
.footer-bottom .footer-badge .lucide {
  width: 14px;
  height: 14px;
  color: #fa193f;
}

@media (max-width: 1280px) {
  .footer-top .footer-top-inner {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
  .footer-top .footer-top-inner .footer-newsletter {
    grid-column: 1/-1;
  }
}
@media (max-width: 1024px) {
  .footer-top .footer-top-inner {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .footer-top .footer-top-inner .footer-brand {
    grid-column: 1/-1;
  }
  .footer-top .footer-top-inner .footer-logo img {
    width: 90px !important;
  }
  .footer-top .footer-top-inner .footer-newsletter {
    grid-column: 1/-1;
  }
}
@media (max-width: 768px) {
  .footer-top {
    padding: 40px 0 30px;
  }
  .footer-top .footer-top-inner {
    grid-template-columns: 100%;
  }
  .footer-top .footer-top-inner .footer-brand,
  .footer-top .footer-top-inner .footer-newsletter {
    grid-column: 1/-1;
  }
  .footer-links-list {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 5px 10px;
  }
  .footer-links-list li {
    text-align: right;
  }
}
@media (max-width: 640px) {
  .footer-top .footer-top-inner {
    grid-template-columns: 1fr;
  }
  .footer-top .footer-top-inner .footer-brand,
  .footer-top .footer-top-inner .footer-newsletter {
    grid-column: auto;
  }
  .footer-bottom .footer-bottom-inner {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
  }
}
/*#endregion -------------- Footer */
/*#region ----------------- Login */
.login-wrapper {
  width: 100%;
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #eaf2ff;
  overflow: hidden;
  padding: 100px 0;
}
.login-wrapper::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 500px;
  height: 422px;
  background-image: url(/landing/images/logo-white.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: bottom;
  opacity: 0.1;
  z-index: 1;
}
.login-wrapper::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-color: #3a62b9;
  opacity: 0.9;
  z-index: 0;
}
.login-wrapper .login-inner {
  width: 550px;
  background-color: white;
  padding: 20px;
  border-radius: 20px;
  position: relative;
  box-shadow: 0px 4px 20px rgba(42, 42, 44, 0.15);
  z-index: 100;
}
.login-wrapper .login-inner .title {
  margin-bottom: 20px;
}
.login-wrapper .login-inner .title h1 {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}
.login-wrapper .login-inner .logo {
  width: 60px;
  margin: 0 auto 10px 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 {
  min-width: 180px;
}

@media (max-width: 1024px) {
  .login-wrapper::before {
    width: 50%;
    height: 50%;
  }
}
@media (max-width: 768px) {
  .login-wrapper::before {
    height: 422px;
  }
  .login-wrapper .login-inner {
    width: 100%;
    margin: 0 20px;
  }
}
/*#endregion -------------- Login */

/*# sourceMappingURL=main.css.map */
