/* Modal Overlay */
.password-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 1rem;
}

.password-modal-overlay.modal-open {
  opacity: 1;
  visibility: visible;
}

/* Modal Content Box */
.password-modal-content {
  background: white;
  border-radius: 16px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  transform: scale(0.95) translateY(10px);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  overflow: hidden;
}

.password-modal-overlay.modal-open .password-modal-content {
  transform: scale(1) translateY(0);
  opacity: 1;
}

/* Header */
.password-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #f1f5f9;
}

.password-modal-title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  font-family: "Inter", sans-serif;
}

.password-modal-close {
  background: transparent;
  border: none;
  cursor: pointer;
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 0.5rem;
  transition: all 0.2s ease;
}

.password-modal-close:hover {
  background-color: #f1f5f9;
  color: #334155;
}

/* Body */
.password-modal-body {
  padding: 1.5rem;
}

.password-modal-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.password-modal-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.password-modal-field label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #475569;
  margin: 0;
}

.password-input {
  width: 100%;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  background-color: #f8fafc;
}

.password-input:focus {
  background-color: #ffffff;
  border-color: #ebacac;
  box-shadow: 0 0 0 3px rgba(185, 28, 28, 0.1);
  outline: none;
}

/* Actions */
.password-modal-actions {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
  justify-content: flex-end;
}

.password-modal-actions button,
.password-modal-actions input[type="submit"] {
  height: 42px !important;
  margin: 0 !important;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0 1.25rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  width: auto;
}

.password-submit-btn {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%) !important;
  color: white !important;
  border: none !important;
  box-shadow: 0 4px 6px -1px rgba(185, 28, 28, 0.2) !important;
}

.password-submit-btn:hover {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%) !important;
  box-shadow: 0 10px 15px -3px rgba(185, 28, 28, 0.3) !important;
  transform: translateY(-1px);
}

.password-modal-actions .btn-clean-new {
  background-color: transparent;
  color: #64748b;
  border: 1px solid #cbd5e1;
}

.password-modal-actions .btn-clean-new:hover {
  background-color: #f1f5f9;
  color: #334155;
}

/* Success Animation State */
.password-success-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  text-align: center;
  animation: fadeIn 0.5s ease;
}

.password-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: #dcfce7;
  color: #16a34a;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 2rem;
  animation: scaleUpBounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.password-success-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0 0 0.5rem 0;
}

.password-success-desc {
  font-size: 0.95rem;
  color: #64748b;
  margin: 0 0 1.5rem 0;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scaleUpBounce {
  0% { transform: scale(0); }
  60% { transform: scale(1.1); }
  100% { transform: scale(1); }
}
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
/* Reset & Font Setup */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

body.login-layout {
  background-color: #f5f5f5;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  margin: 0;
  color: #333333;
}

.login-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  width: 100%;
  padding: 1rem;
  box-sizing: border-box;
}

.login-card {
  width: 100%;
  max-width: 400px;
  background: #ffffff;
  padding: 2.5rem 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  border: 1px solid #eaeaea;
}

@media (max-width: 480px) {
  .login-page {
    padding: 0;
  }
  
  .login-card {
    max-width: 100%;
    height: 100vh;
    border-radius: 0;
    border: none;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 1.5rem;
  }
}

.login-header {
  text-align: center;
  margin-bottom: 2rem;
}

.login-header h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  margin: 0 0 0.5rem 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.login-header p {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0;
}

/* Form Groups */
.form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  box-sizing: border-box;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  color: #111827;
  background-color: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
  outline: none;
  border-color: #b91c1c;
  box-shadow: 0 0 0 3px rgba(185, 28, 28, 0.1);
}

.form-control::placeholder {
  color: #9ca3af;
}

/* Checkbox specific */
.form-check {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.form-check input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  margin: 0 0.5rem 0 0;
  accent-color: #b91c1c;
  cursor: pointer;
}

.form-check label {
  margin: 0;
  font-weight: 400;
  color: #4b5563;
  cursor: pointer;
}

/* Buttons */
.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 3rem;
  padding: 0 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  color: #ffffff;
  background-color: #b91c1c;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.15s ease-in-out;
  box-sizing: border-box;
}

.btn-primary:hover {
  background-color: #991b1b;
}

.btn-primary:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(185, 28, 28, 0.3);
}

/* Links (Devise shared links) */
.auth-links {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.875rem;
}

.auth-links a {
  color: #4b5563;
  text-decoration: none;
  transition: color 0.15s ease;
}

.auth-links a:hover {
  color: #b91c1c;
  text-decoration: underline;
}

