* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Quicksand", sans-serif;
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  background-color: #ffff;
}

ul li {
  list-style: none;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  opacity: 1;
}

a:hover {
  text-decoration: none;
}

header {
  background-color: #f3f3f3;
  margin-bottom: 20px;
}

header .container .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .container .header .nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

header .container .header .nav-logo i {
  color: #fff;
  display: flex;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: #0095be;
  font-size: 40px;
  border-radius: 20px;
}

header .container .header .nav-logo img {
  width: 90px;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 12px;
}

header .container .header .nav-logo .header__title h1 {
  font-size: 20px;
  color: #fff;
  font-weight: 800;
}

header .container .header .navbar {
  display: flex;
  height: 100%;
}

header .container .header .navbar__menu {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  color: #fff;
  height: 100%;
}

header .container .header .navbar li {
  height: 100%;
}

header .container .header .navbar li a {
  display: flex;
  height: 100%;
  color: #fff;
}

.admin-header {
  height: 100px !important;
  width: 100%;
  background-color: #0095be !important;
}

.view-header .nav-link {
  color: #47494b !important;
  font-weight: 500 !important;
  border: 1px solid rgba(60, 60, 60, 0.51) !important;
  border-radius: 12px !important;
  padding: 10px 20px !important;
  font-size: 14px !important;
  transition: 0.3s ease;
}

.view-header .nav-link:hover {
  background-color: #47494b !important;
  color: #fff !important;
}

.view-header .navbar-nav {
  gap: 12px !important;
}

.view-header .mobile-menu-container {
  display: none;
}

.view-header .mobile-menu-trigger-bar {
  display: none;
  cursor: pointer;
  padding: 10px;
}

.view-header .mobile-menu-trigger-bar .icon {
  font-size: 24px;
}

.view-header .mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  height: 100vh;
  background-color: #fff;
  z-index: 1000;
  transition: left 0.3s ease;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
  overflow-y: auto;
}

.view-header .mobile-menu.active {
  left: 0;
}

.view-header .mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background-color: #f1f1f1;
}

.view-header .mobile-menu-close {
  font-size: 24px;
  cursor: pointer;
}

.view-header .mobile-menu-content {
  padding: 15px;
}

.view-header .mobile-menu-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.view-header .mobile-menu-content ul li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.view-header .mobile-menu-content ul li a {
  color: #333;
  text-decoration: none;
  display: block;
}

.view-header .mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: none;
}

.view-header .mobile-submenu {
  padding-left: 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease, transform 0.3s ease;
  opacity: 0;
  transform: translateY(-10px);
}

.view-header .mobile-submenu.active {
  max-height: 500px;
  opacity: 1;
  transform: translateY(0);
}

.view-header .mobile-menu-toggle {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  cursor: pointer;
  padding: 10px 0;
  transition: all 0.3s ease;
}

.view-header .mobile-menu-toggle i {
  transition: transform 0.3s ease;
}

.view-header .mobile-menu-toggle.active i {
  transform: rotate(180deg);
}

@media (max-width: 1280px) {
  .view-header .mobile-menu-trigger-bar {
    display: block;
  }

  .view-header .mobile-menu-container {
    display: block;
  }

  .view-header .digi-nav {
    display: none;
  }
}

.view-header .mobile-footer-bar {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #eee;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.view-header .mobile-footer-logo {
  text-align: left;
  margin-bottom: 15px;
}

.view-header .mobile-footer-logo img {
  max-height: 50px;
  margin: 0 auto;
}

.view-header .mobile-contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.view-header .mobile-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
}

.view-header .mobile-contact-item i {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f5f5f5;
  border-radius: 50%;
  color: #333;
  font-size: 12px;
}

.view-header .mobile-contact-item:hover {
  color: #0095be;
}

.view-header .mobile-contact-item:hover i {
  background-color: #0095be;
  color: #fff;
}

.view-header .mobile-social-links {
  display: flex;
  justify-content: start;
  gap: 15px;
  margin: 10px 0;
}

.view-header .mobile-social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #f5f5f5;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.view-header .mobile-social-icon:hover {
  background-color: #0095be;
  color: #fff;
  transform: translateY(-3px);
}

.view-header .mobile-menu-content ul li a {
  color: #333;
  text-decoration: none;
  display: block;
  font-size: 18px;
  font-weight: 600;
}

.mobile-menu-toggle span {
  color: #333;
  text-decoration: none;
  display: block;
  font-size: 18px;
  font-weight: 600;
}

.view-header .mobile-menu-content .mobile-submenu li a {
  font-weight: 500 !important;
  font-size: 16px !important;
  padding-left: 20px;
}

.view-header .mobile-menu-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 90%;
  padding-bottom: 30px;
}

.view-header .mobile-menu::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background-color: #f1f1f1;
}

.view-header .mobile-menu::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 10px;
}

