/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/

/* Typography
--------------------------------------------- */
/* body,
button,
input,
select,
optgroup,
textarea {
	color: var(--text);
	font-family: var(--font-family-primary);
	font-size: 1rem;
	line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
    font-weight: 400;
	font-family: var(--font-family-primary);
}

.h1, h1 {
    font-size: 2.5rem;
}

.h2, h2 {
    font-size: 2rem;
}

.h3, h3 {
    font-size: 1.75rem;
}

.h4, h4 {
    font-size: 1.5rem;
}

.h5, h5 {
    font-size: 1.25rem;
}

p {
	margin-bottom: 1.5em;
	font-family: var(--font-family-primary);
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", courier, monospace;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code,
kbd,
tt,
var {
	font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark,
ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
} */

/* Elements
--------------------------------------------- */
/* body {
	background: #fff;
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul, ol {
    margin: 0 0 1rem 1em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: 700;
}

dd {
	margin: 0 1.5em 1.5em;
}

/* Make sure embeds and iframes fit their containers. */
/* embed,
iframe,
object {
	max-width: 100%;
}

img {
	height: auto;
	max-width: 100%;
}

figure {
	margin: 1em 0;
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

.table--fixed{
    table-layout: fixed;
} */

/* Links
--------------------------------------------- */
/* a {
	color: var(--link);
} */

/* a:hover:not(.button),
a:focus:not(.button),
a:active:not(.button) {
	color: var(--link);
} */

/* a:focus:not(.button) {
	outline: thin dotted;
} */

/* a:hover:not(.button),
a:active:not(.button) {
	outline: 0;
} */

/* Forms
--------------------------------------------- */
/* button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid;
	border-color: #ccc #ccc #bbb;
	border-radius: 3px;
	background: #e6e6e6;
	color: rgba(0, 0, 0, 0.8);
	line-height: 1;
	padding: 0.6em 1em 0.4em;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa;
}

button:active,
button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
	border-color: #aaa #bbb #bbb;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 3px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #111;
}

select {
	border: 1px solid #ccc;
}

textarea {
	width: 100%;
} */

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/

/* .center-content {
    margin: 0 auto;
    width: 90%;
    max-width: 1440px;
} */

.center-text {
    text-align: center;
}

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

.grid-3-column {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1rem;
}

.grid-4-column {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 1rem;
    align-items: center;
}

.grid-4-column--center {
    align-items: center;
}

.grid-4-column--start {
    align-items: start;
}

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/

/* Navigation
--------------------------------------------- */


/* Posts and pages
--------------------------------------------- */
.sticky {
	display: block;
}
/* 
.post,
.page {
	margin: 0 0 1.5em;
} */

.updated:not(.published) {
	display: none;
}

/* .page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
} */

/* .page-links {
	clear: both;
	margin: 0 0 1.5em;
} */

/* Comments
--------------------------------------------- */
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/* Widgets
--------------------------------------------- */
.widget {
	margin: 0 0 1.5em;
}

.widget select {
	max-width: 100%;
}

/* Media
--------------------------------------------- */
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
	display: inline-block;
}

/* Captions
--------------------------------------------- */
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/* Galleries
--------------------------------------------- */
.gallery {
	margin-bottom: 1.5em;
	display: grid;
	grid-gap: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	width: 100%;
}

.gallery-columns-2 {
	grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
	grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
	grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
	grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
	grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
	grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
	grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
	grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
	display: block;
}

/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/

/* Jetpack infinite scroll
--------------------------------------------- */

/* Hide the Posts Navigation and the Footer when Infinite Scroll is in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
	display: none;
}

/* Re-display the Theme Footer when Infinite Scroll has reached its end. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/

/* Accessibility
--------------------------------------------- */

/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
	outline: 0;
}

/* Alignments
--------------------------------------------- */
.alignleft {

	/*rtl:ignore*/
	float: left;

	/*rtl:ignore*/
	margin-right: 1.5em;
	margin-bottom: 1.5em;
}

.alignright {

	/*rtl:ignore*/
	float: right;

	/*rtl:ignore*/
	margin-left: 1.5em;
	margin-bottom: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1.5em;
}


/* Custom Styles
--------------------------------------------------------------*/

