/* 1) make sure the menu is hidden by default */
.navbar-nav .nav-item.dropdown .dropdown-menu {
  display: none;
}

/* 2) show on hover (desktop) … */
.navbar-nav .nav-item.dropdown:hover > .dropdown-menu {
  display: block;
}

/* 3) **also** show on focus-within (first tap on mobile) */
.navbar-nav .nav-item.dropdown:focus-within > .dropdown-menu {
  display: block;
}

/* ── Nested submenu ── */
.navbar-nav .dropdown-submenu:hover > .dropdown-menu,
.navbar-nav .dropdown-submenu:focus-within > .dropdown-menu {
  display: block;
}

form[action*="PORCH"] :is(h1, h2, h3, h4, h5, h6) {
    background: linear-gradient(45deg, #2e6b1f, #00000059);
    color: white;
    padding: 1.5rem;
    width: 100%;
}

.Head {
}

div.Normal{
    font:inherit;
}

hr { 
  border: 0; 
  height: 1px; 
  background-image: -webkit-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
  background-image: -moz-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
  background-image: -ms-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
  background-image: -o-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0); 
}

.btn-vine {
    background-color: #02b4dc;
    border-color: #02b4dc;
}

.link-app-store--list > * {
    flex: 1 0 32%;
}

.courts-internal-link::after {
    display: inline-block;
    content: "\1F517";
    vertical-align: sub;
    font-size: smaller;
}

.list-group-flush > .list-group-item {
    border-top: 0;
}

.court-details {
    opacity: .85;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}

.court-details > * {
    flex: 1 0 0;
}

.court-details .main-content {
    flex: 3 0 150px;
    padding-top: 2.5rem;
    font-size: 18px;
}

.court-details--body.full-height, .court-details--body.full-height > * {
    height: 100%;
}

.court-details--body_solicitorGeneral {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%
}

.court-notices {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

#court-notices--list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    gap: 1rem;
}

.court-notices .court-notices--item {
    flex: 1 0 48%;
    font-size: larger;
    display: flex;
    align-items: center;
    justify-content: center;
}

.court-notices .court-notices--item button {
    max-width: 75%;
    word-wrap: break-word;
    /* text-overflow: ellipsis; */
    overflow: hidden;
    text-wrap: auto;
}

  /* Define the grid container */
  .courts-grid {
    display: grid;
    /* Create as many columns as will fit, each at a minimum of 250px */
    grid-template-columns: repeat(auto-fit, minmax(32%, 1fr));
    gap: 1rem; /* Adjust gap between grid items */
  }

.form-grid--item {
    flex: 1 0 32%;
}

.mun-court-files img {
    width: 33%;
    margin-bottom: 2rem;
}

.mncpl-side {
    width: 33%;
    text-align: center;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}


.mncpl-side-img {
    width: 50% !important;
}

.courts-officials-actions {
    margin-bottom: 1rem;
}

.courts-officials-actions--list {
    margin-top: 2rem;
}
.courts-content--embed {
    width: 560px;
    height: 480px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.officials-details--phone {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    flex-wrap: wrap;
}

@media screen and (min-width: 768px) {
    .officials-details--phone {
        max-width: 66%;
    }
}
@media screen and (min-width: 1200px) {
    .officials-details--phone {
        max-width: 45%;
    }
}

.officials-details--phone > dt {
    flex: 1 0 32%;
}

.officials-details--phone > dd {
    flex: 2 0 63%;
}

.filing-fee--container {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
}

.table-fee-schedule {
    flex: 1 0 45%;
}

.table-fee-schedule td {
  padding: .25rem;
}

.table-fee-schedule tr:hover {
  background-color: #fff3cd;
}

.county-resource-deck--columns, .address-resource-deck--columns {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    column-gap: var(--gap);
}

.county-resource-deck--columns:last-of-type, .address-resource-deck--columns:last-of-type {
    margin-bottom: 2rem;
}

.county-resource-deck--columns > *, .address-resource-deck--columns > * {
    break-inside: avoid-column;
    page-break-inside: avoid;
    margin-bottom: 1rem;
}

@media screen and (min-width: 768px) {
    .county-resource-deck--columns:is([data-columns="2"],[data-columns="3"],[data-columns="4"]),.address-resource-deck--columns:is([data-columns="2"],[data-columns="3"],[data-columns="4"]) {
            column-count: 2;
            width: 75%;
    }
}
@media screen and (min-width: 1024px) {
    .county-resource-deck--columns:is([data-columns="3"],[data-columns="4"]),.address-resource-deck--columns:is([data-columns="3"],[data-columns="4"]) {
            column-count: 3;
    }
}
@media screen and (min-width: 1400px) {
    .county-resource-deck--columns[data-columns="4"],.address-resource-deck--columns:is([data-columns="4"]) {
            column-count: 4;
    }
}





