.image-preview-container {
  margin-top: 10px;
  text-align: center;
  border: 1px dashed #ccc;
  padding: 10px;
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-preview {
  max-width: 100%;
  max-height: 150px;
  margin-top: 10px;
}

.default-icon {
  color: #ccc;
}

.category-list {
  list-style: none;
  padding: 0;
}

.category-list li {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  gap: 1rem;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-switch input:checked+.slider {
  background-color: #0095be;
}

.toggle-switch input:checked+.slider:before {
  transform: translateX(26px);
}

.toggle-switch input:focus+.slider {
  box-shadow: 0 0 1px #0095be;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 24px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: #fff;
  transition: 0.4s;
  border-radius: 50%;
}

.badge-category {
  background-color: #2ca83e;
  color: #fff;
  padding: 3px 8px;
  border-radius: 10px;
  font-size: 0.75rem;
  margin-left: 5px;
}

.tab-pane {
  padding-top: 20px;
}

.category-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: #0095be;
}

.category-empty-notice {
  font-style: italic;
  color: #666;
}

.category-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.category-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px !important;
  margin-bottom: 8px;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  background-color: #fff;
  transition: 0.3s;
  cursor: pointer;
  flex: 1;
  min-width: 300px;
}

.category-item:hover {
  background-color: #f9f9f9;
}

.category-content {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 1rem;
  width: 100%;
}

.category-image-container {
  width: 100%;
}

.category-image {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
  object-fit: contain;
  border-radius: 10px;
  background-color: #343a40;
  padding: 0;
}

.category-image-placeholder {
  width: 70px;
  height: 70px;
  background-color: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed #ccc;
  border-radius: 5px;
}

.category-image-placeholder small {
  color: #666;
}

.category-info {
  margin-left: 15px;
  font-weight: 500;
}

.category-badge {
  display: inline-block;
  padding: 3px 8px;
  margin-left: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  background-color: #e0f7fa;
  color: #00838f;
  border-radius: 10px;
}

.category-actions {
  display: flex;
  gap: 8px;
}

.category-edit-btn,
.category-delete-btn {
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
}

.category-edit-btn {
  background-color: #2196f3;
  color: #fff;
}

.category-edit-btn:hover {
  background-color: #0d8aee;
}

.category-delete-btn {
  background-color: #f44336;
  color: #fff;
}

.category-delete-btn:hover {
  background-color: #e53935;
}

.category-delete-form {
  display: inline-block;
}

.category-form-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  color: #0095be;
}

.category-form {
  width: 100%;
  margin: 0 auto;
}

.category-form-group {
  margin-bottom: 1.5rem;
}

.category-form-label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #333;
}

.category-form-input {
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.category-form-input:focus {
  border-color: #0095be;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 149, 190, 0.25);
}

.category-form-check {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.category-form-checkbox {
  margin-right: 0.5rem;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.category-form-check-label {
  margin-bottom: 0;
  cursor: pointer;
}

.category-form-margin-top {
  margin-top: 1rem;
}

.category-form-file {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  cursor: pointer;
  background-color: #f8f9fa;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}

.category-image-preview-container {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 150px;
  border: 1px dashed #ced4da;
  border-radius: 0.25rem;
  overflow: hidden;
}

.category-default-icon {
  color: #ced4da;
}

.category-image-preview {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.category-form-button {
  display: inline-block;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  border: 1px solid rgba(0, 0, 0, 0);
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  color: #fff;
  background-color: #0095be;
  border-color: #0095be;
  width: 100%;
  cursor: pointer;
}

.category-form-button:hover {
  background-color: #006d8b;
  border-color: #006d8b;
}

.category-form-button:focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 149, 190, 0.5);
}

.image-upload-container {
  width: 100%;
}

.image-upload-dropzone {
  border: 2px dashed #ced4da;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  background-color: #f8f9fa;
  cursor: pointer;
  min-height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-upload-dropzone.dragover {
  border-color: #0095be;
  background-color: rgba(0, 149, 190, 0.05);
}

.image-upload-dropzone.has-image {
  background-color: #fff;
  border-style: solid;
  border-color: #0095be;
}

.dropzone-content {
  width: 100%;
}

.upload-icon {
  font-size: 3rem;
  color: #adb5bd;
  margin-bottom: 15px;
}

.dropzone-text {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: #495057;
}

.dropzone-text-or {
  margin: 10px 0;
  color: #6c757d;
  position: relative;
}

.dropzone-text-or:before,
.dropzone-text-or:after {
  content: "";
  display: inline-block;
  width: 40px;
  height: 1px;
  background-color: #dee2e6;
  position: relative;
  top: -4px;
  margin: 0 10px;
}

.dropzone-info {
  font-size: 0.8rem;
  color: #6c757d;
  margin-top: 10px;
}

.image-select-button {
  padding: 8px 20px;
  background-color: #0095be;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.2s;
}

.image-select-button:hover {
  background-color: #006d8b;
}

.image-select-button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 149, 190, 0.25);
}

.image-preview-wrapper {
  width: 100%;
  padding: 10px;
}

.image-preview-container {
  position: relative;
  width: 100%;
  height: 200px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.category-image-preview {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.image-actions {
  position: absolute;
  top: 5px;
  right: 5px;
  display: flex;
  gap: 5px;
}

.image-remove-button,
.image-delete-button {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s;
}

.image-remove-button {
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
}

.image-remove-button:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

.image-delete-button {
  background-color: rgba(220, 53, 69, 0.7);
  color: #fff;
}

.image-delete-button:hover {
  background-color: rgba(220, 53, 69, 0.9);
}

.image-remove-button i,
.image-delete-button i {
  font-size: 16px;
}

.selected-file-name {
  display: block;
  margin-top: 10px;
  font-size: 0.9rem;
  color: #495057;
  text-align: center;
  word-break: break-all;
}

.create-category .nav-link.active {
  background-color: #0095be;
  color: #fff;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.nav-tabs .nav-item a:hover {
  border-color: rgba(0, 0, 0, 0) !important;
}

.package-form-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  color: #47494b;
}

.package-form {
  width: 100%;
  margin: 0 auto;
}

.package-form-group {
  margin-bottom: 1.5rem;
}

.package-form-label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #333;
}

.package-form-input {
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.package-form-input:focus {
  border-color: #0095be;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 149, 190, 0.25);
}

.package-category-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  max-height: 200px;
  overflow-y: auto;
}

.package-category-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  border-bottom: 1px solid #efefef;
}

.package-category-item:last-child {
  border-bottom: none;
}

.package-category-item:hover {
  background-color: #f8f9fa;
}

.package-category-name {
  font-size: 0.95rem;
  color: #333;
}

.package-toggle-switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 24px;
}