/* h1 {
    font-weight: 500;
} */

/* html {
    height: 100%;
    background-color: var(--light);
} */

/* #page.background-light {
    background-color: var(--light);
} */

/* .header-bg {
    background-color: var(--primary);
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: cover;
    color: var(--white);
} */

/* 
.header-bg--home {
    background-image: url(../images/home-header.jpg);
    padding: 0 0 20%;
}

.hero--home {
    margin: 4rem 0 0;
}

.hero--home h1 {
    font-size: 5.5rem;
    font-weight: 900;
    font-family: 'Lato';
    line-height: 6rem;
}

.hero--home p {
    font-size: 1.25rem;
    max-width: 550px;
    margin: 1rem 0;
} */

#experience-bubble {
    background: #ffffff;
    border-radius: 50px;
    padding: 1rem;
    color: var(--primary);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    width: 250px;
    grid-gap: 1rem;
}

#experience-bubble span{
    color: var(--accent);
    font-size: 2rem;
    font-weight: 900;
}

.icon-vanilla-bg {
    background-color: #fff0c7;
    padding: 1.25rem 0 0 1.25rem;
    font-size: 4rem;
    border-radius: 50px;
}

/* #home-hero-footer {
    background: var(--white);
    color: var(--primary);
    border-radius: 15px;
    box-shadow: 0 0 5px #bebebe;
    padding: 2rem;
    margin: -10rem auto 1rem;
    max-width: 1200px;
}

.home-hero-footer-column {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: flex-start;
    grid-gap: 2rem;
} */

/* #masthead {
    margin: 0 0 14%;
} */
/* 
#site-navigation {
    border: 1px solid #6883CC;
    border-radius: 2rem;
} */

/* .admin-header {
    padding: 1rem 0;
} */

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

/* .admin-footer {
    padding: 1rem 0;
}

.footer-links {
    text-align: center;
    margin: 3rem auto 1rem;
    border-top: 1px solid var(--light-gray);
    padding: 2rem 0 0;
} */

/* #site-identity {
   * text-align: center;
    color: var(--white);
    font-weight: 400;
    font-size: 2rem;
    cursor: pointer;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
} */

/* img.custom-logo {
    width: 75px;
    height: auto;
} */

/* #main {
    background: var(--white);
   * overflow: hidden;
    padding: 3rem;
    box-sizing: border-box;
} */

/* div#avatar-container {
    margin-left: auto;
    display: flex;
    align-items: center;
    z-index: 2;
    background-color: #ffffff;
    border-radius: 25px;
    padding: 0 15px 0 0;
} */

/* #profile_menu {
    position: relative;
    cursor: pointer;
    padding: 0 20px 0 0;
} */

/* #profile_menu:after {
    content: "";
    border-left: 6px solid transparent;
    width: 0;
    height: 0;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    border-right: 6px solid transparent;
    border-top: 10px solid #C0CBE6;
} */

/* #profile_menu h4 {
    color: var(--text);
    margin: 0 0 0 .25rem;
    font-size: .9rem;
} */

/* #profile_menu:hover #profile_sub_menu {
    display: block;
} */

/* #profile_sub_menu {
    position: absolute;
    display: none;
    background: var(--white);
    box-shadow: 0 0 05px var(--black);
    border-radius: 5px;
    padding: 1rem;
    list-style: none;
    width: 175px;
    right: 0;
    top: 99%;
    text-align: right;
} */

/* #profile_sub_menu a {
    color: var(--success);
    display: inline-block;
    width: 100%;
    transition: all 0.3s ease 0s;
    border-bottom: 1px solid transparent;
} */

/* #profile_sub_menu li a:hover {
    border-bottom: 1px solid;
} */

#hub-icon {
    font-size: 3.5rem;
    vertical-align: middle;
}

/* div#avatar {
    display: inline-flex;
    flex: 0 0 auto;
} */

/* #avatar img {
    border-radius: 50%;
    width: 42px;
    height: 42px;
    display: inline-block;
    object-fit: cover;
    object-position: top center;
    border: 2px solid #C0CBE6;
} */

#profile-image-preview {
    width: 200px;
    height: 200px;
    object-fit: cover;
    object-position: top center;
}

#dash_nav {
    background-color: var(--white);
}