/* Flash Messages placed in Login */
.login-alerts {
  margin-bottom: 1.5rem;
  text-align: center;
  font-size: 0.875rem;
  color: #b91c1c;
}
@media (max-width: 576px) {
  body {
    height: auto !important;
    min-height: 100vh;
    font-family: "Inter", "Work Sans", sans-serif !important;
    background-color: #f1f5f9;
  }

  main {
    padding: 0 !important;
  }

  .main {
    padding: 0 !important;
  }

  .header {
    height: 3rem !important;
    padding: .5rem 1.5rem !important;
  }

  .header-title {
    font-size: 1.2rem !important;
  }

  .cbmpe-logo {
    max-width: 2.5rem !important;
  }

  .links {
    display: none !important;
  }

  .btn-cancel {
    margin-bottom: 0 !important;
  }

  .vaccinations-header {
    padding: 1.5rem
  }

  /* ////////// MENU HAMBÚRGUER ////////// */

  #menu__toggle {
    opacity: 0;
    z-index: 100;
    width: 1.625rem;
    margin: 0px;
    height: 1.625rem;
    position: absolute;
    cursor: pointer !important;
  }

  #menu__toggle:checked+.menu__btn>span {
    transform: rotate(45deg);
    background-color: rgb(255, 255, 255);
  }

  #menu__toggle:checked+.menu__btn>span::before {
    top: 0;
    transform: rotate(0deg);
    background-color: rgb(255, 255, 255);
  }

  #menu__toggle:checked+.menu__btn>span::after {
    top: 0;
    transform: rotate(90deg);
    background-color: rgb(255, 255, 255);
  }

  #menu__toggle:checked~.menu-container {
    left: 0 !important;
  }

  .menu__btn {
    position: relative;
    /* top: 1.25rem;
    left: 1.25rem; */
    width: 1.625rem;
    height: 1.625rem;
    cursor: pointer;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
  }

  .menu__btn>span,
  .menu__btn>span::before,
  .menu__btn>span::after {
    display: block;
    position: absolute;
    width: 1.625rem;
    height: 0.125rem;
    z-index: 3;
    background-color: #ffffff;
    transition-duration: .25s;
  }

  .menu__btn>span::before {
    content: '';
    top: -0.5rem;
  }

  .menu__btn>span::after {
    content: '';
    top: 0.5rem;
  }

  .menu-container {
    position: fixed;
    top: 0;
    left: 200%;
    width: 100%;
    height: 100%;
    margin: 0;
    overflow-y: scroll;
    background-color: #fff;
    box-shadow: -1.7rem -6rem 0.375rem 2rem rgba(0, 0, 0, 0.4);
    transform: translateX(0%);
    transition-duration: .25s;
    z-index: 2;
  }

  .menu-container-header {
    position: sticky;
    top: 0;
    width: 100%;
    height: 4rem;
    background: linear-gradient(135deg, #b91c1c 0%, #7f1d1d 100%);
    color: white;
    z-index: 10;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  .menu-container-content {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .menu-links {
    margin: 0;
    padding: 0;
  }

  .menu-links:not(:last-of-type) {
    border-bottom: 1px solid #f1f5f9;
  }

  .menu-link:first-child button {
    padding-top: 1.5rem;
  }

  .menu-link:last-child button {
    padding-bottom: 1.5rem;
  }

  .menu-link:hover {
    background-color: #fafafa;
  }

  .menu-link a {
    width: 100%;
  }

  .menu-link button {
    width: 100%;
    display: flex;
    align-items: center;
    margin: 0;
    flex-direction: row;
    padding: 0.9rem 1.5rem;
    color: #4b5563;
    font-size: 1.05rem;
    text-decoration: none;
    transition-duration: .15s;
    background: transparent;
    border: none;
    font-family: inherit;
    gap: 1rem;
  }

  .menu-link form:active {
    background-color: #fee2e2 !important;
  }

  .menu-link .material-symbols-outlined {
    font-size: 1.5rem;
    color: #6b7280;
  }

  .btn-sign-out {
    border-top: 1px solid #f1f5f9;
    border-radius: 0 !important;
    padding-left: 1.5rem !important;
  }

  .copyright {
    /* position: fixed;
    bottom: 0; */
    font-size: .8rem;
    text-align: center;
    height: 3rem;
    width: 100%;
    display: flex;
    color: #333;
    align-items: center;
    justify-content: center;
  }

  #user-mobile {
    height: 100%;
    color: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    padding-left: 1.5rem;
  }

  #close_menu {
    height: 12rem;
    width: 100%;
    height: -webkit-fill-available;
    height: -moz-available;
  }

  /* ////////// SEARCH FORM ////////// */
  .forms {
    flex-direction: column !important;
    align-items: center !important;
  }

  .military-container,
  .vaccine-container,
  .date-container,
  .ss-main {
    width: 100% !important;
  }

  .forms-container {
    padding: 15px 1rem 30px 1rem !important;
    /* side padding reduced */
    border-radius: 0 0 7px 7px !important;
    margin-block: 0 !important;
  }

  input::placeholder,
  select::placeholder,
  textarea::placeholder {
    font-family: Segoe UI !important;
    font-style: normal !important;
    font-weight: lighter !important;
    color: #666666 !important;
    padding-left: .1rem;
    font-size: 0.9rem;
  }

  /* ////////// VACCINATIONS TABLE ////////// */
  .vaccinations-card-mobile {
    max-height: none !important;
    margin: 0 1.5rem;
  }

  .forms-container input::placeholder {
    font-family: "Lato", sans-serif !important;
    color: #665 !important;
    font-weight: 400 !important;
    opacity: 1 !important;
  }

  /* ////////// VACCINATIONS INDEX ////////// */
  .main .vaccinations {
    max-height: none;
    box-shadow: none;
    padding: 0 1rem;
    margin-top: 1rem !important;
  }

  /* ////////// CLASS-BASED STYLES EXTRAÍDOS PARA O MOBILE CARD ////////// */
  .vaccination-mobile-card {
    flex-direction: column !important;
    align-items: stretch !important;
    padding: 1rem 1.25rem !important;
    gap: 0.75rem;
  }

  .vaccination-mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.25rem;
    gap: 0.5rem;
  }

  .vaccination-mobile-title-container {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    flex: 1;
    min-width: 0;
    padding-right: 0.5rem;
  }

  .vaccination-mobile-title {
    margin: 0;
    font-size: 1.05rem;
    color: #111827;
    font-weight: 600;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .vaccination-mobile-subtitle {
    margin: 0;
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 600;
    text-transform: uppercase;
    word-break: break-word;
  }

  .vaccination-mobile-dropdown-btn {
    padding: 0;
    margin: 0;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #a8a29e;
    cursor: pointer;
  }

  .vaccination-mobile-dropdown-menu {
    right: 0;
    left: auto;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid #f1f5f9;
    border-radius: 8px;
  }

  .vaccination-mobile-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
  }

  .vaccination-mobile-badge-red {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: #fee2e2;
    color: #991b1b;
    padding: 0.25rem 0.6rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
  }

  .vaccination-mobile-badge-gray {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: #f3f4f6;
    color: #4b5563;
    padding: 0.25rem 0.6rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
  }

  .vaccination-mobile-badge-icon {
    font-size: 0.9rem;
  }

  .vaccination-mobile-details {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    margin-top: 0.25rem;
    font-size: 0.8rem;
    color: #4b5563;
  }

  .vaccination-mobile-detail-row {
    display: flex;
    align-items: flex-start;
    /* mudado de center para lidar com texto quebrado */
    gap: 0.4rem;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .vaccination-mobile-detail-icon {
    font-size: 1rem;
    color: #9ca3af;
  }

  .vaccination-mobile-detail-label {
    font-weight: 600;
  }

  .vaccination-mobile-empty {
    padding: 3rem 1.5rem;
    text-align: center;
    color: #6b7280;
    background: #fff;
    border-radius: 12px;
    border: 1px dashed #d1d5db;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
  }

  .vaccination-mobile-empty-icon {
    font-size: 2.5rem;
    color: #9ca3af;
  }

  .vaccination-mobile-empty-text {
    margin: 0;
    font-weight: 500;
  }

  .display-date-range {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1.2rem;
    margin-bottom: 1.3rem;
  }

  .pagination-container {
    width: 100% !important;
  }

  .pagination-container .pagination {
    justify-content: center !important;
  }

  .vaccinations-table td span,
  .vaccinations-table td {
    font-size: .8rem !important;
  }

  .vaccinations-table th:first-child {
    width: 30%;
  }

  .vaccinations-table th {
    border-radius: 0px !important;
  }

  .vaccination-actions,
  .campaign-actions,
  .applicator-actions {
    display: flex;
    border-top: 1px solid #333;
    padding: 0.5rem 0 0 0;
    justify-content: space-around !important;
  }

  .vaccination-actions i,
  .campaign-actions i,
  .applicator-actions i {
    font-size: 1.5rem !important;
    color: rgba(154, 1, 0, 100%) !important;
  }

  .vaccination-actions button {
    margin: 0px 0.5rem;
  }

  .results {
    width: 100% !important;
  }

  .vaccination-actions button span {
    font-size: 1.4rem !important;
    font-weight: normal !important;
  }

  /* ////////// NEW RESOURCE SCREEN //////////*/
  .new-edit-screen-type-one,
  .new-edit-vaccine-screen,
  .new-edit-campaign-screen,
  .new-edit-applicator-screen {
    max-width: none !important;
    width: calc(100% - 3rem) !important;
    margin: 1rem auto !important;
    box-shadow: 0px 1px 2px 1px rgb(131 131 131);
    -webkit-box-shadow: 0px 1px 2px 1px rgb(131 131 131);
    -moz-box-shadow: 0px 1px 2px 1px rgba(131, 131, 131, 1);
    border-radius: 1rem !important;
    padding: 0 !important;
    overflow: hidden;
  }

  .new-edit-screen-type-one h1,
  .new-edit-vaccine-screen h1,
  .new-edit-campaign-screen h1,
  .new-edit-applicator-screen h1 {
    font-size: 1.2rem;
    padding-left: 3rem !important;
    background-color: rgba(154, 1, 0, 100%);
    padding: .6rem;
    color: white;
    margin: 0 !important;
  }

  .container-type-one,
  .form-vaccine-container,
  .campaign-container,
  .applicator-container,
  .form-vaccine_brand-container {
    margin: 0 !important;
    width: 100% !important;
    padding: 2rem 0 1rem 0 !important;
    border-radius: 0 !important;
  }


  /* ////////// INDEX RESOURCE SCREEN //////////*/
  table.vaccinations-table {
    border-radius: 0px;
  }

  table.vaccinations-table td:first-child {
    width: 40%;
    font-size: .8rem;
  }

  table.vaccinations-table td:not(:first-child) {
    width: 60%;
  }

  .vaccines-container h1,
  .campaigns-container>h1,
  .vaccine_brands-container h1,
  .applicators-container h1 {
    margin-top: 1.5rem !important;
  }

  .btn-new-container,
  .resource-search-form {
    width: calc(100% - 3rem) !important;
    margin: 0 auto 1rem auto !important;
    padding-inline: 0 !important;
  }

  .input-text-search-container,
  .input-text-search-container input {
    width: 100%;
  }

  .vaccine-actions,
  .vaccine_brand-actions {
    display: flex;
    justify-content: space-around;
  }

  .vaccine-actions i,
  .vaccine_brand-actions i {
    font-size: 1.5rem !important;
    color: rgba(154, 1, 0, 100%) !important;
  }

  .vaccines-table tr th:first-child,
  .vaccine_brands-table tr th:first-child {
    width: 70%;
  }

  .resource-table-type-one th,
  .applicators-table th {
    width: 50%;
    border-radius: 7px 7px 0 0 !important;
  }

  .resource-table-type-one summary,
  .applicators-table summary {
    display: flex;
    justify-content: space-between;
  }

  .vaccines-table,
  .resource-table-type-one,
  .vaccine_brands-table,
  .applicators-table {
    width: calc(100% - 3rem);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
    /*   text-transform: uppercase */
  }

  .vaccines-table tr:last-child td:first-child,
  .resource-table-type-one tr:last-child td:first-child,
  .vaccine_brands-table tr:last-child td:first-child,
  .applicators-table tr:last-child td:first-child {
    border-radius: 0 0 0 7px;
  }

  .vaccines-table tr:last-child td:last-child,
  .vaccine_brands-table tr:last-child td:last-child {
    border-radius: 0 0 7px 0;
  }

  .resource-table-type-one tr:last-child td:last-child,
  .applicators-table tr:last-child td:last-child {
    border-radius: 0 0 7px 7px;
  }

  #user_email,
  #user_role {
    width: -webkit-fill-available;
    width: -moz-available;
  }

  th span {
    font-size: 1.2rem;
    font-weight: lighter;
  }

  .edit_user {
    width: inherit !important;
  }

  .title-adm-panel {
    margin-left: 1.5rem;
  }

  .records-found-title {
    margin: 0.5rem 0 0.5rem 1.5rem
  }

  .actions-index-container {
    flex-direction: column;
  }


  /* ////////// VACCINATION CARD SCREEN //////////*/
  .vaccination-card-search-form {
    width: auto !important;
    margin: 1.5rem !important;
  }

  .resource-search-form input[type='text'],
  .input-text-search-container {
    width: 100%;
    /* height: inherit !important; */
  }

  .resource-search-form input[type='text']::placeholder {
    font-family: "Lato", sans-serif !important;
    color: rgb(138, 138, 134) !important;
    font-weight: 400 !important;
    opacity: 1 !important;
  }

  .main .results {
    width: 100%;
  }

  .results p {
    margin-top: 0px;
  }

  .vaccination-actions .material-symbols-outlined,
  .campaign-actions .material-symbols-outlined,
  .applicator-actions .material-symbols-outlined,
  .vaccine-actions .material-symbols-outlined,
  .vaccine_brand-actions .material-symbols-outlined {
    color: rgba(154, 1, 0, 100%) !important;
    font-weight: normal !important;
  }

  .search-vaccination-card button {
    max-width: none !important;
  }

  /* LOGIN */
  .login-page {
    margin: 0 !important;
    height: 100vh;
  }

  .vaccination-card-search-form input[type="text"] {
    width: -webkit-fill-available;
    width: -moz-available;
  }

  .hidden-th-mobile {
    display: none;
  }

  .vaccinations-card-mobile {
    background-color: white;
    border-radius: 30px;
    padding: 0 !important;
    overflow: hidden;
    box-shadow: 0px 1px 2px 1px rgb(131 131 131);
    -webkit-box-shadow: 0px 1px 2px 1px rgb(131 131 131);
    -moz-box-shadow: 0px 1px 2px 1px rgba(131, 131, 131, 1);
  }

  .vaccinations-card-mobile button {
    color: rgba(154, 1, 0, 100%)
  }

  .vaccinations-card-mobile-table thead th:first-child {
    border-radius: 30px 0 0 0;
  }

  .vaccinations-card-mobile-table thead th:last-child {
    border-radius: 0 30px 0 0;
  }

  .military-data {
    color: #524F5D;
    background-color: #fff;
    padding: 0.8rem;
    margin-bottom: 1rem
  }

  .military-data h3 {
    margin-top: .7rem;
    margin-bottom: .4rem;
  }

  .military-data h4 {
    margin-top: .3rem;
    margin-bottom: .3rem;
    font-weight: normal !important;
  }

  .not-found {
    margin-left: 1.5rem;
  }

  /* ////////// VACCINATION RECORD SHOW CARD (MOBILE FIXES) ////////// */
  .vaccination-record-card {
    padding: 1.25rem !important;
    margin: 1rem 0 !important;
  }

  .vaccination-record-card .record-header {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.5rem !important;
    padding-bottom: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .vaccination-record-card .record-body {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .vaccination-record-card .record-section>div {
    grid-template-columns: 1fr !important;
    padding: 1rem !important;
    gap: 1rem !important;
    height: auto !important;
  }

  .vaccination-record-card .record-footer {
    flex-direction: column-reverse !important;
    padding-top: 1rem !important;
  }

  .vaccination-record-card .record-footer a,
  .vaccination-record-card .record-footer form,
  .vaccination-record-card .record-footer button {
    width: 100% !important;
    min-height: 3rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  /* ///////////////////////////////////////////////////////////////// */

  .vital-signs-index-wrapper h1 {
    margin-top: 1.5rem !important;
  }

  .home-card-container {
    display: flex !important;
    align-items: center;
    flex-direction: column !important;
  }

  .card-item {
    width: 85%;
    height: 8rem;
    border-radius: 12px;
  }

  .card-item i {
    font-size: 2rem !important;
  }

  .card-item h1 {
    margin: 0;
    font-size: 1.4rem !important;
  }

  .card-item button {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
  }

  .home-welcome {
    margin-bottom: 0;
    text-align: center;
  }

  .vaccinations-index-wrapper-mobile {
    padding: 1.5rem;
  }

  .vaccinations-index-wrapper-mobile h3 {
    margin-top: 1rem !important;
  }

  .vaccinations-index-wrapper-mobile .vaccinations-header {
    padding: 0 !important;
  }


  /* ////////// REFINAMENTOS PARA TELAS MUITO PEQUENAS (<= 400px) ////////// */
  @media (max-width: 400px) {
    .btn-form-search {
      flex-direction: column !important;
      gap: 1.5rem;
    }

    .btn-search,
    .btn-clean-filters {
      width: 100% !important;
    }

    .forms-container {
      padding: 15px 0.75rem 20px 0.75rem !important;
    }

    .vaccination-mobile-card {
      padding: 1rem !important;
    }
  }
}
.ss-main {
    position: relative;
    /* display: inline-block; */
    user-select: none;
    color: #a9a9a9;
    width: 15rem;
    margin-top: 3px;
    margin-bottom: 0px !important;
    height: 100%;
    font-family: "Lato", serif !important;
  }
  .ss-main .ss-single-selected {
    display: flex;
    flex-direction: row;
    cursor: pointer;
    width: 100%;
    height: 40px;
    padding: .5rem;
    border: 1px solid #dcdee2;
    border-radius: 8px;
    background-color: #fff;
    outline: 0;
    box-sizing: border-box;
    transition: background-color 0.2s;
  }
  .ss-main .ss-single-selected.ss-disabled {
    background-color: #dcdee2;
    cursor: not-allowed;
  }
  .ss-main .ss-single-selected.ss-open-above {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
  .ss-main .ss-single-selected.ss-open-below {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    margin-bottom: 0px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  }
  .ss-main .ss-single-selected .placeholder {
    flex: 1 1 100%;
    text-align: left;
    width: calc(100% - 30px);
    line-height: 1em;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  .ss-main .ss-single-selected .placeholder,
  .ss-main .ss-single-selected .placeholder * {
    display: flex;
    align-items: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.9rem;
    padding-left: 3px;
  }
  .ss-main .ss-single-selected .placeholder * {
    width: auto;
  }
  .ss-main .ss-single-selected .placeholder .ss-disabled {
    color: #dedede;
  }
  .ss-main .ss-single-selected .ss-deselect {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 0 1 auto;
    margin: 0 6px;
    font-weight: 700;
  }
  .ss-main .ss-single-selected .ss-deselect.ss-hide {
    display: none;
  }
  .ss-main .ss-single-selected .ss-arrow {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 0 1 auto;
    margin: 0 6px;
  }
  .ss-main .ss-single-selected .ss-arrow span {
    border: solid #a9a9a9;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    transition: transform 0.2s, margin 0.2s;
  }
  .ss-main .ss-single-selected .ss-arrow span.arrow-up {
    transform: rotate(-135deg);
    margin: 3px 0 0;
  }
  .ss-main .ss-single-selected .ss-arrow span.arrow-down {
    transform: rotate(45deg);
    margin: -3px 0 0;
  }
  .ss-main .ss-multi-selected {
    display: flex;
    flex-direction: row;
    cursor: pointer;
    min-height: 30px;
    width: 100%;
    padding: 0 0 0 3px;
    border: 1px solid #dcdee2;
    border-radius: 4px;
    background-color: #fff;
    outline: 0;
    box-sizing: border-box;
    transition: background-color 0.2s;
  }
  .ss-main .ss-multi-selected.ss-disabled {
    background-color: #dcdee2;
    cursor: not-allowed;
  }
  .ss-main .ss-multi-selected.ss-disabled .ss-values .ss-disabled {
    color: #a9a9a9;
  }
  .ss-main .ss-multi-selected.ss-disabled .ss-values .ss-value .ss-value-delete {
    cursor: not-allowed;
  }
  .ss-main .ss-multi-selected.ss-open-above {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
  .ss-main .ss-multi-selected.ss-open-below {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .ss-main .ss-multi-selected .ss-values {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    flex: 1 1 100%;
    width: calc(100% - 30px);
  }
  .ss-main .ss-multi-selected .ss-values .ss-disabled {
    display: flex;
    padding: 4px 5px;
    margin: 2px 0;
    line-height: 1em;
    align-items: center;
    width: 100%;
    color: #dedede;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  @keyframes scaleIn {
    0% {
      transform: scale(0);
      opacity: 0;
    }
    to {
      transform: scale(1);
      opacity: 1;
    }
  }
  @keyframes scaleOut {
    0% {
      transform: scale(1);
      opacity: 1;
    }
    to {
      transform: scale(0);
      opacity: 0;
    }
  }
  .ss-main .ss-multi-selected .ss-values .ss-value {
    display: flex;
    user-select: none;
    align-items: center;
    font-size: 12px;
    padding: 3px 5px;
    margin: 3px 5px 3px 0;
    color: #fff;
    background-color: #5897fb;
    border-radius: 4px;
    animation-name: scaleIn;
    animation-duration: 0.2s;
    animation-timing-function: ease-out;
    animation-fill-mode: both;
  }
  .ss-main .ss-multi-selected .ss-values .ss-value.ss-out {
    animation-name: scaleOut;
    animation-duration: 0.2s;
    animation-timing-function: ease-out;
  }
  .ss-main .ss-multi-selected .ss-values .ss-value .ss-value-delete {
    margin: 0 0 0 5px;
    cursor: pointer;
  }
  .ss-main .ss-multi-selected .ss-add {
    display: flex;
    flex: 0 1 3px;
    margin: 9px 12px 0 5px;
  }
  .ss-main .ss-multi-selected .ss-add .ss-plus {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #a9a9a9;
    position: relative;
    height: 10px;
    width: 2px;
    transition: transform 0.2s;
  }
  .ss-main .ss-multi-selected .ss-add .ss-plus:after {
    background: #a9a9a9;
    content: "";
    position: absolute;
    height: 2px;
    width: 10px;
    left: -4px;
    top: 4px;
  }
  .ss-main .ss-multi-selected .ss-add .ss-plus.ss-cross {
    transform: rotate(45deg);
  }
  .ss-content {
    position: absolute;
    width: 100%;
    margin: -1px 0 0;
    box-sizing: border-box;
    border: 1px solid #dcdee2;
    z-index: 1010;
    background-color: #fff;
    transform-origin: center top;
    transition: transform 0.2s, opacity 0.2s;
    opacity: 0;
    transform: scaleY(0);
  }
  .ss-content.ss-open {
    display: block;
    opacity: 1;
    transform: scaleY(1);
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    border-radius: 0 0 8px 8px;
    /* border: 2px solid rgb(206, 35, 35); */
    /* margin-top: .05rem; */
  }
  .ss-content .ss-search {
    display: flex;
    flex-direction: row;
  }
  .ss-content .ss-search.ss-hide,
  .ss-content .ss-search.ss-hide input {
    height: 0;
    opacity: 0;
    padding: 0;
    margin: 0;
  }
  .vaccine-container .ss-content .ss-search input:focus-visible,
  .vaccine-container .ss-content .ss-search input:focus-visible {
    border: none !important;
  }
  .ss-content .ss-search input {
    display: inline-flex;
    font-size: inherit;
    line-height: inherit;
    flex: 1 1 auto;
    width: 100%;
    min-width: 0;
    height: 30px;
    padding: 6px 8px;
    margin: 0;
    border: 1px solid #dcdee2;
    border-radius: 4px;
    background-color: #fff;
    outline: 0;
    text-align: left;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -webkit-appearance: textfield;
    border: none !important;
    background-color: #bfc2d12b !important;
    margin: .5rem;
  }
  .ss-content .ss-search input::placeholder {
    color: #8a8a8a;
    vertical-align: middle;
  }
  .ss-content .ss-search .ss-addable {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 22px;
    font-weight: 700;
    flex: 0 0 30px;
    height: 30px;
    margin: 0 0 0 8px;
    border: 1px solid #dcdee2;
    border-radius: 4px;
    box-sizing: border-box;
  }
  .ss-content .ss-addable {
    padding-top: 0;
  }
  .ss-content .ss-list {
    max-height: 200px;
    overflow-x: hidden;
    overflow-y: auto;
    text-align: left;
  }
  .ss-content .ss-list .ss-optgroup .ss-optgroup-label {
    padding: 6px 10px;
    font-weight: 700;
  }
  .ss-content .ss-list .ss-optgroup .ss-option {
    padding: 6px 6px 6px 25px;
  }
  .ss-content .ss-list .ss-optgroup-label-selectable {
    cursor: pointer;
  }
  .ss-content .ss-list .ss-optgroup-label-selectable:hover {
    color: #fff;
    background-color: #f58b90;
  }
  .ss-content .ss-list .ss-option {
    padding: 6px 10px;
    cursor: pointer;
    user-select: none;
  }
  .ss-content .ss-list .ss-option * {
    display: inline-block;
  }
  .ss-content .ss-list .ss-option.ss-highlighted,
  .ss-content .ss-list .ss-option:hover {
    color: #fff;
    background-color: #f58b90;
  }
  .ss-content .ss-list .ss-option.ss-disabled {
    cursor: not-allowed;
    color: #dedede;
    background-color: #fff;
  }
  .ss-content .ss-list .ss-option:not(.ss-disabled).ss-option-selected {
    color: #a9a9a9;
    background-color: rgba(88, 151, 251, 0.1);
  }
  .ss-content .ss-list .ss-option.ss-hide {
    display: none;
  }
  .ss-content .ss-list .ss-option .ss-search-highlight {
    background-color: #fffb8c;
  }
  
/* Nova Vacinação */

.vaccination-container .ss-main {
  display: block !important;
}
.new-edit-vaccination-screen .ss-content {
  margin-top: -10px;
}
.new-edit-vaccination-screen .ss-main .ss-single-selected.ss-open-below {
  margin-bottom: 10px;
}

/* Formulários modernizados (resource-form-card) */
.resource-form-group .ss-main {
  width: 100% !important;
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *



 */

/* @font-face {
  font-family: 'Open Sans';
  src: url(/OpenSans-Regular.ttf) format('truetype');
}  */
require font-awesome html {
  height: 100%;
  background-color: #f1f5f9;
}

body {
  min-height: 100vh;
  background-color: #f1f5f9;
  margin: 0px !important;
  padding: 0px !important;
  font-family: "Inter", "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  color: #374151 !important;
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow-y: auto;
}

body::-webkit-scrollbar {
  display: none;
  /* for Chrome, Safari, and Opera */
}

.main {
  padding-left: 1rem;
  padding-right: 1rem;
  padding-bottom: 1rem !important;
  max-width: 80rem;
  width: 100%;
  min-height: calc(100vh - 80px);
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

div.main {
  padding-inline: 0px;
}

body main {
  padding-top: 20px;
}

.vaccination_card {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 0.75rem;
  background-color: hsl(0 0% 100%);
  border-radius: 0.375rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  margin-bottom: 1rem;
}

h1 {
  font-weight: 600;
  color: #111827;
}

label {
  margin-bottom: 4px;
  text-transform: none !important;
  font-size: 0.875rem !important;
  font-weight: 500;
  color: #374151 !important;
  font-family: 'Inter', 'Lato', sans-serif;
}

.notice {
  color: #166534;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  position: fixed;
  top: 1rem;
  right: 0;
  border-radius: 0.5rem;
  animation: alert-box 4s forwards;
  background-color: #dcfce7;
  height: auto;
  min-height: 2.75rem;
  border: 1px solid #86efac;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  font-weight: 500;
  font-size: 0.9rem;
  z-index: 9999;
}

@keyframes alert-box {
  0% {
    opacity: 0;
    transform: translateX(120%);
  }

  15% {
    opacity: 1;
    transform: translateX(-10px);
  }

  80% {
    opacity: 1;
    transform: translateX(-10px);
  }

  100% {
    opacity: 0;
    transform: translateX(-10px);
  }
}

/* /// HEADER /// */

header {
  background: linear-gradient(135deg, #b91c1c 0%, #7f1d1d 100%);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 3.5rem;
  margin: auto;
  padding: 5px 1.5rem;
  color: white !important;
  max-width: 80rem;
}

.links {
  display: flex;
  align-items: center;
  padding: 0px;
  margin: 0px;
  letter-spacing: 0.02em !important;
}

#user {
  background-color: #e0e0e0;
  color: rgba(36, 36, 36, 0.87) !important;
  border-radius: 50px;
  padding: 2px 10px;
  display: flex;
  flex-direction: row;
  align-items: baseline;
}

.fa-user-circle-o {
  margin-right: 4px;
  color: rgba(36, 36, 36, 0.87)
}

nav ul ul {
  display: none;
}

nav ul li:hover>ul {
  display: block;
}

nav {
  text-align: center;
}

nav ul {
  padding: 0 20px;
  border-radius: 10px;
  list-style: none;
  position: relative;
  display: inline-table;
}

nav ul:after {
  content: "";
  clear: both;
  display: block;
}

nav ul li {
  float: left;
}

nav ul li a {
  display: block;
  padding: 15px 20px;
  text-decoration: none;
}

nav ul ul {
  position: absolute;
  /* top: 100%;
  width: 100%; */
  /* right: 0%; */
}

nav ul ul li {
  float: none;
  /* background-color: #e0e0e0; */
  border: 1px solid #fff;
  border-top: none;
  position: relative;
  width: 6rem;
  height: 2.7rem;
  padding: 5px 2px 3px 2px;
}

nav ul ul li:last-child {
  border-radius: 0px 0px 10px 10px
}

nav ul li ul {
  padding: 0px;
  width: fill-available;
  width: -webkit-fill-available;
  width: -moz-available;
}

nav ul li ul li {
  width: auto;
}

.user-menu-btn {
  color: rgba(36, 36, 36, 0.87) !important;
  font-size: 1.1rem;
  padding: 0px 2px;
  margin: 0px;
  height: 100%;
}

.user-menu-btn form {
  width: 100%;
  height: 100%;
}

.user-menu-btn form:hover {
  background-color: #d0d0d0;
}

#logout form:hover {
  border-radius: 0px 0px 10px 10px;
}

.user-menu-btn :hover i {
  color: rgba(154, 1, 0, 100%) !important
}

.user-menu-btn form button {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center !important;
  justify-content: space-between;
  flex-direction: row;
}

.user-menu-btn form button div {
  width: 100%;
  font-family: "Lato", serif;
}

.fa-sign-out {
  color: rgba(0, 0, 0, 0.87) !important
}

nav ul ul li a {
  padding: 15px 20px;
  color: #fff;
}

nav ul ul li a:hover {
  background-color: #b9b9b9;
}

.name-system {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.cbmpe-logo {
  max-width: 45px;
  display: flex;
}

.header-title {
  font-family: "Inter", "Lato", sans-serif;
  font-weight: 500;
  font-size: 1.4em;
  margin: 0px 0px 0px 0.4em;
  letter-spacing: -0.5px;
}

.header-title a {
  color: white !important;
}

.header .links span.logout {
  padding: 3px 0px 0px !important;
}

button.user-menu-chip {
  border-radius: 100px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 4px 12px 4px 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  color: white;
}

button.user-menu-chip:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

button.user-menu-chip .material-symbols-outlined:first-child {
  font-size: 1.8rem;
  margin-right: 0.4rem;
}

button.user-menu-chip .user-first-name {
  font-weight: 500;
  font-size: 0.95rem;
  font-family: 'Inter', 'Lato', sans-serif;
}

.header .profile-dropdown-menu {
  width: 17rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  padding: 0.5rem;
}

.user-menu-caret {
  font-size: 1.2rem;
  opacity: 0.8;
  margin-left: 0.2rem;
}

.dropdown-item-logout-container {
  border-top: 1px solid #f1f5f9;
  margin-top: 0.25rem;
  padding-top: 0.25rem;
}

.header .dropdown-item-logout-container {
  margin-right: 0 !important;
}

/* Evita que .links a e .links span forcem texto branco e margens/paddings loucos dentro do submenu */
.links .profile-dropdown-menu span {
  color: #6b7280 !important;
  padding: 0 !important;
  margin: 0 0.5rem 0 0 !important;
}

.links .profile-dropdown-menu button,
.links .profile-dropdown-menu a {
  color: #374151 !important;
  font-weight: 500 !important;
  justify-content: flex-start !important;
}

.links .profile-dropdown-menu button:hover,
.links .profile-dropdown-menu a:hover {
  background-color: #f3f4f6 !important;
}

.links .profile-dropdown-menu .dropdown-item-danger:hover {
  background-color: #fee2e2 !important;
  color: #991b1b !important;
}

.links .profile-dropdown-menu .dropdown-item-danger:hover span {
  color: #991b1b !important;
}

.links .profile-dropdown-menu .dropdown-item-danger {
  margin-top: .5rem
}

.links .profile-dropdown-menu .dropdown-item {
  margin-left: 0 !important;
  border-radius: 8px !important;
}

.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus {
  background-color: #f3f4f6 !important;
  color: #374151 !important;
}

.dropdown-menu .dropdown-item:hover span,
.dropdown-menu .dropdown-item:focus span {
  color: #374151 !important;
}

.user-name-menu {
  height: auto;
}



/* /// BOTÕES DP HEADER /// */
.links a,
.links span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.95em;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88) !important;
  padding: 4px 8px;
  margin-left: 0.25rem;
  border-radius: 6px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

li:nth-child(5) {
  margin-right: 1rem;
}

.links span {
  margin-left: 0rem;
}

.links a:hover,
.header .links span.logout:hover {
  background-color: rgba(255, 255, 255, 0.15);
  color: #ffffff !important;
  text-shadow: none;
}

.links li a.active-nav-link {
  background-color: rgba(255, 255, 255, 0.2);
  color: #ffffff !important;
  font-weight: 600;
}

a:not(.button) {
  border: none !important;
  text-decoration: none;
}

.links span {
  padding: 3px 5px 3px 5px;
}

.header .links span.logout {
  padding: 3px 0px 0px !important;
}



/*///  FORMULÁRIO DE PESQUISA - VACCINATIONS ///*/

/* /// CONTAINER /// */
.forms-container {
  background-color: white;
  padding: 1.5rem 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  border: 1px solid #f1f5f9;
}

.forms {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.military-input,
.ome-input,
.date-select {
  display: flex;
  align-items: left;
  flex-direction: column;
  margin-bottom: 10px;
}

.ome-input label {
  margin-bottom: 2px;
}

.date-container p,
.military-container p,
.vaccine-container p {
  font-weight: 500;
  margin-bottom: 10px;
  letter-spacing: 0.1em;
}

.vaccine-container:last-child() {
  margin-top: 10px !important;
}

/* /// BOTÃO DE PESQUISA /// */
input[type="submit"] {
  cursor: pointer;
  width: 100%;
  margin-top: 15px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: 'Inter', 'Lato', sans-serif;
  letter-spacing: 0.01em;
  height: 38px !important;
  border-width: 0px;
  color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(185, 28, 28, 0.3);
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  transition: all 0.2s ease;
}

input[type="submit"]:hover {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  box-shadow: 0 6px 18px rgba(185, 28, 28, 0.4);
  transform: translateY(-1px);
}

input[type="submit"]:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(185, 28, 28, 0.3);
}

.btn-search input[type="submit"] {
  font-family: "Lato", serif !important;
  height: 42px !important;
  font-size: 1.1rem;
  margin-top: 12px;
}

.btn-search {
  width: 49%;
}

.btn-form-search {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
}

/* /// BOTÃO DE EDITAR EM SHOW VACCINATIONS /// */

.btn-show-edit {
  margin-top: 15px;
  height: 35px !important;
  border-width: 0px;
  border-radius: 3px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  background-color: rgb(206, 35, 35);
  text-align: center;
}

.btn-show-edit a {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  color: #fff !important;
}

.btn-show-edit:hover {
  background-color: rgba(203, 38, 38, 0.95);
}

.btn-show-edit:active {
  background-color: rgb(206, 35, 35, 0.9);
}

/* /// BOTÃO DE LIMPAR FILTROS /// */
.btn-clean-filters,
.btn-home,
.btn-cancel {
  width: 100%;
  margin-top: 12px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.btn-back {
  margin-top: 12px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-back a {
  border-radius: 3px;
  color: rgb(206, 35, 35) !important;
  border: 1px solid rgb(206, 35, 35) !important;
  height: 40px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
}

.btn-clean-filters a,
.btn-home a,
.btn-back a,
.btn-cancel a {
  cursor: pointer;
  color: #5f5c68 !important;
}

.btn-clean-filters a:hover,
.btn-home a:hover,
.btn-back a:hover,
.btn-cancel a:hover {
  cursor: pointer;
  color: rgba(154, 1, 0, 100%) !important;
}

.btn-clean-filters {
  width: 49%;
}

.btn-clean-filters a,
.btn-cancel a {
  border-radius: 8px;
  color: rgb(206, 35, 35) !important;
  border: 1px solid rgb(206, 35, 35) !important;
  height: 40px !important;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
}

.btn-back a,
.btn-cancel a {
  border: none !important;
  color: #5f5c68 !important;
}

/* /// INPUTS  /// */

input,
textarea,
select {
  box-sizing: border-box;
  height: 40px !important;
  padding: .5rem .75rem;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  color: #374151;
  font-family: 'Inter', 'Lato', sans-serif;
  font-size: 0.925rem;
  background-color: #ffffff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

input::placeholder,
textarea::placeholder,
select::placeholder {
  font-family: 'Inter', 'Lato', sans-serif;
  color: #9ca3af;
}

input[type="submit"] {
  border: none !important;
}

textarea {
  height: 5em !important;
}

select option:hover {
  color: #374151;
  background-color: #fee2e2 !important;
}

input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: none !important;
  background-color: white !important;
  color: #374151;
  border-color: #b91c1c;
  box-shadow: 0 0 0 3px rgba(185, 28, 28, 0.1);
}

.nice-select-search:focus-visible {
  border: none !important
}

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-text-fill-color: #374151 !important;
  -webkit-box-shadow: 0 0 0px 1000px #ffffff inset;
}

.nice-select.open,
.nice-select-dropdown {
  border: 1px solid rgb(138, 57, 57) !important;
  margin-top: 0px !important;
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
  background-color: #ffe1e1 !important;
}

.nice-select {
  display: flex !important;
  align-items: center;
}

.nice-select span {
  color: #5f5c68 !important;
}

/* /// TABELA DE REGISTRO DAS VACINAS APLICADAS /// */
.vaccinations,
.vaccinations-card-mobile {
  margin-top: 2rem;
  max-height: 620px;
  padding-right: 2px;
  overflow-y: auto;
  /* overflow-x: hidden; */
  /* padding-right: 2px; */
}

.vaccinations {
  padding-right: 0px;
  margin-top: 0;
  overflow-y: visible !important;
}

/* ////////// COMPACT SEARCH FORM ////////// */
.vaccinations-search-form {
  padding: 1.25rem 1.5rem !important;
  margin-bottom: 0 !important;
}

.vaccinations-search-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem 1.5rem;
  margin-bottom: 1.25rem;
}

.search-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0px !important;
  min-width: 0;
}

.search-field label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  margin-bottom: 0px !important;
}

.search-field input,
.search-field select,
.search-field .ss-main {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  height: 2.5rem !important;
  font-size: 0.9rem !important;
  margin-bottom: 0 !important;
  box-sizing: border-box !important;
}

.vaccinations-search-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid #f1f5f9;
  padding-top: 1rem;
}

.btn-clean-new,
.btn-search-new {
  padding: 0 1.5rem;
  height: 2.5rem !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  margin: 0 !important;
  box-sizing: border-box !important;
}

.btn-clean-new {
  color: #64748b;
  background: white;
  border: 1px solid #cbd5e1;
  min-width: 200px;
}

.btn-clean-new:hover {
  background: #f8fafc;
  color: #0f172a;
  border-color: #94a3b8;
}

.btn-search-new {
  color: white;
  background: #b91c1c;
  border: none;
}

.btn-search-new:hover {
  background: #991b1b;
}

.vaccinations-index-wrapper {
  height: calc(100vh - 92px);
  display: flex;
  flex-direction: column;
}

.vaccinations-index-wrapper .vaccinations {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  border-radius: 12px;
}

.vaccinations-index-wrapper .results-container {
  flex-shrink: 0;
}

/* ////////// VACCINATIONS DESKTOP LIST ////////// */
.vaccinations-desktop-list {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #b91c1c transparent;
}

.vaccinations-desktop-list::-webkit-scrollbar {
  width: 6px;
}

.vaccinations-desktop-list::-webkit-scrollbar-track {
  background: transparent;
}

.vaccinations-desktop-list::-webkit-scrollbar-thumb {
  background-color: #b91c1c;
  border-radius: 10px;
}

.vaccinations-desktop-list .resource-list-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  padding: 0.6rem 1.25rem;
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  border-bottom: 1px solid #e2e8f0;
  border-radius: 12px 12px 0 0;
  font-size: 0.8rem;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.vaccinations-desktop-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.45rem 1.25rem;
}

.vaccinations-desktop-col-date {
  flex: 2;
  font-weight: 500;
  color: #111827;
  font-size: 0.95rem;
}

.vaccinations-desktop-col-date a {
  font-family: "Inter", "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-size: 0.8rem;
  color: #fafafa !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 300 !important;
}

.vaccinations-desktop-col-recipient {
  flex: 3;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.vaccinations-desktop-col-vaccine {
  flex: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
}

.vaccinations-desktop-col-actions {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.vaccinations-desktop-name {
  font-weight: 600;
  color: #111827;
  font-size: 0.95rem;
}

.vaccinations-desktop-meta {
  font-size: 0.8rem;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.vaccinations-desktop-meta .material-symbols-outlined {
  font-size: 1rem;
}

.vaccinations-desktop-badge-red {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: #fee2e2;
  color: #991b1b;
  padding: 0.15rem 0.5rem;
  border-radius: 1rem;
  font-size: 0.7rem;
  font-weight: 600;
}

.vaccinations-desktop-badge-red .material-symbols-outlined {
  font-size: 0.8rem;
}

.vaccinations-table {
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px
}

.main .vaccinations-size {
  text-align: right;
  width: 100%;
  margin: 10px 10px 0px 0px !important;
}

/* ////////// SHOW DO REGISTRO DE VACINAÇÂO OU CLÍNICO ////////// */
@media (min-width: 500px) {
  .vaccination-show-page {
    width: 80%;
  }
}

/* ////////// ADMIN ACCORDION ////////// */
.admin-user-details summary {
  list-style: none;
}

.admin-user-details summary::-webkit-details-marker {
  display: none;
}

.admin-user-details[open] .accordion-icon {
  transform: rotate(180deg);
}

.accordion-icon {
  transition: transform 0.2s ease-in-out;
}

dialog.admin-modal::backdrop {
  background: rgba(17, 24, 39, 0.6);
  backdrop-filter: blur(4px);
  animation: fadeIn 0.2s ease-out;
}

dialog.admin-modal[open] {
  animation: slideUp 0.3s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

p span {
  font-weight: bold;
  margin: 0px !important;
  padding: 0px !important;
  font-size: 1em;
}

.vaccinations::-webkit-scrollbar,
.vaccinations-card-mobile::-webkit-scrollbar {
  width: 4px;
  height: 3px;
  padding-left: 10px !important;
}

.vaccinations::-webkit-scrollbar-track,
.vaccinations-card-mobile::-webkit-scrollbar-track {
  background: rgb(253, 200, 200);
}

.vaccinations::-webkit-scrollbar-thumb,
.vaccinations-card-mobile::-webkit-scrollbar-thumb {
  background-color: rgb(195, 58, 58);
  border-radius: 100px;
}

tbody tr td:first-child {
  text-transform: uppercase !important;
}

table {
  max-height: 300px;
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  background-color: white;
  border-radius: 10px;
  /* sem overflow:hidden para não cortar dropdowns nas linhas da tabela */
}

thead {
  height: 50px;
  background: linear-gradient(135deg, #b91c1c 0%, #7f1d1d 100%);
  color: white;
  top: 0;
}

table tr {
  font-size: 0.875rem;
  transition: background-color 0.15s ease;
}

table tbody tr:hover td {
  background-color: #fff1f2 !important;
}

th:first-child {
  border-radius: 10px 0px 0px 0px;
}

th:last-child {
  border-radius: 0px 10px 0px 0px;
}

td {
  padding: .65rem .4rem;
  height: 100%;
  text-align: center;
  color: #374151;
}

td:last-child {
  padding: 0px;
  text-align: center;
}

tr:nth-of-type(odd) td {
  background-color: #fafafa;
  color: #374151;
}

tr:nth-of-type(even) td {
  background-color: #ffffff;
}

.sort_link {
  color: white !important;
  font-weight: bold !important;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  color: #4b5563;
  font-size: 16px;
  font-family: 'Inter', 'Lato', sans-serif;
  transition: color 0.15s ease;
}

button:hover {
  color: #b91c1c;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
}

.dropdown-menu {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  z-index: 1000;
  width: 160px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.dropdown-menu li {
  padding: 0;
  color: #524F5D;
}

.dropdown-menu a,
.dropdown-menu button {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 8px 16px;
  text-decoration: none;
  color: #524F5D;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: .9rem;
}

.dropdown-menu button {
  width: 100%;
}

.dropdown-menu a:hover,
.dropdown-menu button:hover {
  color: #fff;
  background-color: #f58b90;
  font-weight: 600;
}

.dropdown-menu a:hover span,
.dropdown-menu button:hover span {
  color: #fff;
}

.dropdown-menu a span,
.dropdown-menu button span {
  font-size: 1.3rem;
  color: #8f8f8f;
}

.dropdown {
  position: relative;
  display: inline-block;
  overflow: visible;
}

table td {
  position: relative;
  overflow: visible;
}

button .edit-item {
  font-size: 1.3rem;
}

@media(min-width: 577px) {
  .vaccination_search {
    margin: 2px 2px 30px 2px;
    /* box-shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
  -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
  -moz-box-shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06); */
    border-radius: 7px;
  }
}

/* /// NOVA VACINAÇÃO E NOVA VACINA /// */
.show-container-type-one,
.container-type-one,
.form-vaccine-container,
.campaign-container,
.form-vaccine_brand-container,
.applicator-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: white;
  border-radius: 7px;
  padding: 15px;
  align-items: center;
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 10px;
  padding-top: 40px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
}

.show-container-type-one div,
.container-type-one div,
.form-vaccine-container div,
.form-vaccine_brand-container div,
.campaign-container div,
.applicator-container div {
  display: flex;
  flex-direction: column;
  width: 70%;
  margin-bottom: 10px;
}

.campaign-container div {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.show-container-type-one div div,
.container-type-one div div,
.form-vaccine-container div div,
.form-vaccine_brand-container div div,
.campaign-container div div .applicator-container div div {
  width: 100%;
}

.new-edit-screen-type-one h1,
.new-edit-vaccine-screen h1,
.new-edit-campaign-screen h1,
.new-edit-applicator-screen h1 {
  margin-left: 25%;
  font-weight: normal;
}

.new-edit-screen-type-one,
.new-edit-vaccine-screen,
.new-edit-campaign-screen,
.new-edit-applicator-screen {
  height: 100%;
  max-width: 70rem;
  padding-top: 1%;
  margin-left: 5rem;
  margin-right: 5rem;
}

.show-this-vaccination,
.cancel {
  margin: 15px auto 0px auto !important;
  text-align: center;
}

.show-this-vaccination a {
  padding: 5px 10px;
  color: #524F5D !important;
  border: 1px solid #524F5D !important;
  border-radius: 50px !important;
}

.show-this-vaccination a:hover {
  color: rgba(154, 1, 0, 100%) !important;
  border: 1px solid rgba(154, 1, 0, 100%) !important;
}

/* /// REGISTRO DA VACINAÇÃO /// */
.vaccination-register-container div {
  display: flex;
  justify-content: space-between;
  padding: 0px 5px;
  align-items: center;
}

.vaccination-register-container div a,
.vaccination-register-container div button,
.btn-edit,
.cancel a {
  color: #524F5D !important;
  font-size: 14px;
}

.vaccination-register-container div a:hover,
.vaccination-register-container div button:hover,
.btn-edit:hover,
.cancel a:hover {
  color: rgba(154, 1, 0, 100%) !important;
}

.vaccination-register-container div button {
  margin-right: 10px;
}

/* /// VACINAS E CAMPANHAS /// */
.vaccines-container {
  height: 100%;
}

.resource-index-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  gap: 21px;
}

/* pagination dentro dos containers de recursos */
#vaccines .pagination,
#vaccine_brands .pagination,
#campaigns .pagination,
#applicators .pagination {
  margin-top: 1rem;
}


.vaccine-card,
.vaccine_brand-card,
.campaign-card {
  background-color: white;
  border-radius: 7px;
  width: 250px;
  margin-bottom: 10px;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
}

.campaign-card {
  align-items: flex-start;
}

.campaign-card {
  width: 250px;
  height: auto;
}

.campaign-card p {
  overflow-wrap: break-word;
}

.vaccine-card div p,
.vaccine_brand-card p,
.campaign-card div p {
  margin: 0px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
}

.vaccine-card p,
.vaccine_brand-card p,
.campaign-card p {
  margin: 5px 0px 0px 0px
}

.btn-new {
  color: white !important;
  width: 100% !important;
  display: flex;
  height: 100%;
  font-size: 1rem;
  font-weight: 600;
  align-content: center;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.btn-new-container {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: auto;
  height: 2.75rem;
  border-width: 0px;
  color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(185, 28, 28, 0.3);
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  padding-inline: 1.5rem;
  transition: all 0.2s ease;
  font-family: 'Inter', 'Lato', sans-serif;
}

.btn-new-container:hover {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  box-shadow: 0 6px 18px rgba(185, 28, 28, 0.4);
  transform: translateY(-1px);
}

.btn-new-container:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(185, 28, 28, 0.3);
}

.card-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  border-top: 1px solid gray;
  height: 2.7rem;
  border-radius: 0px 0px 7px 7px;
}

.card-actions div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  padding: 0px !important;
  height: 100%;
}

.card-actions div:hover {
  color: white;
}

.btn-delete form,
.btn-edit form {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.btn-delete form button,
.btn-edit a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

a {
  color: #524F5D
}

.btn-delete form button:hover,
.btn-edit a:hover {
  background-color: rgb(231 231 231 / 75%);
  border-radius: 0px 0px 7px 0px;
}

.description-campaign-container {
  padding: 0px !important;
}

.campaign-name,
.vaccine-name,
.vaccine_brand-name,
.vaccine-option-container label {
  text-transform: uppercase !important;
}

.campaign-name {
  margin-bottom: 10px !important;
}

.description-campaign-container {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: left;
}

.vaccine-option label {
  display: flex;
  align-items: center;
  font-size: 0.8em !important;
}

.description-campaign {
  font-size: 0.8em;
}

.vaccine-option-container {
  display: grid !important;
  grid-template-columns: 33.33% 33.33% 33.33% !important;
}

i.fa {
  font-size: 18px;
}

.vaccination-actions {
  display: flex;
  justify-content: center;
}

.center-pagination {
  padding: 10px;
  text-align: center;
}

.results-container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.pagination-container {
  /* width: 33%; */
  align-items: flex-end;
}

.results {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: right;
  /* width: 33%; */
}

/*//////// PAGINAÇÃO ////////*/
.pagination {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: wrap;
}

.pagination span,
.pagination a {
  color: #4b5563;
  margin-right: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 2rem;
  border-radius: 6px;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.15s ease;
}

.pagination span:hover,
.pagination a:hover {
  color: #b91c1c;
  background-color: #fee2e2;
  text-shadow: 0 0 1px #ff0000;
  /* border-bottom: none; */
}

.pagination span a {
  color: #4b5563;
}

.pagination .page.current {
  background-color: #b91c1c;
  color: #ffffff;
  font-weight: 600;
  border-radius: 6px;
  padding: 0 0.5rem;
}

.pagination .page.current:hover {
  background-color: #991b1b;
  color: #fff;
}

.pagination .first,
.pagination .last {
  display: none;
}

.page {
  border: 1px solid #dddddd;
}

.prev,
.next {
  border: 1px solid #dddddd;
  padding-inline: 5px;
}

.notice-any {
  display: none;
}

@media (max-width: 768px) {
  .pagination .page:not(.current) {
    display: none !important;
  }
}

input::placeholder {
  color: rgba(0, 0, 0, 0.33);
}

td {
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 18rem
}

td:nth-child(2) {
  max-width: 5rem;
}

td:nth-child(4) {
  max-width: 12rem;
}

@media(min-width:550px) {
  .results-container {
    align-items: center;
    justify-content: space-between;
    padding-inline: 10px;
  }

  .results-container .results {
    justify-content: flex-start;
  }

  .results-container .pagination {
    justify-content: flex-end;
  }
}

/*//////// Search Form dos Recursos ////////*/

.actions-index-container {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  justify-content: space-between;
}

.resource-search-form {
  background-color: #fff;
  width: min-content;
  display: flex;
  align-items: stretch;
  height: 2.75rem;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.15s ease;
}

.resource-search-form:focus-within {
  border-color: #b91c1c;
  box-shadow: 0 0 0 3px rgba(185, 28, 28, 0.08);
}

.input-text-search-container {
  display: flex;
  align-items: center;
  padding: 0 0.25rem 0 0.75rem;
}

.input-text-search-container input:focus-visible {
  box-shadow: none !important;
}

.resource-search-form input[type='text'] {
  border: none;
  height: 100% !important;
  background: transparent;
  font-family: 'Inter', 'Lato', sans-serif;
  font-size: 0.9rem;
  color: #374151;
  min-width: 180px;
  padding: 0 0.25rem;
}

.resource-search-form input[type='text']:focus-visible {
  border: none !important;
  background-color: transparent !important;
  box-shadow: none !important;
}

.resource-search-form input[type='text']::placeholder {
  font-family: 'Inter', 'Lato', sans-serif;
  color: #9ca3af;
}

.resource-search-form button {
  cursor: pointer;
}

/* ////////// PAINEL ADM ////////// */
.admin-cards {
  display: flex;
}

.admin-cards>div:nth-child(2) {
  margin-left: 1rem;
  width: max-content;
}

.user-container {
  /* width: 30%; */
  height: fit-content;
  background-color: #fff;
  padding: 2rem;
  border-radius: 7px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
}

.user-container h2 {
  margin-top: 0;
}

.user-container .pagination-user {
  margin-top: 1.7rem
}

.add-user-form div {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.edit_user {
  width: 100%
}

.user-accordion {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  padding: 0.5rem;
  border-radius: 7px;
}

.user-accordion summary {
  display: flex;
  justify-content: space-between;
}

.caret {
  display: flex;
  align-items: center;
  margin-right: 0.5rem;
  color: rgba(154, 1, 0, 100%)
}

details i.fa-caret-up {
  display: none;
}

details[open] i.fa-caret-up {
  display: block;
}

details[open] i.fa-caret-down {
  display: none;
}

.subtable-details-type-two {
  display: flex;
  flex-direction: column;
  margin: 0.5rem 0;
  /* border: 0.15rem solid rgba(154,1,0); */
  padding: 0.5rem;
  font-size: 0.8rem;
  border-radius: 1rem;
  /* box-shadow: 0px 1px 3px 2px rgba(131, 131, 131, 1);
  -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
  -moz-box-shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06); */
  text-transform: capitalize;
}

.subtable-details-type-two span {
  font-weight: bold;
}

.subtable-details-type-two input,
select {
  width: -webkit-fill-available;
}

.subtable-details-type-two span,
select {
  margin-bottom: .5rem;
}

.pagination-user nav.pagination {
  text-align: right !important;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem
}

/* ////////// VACCINATION CARD //////////*/
.vaccination-card-search-form {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  width: fit-content;
  padding: 1rem;
  border-radius: 7px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
}

.vaccination-card-search-form>div {
  margin-top: .5rem;
  display: flex;
  align-items: center;
}

.resource-search-form .search {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  align-self: stretch;
  color: #fff;
  padding: 0 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
}

.resource-search-form .search:hover {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.resource-search-form button.clear-search span {
  font-size: 1.3rem;
  color: #8f8f8f;
}

.resource-search-form button.clear-search span:hover {
  color: #b91d1d;
}

.vaccination-card-search-form input[type="text"] {
  padding: 0.35rem 0.5rem;
}

.btn-vaccination-card-search {
  margin-left: .5rem;
  height: 30px;
  background-color: #a40100;
  color: #fff;
  border-radius: .3rem;
}

.btn-vaccination-card-search:hover {
  color: #fff;
  background-color: #e74140;
}

.vaccinations-table tr:last-child td:first-child,
.vaccinations-card-mobile-table tr:last-child td:first-child {
  border-radius: 0 0 0 7px;
}

.vaccinations-table tr:last-child td:last-child,
.vaccinations-card-mobile-table tr:last-child td:last-child {
  border-radius: 0 0 7px 0;
}

/* drop-up: últimas 3 linhas da tabela abrem o dropdown para cima */
.vaccinations-table tbody tr:nth-last-child(-n+3) .dropdown-menu {
  bottom: 100%;
  top: auto;
}

.vaccinations-table {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
}

.vaccinations-card-desktop {
  background-color: white;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
}

.military-data-desktop h3,
h4 {
  margin: 0;
}

.military-data-desktop h3 {
  margin-right: .5rem;
}

.military-data-desktop h4 {
  font-weight: normal;
}

.military-data-desktop div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.vaccinations-card-desktop button {
  color: rgba(154, 1, 0, 100%)
}

.vaccinations-card-desktop-table {
  border: 7px;
  overflow: hidden;
}

/* ////////// NEW HOME CARD ////////// */
.home-card-container {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 10rem 10rem 10rem;
  grid-row-gap: 1.5rem;
  grid-column-gap: 1.5rem;
  justify-content: space-evenly;
}

.card-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  background-color: white;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  border: 1px solid #f1f5f9;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
}

.card-item:last-child {
  grid-column: span 3;
}

.card-item h1 {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0;
  color: #374151;
}

.link-card {
  display: block;
  height: 100%;
}

.card-item form {
  display: block;
  height: fill-available;
  height: -webkit-fill-available;
  height: -moz-available;
  width: fill-available;
  width: -webkit-fill-available;
  width: -moz-available;
}

.card-item form button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  height: 100%;
  width: fill-available;
  width: -webkit-fill-available;
  width: -moz-available;
  margin: 0;
  padding: 1.4rem;
  color: #4b5563;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.card-item form button i.fa {
  font-size: 2.2rem;
  color: #b91c1c;
  transition: transform 0.2s ease;
}

.card-item form button:hover i.fa {
  transform: scale(1.1);
}

.card-item form button:hover {
  background-color: #fff5f5;
  color: #b91c1c;
}

.home-welcome {
  text-align: center;
  font-size: 1.5rem;
  color: #374151;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* ////////// RESOURCE INDEX PAGES (Vacinas, Campanhas, Aplicadores, Marcas) ////////// */

.resource-index-page {
  padding-top: 0.5rem;
}

.resource-index-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.resource-index-header h1 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  font-size: 1.6rem;
  color: #111827;
}

.resource-index-header h1 .material-symbols-outlined {
  font-size: 1.8rem;
  color: #b91c1c;
}

.resource-index-header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* ////////// RESOURCE LIST ////////// */

.vaccinations .resource-list {
  box-shadow: none;
}

.resource-list {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  border: 1px solid #f1f5f9;
  /* sem overflow:hidden para não cortar o dropdown-menu dos itens */
}

.resource-list-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid #f1f5f9;
  transition: background-color 0.15s ease;
}

/* arredondamento sem overflow */
.resource-list-item:first-child {
  border-radius: 12px 12px 0 0;
}

.resource-list-item:last-child {
  border-bottom: none;
  border-radius: 0 0 12px 12px;
}

/* último item: dropdown abre para cima */
.resource-list-item:last-child .dropdown-menu {
  bottom: 100%;
  top: auto;
}

.resource-list-item:hover {
  background-color: #fafafa;
}


.resource-list-item--campaign {
  align-items: flex-start;
  padding: 1rem 1.25rem;
}

.resource-list-item-icon {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  background: linear-gradient(135deg, #fee2e2, #fecaca);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.resource-list-item-icon .material-symbols-outlined {
  font-size: 1.2rem;
  color: #b91c1c;
}

.resource-list-item-info {
  flex: 1;
  min-width: 0;
}

.resource-list-item-title {
  margin: 0 0 0.2rem 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: #111827;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.resource-list-item-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.resource-meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.78rem;
  color: #6b7280;
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 100px;
  padding: 2px 8px;
}

.resource-meta-badge .material-symbols-outlined {
  font-size: 0.9rem;
  color: #9ca3af;
}

.resource-list-item-description {
  font-size: 0.8rem;
  color: #9ca3af;
  font-style: italic;
  display: block;
  margin-top: 0.15rem;
}

.resource-list-item-actions {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.resource-action-btn {
  width: 2rem;
  height: 2rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  transition: background-color 0.15s, color 0.15s;
}

.resource-action-btn:hover {
  background-color: #f3f4f6;
  color: #374151;
}

.resource-action-btn .material-symbols-outlined {
  font-size: 1.2rem;
}

/* ////////// DROPDOWN ITEM DANGER ////////// */
.dropdown-item-danger,
.dropdown-item-danger button {
  color: #b91c1c !important;
}

.dropdown-item-danger span {
  color: #b91c1c !important;
}

.dropdown-item-danger:hover,
.dropdown-item-danger:hover button {
  background-color: #fee2e2 !important;
  color: #991b1b !important;
}

/* ////////// EMPTY STATE ////////// */

.resource-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  border: 1px solid #f1f5f9;
  color: #9ca3af;
  text-align: center;
}

.resource-empty-state .material-symbols-outlined {
  font-size: 3rem;
  margin-bottom: 0.75rem;
  opacity: 0.3;
}

.resource-empty-state p {
  font-size: 1rem;
  margin: 0;
}

/* ////////// RESOURCE PAGINATION ////////// */

.resource-pagination {
  display: flex;
  justify-content: center;
  margin-top: 1.25rem;
}

/* ////////// RESPONSIVIDADE ////////// */

@media (max-width: 576px) {
  .resource-index-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 1.5rem;
    margin-bottom: 1rem;
  }

  .resource-index-header h1 {
    font-size: 1.3rem;
  }

  .resource-index-header-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .resource-index-header-actions .resource-search-form {
    width: 100% !important;
    margin: 0 !important;
  }

  .resource-index-header-actions .btn-new-container {
    width: 100% !important;
    margin: 0 !important;
  }

  .resource-list {
    border-radius: 0;
    border-left: none;
    border-right: none;
    box-shadow: none;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
  }

  .resource-list-item {
    padding: 0.8rem 1rem;
  }

  .resource-list-item-title {
    white-space: normal;
    font-size: 0.875rem;
  }

  .resource-list-item-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
  }

  .resource-pagination {
    padding: 0 1.5rem;
    justify-content: flex-start;
  }
}

/* ////////// RESOURCE FORM (Novo / Editar recurso) ////////// */

.resource-form-page {
  display: flex;
  justify-content: center;
  padding: 1.5rem 1rem;
}

.resource-form-card {
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #f1f5f9;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  width: 100%;
  max-width: 480px;
  overflow: hidden;
}

.resource-form-card--wide {
  max-width: 620px;
}

.resource-form-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: #ffffff;
}

.resource-form-header .material-symbols-outlined {
  font-size: 1.6rem;
  opacity: 0.9;
}

.resource-form-header h2 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.01em;
}

.resource-form-errors {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 1.25rem 1.5rem 0;
  padding: 0.75rem 1rem;
  background: #fee2e2;
  border: 1px solid #fca5a5;
  border-radius: 8px;
  color: #991b1b;
  font-size: 0.875rem;
}

.resource-form-errors .material-symbols-outlined {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
  color: #b91c1c;
}

.resource-form-errors ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.resource-form-errors li {
  margin-bottom: 0.25rem;
}

.resource-form-errors li:last-child {
  margin-bottom: 0;
}

.resource-form-body {
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.resource-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
  /* evita que grid cell "estoure" por conteúdo largo do select */
}


.resource-form-group label {
  font-size: 0.875rem !important;
  font-weight: 500 !important;
  color: #374151 !important;
}

.resource-form-group input,
.resource-form-group textarea,
.resource-form-group select {
  width: 100%;
  box-sizing: border-box;
}

.resource-form-group textarea {
  height: 7rem !important;
  resize: vertical;
}

.resource-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.resource-form-footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem 1.25rem;
  border-top: 1px solid #f1f5f9;
}

.resource-form-btn-submit {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.75rem !important;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(185, 28, 28, 0.25);
  transition: all 0.2s ease;
  font-family: 'Inter', 'Lato', sans-serif;
  /* sobrescreve margin-top global do input[type=submit] */
  margin-top: 0 !important;
  width: auto !important;
}

.resource-form-btn-submit:hover {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  box-shadow: 0 6px 16px rgba(185, 28, 28, 0.35);
  transform: translateY(-1px);
}

.resource-form-btn-submit:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(185, 28, 28, 0.2);
}