.package-toggle-switch .package-checkbox {
  opacity: 0;
  width: 0;
  height: 0;
}

.package-toggle-switch .package-checkbox:checked+.package-slider {
  background-color: #0095be;
}

.package-toggle-switch .package-checkbox:checked+.package-slider:before {
  transform: translateX(16px);
}

.package-toggle-switch .package-checkbox:focus+.package-slider {
  box-shadow: 0 0 1px #0095be;
}

.package-toggle-switch .package-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.3s;
  border-radius: 24px;
}

.package-toggle-switch .package-slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: #fff;
  transition: 0.3s;
  border-radius: 50%;
}

.package-form-help-text {
  display: block;
  margin-top: 5px;
  font-size: 0.875rem;
  color: #6c757d;
}

.package-form-button {
  display: inline-block;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  border: 1px solid rgba(0, 0, 0, 0);
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  color: #fff;
  background-color: #0095be;
  border-color: #0095be;
  cursor: pointer;
  width: 100%;
}

.package-form-button:hover {
  background-color: #006d8b;
  border-color: #006d8b;
}

.package-form-button:focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 149, 190, 0.5);
}

.package-image-preview {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.package-form-container {
  margin-bottom: 40px;
}

.package-form-container .checkbox-group {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background-color: rgba(79, 96, 113, 0.1);
  padding: 14px 20px;
  border-radius: 16px;
  width: 100%;
}

.package-form-container .checkbox-group input {
  width: 15px;
  height: 15px;
}

.package-form-container .checkbox-group label {
  margin-bottom: 0;
}

.package-form-container label {
  color: rgba(44, 168, 62, 0.7);
  font-size: 13px;
}

.package-form-container input,
.package-form-container textarea {
  border-radius: 14px;
  resize: none;
}

.spec-list-package .package-form-group {
  border-radius: 20px;
  border: 1.2px solid rgba(79, 96, 113, 0.3);
}

.spec-list-package ul {
  height: 335px !important;
  max-height: 335px;
  border: none;
  border-radius: 20px;
  border: 1.2px solid rgba(79, 96, 113, 0.2);
  overflow-y: auto;
}

.spec-list-package ul::-webkit-scrollbar {
  width: 5px;
  background-color: rgba(79, 96, 113, 0);
}

.spec-list-package ul::-webkit-scrollbar-thumb {
  background-color: rgba(79, 96, 113, 0.3);
  border-radius: 14px;
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
  margin: 20px 0;
}

.spec-list-package ul::-webkit-scrollbar-track {
  margin: 30px 0;
}

.spec-height-textarea textarea {
  height: 135px !important;
  max-height: 135px !important;
}

.package-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: #0095be;
}

.package-empty-notice {
  font-style: italic;
  color: #666;
}

.package-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.package-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  padding: 15px;
  margin-bottom: 8px;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  background-color: #fff;
  transition: 0.3s;
  gap: 1rem;
  cursor: pointer;
  flex: 1;
  min-width: 300px;
}

.package-item:hover {
  background-color: #f9f9f9;
}

.package-content {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 1rem;
  width: 100%;
}

.package-image-container {
  margin-right: 0;
  width: 100%;
  height: 200px;
}

.package-image {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  border-radius: 10px;
  background-color: rgba(0, 149, 190, 0.1);
  padding: 5px;
}

.package-image-placeholder {
  width: 60px;
  height: 60px;
  background-color: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed #ccc;
  border-radius: 5px;
}

.package-image-placeholder small {
  color: #666;
}