/* #nav-bar #nav-cards {
    display: flex;
    flex-flow: row;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    flex-direction: row;
    align-content: space-evenly;
    gap: 2%;
    margin-left: 1rem;
} */

.dash-nav-card {
    padding-right: unset;
    display: flex;
    cursor: pointer;
    align-items: center;
    position: relative;
}

.dash-nav--icon {
    margin-right: 5px;
    display: inline-block;
    width: 40px;
    height: 40px;
}

.dash-nav-sub-menu a:hover > * {
    text-decoration: underline;
}

/* .dash-nav-card:hover .dash-nav-sub-menu{
    display: block;
} */

.main-navigation .dash-nav-sub-menu a{
    color: var(--white);
}

/* #dynamic_content article {
    margin: 0 0 3rem;
} */

/* .nav-title, .sub-nav-title {
    font-size: .9rem;
    color: var(--white);
    display: inline-block;
    text-decoration: none;
    vertical-align: middle;
    font-weight: bold;
    margin: 1.25rem 0;
} */

.sub-nav-title {
    margin: 0.5rem 0;
}

/* .nav-title.current {
    color: #fcc13b;
} */

.nav-title span {
    vertical-align: middle;
    font-size: 1.5rem;
}

.dash-search-form .search-form button {
    margin: 0 0 0 .5rem;
}

#form_header {
    margin: 0 0 2rem;
}

#form_header_content {
    max-height: 200px;
    overflow: auto;
}

.form-header {
    margin: 1rem 0 2rem;
    border-bottom: 1px solid #f1f1f1;
}

.manage-case-header {
    font-size: .85rem;
}

.manage-case-header h2 {
    margin: 0 0 1.25rem;
    font-size: 1.5rem;
}

.manage-case-header h3 {
    font-size: 1rem;
    font-weight: 300;
}

.form-header.form-header--sticky {
    position: sticky;
    top: 0;
    z-index: 99;
    padding: .5rem;
    background-color: #ffffff;
}

.case-id {
    color: var(--gray);
    font-weight: 300;
    font-style: italic;
}

/* #add_collaborator{
    font-size: .75rem;
    cursor: pointer;
} 

#add_collaborator .material-symbols-outlined {
    font-size: .75rem;
} */

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

/* .list-header h2 {
    font-family: var(--font-family-secondary);
    font-weight: 300;
} */

.key-ul {
    list-style: none;
    color: var(--gray);
    font-style: italic;
    font-size: .75rem;
    margin: 0;
}

.title-icon {
    position: relative;
    padding: 0 0 0 25px;
}

.title-icon::before {
    content: '';
    position: absolute;
    left: -25px;
    top: 0;
    width: 40px;
    height: 40px;
}

.title-icon--added::before {
    background-image: url('../images/added.svg');
}

.title-icon--overdue::before {
    background-image: url('../images/overdue.svg');
}

.title-icon--quicklink::before {
    background-image: url('../images/quicklink.svg');
}

.title-icon--news::before {
    background-image: url('../images/green-compass.svg');
}

/* .dashcard {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    align-items: stretch;
    grid-auto-rows: 1fr;
    position: relative;
} */

/* .dashcard--item {
    background-color: var(--white);
    box-shadow: 0 0 5px var(--gray);
    border-radius: 5px;
    padding: 1rem;
    box-sizing: border-box;
    display: flex;
    flex-flow: column;
    flex-wrap: nowrap;
    justify-content: space-between;
    overflow: hidden;
    overflow-wrap: anywhere;
    min-height: 300px;
} */

/* .dashcard--item.add-button {
    text-align: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
} */

.add-button span.material-symbols-outlined {
    font-size: 7rem;
    font-weight: 300;
    margin: 0 0 1rem;
}
/* 
.dashcard--item h3 {
    text-transform: uppercase;
    font-family: var(--font-family-secondary);
    font-weight: 300;
    font-size: 13px;
}

.dashcard--item p {
    margin: 0;
}

.dashcard--border::before {
    border-left: 4px;
    border-style: solid;
    content: '';
    left: -25px;
    position: absolute;
    height: 100%;
    border-radius: 20px;
}

.dashcard--primary .add-button {
    color: var(--primary);
    font-size: 1.15rem;
    font-weight: 900;
}

.dashcard--primary::before {
    border-color: var(--primary);
}

.dashcard--secondary::before {
    border-color: var(--secondary);
}

.dashcard--secondary .add-button {
    color: var(--primary);
}

.dashcard--title,
.dashcard--title a {
    font-size: 1.25rem;
    color: var(--black);
    margin: 1rem 0 0;
}

.dashcard--subtitle {
    font-size: 1.25rem;
    color: var(--black);
    margin: 1rem 0 0;
} */