.resource-form-btn-cancel {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.75rem;
  padding: 0 1.25rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #6b7280 !important;
  border: 1px solid #e5e7eb !important;
  text-decoration: none;
  transition: all 0.15s ease;
  background: transparent;
}

.resource-form-btn-cancel:hover {
  color: #b91c1c !important;
  border-color: #fca5a5 !important;
  background: #fff5f5;
}

/* título de seção dentro do formulário */
.resource-form-section-title {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9ca3af;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #f1f5f9;
  margin-top: 0.25rem;
}

.resource-form-section-title .material-symbols-outlined {
  font-size: 1rem;
  color: #b91c1c;
}

/* MODAL ADD/EDIT RESOURCES */
.resource-form-footer .btn-clean-new {
  min-width: 0px !important;
}

.resource-form-footer input[type="submit"] {
  width: 100% !important;
}

/* responsividade */
@media (max-width: 576px) {
  .resource-form-page {
    padding: 0;
  }

  .resource-form-card {
    max-width: 100%;
    border-radius: 0;
    border: none;
    box-shadow: none;
    min-height: 100vh;
  }

  .resource-form-row {
    grid-template-columns: 1fr;
  }

  .resource-form-footer {
    flex-direction: column;
    padding: 1rem;
  }

  .new-vital-sign-record .resource-form-footer {
    flex-direction: column-reverse;
  }

  .resource-form-btn-submit,
  .resource-form-btn-cancel {
    width: 100% !important;
  }
}