.package-info {
  margin-left: 15px;
  font-weight: 500;
}

.package-categories {
  margin-top: 4px;
}

.package-categories small {
  color: #666;
  font-size: 0.85rem;
}

.package-actions {
  display: flex;
  gap: 8px;
}

.package-edit-btn,
.package-delete-btn {
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
}

.package-edit-btn {
  background-color: #2196f3;
  color: #fff;
}

.package-edit-btn:hover {
  background-color: #0d8aee;
}

.package-delete-btn {
  background-color: #f44336;
  color: #fff;
}

.package-delete-btn:hover {
  background-color: #e53935;
}

.package-delete-form {
  display: inline-block;
}

.package-list-container .category-filter {
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.package-list-container .category-filter span {
  margin-right: 10px;
  font-weight: bold;
}

.package-list-container .category-btn {
  padding: 6px 12px;
  background-color: #f0f0f0;
  border: none !important;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
}

.package-list-container .category-btn:hover {
  background-color: #4f6071;
  color: #fff;
}

.package-list-container .category-btn.active {
  background-color: #0095be;
  color: #fff;
  border-color: #0095be;
}

.view-header.admin-view {
  width: 100%;
  padding: 0 !important;
  background-color: #f3f3f3;
  padding: 12px 0 !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.view-header.admin-view .container {
  align-items: center;
}

.view-header.admin-view .navbar-nav {
  justify-content: end !important;
}

.login-body .login-container {
  background-color: #fff !important;
  border-radius: 30px !important;
}

.login-body .login-container img {
  width: 150px;
}

.login-body .login-container .login-title {
  font-size: 24px !important;
  font-family: "Quicksand", sans-serif !important;
}

.login-form .form-control {
  height: 50px;
  border-radius: 12px !important;
}

.login-form .login-btn {
  border-radius: 12px !important;
}

.view-footer.admin-foot {
  width: 100%;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
  margin-top: auto !important;
}

.view-footer.admin-foot .row {
  justify-content: space-between;
}

.navbar-dark .navbar-text {
  color: rgba(22, 22, 22, 0.82);
}

.btn-outline-light {
  color: #374d64;
  border-color: #374d64;
}

.btn-outline-light:hover {
  background-color: #374d64;
  color: #fff;
}

.dashboard-body {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100vh;
}

.row.g-3.dashboard-tab-1 .col-md-6 .card {
  border-radius: 20px;
  min-height: 150px;
}

.row.g-3.dashboard-tab-1 .col-md-6 .card .card-body.text-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.row.g-3.dashboard-tab-1 .col-md-6 .card .card-title {
  color: #0095be;
}

.row.g-3.dashboard-tab-1 .col-md-6 .card .display-5 {
  font-size: 24px;
  font-weight: 700;
  color: rgba(71, 73, 75, 0.8);
}

.row.dashboard-tab-2 .col-md-4 .card.shadow-sm {
  border-radius: 20px !important;
}

#cardSearchInput {
  height: 50px;
  border-radius: 12px;
}

#recordsPerPageSelect {
  width: 100%;
  height: 50px;
  border-radius: 12px;
  padding: 10px;
}

.custom-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1050;
  display: none;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  padding: 30px 0;
}

.custom-modal.show {
  display: flex;
}

.custom-modal-dialog {
  max-width: 600px;
  width: 100%;
  margin: auto;
  position: relative;
}

.custom-modal-content {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  position: relative;
  outline: 0;
  width: 100%;
}

.custom-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #e9ecef;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  background-color: #f8f9fa;
}

.custom-modal-title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 500;
  color: #333;
}

.custom-modal-close {
  background: rgba(0, 0, 0, 0);
  border: 0;
  font-size: 1.5rem;
  color: #888;
  cursor: pointer;
  padding: 0;
  margin: 0;
  line-height: 1;
}

.custom-modal-close:hover {
  color: #333;
}

.custom-modal-body {
  padding: 20px;
  flex: 1 1 auto;
  overflow-y: auto;
  max-height: calc(100vh - 200px);
}

.custom-modal-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 16px 20px;
  border-top: 1px solid #e9ecef;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  background-color: #f8f9fa;
  gap: 10px;
}

.custom-modal-btn-primary,
.custom-modal-btn-secondary {
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.custom-modal-btn-primary {
  background-color: #0095be;
  color: #fff;
  border: 1px solid #0095be;
}

.custom-modal-btn-primary:hover {
  background-color: #006d8b;
  border-color: #006d8b;
}

.custom-modal-btn-secondary {
  background-color: #fff;
  color: #6c757d;
  border: 1px solid #6c757d;
}

.custom-modal-btn-secondary:hover {
  background-color: #f8f9fa;
}

.fade {
  transition: opacity 0.15s linear;
}

.fade:not(.show) {
  opacity: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}

.modal-backdrop.fade {
  opacity: 0;
}

.modal-backdrop.show {
  opacity: 0.5;
}

.category-form-help-text,
.package-form-help-text {
  display: block;
  margin-top: 5px;
  font-size: 0.875rem;
  color: #6c757d;
}

.admin-footer {
  background-color: #0095be;
  color: #fff;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: auto;
}

.admin-footer .container .row p {
  margin-bottom: 0;
}

.login-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  min-height: 700px;
}