#quicklinks .dashcard--item {
    cursor: pointer;
}

#quicklinks .dashcard--item h3 {
    font-family: var(--font-family-primary);
    font-weight: 900;
    text-transform: capitalize;
    font-size: 1rem;
}

.quicklink--icon {
    width: auto;
    height: 5rem;
    display: inline-block;
    margin: 2rem auto 0;
}

.updated-tag {
    font-size: .9rem;
    text-align: right;
}

/* button,
.button,
button[type="submit"],
input[type="submit"],
input[type=file]::file-selector-button {
    background-color: var(--primary);
    border: none;
    padding: 1rem 1.5rem;
    color: var(--white);
    text-decoration: none;
    cursor: pointer;
    margin: .25rem 0;
    display: inline-block;
    line-height: 1;
    border-radius: 25px;
    font-size: 1.2rem;
    font-weight: 900 !important;
}

.button:hover {
    opacity: 0.9;
}

.button.button--full {
    width: 100%;
    text-align: center;
}

.button.button--hollow--primary {
    background-color: transparent !important;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.button.button--hollow--secondary {
    background-color: transparent !important;
    border: 2px solid var(--secondary);
    color: var(--secondary);
}

.button.button--primary {
    background-color: var(--primary) !important;
    color: var(--white);
}

.button.button--secondary {
    background-color: var(--secondary) !important;
    color: var(--white);
}

.button.button--accent {
    background-color: var(--accent) !important;
    color: var(--white);
}

.button.button--white {
    background-color: var(--white) !important;
    color: var(--primary);
}

.button.button--logout {
    font-size: 1rem;
    padding: .5rem 2rem;
    text-align: center;
}

.button.button--danger {
    background: var(--danger);
}

.button.button--warning {
    background: var(--warning);
}

.button.button--success {
    background: var(--success);
} */


/*-------------------------------------------------------------
HUB Styls
-------------------------------------------------------------*/
/* .hubtable {
    border-radius: 5px;
    border: 1px solid var(--gray);
} */
/* .list-table {
    margin: 2rem auto;
} */

/* #open-case-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
} */

.case-type-header {
    position: sticky;
    top: 0;
    background-color: #ffffff;
    z-index: 1;
}

/* span.case-row-key {
    font-size: .8rem;
    position: relative;
    padding: 0 0 0 20px;
    margin: 0 0 0 10px;
} */

/* span.case-row-key::before {
    content: "";
    height: 15px;
    width: 15px;
    position: absolute;
    border-radius: 5px;
    box-shadow: -1px 1px 3px #333;
    left: 0;
    top: 0;
} */

/* .case-row-key.connections::before {
    background-color: var(--connected);
} */
/* .case.connection {
    background-color: var(--connected);
} */

/* .case-row-key.my-connections::before {
    background-color: var(--my-connection);
} */

/* .case.my-connection {
    background-color: var(--my-connection);
} */

/* .case {
    display: grid;
    border-top: 1px solid var(--gray);
    padding: 1rem;
    border-collapse: collapse;
} */

/* .case--header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 2fr 2fr 3fr 3fr;
    grid-column-gap: 1rem;
    color: var(--white);
    background-color: var(--table-header);
    padding: 1rem;
    font-size: .8rem;
    text-align: center;
    position: sticky;
     top: 45px;
    top: 0;
    z-index: 9;
} */
/* 
.case--header hr {
    margin: 0.25rem 0;
}

.grid-header-flex {
    display: flex;
    align-items: center;
    justify-content: center;
}

.js_sort_toggle {
    cursor: pointer;
}


.js_sort_toggle span {
    display: block;
    cursor: pointer;
}

.case--row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 2fr 2fr 3fr 3fr;
    grid-column-gap: 1rem;
    font-size: .8rem;
    text-align: center;
}

.case--row div {
    position: relative;
}

.case--row div:not(:last-child)::after {
    border-right: 1px solid #bababa;
    content: "";
    position: absolute;
    height: 100%;
    width: 1px;
    right: -.5rem;
    top: 0;
}

span.linkspace {
    word-spacing: 0.25rem;
}

.partial-match-header {
    margin: .5rem auto 0;
    text-decoration: underline;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
    margin: 0;
} */