/* ========================================================
   NEW VITAL SIGN RECORD
   ======================================================== */

.new-vital-sign-record .ss-main {
  margin-top: 0px;
}




/* ========================================================
   GLOBAL FONT STANDARDIZATION
   ======================================================== */
html,
body,
p,
h1,
h2,
h3,
h4,
h5,
h6,
a,
label,
summary,
td,
th,
input,
select,
textarea,
button,
::placeholder,
.ss-main,
.ss-main *,
.ss-content,
.ss-content * {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
}

.material-symbols-outlined,
.material-icons {
  font-family: 'Material Symbols Outlined' !important;
}

i.fa,
i.fas,
i.far,
i.fal,
i.fab {
  font-family: 'FontAwesome' !important;
}
/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */





@font-face {
  font-family: 'FontAwesome';
  src: url(/assets/fontawesome-webfont-82ff0fe46a6f60e0ab3c4a9891a0ae0a1f7b7e84c625f55358379177a2dcb202.eot);
  src: url(/assets/fontawesome-webfont-82ff0fe46a6f60e0ab3c4a9891a0ae0a1f7b7e84c625f55358379177a2dcb202.eot?#iefix) format('embedded-opentype'), url(/assets/fontawesome-webfont-fa79d127baca4558a0b973f5f514b90fc5ef43314c41095f5cb285ffaa0a4029.woff2) format('woff2'), url(/assets/fontawesome-webfont-c9a0a23a23a3f6f7165cba218b40483a0b1750d92b49c40842f1d8f566f5f421.woff) format('woff'), url(/assets/fontawesome-webfont-2794b002e3568f5abce8991e2431ca79e0ce84a08ea1268884b4e097b62762a6.ttf) format('truetype'), url(/assets/fontawesome-webfont-67c6c8e9ffb0fcd7c7c64eaff12a298abf5b54a54b54f0e6c4c49161dba62d6d.svg#fontawesomeregular) format('svg');
  font-weight: normal;
  font-style: normal;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}
.fa-2x {
  font-size: 2em;
}
.fa-3x {
  font-size: 3em;
}
.fa-4x {
  font-size: 4em;
}
.fa-5x {
  font-size: 5em;
}
.fa-fw {
  width: 1.28571429em;
  text-align: center;
}
.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}
.fa-ul > li {
  position: relative;
}
.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}
.fa-li.fa-lg {
  left: -1.85714286em;
}
.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eeeeee;
  border-radius: .1em;
}
.fa-pull-left {
  float: left;
}
.fa-pull-right {
  float: right;
}
.fa.fa-pull-left {
  margin-right: .3em;
}
.fa.fa-pull-right {
  margin-left: .3em;
}
/* Deprecated as of 4.4.0 */
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
.fa.pull-left {
  margin-right: .3em;
}
.fa.pull-right {
  margin-left: .3em;
}
.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}
@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}
.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none;
}
.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}
.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}
.fa-stack-1x {
  line-height: inherit;
}
.fa-stack-2x {
  font-size: 2em;
}
.fa-inverse {
  color: #ffffff;
}
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "\f000";
}
.fa-music:before {
  content: "\f001";
}
.fa-search:before {
  content: "\f002";
}
.fa-envelope-o:before {
  content: "\f003";
}
.fa-heart:before {
  content: "\f004";
}
.fa-star:before {
  content: "\f005";
}
.fa-star-o:before {
  content: "\f006";
}
.fa-user:before {
  content: "\f007";
}
.fa-film:before {
  content: "\f008";
}
.fa-th-large:before {
  content: "\f009";
}
.fa-th:before {
  content: "\f00a";
}
.fa-th-list:before {
  content: "\f00b";
}
.fa-check:before {
  content: "\f00c";
}
.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\f00d";
}
.fa-search-plus:before {
  content: "\f00e";
}
.fa-search-minus:before {
  content: "\f010";
}
.fa-power-off:before {
  content: "\f011";
}
.fa-signal:before {
  content: "\f012";
}
.fa-gear:before,
.fa-cog:before {
  content: "\f013";
}
.fa-trash-o:before {
  content: "\f014";
}
.fa-home:before {
  content: "\f015";
}
.fa-file-o:before {
  content: "\f016";
}
.fa-clock-o:before {
  content: "\f017";
}
.fa-road:before {
  content: "\f018";
}
.fa-download:before {
  content: "\f019";
}
.fa-arrow-circle-o-down:before {
  content: "\f01a";
}
.fa-arrow-circle-o-up:before {
  content: "\f01b";
}
.fa-inbox:before {
  content: "\f01c";
}
.fa-play-circle-o:before {
  content: "\f01d";
}
.fa-rotate-right:before,
.fa-repeat:before {
  content: "\f01e";
}
.fa-refresh:before {
  content: "\f021";
}
.fa-list-alt:before {
  content: "\f022";
}
.fa-lock:before {
  content: "\f023";
}
.fa-flag:before {
  content: "\f024";
}
.fa-headphones:before {
  content: "\f025";
}
.fa-volume-off:before {
  content: "\f026";
}
.fa-volume-down:before {
  content: "\f027";
}
.fa-volume-up:before {
  content: "\f028";
}
.fa-qrcode:before {
  content: "\f029";
}
.fa-barcode:before {
  content: "\f02a";
}
.fa-tag:before {
  content: "\f02b";
}
.fa-tags:before {
  content: "\f02c";
}
.fa-book:before {
  content: "\f02d";
}
.fa-bookmark:before {
  content: "\f02e";
}
.fa-print:before {
  content: "\f02f";
}
.fa-camera:before {
  content: "\f030";
}
.fa-font:before {
  content: "\f031";
}
.fa-bold:before {
  content: "\f032";
}
.fa-italic:before {
  content: "\f033";
}
.fa-text-height:before {
  content: "\f034";
}
.fa-text-width:before {
  content: "\f035";
}
.fa-align-left:before {
  content: "\f036";
}
.fa-align-center:before {
  content: "\f037";
}
.fa-align-right:before {
  content: "\f038";
}
.fa-align-justify:before {
  content: "\f039";
}
.fa-list:before {
  content: "\f03a";
}
.fa-dedent:before,
.fa-outdent:before {
  content: "\f03b";
}
.fa-indent:before {
  content: "\f03c";
}
.fa-video-camera:before {
  content: "\f03d";
}
.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\f03e";
}
.fa-pencil:before {
  content: "\f040";
}
.fa-map-marker:before {
  content: "\f041";
}
.fa-adjust:before {
  content: "\f042";
}
.fa-tint:before {
  content: "\f043";
}
.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\f044";
}
.fa-share-square-o:before {
  content: "\f045";
}
.fa-check-square-o:before {
  content: "\f046";
}
.fa-arrows:before {
  content: "\f047";
}
.fa-step-backward:before {
  content: "\f048";
}
.fa-fast-backward:before {
  content: "\f049";
}
.fa-backward:before {
  content: "\f04a";
}
.fa-play:before {
  content: "\f04b";
}
.fa-pause:before {
  content: "\f04c";
}
.fa-stop:before {
  content: "\f04d";
}
.fa-forward:before {
  content: "\f04e";
}
.fa-fast-forward:before {
  content: "\f050";
}
.fa-step-forward:before {
  content: "\f051";
}
.fa-eject:before {
  content: "\f052";
}
.fa-chevron-left:before {
  content: "\f053";
}
.fa-chevron-right:before {
  content: "\f054";
}
.fa-plus-circle:before {
  content: "\f055";
}
.fa-minus-circle:before {
  content: "\f056";
}
.fa-times-circle:before {
  content: "\f057";
}
.fa-check-circle:before {
  content: "\f058";
}
.fa-question-circle:before {
  content: "\f059";
}
.fa-info-circle:before {
  content: "\f05a";
}
.fa-crosshairs:before {
  content: "\f05b";
}
.fa-times-circle-o:before {
  content: "\f05c";
}
.fa-check-circle-o:before {
  content: "\f05d";
}
.fa-ban:before {
  content: "\f05e";
}
.fa-arrow-left:before {
  content: "\f060";
}
.fa-arrow-right:before {
  content: "\f061";
}
.fa-arrow-up:before {
  content: "\f062";
}
.fa-arrow-down:before {
  content: "\f063";
}
.fa-mail-forward:before,
.fa-share:before {
  content: "\f064";
}
.fa-expand:before {
  content: "\f065";
}
.fa-compress:before {
  content: "\f066";
}
.fa-plus:before {
  content: "\f067";
}
.fa-minus:before {
  content: "\f068";
}
.fa-asterisk:before {
  content: "\f069";
}
.fa-exclamation-circle:before {
  content: "\f06a";
}
.fa-gift:before {
  content: "\f06b";
}
.fa-leaf:before {
  content: "\f06c";
}
.fa-fire:before {
  content: "\f06d";
}
.fa-eye:before {
  content: "\f06e";
}
.fa-eye-slash:before {
  content: "\f070";
}
.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\f071";
}
.fa-plane:before {
  content: "\f072";
}
.fa-calendar:before {
  content: "\f073";
}
.fa-random:before {
  content: "\f074";
}
.fa-comment:before {
  content: "\f075";
}
.fa-magnet:before {
  content: "\f076";
}
.fa-chevron-up:before {
  content: "\f077";
}
.fa-chevron-down:before {
  content: "\f078";
}
.fa-retweet:before {
  content: "\f079";
}
.fa-shopping-cart:before {
  content: "\f07a";
}
.fa-folder:before {
  content: "\f07b";
}
.fa-folder-open:before {
  content: "\f07c";
}
.fa-arrows-v:before {
  content: "\f07d";
}
.fa-arrows-h:before {
  content: "\f07e";
}
.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\f080";
}
.fa-twitter-square:before {
  content: "\f081";
}
.fa-facebook-square:before {
  content: "\f082";
}
.fa-camera-retro:before {
  content: "\f083";
}
.fa-key:before {
  content: "\f084";
}
.fa-gears:before,
.fa-cogs:before {
  content: "\f085";
}
.fa-comments:before {
  content: "\f086";
}
.fa-thumbs-o-up:before {
  content: "\f087";
}
.fa-thumbs-o-down:before {
  content: "\f088";
}
.fa-star-half:before {
  content: "\f089";
}
.fa-heart-o:before {
  content: "\f08a";
}
.fa-sign-out:before {
  content: "\f08b";
}
.fa-linkedin-square:before {
  content: "\f08c";
}
.fa-thumb-tack:before {
  content: "\f08d";
}
.fa-external-link:before {
  content: "\f08e";
}
.fa-sign-in:before {
  content: "\f090";
}
.fa-trophy:before {
  content: "\f091";
}
.fa-github-square:before {
  content: "\f092";
}
.fa-upload:before {
  content: "\f093";
}
.fa-lemon-o:before {
  content: "\f094";
}
.fa-phone:before {
  content: "\f095";
}
.fa-square-o:before {
  content: "\f096";
}
.fa-bookmark-o:before {
  content: "\f097";
}
.fa-phone-square:before {
  content: "\f098";
}
.fa-twitter:before {
  content: "\f099";
}
.fa-facebook-f:before,
.fa-facebook:before {
  content: "\f09a";
}
.fa-github:before {
  content: "\f09b";
}
.fa-unlock:before {
  content: "\f09c";
}
.fa-credit-card:before {
  content: "\f09d";
}
.fa-feed:before,
.fa-rss:before {
  content: "\f09e";
}
.fa-hdd-o:before {
  content: "\f0a0";
}
.fa-bullhorn:before {
  content: "\f0a1";
}
.fa-bell:before {
  content: "\f0f3";
}
.fa-certificate:before {
  content: "\f0a3";
}
.fa-hand-o-right:before {
  content: "\f0a4";
}
.fa-hand-o-left:before {
  content: "\f0a5";
}
.fa-hand-o-up:before {
  content: "\f0a6";
}
.fa-hand-o-down:before {
  content: "\f0a7";
}
.fa-arrow-circle-left:before {
  content: "\f0a8";
}
.fa-arrow-circle-right:before {
  content: "\f0a9";
}
.fa-arrow-circle-up:before {
  content: "\f0aa";
}
.fa-arrow-circle-down:before {
  content: "\f0ab";
}
.fa-globe:before {
  content: "\f0ac";
}
.fa-wrench:before {
  content: "\f0ad";
}
.fa-tasks:before {
  content: "\f0ae";
}
.fa-filter:before {
  content: "\f0b0";
}
.fa-briefcase:before {
  content: "\f0b1";
}
.fa-arrows-alt:before {
  content: "\f0b2";
}
.fa-group:before,
.fa-users:before {
  content: "\f0c0";
}
.fa-chain:before,
.fa-link:before {
  content: "\f0c1";
}
.fa-cloud:before {
  content: "\f0c2";
}
.fa-flask:before {
  content: "\f0c3";
}
.fa-cut:before,
.fa-scissors:before {
  content: "\f0c4";
}
.fa-copy:before,
.fa-files-o:before {
  content: "\f0c5";
}
.fa-paperclip:before {
  content: "\f0c6";
}
.fa-save:before,
.fa-floppy-o:before {
  content: "\f0c7";
}
.fa-square:before {
  content: "\f0c8";
}
.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\f0c9";
}
.fa-list-ul:before {
  content: "\f0ca";
}
.fa-list-ol:before {
  content: "\f0cb";
}
.fa-strikethrough:before {
  content: "\f0cc";
}
.fa-underline:before {
  content: "\f0cd";
}
.fa-table:before {
  content: "\f0ce";
}
.fa-magic:before {
  content: "\f0d0";
}
.fa-truck:before {
  content: "\f0d1";
}
.fa-pinterest:before {
  content: "\f0d2";
}
.fa-pinterest-square:before {
  content: "\f0d3";
}
.fa-google-plus-square:before {
  content: "\f0d4";
}
.fa-google-plus:before {
  content: "\f0d5";
}
.fa-money:before {
  content: "\f0d6";
}
.fa-caret-down:before {
  content: "\f0d7";
}
.fa-caret-up:before {
  content: "\f0d8";
}
.fa-caret-left:before {
  content: "\f0d9";
}
.fa-caret-right:before {
  content: "\f0da";
}
.fa-columns:before {
  content: "\f0db";
}
.fa-unsorted:before,
.fa-sort:before {
  content: "\f0dc";
}
.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\f0dd";
}
.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\f0de";
}
.fa-envelope:before {
  content: "\f0e0";
}
.fa-linkedin:before {
  content: "\f0e1";
}
.fa-rotate-left:before,
.fa-undo:before {
  content: "\f0e2";
}
.fa-legal:before,
.fa-gavel:before {
  content: "\f0e3";
}
.fa-dashboard:before,
.fa-tachometer:before {
  content: "\f0e4";
}
.fa-comment-o:before {
  content: "\f0e5";
}
.fa-comments-o:before {
  content: "\f0e6";
}
.fa-flash:before,
.fa-bolt:before {
  content: "\f0e7";
}
.fa-sitemap:before {
  content: "\f0e8";
}
.fa-umbrella:before {
  content: "\f0e9";
}
.fa-paste:before,
.fa-clipboard:before {
  content: "\f0ea";
}
.fa-lightbulb-o:before {
  content: "\f0eb";
}
.fa-exchange:before {
  content: "\f0ec";
}
.fa-cloud-download:before {
  content: "\f0ed";
}
.fa-cloud-upload:before {
  content: "\f0ee";
}
.fa-user-md:before {
  content: "\f0f0";
}
.fa-stethoscope:before {
  content: "\f0f1";
}
.fa-suitcase:before {
  content: "\f0f2";
}
.fa-bell-o:before {
  content: "\f0a2";
}
.fa-coffee:before {
  content: "\f0f4";
}
.fa-cutlery:before {
  content: "\f0f5";
}
.fa-file-text-o:before {
  content: "\f0f6";
}
.fa-building-o:before {
  content: "\f0f7";
}
.fa-hospital-o:before {
  content: "\f0f8";
}
.fa-ambulance:before {
  content: "\f0f9";
}
.fa-medkit:before {
  content: "\f0fa";
}
.fa-fighter-jet:before {
  content: "\f0fb";
}
.fa-beer:before {
  content: "\f0fc";
}
.fa-h-square:before {
  content: "\f0fd";
}
.fa-plus-square:before {
  content: "\f0fe";
}
.fa-angle-double-left:before {
  content: "\f100";
}
.fa-angle-double-right:before {
  content: "\f101";
}
.fa-angle-double-up:before {
  content: "\f102";
}
.fa-angle-double-down:before {
  content: "\f103";
}
.fa-angle-left:before {
  content: "\f104";
}
.fa-angle-right:before {
  content: "\f105";
}
.fa-angle-up:before {
  content: "\f106";
}
.fa-angle-down:before {
  content: "\f107";
}
.fa-desktop:before {
  content: "\f108";
}
.fa-laptop:before {
  content: "\f109";
}
.fa-tablet:before {
  content: "\f10a";
}
.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\f10b";
}
.fa-circle-o:before {
  content: "\f10c";
}
.fa-quote-left:before {
  content: "\f10d";
}
.fa-quote-right:before {
  content: "\f10e";
}
.fa-spinner:before {
  content: "\f110";
}
.fa-circle:before {
  content: "\f111";
}
.fa-mail-reply:before,
.fa-reply:before {
  content: "\f112";
}
.fa-github-alt:before {
  content: "\f113";
}
.fa-folder-o:before {
  content: "\f114";
}
.fa-folder-open-o:before {
  content: "\f115";
}
.fa-smile-o:before {
  content: "\f118";
}
.fa-frown-o:before {
  content: "\f119";
}
.fa-meh-o:before {
  content: "\f11a";
}
.fa-gamepad:before {
  content: "\f11b";
}
.fa-keyboard-o:before {
  content: "\f11c";
}
.fa-flag-o:before {
  content: "\f11d";
}
.fa-flag-checkered:before {
  content: "\f11e";
}
.fa-terminal:before {
  content: "\f120";
}
.fa-code:before {
  content: "\f121";
}
.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\f122";
}
.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\f123";
}
.fa-location-arrow:before {
  content: "\f124";
}
.fa-crop:before {
  content: "\f125";
}
.fa-code-fork:before {
  content: "\f126";
}
.fa-unlink:before,
.fa-chain-broken:before {
  content: "\f127";
}
.fa-question:before {
  content: "\f128";
}
.fa-info:before {
  content: "\f129";
}
.fa-exclamation:before {
  content: "\f12a";
}
.fa-superscript:before {
  content: "\f12b";
}
.fa-subscript:before {
  content: "\f12c";
}
.fa-eraser:before {
  content: "\f12d";
}
.fa-puzzle-piece:before {
  content: "\f12e";
}
.fa-microphone:before {
  content: "\f130";
}
.fa-microphone-slash:before {
  content: "\f131";
}
.fa-shield:before {
  content: "\f132";
}
.fa-calendar-o:before {
  content: "\f133";
}
.fa-fire-extinguisher:before {
  content: "\f134";
}
.fa-rocket:before {
  content: "\f135";
}
.fa-maxcdn:before {
  content: "\f136";
}
.fa-chevron-circle-left:before {
  content: "\f137";
}
.fa-chevron-circle-right:before {
  content: "\f138";
}
.fa-chevron-circle-up:before {
  content: "\f139";
}
.fa-chevron-circle-down:before {
  content: "\f13a";
}
.fa-html5:before {
  content: "\f13b";
}
.fa-css3:before {
  content: "\f13c";
}
.fa-anchor:before {
  content: "\f13d";
}
.fa-unlock-alt:before {
  content: "\f13e";
}
.fa-bullseye:before {
  content: "\f140";
}
.fa-ellipsis-h:before {
  content: "\f141";
}
.fa-ellipsis-v:before {
  content: "\f142";
}
.fa-rss-square:before {
  content: "\f143";
}
.fa-play-circle:before {
  content: "\f144";
}
.fa-ticket:before {
  content: "\f145";
}
.fa-minus-square:before {
  content: "\f146";
}
.fa-minus-square-o:before {
  content: "\f147";
}
.fa-level-up:before {
  content: "\f148";
}
.fa-level-down:before {
  content: "\f149";
}
.fa-check-square:before {
  content: "\f14a";
}
.fa-pencil-square:before {
  content: "\f14b";
}
.fa-external-link-square:before {
  content: "\f14c";
}
.fa-share-square:before {
  content: "\f14d";
}
.fa-compass:before {
  content: "\f14e";
}
.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\f150";
}
.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\f151";
}
.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\f152";
}
.fa-euro:before,
.fa-eur:before {
  content: "\f153";
}
.fa-gbp:before {
  content: "\f154";
}
.fa-dollar:before,
.fa-usd:before {
  content: "\f155";
}
.fa-rupee:before,
.fa-inr:before {
  content: "\f156";
}
.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\f157";
}
.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\f158";
}
.fa-won:before,
.fa-krw:before {
  content: "\f159";
}
.fa-bitcoin:before,
.fa-btc:before {
  content: "\f15a";
}
.fa-file:before {
  content: "\f15b";
}
.fa-file-text:before {
  content: "\f15c";
}
.fa-sort-alpha-asc:before {
  content: "\f15d";
}
.fa-sort-alpha-desc:before {
  content: "\f15e";
}
.fa-sort-amount-asc:before {
  content: "\f160";
}
.fa-sort-amount-desc:before {
  content: "\f161";
}
.fa-sort-numeric-asc:before {
  content: "\f162";
}
.fa-sort-numeric-desc:before {
  content: "\f163";
}
.fa-thumbs-up:before {
  content: "\f164";
}
.fa-thumbs-down:before {
  content: "\f165";
}
.fa-youtube-square:before {
  content: "\f166";
}
.fa-youtube:before {
  content: "\f167";
}
.fa-xing:before {
  content: "\f168";
}
.fa-xing-square:before {
  content: "\f169";
}
.fa-youtube-play:before {
  content: "\f16a";
}
.fa-dropbox:before {
  content: "\f16b";
}
.fa-stack-overflow:before {
  content: "\f16c";
}
.fa-instagram:before {
  content: "\f16d";
}
.fa-flickr:before {
  content: "\f16e";
}
.fa-adn:before {
  content: "\f170";
}
.fa-bitbucket:before {
  content: "\f171";
}
.fa-bitbucket-square:before {
  content: "\f172";
}
.fa-tumblr:before {
  content: "\f173";
}
.fa-tumblr-square:before {
  content: "\f174";
}
.fa-long-arrow-down:before {
  content: "\f175";
}
.fa-long-arrow-up:before {
  content: "\f176";
}
.fa-long-arrow-left:before {
  content: "\f177";
}
.fa-long-arrow-right:before {
  content: "\f178";
}
.fa-apple:before {
  content: "\f179";
}
.fa-windows:before {
  content: "\f17a";
}
.fa-android:before {
  content: "\f17b";
}
.fa-linux:before {
  content: "\f17c";
}
.fa-dribbble:before {
  content: "\f17d";
}
.fa-skype:before {
  content: "\f17e";
}
.fa-foursquare:before {
  content: "\f180";
}
.fa-trello:before {
  content: "\f181";
}
.fa-female:before {
  content: "\f182";
}
.fa-male:before {
  content: "\f183";
}
.fa-gittip:before,
.fa-gratipay:before {
  content: "\f184";
}
.fa-sun-o:before {
  content: "\f185";
}
.fa-moon-o:before {
  content: "\f186";
}
.fa-archive:before {
  content: "\f187";
}
.fa-bug:before {
  content: "\f188";
}
.fa-vk:before {
  content: "\f189";
}
.fa-weibo:before {
  content: "\f18a";
}
.fa-renren:before {
  content: "\f18b";
}
.fa-pagelines:before {
  content: "\f18c";
}
.fa-stack-exchange:before {
  content: "\f18d";
}
.fa-arrow-circle-o-right:before {
  content: "\f18e";
}
.fa-arrow-circle-o-left:before {
  content: "\f190";
}
.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\f191";
}
.fa-dot-circle-o:before {
  content: "\f192";
}
.fa-wheelchair:before {
  content: "\f193";
}
.fa-vimeo-square:before {
  content: "\f194";
}
.fa-turkish-lira:before,
.fa-try:before {
  content: "\f195";
}
.fa-plus-square-o:before {
  content: "\f196";
}
.fa-space-shuttle:before {
  content: "\f197";
}
.fa-slack:before {
  content: "\f198";
}
.fa-envelope-square:before {
  content: "\f199";
}
.fa-wordpress:before {
  content: "\f19a";
}
.fa-openid:before {
  content: "\f19b";
}
.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\f19c";
}
.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\f19d";
}
.fa-yahoo:before {
  content: "\f19e";
}
.fa-google:before {
  content: "\f1a0";
}
.fa-reddit:before {
  content: "\f1a1";
}
.fa-reddit-square:before {
  content: "\f1a2";
}
.fa-stumbleupon-circle:before {
  content: "\f1a3";
}
.fa-stumbleupon:before {
  content: "\f1a4";
}
.fa-delicious:before {
  content: "\f1a5";
}
.fa-digg:before {
  content: "\f1a6";
}
.fa-pied-piper-pp:before {
  content: "\f1a7";
}
.fa-pied-piper-alt:before {
  content: "\f1a8";
}
.fa-drupal:before {
  content: "\f1a9";
}
.fa-joomla:before {
  content: "\f1aa";
}
.fa-language:before {
  content: "\f1ab";
}
.fa-fax:before {
  content: "\f1ac";
}
.fa-building:before {
  content: "\f1ad";
}
.fa-child:before {
  content: "\f1ae";
}
.fa-paw:before {
  content: "\f1b0";
}
.fa-spoon:before {
  content: "\f1b1";
}
.fa-cube:before {
  content: "\f1b2";
}
.fa-cubes:before {
  content: "\f1b3";
}
.fa-behance:before {
  content: "\f1b4";
}
.fa-behance-square:before {
  content: "\f1b5";
}
.fa-steam:before {
  content: "\f1b6";
}
.fa-steam-square:before {
  content: "\f1b7";
}
.fa-recycle:before {
  content: "\f1b8";
}
.fa-automobile:before,
.fa-car:before {
  content: "\f1b9";
}
.fa-cab:before,
.fa-taxi:before {
  content: "\f1ba";
}
.fa-tree:before {
  content: "\f1bb";
}
.fa-spotify:before {
  content: "\f1bc";
}
.fa-deviantart:before {
  content: "\f1bd";
}
.fa-soundcloud:before {
  content: "\f1be";
}
.fa-database:before {
  content: "\f1c0";
}
.fa-file-pdf-o:before {
  content: "\f1c1";
}
.fa-file-word-o:before {
  content: "\f1c2";
}
.fa-file-excel-o:before {
  content: "\f1c3";
}
.fa-file-powerpoint-o:before {
  content: "\f1c4";
}
.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\f1c5";
}
.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\f1c6";
}
.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\f1c7";
}
.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\f1c8";
}
.fa-file-code-o:before {
  content: "\f1c9";
}
.fa-vine:before {
  content: "\f1ca";
}
.fa-codepen:before {
  content: "\f1cb";
}
.fa-jsfiddle:before {
  content: "\f1cc";
}
.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\f1cd";
}
.fa-circle-o-notch:before {
  content: "\f1ce";
}
.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: "\f1d0";
}
.fa-ge:before,
.fa-empire:before {
  content: "\f1d1";
}
.fa-git-square:before {
  content: "\f1d2";
}
.fa-git:before {
  content: "\f1d3";
}
.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "\f1d4";
}
.fa-tencent-weibo:before {
  content: "\f1d5";
}
.fa-qq:before {
  content: "\f1d6";
}
.fa-wechat:before,
.fa-weixin:before {
  content: "\f1d7";
}
.fa-send:before,
.fa-paper-plane:before {
  content: "\f1d8";
}
.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\f1d9";
}
.fa-history:before {
  content: "\f1da";
}
.fa-circle-thin:before {
  content: "\f1db";
}
.fa-header:before {
  content: "\f1dc";
}
.fa-paragraph:before {
  content: "\f1dd";
}
.fa-sliders:before {
  content: "\f1de";
}
.fa-share-alt:before {
  content: "\f1e0";
}
.fa-share-alt-square:before {
  content: "\f1e1";
}
.fa-bomb:before {
  content: "\f1e2";
}
.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "\f1e3";
}
.fa-tty:before {
  content: "\f1e4";
}
.fa-binoculars:before {
  content: "\f1e5";
}
.fa-plug:before {
  content: "\f1e6";
}
.fa-slideshare:before {
  content: "\f1e7";
}
.fa-twitch:before {
  content: "\f1e8";
}
.fa-yelp:before {
  content: "\f1e9";
}
.fa-newspaper-o:before {
  content: "\f1ea";
}
.fa-wifi:before {
  content: "\f1eb";
}
.fa-calculator:before {
  content: "\f1ec";
}
.fa-paypal:before {
  content: "\f1ed";
}
.fa-google-wallet:before {
  content: "\f1ee";
}
.fa-cc-visa:before {
  content: "\f1f0";
}
.fa-cc-mastercard:before {
  content: "\f1f1";
}
.fa-cc-discover:before {
  content: "\f1f2";
}
.fa-cc-amex:before {
  content: "\f1f3";
}
.fa-cc-paypal:before {
  content: "\f1f4";
}
.fa-cc-stripe:before {
  content: "\f1f5";
}
.fa-bell-slash:before {
  content: "\f1f6";
}
.fa-bell-slash-o:before {
  content: "\f1f7";
}
.fa-trash:before {
  content: "\f1f8";
}
.fa-copyright:before {
  content: "\f1f9";
}
.fa-at:before {
  content: "\f1fa";
}
.fa-eyedropper:before {
  content: "\f1fb";
}
.fa-paint-brush:before {
  content: "\f1fc";
}
.fa-birthday-cake:before {
  content: "\f1fd";
}
.fa-area-chart:before {
  content: "\f1fe";
}
.fa-pie-chart:before {
  content: "\f200";
}
.fa-line-chart:before {
  content: "\f201";
}
.fa-lastfm:before {
  content: "\f202";
}
.fa-lastfm-square:before {
  content: "\f203";
}
.fa-toggle-off:before {
  content: "\f204";
}
.fa-toggle-on:before {
  content: "\f205";
}
.fa-bicycle:before {
  content: "\f206";
}
.fa-bus:before {
  content: "\f207";
}
.fa-ioxhost:before {
  content: "\f208";
}
.fa-angellist:before {
  content: "\f209";
}
.fa-cc:before {
  content: "\f20a";
}
.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "\f20b";
}
.fa-meanpath:before {
  content: "\f20c";
}
.fa-buysellads:before {
  content: "\f20d";
}
.fa-connectdevelop:before {
  content: "\f20e";
}
.fa-dashcube:before {
  content: "\f210";
}
.fa-forumbee:before {
  content: "\f211";
}
.fa-leanpub:before {
  content: "\f212";
}
.fa-sellsy:before {
  content: "\f213";
}
.fa-shirtsinbulk:before {
  content: "\f214";
}
.fa-simplybuilt:before {
  content: "\f215";
}
.fa-skyatlas:before {
  content: "\f216";
}
.fa-cart-plus:before {
  content: "\f217";
}
.fa-cart-arrow-down:before {
  content: "\f218";
}
.fa-diamond:before {
  content: "\f219";
}
.fa-ship:before {
  content: "\f21a";
}
.fa-user-secret:before {
  content: "\f21b";
}
.fa-motorcycle:before {
  content: "\f21c";
}
.fa-street-view:before {
  content: "\f21d";
}
.fa-heartbeat:before {
  content: "\f21e";
}
.fa-venus:before {
  content: "\f221";
}
.fa-mars:before {
  content: "\f222";
}
.fa-mercury:before {
  content: "\f223";
}
.fa-intersex:before,
.fa-transgender:before {
  content: "\f224";
}
.fa-transgender-alt:before {
  content: "\f225";
}
.fa-venus-double:before {
  content: "\f226";
}
.fa-mars-double:before {
  content: "\f227";
}
.fa-venus-mars:before {
  content: "\f228";
}
.fa-mars-stroke:before {
  content: "\f229";
}
.fa-mars-stroke-v:before {
  content: "\f22a";
}
.fa-mars-stroke-h:before {
  content: "\f22b";
}
.fa-neuter:before {
  content: "\f22c";
}
.fa-genderless:before {
  content: "\f22d";
}
.fa-facebook-official:before {
  content: "\f230";
}
.fa-pinterest-p:before {
  content: "\f231";
}
.fa-whatsapp:before {
  content: "\f232";
}
.fa-server:before {
  content: "\f233";
}
.fa-user-plus:before {
  content: "\f234";
}
.fa-user-times:before {
  content: "\f235";
}
.fa-hotel:before,
.fa-bed:before {
  content: "\f236";
}
.fa-viacoin:before {
  content: "\f237";
}
.fa-train:before {
  content: "\f238";
}
.fa-subway:before {
  content: "\f239";
}
.fa-medium:before {
  content: "\f23a";
}
.fa-yc:before,
.fa-y-combinator:before {
  content: "\f23b";
}
.fa-optin-monster:before {
  content: "\f23c";
}
.fa-opencart:before {
  content: "\f23d";
}
.fa-expeditedssl:before {
  content: "\f23e";
}
.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
  content: "\f240";
}
.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "\f241";
}
.fa-battery-2:before,
.fa-battery-half:before {
  content: "\f242";
}
.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "\f243";
}
.fa-battery-0:before,
.fa-battery-empty:before {
  content: "\f244";
}
.fa-mouse-pointer:before {
  content: "\f245";
}
.fa-i-cursor:before {
  content: "\f246";
}
.fa-object-group:before {
  content: "\f247";
}
.fa-object-ungroup:before {
  content: "\f248";
}
.fa-sticky-note:before {
  content: "\f249";
}
.fa-sticky-note-o:before {
  content: "\f24a";
}
.fa-cc-jcb:before {
  content: "\f24b";
}
.fa-cc-diners-club:before {
  content: "\f24c";
}
.fa-clone:before {
  content: "\f24d";
}
.fa-balance-scale:before {
  content: "\f24e";
}
.fa-hourglass-o:before {
  content: "\f250";
}
.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "\f251";
}
.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "\f252";
}
.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "\f253";
}
.fa-hourglass:before {
  content: "\f254";
}
.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "\f255";
}
.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "\f256";
}
.fa-hand-scissors-o:before {
  content: "\f257";
}
.fa-hand-lizard-o:before {
  content: "\f258";
}
.fa-hand-spock-o:before {
  content: "\f259";
}
.fa-hand-pointer-o:before {
  content: "\f25a";
}
.fa-hand-peace-o:before {
  content: "\f25b";
}
.fa-trademark:before {
  content: "\f25c";
}
.fa-registered:before {
  content: "\f25d";
}
.fa-creative-commons:before {
  content: "\f25e";
}
.fa-gg:before {
  content: "\f260";
}
.fa-gg-circle:before {
  content: "\f261";
}
.fa-tripadvisor:before {
  content: "\f262";
}
.fa-odnoklassniki:before {
  content: "\f263";
}
.fa-odnoklassniki-square:before {
  content: "\f264";
}
.fa-get-pocket:before {
  content: "\f265";
}
.fa-wikipedia-w:before {
  content: "\f266";
}
.fa-safari:before {
  content: "\f267";
}
.fa-chrome:before {
  content: "\f268";
}
.fa-firefox:before {
  content: "\f269";
}
.fa-opera:before {
  content: "\f26a";
}
.fa-internet-explorer:before {
  content: "\f26b";
}
.fa-tv:before,
.fa-television:before {
  content: "\f26c";
}
.fa-contao:before {
  content: "\f26d";
}
.fa-500px:before {
  content: "\f26e";
}
.fa-amazon:before {
  content: "\f270";
}
.fa-calendar-plus-o:before {
  content: "\f271";
}
.fa-calendar-minus-o:before {
  content: "\f272";
}
.fa-calendar-times-o:before {
  content: "\f273";
}
.fa-calendar-check-o:before {
  content: "\f274";
}
.fa-industry:before {
  content: "\f275";
}
.fa-map-pin:before {
  content: "\f276";
}
.fa-map-signs:before {
  content: "\f277";
}
.fa-map-o:before {
  content: "\f278";
}
.fa-map:before {
  content: "\f279";
}
.fa-commenting:before {
  content: "\f27a";
}
.fa-commenting-o:before {
  content: "\f27b";
}
.fa-houzz:before {
  content: "\f27c";
}
.fa-vimeo:before {
  content: "\f27d";
}
.fa-black-tie:before {
  content: "\f27e";
}
.fa-fonticons:before {
  content: "\f280";
}
.fa-reddit-alien:before {
  content: "\f281";
}
.fa-edge:before {
  content: "\f282";
}
.fa-credit-card-alt:before {
  content: "\f283";
}
.fa-codiepie:before {
  content: "\f284";
}
.fa-modx:before {
  content: "\f285";
}
.fa-fort-awesome:before {
  content: "\f286";
}
.fa-usb:before {
  content: "\f287";
}
.fa-product-hunt:before {
  content: "\f288";
}
.fa-mixcloud:before {
  content: "\f289";
}
.fa-scribd:before {
  content: "\f28a";
}
.fa-pause-circle:before {
  content: "\f28b";
}
.fa-pause-circle-o:before {
  content: "\f28c";
}
.fa-stop-circle:before {
  content: "\f28d";
}
.fa-stop-circle-o:before {
  content: "\f28e";
}
.fa-shopping-bag:before {
  content: "\f290";
}
.fa-shopping-basket:before {
  content: "\f291";
}
.fa-hashtag:before {
  content: "\f292";
}
.fa-bluetooth:before {
  content: "\f293";
}
.fa-bluetooth-b:before {
  content: "\f294";
}
.fa-percent:before {
  content: "\f295";
}
.fa-gitlab:before {
  content: "\f296";
}
.fa-wpbeginner:before {
  content: "\f297";
}
.fa-wpforms:before {
  content: "\f298";
}
.fa-envira:before {
  content: "\f299";
}
.fa-universal-access:before {
  content: "\f29a";
}
.fa-wheelchair-alt:before {
  content: "\f29b";
}
.fa-question-circle-o:before {
  content: "\f29c";
}
.fa-blind:before {
  content: "\f29d";
}
.fa-audio-description:before {
  content: "\f29e";
}
.fa-volume-control-phone:before {
  content: "\f2a0";
}
.fa-braille:before {
  content: "\f2a1";
}
.fa-assistive-listening-systems:before {
  content: "\f2a2";
}
.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}
.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: "\f2a4";
}
.fa-glide:before {
  content: "\f2a5";
}
.fa-glide-g:before {
  content: "\f2a6";
}
.fa-signing:before,
.fa-sign-language:before {
  content: "\f2a7";
}
.fa-low-vision:before {
  content: "\f2a8";
}
.fa-viadeo:before {
  content: "\f2a9";
}
.fa-viadeo-square:before {
  content: "\f2aa";
}
.fa-snapchat:before {
  content: "\f2ab";
}
.fa-snapchat-ghost:before {
  content: "\f2ac";
}
.fa-snapchat-square:before {
  content: "\f2ad";
}
.fa-pied-piper:before {
  content: "\f2ae";
}
.fa-first-order:before {
  content: "\f2b0";
}
.fa-yoast:before {
  content: "\f2b1";
}
.fa-themeisle:before {
  content: "\f2b2";
}
.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: "\f2b3";
}
.fa-fa:before,
.fa-font-awesome:before {
  content: "\f2b4";
}
.fa-handshake-o:before {
  content: "\f2b5";
}
.fa-envelope-open:before {
  content: "\f2b6";
}
.fa-envelope-open-o:before {
  content: "\f2b7";
}
.fa-linode:before {
  content: "\f2b8";
}
.fa-address-book:before {
  content: "\f2b9";
}
.fa-address-book-o:before {
  content: "\f2ba";
}
.fa-vcard:before,
.fa-address-card:before {
  content: "\f2bb";
}
.fa-vcard-o:before,
.fa-address-card-o:before {
  content: "\f2bc";
}
.fa-user-circle:before {
  content: "\f2bd";
}
.fa-user-circle-o:before {
  content: "\f2be";
}
.fa-user-o:before {
  content: "\f2c0";
}
.fa-id-badge:before {
  content: "\f2c1";
}
.fa-drivers-license:before,
.fa-id-card:before {
  content: "\f2c2";
}
.fa-drivers-license-o:before,
.fa-id-card-o:before {
  content: "\f2c3";
}
.fa-quora:before {
  content: "\f2c4";
}
.fa-free-code-camp:before {
  content: "\f2c5";
}
.fa-telegram:before {
  content: "\f2c6";
}
.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
  content: "\f2c7";
}
.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: "\f2c8";
}
.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: "\f2c9";
}
.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: "\f2ca";
}
.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: "\f2cb";
}
.fa-shower:before {
  content: "\f2cc";
}
.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
  content: "\f2cd";
}
.fa-podcast:before {
  content: "\f2ce";
}
.fa-window-maximize:before {
  content: "\f2d0";
}
.fa-window-minimize:before {
  content: "\f2d1";
}
.fa-window-restore:before {
  content: "\f2d2";
}
.fa-times-rectangle:before,
.fa-window-close:before {
  content: "\f2d3";
}
.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: "\f2d4";
}
.fa-bandcamp:before {
  content: "\f2d5";
}
.fa-grav:before {
  content: "\f2d6";
}
.fa-etsy:before {
  content: "\f2d7";
}
.fa-imdb:before {
  content: "\f2d8";
}
.fa-ravelry:before {
  content: "\f2d9";
}
.fa-eercast:before {
  content: "\f2da";
}
.fa-microchip:before {
  content: "\f2db";
}
.fa-snowflake-o:before {
  content: "\f2dc";
}
.fa-superpowers:before {
  content: "\f2dd";
}
.fa-wpexplorer:before {
  content: "\f2de";
}
.fa-meetup:before {
  content: "\f2e0";
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}