.login-container {
  width: 100%;
  max-width: 400px;
  padding: 30px !important;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin: auto;
  margin-top: 30px;
  margin-bottom: 30px;

}

.login-logo {
  text-align: center;
  margin-bottom: 25px;
}

.login-logo i {
  font-size: 50px;
  color: #0095be;
}

.login-title {
  text-align: center;
  margin-bottom: 25px;
  color: #0095be;
  font-weight: 600;
}

.login-form .form-group {
  margin-bottom: 20px;
}

.login-form label {
  font-weight: 500;
  color: #495057;
}

.login-form .form-control {
  border-radius: 4px;
  padding: 10px 12px;
  border: 1px solid #ced4da;
}

.login-form .form-control:focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.25);
  border-color: #0095be;
}

.login-btn {
  background-color: #0095be;
  border-color: #0095be;
  border-radius: 4px;
  padding: 10px 20px;
  font-weight: 500;
  width: 100%;
}

.login-btn:hover {
  background-color: #23272b;
  border-color: #23272b;
}

.back-link {
  display: block;
  text-align: center;
  margin-top: 20px;
  color: #6c757d;
  text-decoration: none;
}

.back-link:hover {
  color: #0095be;
  text-decoration: none;
}

.card-img,
.card-img-top {
  -o-object-fit: contain !important;
  object-fit: contain !important;
}

.main-category-title {
  font-weight: 800;
  font-size: 28px;
  color: #487e50;
}

.main-category-list-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.main-category-card {
  flex: 1;
  min-width: 280px;

  height: 420px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.06);
  border-radius: 23px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.4s;
  background-color: #fff;
}

@media(min-width:1280px) {
  .main-category-card {
    max-width: 300px;
  }
}

.main-category-card:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.main-category-card-item {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.main-category-card-item .img-wrapper {
  width: 130px;
  height: 130px;
  min-height: 130px;
  margin: auto;
  border-radius: 50%;
  border: 2px solid rgba(79, 96, 113, 0.2);
  overflow: hidden;
}

.main-category-card-item .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover !important;
  object-fit: cover !important;
}

.main-category-card-item .card-body {
  align-items: center;
  text-align: center;
}

.main-category-card-item .card-body .card-text {
  line-clamp: 2;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #666;
  font-weight: 500;
  font-size: 14px;
}

.main-category-card-item .card-body .card-title {
  line-clamp: 2;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: 800;
  margin-top: 1rem;
  color: #487e50;
}

.badge-info {
  color: #fff;
  background-color: #17a2b8;
  padding: 0 20px;
  border-radius: 20px;
  display: flex;
  font-size: 10px;
  position: absolute;
  top: 110px;
  right: auto;
  left: 50%;
  transform: translateX(-50%);
  height: 34px;
  justify-content: center;
  align-items: center;
}

.btn-main {
  border-radius: 20px;
  padding: 7px 20px;
  width: 140px;
  display: flex;
  gap: 10px;
  align-items: center;
  background-color: #487e50;
  border-color: #487e50;
  width: -moz-max-content;
  width: max-content;
}

.btn-main:hover {
  background-color: #226d2d;
  color: white;
  border-color: #226d2d;
}