.select2-container--default .select2-selection--multiple {
    padding: 0 1rem;
    /* margin-bottom: 35px; */
}

/* #directory-form {
    display: flex;
    align-items: center;
    justify-content: center;
} */

/* #directory-form .select2 {
    padding-right: 10px;
    max-width: 500px;
}

#directory-form .select2-search__field {
    margin-bottom: 5px;
} */

/* .select2-container--default .select2-selection--multiple.select2-selection--clearable {
    padding: .5rem;
} */

.modal .select2-container, .confirm-modal .select2-container {
    z-index: 999999;
}
/* 
.standard-form label {
    display: block;
} */

/* .standard-form input:not([type="radio"],[type="checkbox"]),
.standard-form textarea,
.standard-form select {
    width: 100%;
    border: 1px solid var(--light-gray);
    border-radius: 5px;
    padding: .5rem 1rem;
    margin: 0 auto .5rem;
} */

/* .subtext {
    font-size: .85rem;
    font-style: italic;
} */

/* .select2-container--default .select2-search--inline .select2-search__field{
    min-height: 1.5rem;
} */

/* .radio-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    margin: 0 auto 1rem;
} */

.single-organization .post-thumbnail {
    width: 100%;
    max-width: unset;
    text-align: center;
}

.single-organization .post-thumbnail img {
    margin: 0 auto;
    text-align: center;
    display: inline-block;
}

.org_match_links a:hover {
    text-decoration: underline;
}

#delegate_user_invite {
    width: 90%;
    margin: auto;
    display: grid;
    grid-row-gap: 1rem;
}


.card-columns {
    display: grid;
    grid-gap: 1.5rem;
    margin: 2% 0;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

.card-columns .card {
    position: relative;
    word-wrap: break-word;
    background-clip: border-box;
    box-shadow: 0 0 5px var(--accent);
    padding: 1rem;
    border-radius: 10px;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
}

.card .entry-meta {
    color: var(--gray);
    font-size: 1.25rem;
}

.publications-flex-header {
    display: flex;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1rem;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: space-between;
    justify-content: space-between;
    align-items: flex-end;
}

#publications-title {
    color: var(--primary);
    font-weight: 900;
    font-size: 3.5rem;
    font-family: 'Lato';
}

#publication_widget {
    background: #fff0c7;
    padding: 1rem 2rem;
    border-radius: 50px;
    margin: 175px 1rem 1rem;
    position: relative;
    z-index: 0;
}

#publication_widget:before {
    position: absolute;
    width: 100%;
    height: 300px;
    background: #fef1c6;
    content: '';
    top: -15%;
    left: 0;
    transform: skewY(5deg);
    border-radius: 90px 45px 0 0;
    z-index: -1;
}

.post-thumbnail {
    width: 80%;
    max-width: 400px;
    display: inline-block;
}

.single-post-excerpt {
    border-bottom: 1px solid var(--light-gray);
    margin: 1rem auto;
    padding: 2rem 0;
}


#availability_table tr td:last-child, #add_availability_table tr td:last-child {
    text-align: center;
}
/* 
#faq_widget {
    background-image: url(../images/home-faq-bg.jpg);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: auto;
    margin: 5rem 0 0;
}

#faq_widget .accordion {
    width: 60%;
}

#faq_widget .accordion-item {
    border-radius: 15px;
    background-image: linear-gradient(45deg, #F0F4FF, transparent);
    padding: 2.5rem 2rem;
    margin: 0 auto 0.5rem;
}

#faq_widget .accordion-item.is-active {
    background-color: var(--primary);
    background-image: none;
}

#faq_widget .accordion-item a {
    border: none;
    background: scroll 0 0 transparent;
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--primary);
    outline: none;
    margin: 0 auto;
    padding: 0;
}

#faq_widget .accordion-item.is-active a {
    color: var(--white);
}

#faq_widget .accordion-item .accordion-content{
    color: var(--white); 
    background: scroll 0 0 transparent;
    border: none;
    outline: none;
}

.faq-flex-header {
    display: flex;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1rem;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: space-between;
    justify-content: space-between;
    align-items: flex-end;
}

#faq-title {
    font-weight: 900;
    color: var(--primary);
} */


