html {
  padding: 0;
  margin: 0;
}

body {
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  color: #000000;
}

header nav a.active {
  color: #e01b32;
  position: relative;
}
header nav a.active p {
  color: #e01b32;
}
header nav a.active svg {
  fill: #e01b32;
  opacity: 1;
}
header nav a.active::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  opacity: 0.1;
  border-radius: 2.5rem;
  background: radial-gradient(circle, #e01b32 0%, rgba(224, 27, 50, 0) 100%);
  box-shadow: 0 0 16px 4px rgba(224, 27, 50, 0.4);
  pointer-events: none;
}

.alert.alert-danger {
  color: #e01b32;
}

.primary-color {
  background-color: #e01b32;
}

.btn-primary {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 2rem;
  background: #e01b32;
  border-radius: 3rem;
  color: white;
}

.btn-secondary {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 2rem;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-radius: 3rem;
  color: gray;
}

.clipped-logo {
  aspect-ratio: 1.5;
  object-fit: cover;
}

.background-overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  visibility: collapse;
  z-index: 110;
  opacity: 0;
  transition: all ease-in-out 0.3s;
}
.background-overlay.show {
  display: flex;
  visibility: visible;
  opacity: 1;
}
@media (min-width: 768px) {
  .background-overlay {
    display: none !important;
  }
}

.slide-in-container {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  width: 80%;
  height: 100vh;
  visibility: collapse;
  z-index: 111;
  opacity: 0;
  transition: all ease-in-out 0.3s;
  transform: translateX(80%);
}
.slide-in-container.show {
  display: flex;
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}
@media (min-width: 768px) {
  .slide-in-container {
    top: 5.5rem;
    right: 2rem;
    bottom: auto;
    width: 320px;
    height: auto;
    max-height: calc(100vh - 7rem);
    overflow-y: auto;
    overflow-x: hidden;
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-10px);
    padding: 2rem 1.5rem;
    background: rgb(255, 255, 255) !important;
  }
  .slide-in-container.show {
    transform: translateY(0);
  }
}

.pagination-container {
  display: flex;
  justify-content: center;
  margin: 1rem 0;
}