.btn-main i {
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-category-description {
  max-width: 700px;
  font-weight: 500;
  color: #555;
  margin-bottom: 3rem;
  letter-spacing: 0.3px;
}

.category-detail-page {
  position: relative;
}

.back-icon {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  border-radius: 17px;
  height: 40px;
  width: 200px;
  font-size: 15px;
  position: absolute;
  top: 45px;
  right: 0;
}

.bold-title {
  font-weight: 800;
  margin-bottom: 1rem;
  border-bottom: 3px solid rgba(0, 149, 190, 0.2);
  width: -moz-max-content;
  width: max-content;
}

.category-hero {
  width: 100%;
  min-height: 450px;
  height: -moz-max-content !important;
  height: max-content !important;
  position: relative;
  align-items: center;
  justify-content: start !important;
}

.category-hero .hero-container {
  margin: auto !important;
  padding: 50px 0;
}

.category-hero header {
  margin-bottom: 0 !important;
  width: 100%;
}

.category-hero .desc {
  max-width: 80%;
  font-size: 17px;
  color: #666;
  line-height: 28px;
  letter-spacing: 0.2px;
  text-align: justify;
  flex: 1;
}

.category-hero .img-wrapper {
  flex: 1;
  background-color: #d2e1ee;
  border-radius: 20px;
  overflow: hidden;
}

.category-hero .img-wrapper img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.package-card {
  border-radius: 25px !important;
  border: 1px solid rgba(79, 96, 113, 0.2);
  height: 540px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.package-card img {
  border-bottom: 2px solid rgba(79, 96, 113, 0.1);
}

.package-card .card-title.text-bold {
  font-weight: 700 !important;
  font-size: 17px;
  color: #2ca83e;
}

.card-amount {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  background-color: #4f6071;
  width: -moz-max-content;
  width: max-content;
  padding: 10px 28px;
  border-radius: 20px;
}

.package-card .package-form {
  margin-top: auto;
  height: 70px;
  display: flex;
  align-items: start;
  justify-content: center;
}

.package-card .package-form button {
  width: 90%;
  height: 50px;
  background-color: #0095be;
  color: #fff;
  border-radius: 20px;
  font-size: 15px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition: all 0.4s;
}

.package-card .package-form button:hover {
  background-color: #4f6071;
  color: #fff;
  transform: translateY(-5px);
}

@media (max-width: 1200px) {
  .digi-nav {
    display: none;
  }
}

.navbar-collapse.digi-nav {
  justify-content: end;
}

.icon-list {
  max-height: 400px;
  overflow-y: auto;
}

.icon-btn {
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.icon-btn i {
  width: 20px;
  text-align: center;
  margin-right: 5px;
}

.view-footer {
  background-color: #f2fcff;
  padding-top: 50px !important;
  padding-bottom: 0 !important;
}

.footer-sub {
  background: #2ca83e12;
  height: 70px;
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .view-footer .footer-sub {
    display: flex !important;
    align-items: center !important;
    text-align: center !important;
  }

  .view-footer .footer-sub .col-md-6 {
    text-align: center;
    justify-content: center !important;
    padding-bottom: 10px;
  }
}

.view-footer .footer-text {
  color: #47494b;
}

.view-footer .footer-block-title {
  color: #47494b;
}

.view-footer .footer-brand-text {
  color: #47494b;
  font-size: 14px;
}

.view-footer .footer-brand-text-link {
  color: #47494b;
  font-size: 14px;
  opacity: 0.7;
}

.view-footer .social-icons {
  gap: 0.7rem;
  margin-top: 1rem !important;
}

.view-footer .social-icons a {
  color: #47494b !important;
  border: 1px solid rgba(71, 73, 75, 0.3);
  border-radius: 4px;
}

.view-footer .footer-contact {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 0.7rem;
}

.view-footer .footer-contact:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .view-footer .social-links {
    width: 100%;
    justify-content: center;
    text-align: left;
  }

  .view-footer .social-links .social-icons {
    justify-content: start !important;
  }
}

@media (max-width: 768px) {
  .view-footer .footer-block-title {
    margin-top: 1.2rem;
  }
}

.nav-item.drop-item a {
  display: flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
}

.nav-item.drop-item {
  position: relative !important;
}

.dropdown-menu-spec {
  width: 300px;
  background-color: #f3f3f3;
  position: absolute;
  right: 0;
  display: flex;
  flex-direction: column;
  z-index: 9999;
  padding: 20px 0;
  padding-top: 22px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  pointer-events: none;
}

.dropdown-menu-spec .hover-link-item {
  padding: 10px 20px;
  font-size: 14px;
  color: #47494b;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  padding-left: 27px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s;
  border-bottom: 1px solid rgba(79, 96, 113, 0.2);
  position: relative;
}

.dropdown-menu-spec .hover-link-item:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background-color: #0095be;
  border-radius: 0 10px 10px 0;
  opacity: 0;
  transition: all 0.4s;
}

.dropdown-menu-spec .hover-link-item:hover {
  background-color: #fff;
}

.dropdown-menu-spec .hover-link-item:hover:after {
  opacity: 1;
}

.nav-item.drop-item:hover .dropdown-menu-spec {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.mobile-menu-trigger-bar {
  display: none;
}

@media (max-width: 1280px) {
  .mobile-menu-trigger-bar {
    display: flex;
    font-size: 22px;
  }

  .view-header .container {
    justify-content: start !important;
    gap: 50px;
  }
}

header {
  z-index: 32000 !important;
}

header nav {
  z-index: 32000 !important;
}

.category-hero {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}

.category-hero .container {
  z-index: 9999;
}

.category-hero .container .page-breadcrumb {
  margin-top: 2rem;
  color: #fff;
}

.category-hero .container .page-breadcrumb a {
  font-weight: 600;
  color: #fff;
}

.category-hero .container .page-breadcrumb a:hover {
  color: #fff;
}

.category-hero .container .page-breadcrumb li {
  color: rgb(255, 255, 255);
}

.category-hero .category-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  display: flex;
  align-items: end;
  justify-content: end;
  background-color: #487e50;
}

.category-hero .category-hero-bg img {
  width: 50%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  margin-bottom: -100px;
  opacity: 0.4;
}

.category-hero .category-title {
  font-size: 35px;
  font-weight: 800;
  color: rgba(255, 255, 255, 1);
  margin-bottom: 1rem;
  z-index: 999;
}

.category-hero .desc {
  z-index: 999;
  color: rgb(255, 255, 255);
  line-height: 30px !important;
  text-align: left;
}

.packages-list-row {
  padding-top: 20px;
}

.col-12.col-lg-4.mb-4 .package-card {
  width: 100%;
  height: 100%;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.06);
  border-radius: 23px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.4s;
  background-color: #fff;
  border: none;
}