@media screen and (max-width: 782px) {
    /* .home-cards {
        grid-template-columns: unset;
    } */
}


@media screen and (max-width: 850px) {
    /* .button.button--logout {
        font-size: 12px;
        padding: 5px 1rem;
    } */

    /* #site-identity {
        font-size: 1.25rem;
    } */
    /* #site-identity .custom-logo {
        width: 50px;
        height: auto;
    } */

}

/* .pagination {
    margin: 1rem auto;
    display: flex;
    justify-content: center;
} */

.flex.flex--space-evenly {
    justify-content: space-evenly;
}
.flex.flex--center {
    justify-content: center;
}

/* @media screen and (min-width: 1600px) {
    .dashcard {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
}

@media screen and (min-width: 1400px) {
    .dashcard {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
}

@media screen and (min-width: 1400px) {
    .dashcard {
        grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    }
} */

/*-------------------------------------------------------------
Case Form Styles
-------------------------------------------------------------*/
.case-group {
    padding: 15px;
}

.case-group:nth-child(odd) {
    background: #ecf2ff;
}

.required {
    color: var(--danger);
    font-weight: bold;
}

.post_case_update {
    background-color: var(--off-white);
    padding: 1rem;
    border-radius: 10px;
    margin: 1rem auto;
}

.post_case_update p {
    margin: 0.5rem auto;
}

p.update_heading {
    font-size: .75rem;
    font-style: italic;
    color: var(--secondary);
    margin: 0;
}

.button.save_case_update{
    display: none;
}

p.case_update_content.active {
    background: var(--white);
    padding: .5rem;
    border-radius: 5px;
    box-shadow: 0 0 5px #ccc;
}

.hidden {
    display: none;
}

/* Tooltips
--------------------------------------------- */
.tip {
    position:relative;
    border-bottom:1px dotted #666;
    cursor: pointer;
}

.tip:before {
    content: attr(data-text); 
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    left:100%;
    margin-left:15px; 
    width:400px;
    padding:10px;
    border-radius:10px;
    background:#000;
    color: #fff;
    text-align:center;
    display:none; 
}

.tip:after {
    content: "";
    position:absolute;
    left:100%;
    margin-left:-5px;
    top:50%;
    transform:translateY(-50%);
    border:10px solid #000;
    border-color: transparent black transparent transparent;
    display:none;
}

.tip:hover:before, .tip:hover:after {
    display:block;
}

.tabs-title>a {
    padding: 1rem;
}

@media only screen and (max-width: 900px) {
    .tip:before {
        transform: initial;
        left: initial;
        margin-left: initial;
        content: attr(data-text);
        position: absolute;
        top: initial;
        bottom: 100%;
        margin-bottom: 15px;
        width: 400px;
        padding: 10px;
        border-radius: 10px;
        background: #000;
        color: #fff;
        text-align: center;
        display: none;
    }

    .tip:after {
        transform: initial;
        left: initial;
        top: initial;
        content: "";
        position: absolute;
        bottom: 100%;
        margin-bottom: -5px;
        margin-left: 50%;
        border: 10px solid #000;
        border-color: black transparent transparent;
        display: none;
    }


    .grid-4-column {
        display: grid;
        grid-template-columns: repeat(auto-fill,23%);
        grid-gap: 1rem;
        align-items: center;
        justify-content: space-between;
        align-items: end;
    }

    .grid-3-column {
        display: grid;
        grid-template-columns: repeat(auto-fit, 30%);
        grid-gap: 1rem;
        justify-content: space-between;
        align-items: end;

    }

    .grid-2-column {
        display: grid;
        grid-template-columns: repeat(auto-fill, 48%);
        grid-gap: 1rem;
        justify-content: space-between;
        align-items: end;
    }

}

    @media only screen and (max-width: 500px) {
    .tip:before {
        width: 300px;
    }
}