.pagination {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0.5rem;
  align-items: center;
}
.pagination li a,
.pagination li span {
  height: 2.5rem;
  width: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.2s ease;
  text-decoration: none;
  color: #374151;
  background-color: #f3f4f6;
}
.pagination li a:hover,
.pagination li span:hover {
  background-color: #e5e7eb;
  color: #111827;
}
.pagination li.active a,
.pagination li.active span {
  background-color: #e01b32;
  color: white;
  font-weight: 600;
  cursor: default;
}
.pagination li.active a:hover,
.pagination li.active span:hover {
  background-color: #e01b32;
}
.pagination li.disabled a,
.pagination li.disabled span {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.pagination li.PagedList-skipToNext a, .pagination li.PagedList-skipToPrevious a, .pagination li.PagedList-skipToFirst a, .pagination li.PagedList-skipToLast a {
  font-weight: 600;
}

form .input-container {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-bottom: 1.25rem;
}
form .input-container.text-white label {
  color: black;
}
form .input-container label {
  font-size: 0.9rem;
  font-weight: 400;
  color: #6b7280;
  margin-bottom: 0.25rem;
  transition: color 0.2s ease;
}
form .input-container input {
  width: 100%;
  padding: 0.875rem 1.125rem;
  font-size: 0.938rem;
  color: #374151;
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  outline: none;
  transition: all 0.2s ease;
}
form .input-container input::placeholder {
  color: #9ca3af;
  opacity: 1;
  font-size: 0.875rem;
}
form .input-container input:hover {
  background-color: #f3f4f6;
  border-color: #d1d5db;
}
form .input-container input:focus {
  background-color: #ffffff;
  border-color: #9ca3af;
  box-shadow: 0 0 0 3px rgba(156, 163, 175, 0.1);
}
form .input-container input:disabled {
  background-color: #f9fafb;
  border-color: #e5e7eb;
  cursor: not-allowed;
  opacity: 0.6;
}
form .input-container input[readonly] {
  background-color: #d1d5db;
  color: #636d7c;
  cursor: not-allowed;
  border-color: rgba(0, 0, 0, 0);
  opacity: 1;
}
form .input-container input[readonly]:hover {
  background-color: #d1d5db;
  border-color: #9ca3af;
}
form .input-container input[readonly]:focus {
  background-color: #d1d5db;
  border-color: rgba(0, 0, 0, 0);
  box-shadow: none;
}
form .input-container input[type=password] {
  letter-spacing: 0.05em;
}
form .input-container input[type=password]::placeholder {
  letter-spacing: normal;
}
form .input-container:has(select:not(.select2-hidden-accessible)) select {
  width: 100%;
  padding: 0.875rem 2.5rem 0.875rem 1.125rem;
  font-size: 0.938rem;
  color: #374151;
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  outline: none;
  transition: all 0.2s ease;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
}
form .input-container:has(select:not(.select2-hidden-accessible)) select:hover {
  background-color: #f3f4f6;
  border-color: #d1d5db;
}
form .input-container:has(select:not(.select2-hidden-accessible)) select:focus {
  background-color: #ffffff;
  border-color: #9ca3af;
  box-shadow: 0 0 0 3px rgba(156, 163, 175, 0.1);
}
form .input-container:has(select:not(.select2-hidden-accessible)) select:disabled {
  background-color: #f9fafb;
  border-color: #e5e7eb;
  cursor: not-allowed;
  opacity: 0.6;
}
form .input-container:has(select:not(.select2-hidden-accessible)) select option {
  background-color: #ffffff;
  color: #374151;
  padding: 0.5rem;
}
form .input-container:has(input[type=checkbox]) {
  flex-direction: row;
  align-items: center;
  gap: 0.625rem;
  cursor: pointer;
}
form .input-container:has(input[type=checkbox]) input[type=checkbox] {
  appearance: none;
  width: 1.25rem;
  height: 1.25rem;
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 0.375rem;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
}
form .input-container:has(input[type=checkbox]) input[type=checkbox]:hover {
  background-color: #f3f4f6;
  border-color: #d1d5db;
}
form .input-container:has(input[type=checkbox]) input[type=checkbox]:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(156, 163, 175, 0.1);
}
form .input-container:has(input[type=checkbox]) input[type=checkbox]:checked {
  background-color: #e01b32;
  border-color: #e01b32;
}
form .input-container:has(input[type=checkbox]) input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 0.313rem;
  height: 0.563rem;
  border: solid white;
  border-width: 0 2px 2px 0;
}
form .input-container:has(input[type=checkbox]) input[type=checkbox]:disabled {
  background-color: #f9fafb;
  border-color: #e5e7eb;
  cursor: not-allowed;
  opacity: 0.5;
}
form .input-container:has(input[type=checkbox]) p {
  margin: 0;
  font-size: 0.875rem;
  color: #374151;
  user-select: none;
  cursor: pointer;
  line-height: 1.4;
}
form .input-container:has(input:invalid:not(:placeholder-shown)) input {
  background-color: #fef2f2;
  border-color: #fca5a5;
}
form .input-container:has(input:invalid:not(:placeholder-shown)) input:focus {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}
form .input-container:has(input:invalid:not(:placeholder-shown)) label {
  color: #dc2626;
}
form .input-container .text-danger {
  font-size: 0.75rem;
  color: #dc2626;
  margin-top: 0.25rem;
  padding-left: 0.5rem;
  min-height: 1rem;
  display: block;
}
form .input-container .text-danger:empty {
  display: none;
}