.col-md-4.mb-4 .package-card.is-custom {
  height: auto !important;
  min-height: 500px;
}

.col-12.col-lg-4.mb-4 .package-card .pack-img-wrapper {
  width: 150px;
  height: 150px;
  margin: auto;
  overflow: hidden;
  border-radius: 50%;
  padding: 0px;
  border: 2px solid rgba(79, 96, 113, 0.2);
}

.col-12.col-lg-4.mb-4 .package-card .pack-img-wrapper .pack-img.img-fluid {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-bottom: none;
}

.col-12.col-lg-4.mb-4 .package-card .card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.col-12.col-lg-4.mb-4 .package-card .card-body .card-title.text-bold {
  color: #487e50;
  font-size: 18px;
}

.col-12.col-lg-4.mb-4 .package-card .card-body .card-amount {
  font-size: 15px !important;
  background-color: #487e50;
}

.col-12.col-lg-4.mb-4 .package-card .card-body .card-text {
  opacity: 0.8;

}

.col-12.col-lg-4.mb-4 .package-card .card-body .form-group {
  margin-top: auto;
}

.col-12.col-lg-4.mb-4 .package-card .package-form {
  display: flex;
  align-items: end;
  width: 100%;
  justify-content: space-between;
}

.col-12.col-lg-4.mb-4 .package-card .package-form .form-check {
  display: flex;
  align-items: center;
}

.col-md-4.mb-4 .package-card .package-form .form-check .form-check-input.manual-price-checkbox {
  margin-right: 10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid rgba(79, 96, 113, 0.2) !important;
  opacity: 0.5;
}

.col-md-4.mb-4 .package-card .package-form .form-check .form-check-input.manual-price-checkbox:checked {
  background-color: #0095be;
  border-color: #0095be;
  color: #0095be;
  opacity: 1;
}

.col-md-4.mb-4 .package-card .package-form .form-check .form-check-input.manual-price-checkbox:checked .form-check-label {
  opacity: 1 !important;
}

.col-12.col-lg-4.mb-4 .package-card .package-form .form-check .form-check-label {
  margin-top: 6px !important;
  margin-left: 5px;
  font-size: 14px;
  font-weight: 700;
  color: #487e50 !important;
  transition: 0.3s;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  opacity: 0.7;
}

.col-12.col-lg-4.mb-4 .package-card .package-form .form-check .form-check-label:hover {
  color: #0095be;
}

.col-12.col-lg-4.mb-4 .package-card .package-form input {
  border-radius: 20px;
  flex: 1.5;
}

.col-12.col-lg-4.mb-4 .package-card .package-form .btn.btn-primary {
  flex: 1;
  height: 40px;
  width: 100%;
  background-color: #487e50 !important;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 20px;
  font-size: 15px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition: all .4s;
}

@media(max-width:768px) {
  .col-12.col-lg-4.mb-4 .package-card .package-form .btn.btn-primary {
    font-size: 12px !important;
  }
}

.col-12.col-lg-4.mb-4 .package-card .package-form .btn.btn-primary .icon {
  font-size: 11px;
  margin-bottom: -1px;
}

.col-12.col-lg-4.mb-4 .package-card .package-form .btn.btn-primary:hover {
  background-color: #226d2d !important;
}

.package-container {
  padding-top: 40px;
}

@media (max-width: 768px) {
  .category-hero .category-title {
    font-size: 24px;
  }

  .category-hero .desc {
    max-width: 95%;
    font-size: 15px;
  }

  .main-category-title {
    font-size: 24px;
  }
}

.alert-info {
  color: #0c5460;
  background-color: #e3e7e6 !important;
  border-color: #e3e7e6 !important;
  border-radius: 20px;
  padding: 30px;
}

.amount-quantity label {
  font-size: 20px;
  font-weight: 500;
  color: #47494b;
  margin-bottom: 0.5rem;
}

.amount-quantity input {
  font-size: 20px;
  font-weight: 700;
}

.amount-quantity .alert {
  margin-bottom: 0 !important;
  margin-top: 1.2rem;
}

@media (max-width: 768px) {
  .amount-quantity .alert {
    margin-top: 0 !important;
    margin-bottom: 2rem !important;
  }
}

.odeme-page h3 {
  color: #47494b;
}

.odeme-page .card-container {
  perspective: 1000px;
  width: 70%;
  max-width: 100%;
  height: 200px;
  margin-right: auto;
  margin-bottom: 20px;
}

.odeme-page .card {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: #f8f9fa;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s;
}

.odeme-page .card .card-front {
  background: linear-gradient(45deg, #74c1b2, transparent) !important;
  position: relative;
}

.odeme-page .card .card-front::before {
  content: "";
  position: absolute;
  top: 10px;
  right: 10px;
  width: 60px;
  height: 40px;
  background: url("/vakif/app/public/images/card-logos.png") no-repeat center;
  background-size: contain;
  opacity: 0.9;
}

.odeme-page .card .card-front,
.odeme-page .card .card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 10px;
  padding: 20px;
  box-sizing: border-box;
}