.select2-container {
  width: 100% !important;
  position: relative !important;
}
.select2-container .select2-selection {
  background-color: #f9fafb !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 0.75rem !important;
  padding: 0.875rem 2.5rem 0.875rem 1.125rem !important;
  min-height: auto !important;
  height: auto !important;
  outline: none !important;
  transition: all 0.2s ease !important;
}
.select2-container .select2-selection:hover {
  background-color: #f3f4f6 !important;
  border-color: #d1d5db !important;
}
.select2-container .select2-selection .select2-selection__rendered {
  color: #374151 !important;
  font-size: 0.938rem !important;
  line-height: 1.5 !important;
  padding: 0 !important;
}
.select2-container .select2-selection .select2-selection__placeholder {
  color: #9ca3af !important;
}
.select2-container .select2-selection .select2-selection__arrow {
  height: 100% !important;
  right: 1rem !important;
  top: 0 !important;
}
.select2-container .select2-selection .select2-selection__arrow b {
  border-color: #9ca3af transparent transparent transparent !important;
  border-width: 5px 4px 0 4px !important;
  margin-left: -4px !important;
  margin-top: -2px !important;
}
.select2-container .select2-selection .select2-selection__choice {
  background-color: #e5e7eb !important;
  border: none !important;
  border-radius: 0.5rem !important;
  color: #374151 !important;
  padding: 0.25rem 0.5rem !important;
  margin: 0.125rem 0.25rem 0 0 !important;
  font-size: 0.813rem !important;
}
.select2-container .select2-selection .select2-selection__choice .select2-selection__choice__remove {
  color: #6b7280 !important;
  margin-right: 0.375rem !important;
}
.select2-container .select2-selection .select2-selection__choice .select2-selection__choice__remove:hover {
  color: #374151 !important;
}
.select2-container.select2-container--focus .select2-selection {
  background-color: #ffffff !important;
  border-color: #9ca3af !important;
  box-shadow: 0 0 0 3px rgba(156, 163, 175, 0.1) !important;
}
.select2-container.select2-container--open .select2-selection {
  background-color: #ffffff !important;
  border-color: #9ca3af !important;
  box-shadow: 0 0 0 3px rgba(156, 163, 175, 0.1) !important;
}
.select2-container.select2-container--open .select2-selection .select2-selection__arrow b {
  border-color: transparent transparent #9ca3af transparent !important;
  border-width: 0 4px 5px 4px !important;
}
.select2-container.select2-container--disabled .select2-selection {
  background-color: #f9fafb !important;
  border-color: #e5e7eb !important;
  cursor: not-allowed !important;
  opacity: 0.6 !important;
}

.select2-container--default .select2-dropdown {
  background-color: #ffffff !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 0.75rem !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
  margin-top: 0.5rem !important;
  overflow: hidden !important;
  z-index: 100 !important;
}
.select2-container--default .select2-search--dropdown {
  padding: 0.75rem !important;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
  background-color: #f9fafb !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 0.5rem !important;
  padding: 0.625rem 0.875rem !important;
  font-size: 0.875rem !important;
  color: #374151 !important;
  outline: none !important;
}
.select2-container--default .select2-search--dropdown .select2-search__field:focus {
  background-color: #ffffff !important;
  border-color: #9ca3af !important;
  box-shadow: 0 0 0 3px rgba(156, 163, 175, 0.1) !important;
}
.select2-container--default .select2-search--dropdown .select2-search__field::placeholder {
  color: #9ca3af !important;
}
.select2-container--default .select2-results {
  padding: 0 !important;
}
.select2-container--default .select2-results .select2-results__options {
  max-height: 300px !important;
}
.select2-container--default .select2-results .select2-results__options .select2-results__option {
  padding: 0.75rem 1rem !important;
  font-size: 0.875rem !important;
  color: #374151 !important;
  background-color: #ffffff !important;
  transition: background-color 0.15s ease !important;
}
.select2-container--default .select2-results .select2-results__options .select2-results__option--highlighted, .select2-container--default .select2-results .select2-results__options .select2-results__option[aria-selected=true] {
  background-color: #f3f4f6 !important;
  color: #374151 !important;
}
.select2-container--default .select2-results .select2-results__options .select2-results__option[aria-disabled=true] {
  color: #9ca3af !important;
  cursor: not-allowed !important;
}
.select2-container--default .select2-results .select2-results__options .select2-results__group {
  padding: 0.75rem 1rem 0.375rem !important;
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  color: #6b7280 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.025em !important;
}
.select2-container--default .select2-results__message {
  padding: 1rem !important;
  color: #9ca3af !important;
  font-size: 0.875rem !important;
  text-align: center !important;
}

.general-shadow {
  box-shadow: 0 0 50px 10px rgba(0, 0, 0, 0.05);
}

.link-primary {
  color: #e01b32;
  transition: all 0.2s ease;
}
.link-primary:hover {
  color: #b21628;
  text-decoration: underline;
}

@media (max-width: 640px) {
  .pagination {
    gap: 0.25rem;
  }
  .pagination li a,
  .pagination li span {
    padding: 0.5rem 1rem;
  }
}
.service-container .item h2 {
  font-size: 1rem !important;
}
.service-container .item h3 {
  font-size: 1rem !important;
}

/*# sourceMappingURL=Global.css.map */