.odeme-page .card .card-front {
  background: #fff;
}

.odeme-page .card .card-back {
  background: #333;
  color: #fff;
  transform: rotateY(180deg);
}

.odeme-page .card .card-number,
.odeme-page .card .card-holder,
.odeme-page .card .card-expiry,
.odeme-page .card .card-cvv {
  font-family: "Courier New", Courier, monospace;
  font-size: 18px;
}

.odeme-page .card .card-number {
  margin-bottom: 20px;
  color: #fff;
}

.odeme-page .card .card-holder {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
}

.odeme-page .card .card-expiry {
  position: absolute;
  bottom: 20px;
  right: 20px;
  color: #fff;
}

.odeme-page .card .card-cvv-label {
  margin-bottom: 10px;
  color: #fff;
}

.odeme-page .card .card-cvv {
  font-size: 16px;
  color: #fff;
}

.odeme-page .odeme-btn {
  width: 100%;
  background-color: #2ca83e;
  border: none;
  padding: 12px 24px;
  color: #fff;
  border-radius: 12px;
  font-weight: 600;
  transition: 0.3s;
}

.odeme-page .odeme-btn:hover {
  background-color: #0095be;
  color: #fff;
}

.odeme-page #total_amount {
  font-size: 20px !important;
  font-weight: 600 !important;
}

.odeme-page #total_amount_display {
  background-color: #0095be;
  border: none !important;
  color: #fff;
  border-radius: 12px;
}

@media (max-width: 580px) {
  .category-hero .hero-container {
    padding: 50px 12px;
  }

  .odeme-page .card-container {
    width: 100%;
  }
}

.card-number-row {
  display: flex;
  align-items: center;
}

.card-number-row .star-group {
  display: flex;
  align-items: center;
  font-size: 10px;
  margin-left: 10px;
  gap: 4px;
  color: #fff;
}

.odeme-page .card .card-back {
  background: linear-gradient(45deg, black, rgba(255, 245, 173, 0.5882352941));
}

.odeme-page textarea {
  resize: none;
}

.odeme-page .form-control {
  height: 50px;
  border-radius: 12px;
}

.category-hero-bg {
  overflow: hidden;
}

.odeme-page h3 {
  margin-bottom: 20px;
}

hr {
  margin-top: 25px !important;
  margin-bottom: 25px !important;
}

@media (max-width: 660px) {
  .packages-list-row {
    padding-top: 0 !important;
  }

  .packages-list-row {
    margin-top: 1rem !important;
  }

  h1 {
    font-size: 32px !important;
  }
}

.spec-container {
  width: 100%;
  max-width: 1440px;
  margin: auto;
}

.btn.btn-primary.custom-amount-btn {
  height: 50px !important;
}


@media(max-width:1500px) {
  .view-footer {
    padding: 20px;
  }

  .odeme-container {
    max-width: 90% !important;
    width: 100%;
  }

  .odeme-container .form-container {
    width: 100%;
    max-width: 100%;
  }
}

@media(max-width:1100px) {
  .summary-content {
    flex-direction: column;
  }

  .summary-left-column,
  .summary-right-column {
    width: 100% !important;
  }
}

@media(max-width:600px) {
  .page-container {
    padding-top: 0 !important;
  }

  .main-category-title {
    font-size: 24px !important;
  }

  .detail-container {
    padding: 30px 20px;
  }

  .summary-value {
    font-size: 13px;
    max-width: 20ch;
  }

}

.summary-value {
  text-align: right;
}

.page-content p {
  margin-bottom: 12px !important;
}

.view-footer {
  background-color: #487e5008 !important;
}

footer .spec-container .row {
  justify-content: space-between !important;
}

.view-header {
  background-color: #487e5008 !important;
}

.total-row {
  color: #0084ed !important;
}

@media(max-width:660px) {
  .form-group.pl-4 {
    padding-left: 0 !important;
  }

  .donation-summary .row.d-flex.flex-column.px-3 {
    padding-left: 1rem !important;

  }

  .form-check.pl-4 {
    padding-left: 0 !important;
  }
}

.col-12.col-lg-4.mb-4 .package-card .package-form input {
  border-radius: 20px;
  flex: 1.5;
  color: #487e50 !important;
  font-weight: 600;
}

.col-12.col-lg-4.mb-4 .package-card .package-form input::placeholder {

  color: #487e50 !important;
  font-weight: 600;
}

/* .col-12.col-lg-4.mb-4 .package-card .package-form .form-check .form-check-label {
  margin-top: 6px !important;
  margin-left: 5px;
  font-size: 15px;
  font-weight: 600;
  color: #487e50 !important;
  transition: 0.3s;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  opacity: 0.7;
} */

.col-12.col-lg-4.mb-4 .package-card .package-form .btn.btn-primary {
  font-size: 13px !important
}