@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik&display=swap');

:root {
  --me-black: #2e384d;
  --me-bluegray: #bfc5d2;
  --me-bright: #f8f9fa;
  --me-charcoal: #424b5a;
  --me-eti: #5c6b9c;
  --me-gold: #a0916d;
  --me-gray: #69707f;
  --me-grayblue: #a7b7cb;
  --me-graylight: #fafafa;
  --me-green: #33ac2e;
  --me-ice: #bfd1da;
  --me-light: #c2d1d9;
  --me-lightgray: #f8f8f8;
  --me-primary: #4d85cb;
  --me-red:   #d63649;
  --me-silver: #eef3f5;
  --me-sky: #6e9ed9;
  --me-stone: #707a85;
  --me-teal: #65999b;
  --me-text: #8798ad;
  --me-water: #f4f6fc;
  --me-white: #f6f6f6;

  --me-badge-awaiting-bg: #fffbeb;
  --me-badge-awaiting-border: #bf6a02;
  --me-badge-awaiting-text: #bf6a02;
  --me-badge-direct-bg: rgba(0, 122, 255, 0.10);
  --me-badge-direct-text: #4d85cb;
  --me-badge-first-offer-bg: #ebffee;
  --me-badge-first-offer-border: #024023;
  --me-badge-first-offer-text: #02542d;
  --me-badge-premium-bg: #eaddff;
  --me-badge-premium-text: #6750a4;
  --me-badge-rolling-bg: white;
  --me-badge-rolling-text: #2e384d;
  --me-badge-quarterly-bg: #eaddff;
  --me-badge-quarterly-text: #6750a4;
  --me-catalog-card-side: min(max(20vw, 18em), 28em);
}

body {
  font-family: 'Ubuntu', sans-serif !important;
}

input::placeholder, textarea::placeholder {
  color: #9ca3af;
  opacity: 1;
}

input[type=checkbox]:checked{
  background-color: var(--me-primary) !important;
}

input[type="date"]::-webkit-datetime-edit {
  color: var(--me-text);
}

input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  cursor: pointer;
  outline: none !important;
  -webkit-tap-highlight-color: transparent;
}

input[type="range"]::-webkit-slider-runnable-track {
  background: #eef3f5;
  height: 2px;
  border-radius: 1px;
}

input[type="range"]::-moz-range-track {
  background: #eef3f5;
  height: 2px;
  border-radius: 1px;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: white;
  border: 2px solid black;
  margin-top: -7px;
}

input[type="range"]::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: white;
  border: 2px solid black;
  outline: 0 !important;
}

input[type="range"]:focus {
  outline: none !important;
}

input[type="range"]::-moz-focus-outer {
  border: 0;
}

input[type="range"]::-webkit-slider-thumb:active,
input[type="range"]::-webkit-slider-thumb:focus {
  border: 2px solid black !important;
  background: white !important;
  outline: none !important;
  box-shadow: none !important;
  -webkit-tap-highlight-color: transparent;
}

input[type="range"]::-moz-range-thumb:active,
input[type="range"]::-moz-range-thumb:focus {
  border: 2px solid black !important;
  background: white !important;
  outline: none !important;
  box-shadow: none !important;
}

input[type="range"]:focus::-moz-range-thumb {
  border: 2px solid black !important;
  outline: none !important;
}

input[type="range"]::-moz-range-thumb:focus {
  border: 2px solid black !important;
  outline: none !important;
}

p {
  margin-bottom: 0px !important;
}

/*
 * This selector targets collapsed elements within the filter container that should be hidden.
 *
 * It creates a "collapsed" state by:
 *   - Keeping the element in the document flow (display: block !important)
 *   - Setting zero height, margins, and padding
 *   - Hiding any overflowing content
 *   - Making the element invisible
 *
 * Unlike display:none, this approach:
 *   - Maintains the element's width while collapsing its height
 *   - Prevents layout shifts and reflows when toggling visibility
 *   - Preserves the document structure for accessibility
 *   - Allows for smoother transitions when animating between states
 *
 * The collapsed element maintains its horizontal positioning and doesn't
 * cause surrounding elements to reposition. This creates a more stable UI
 * when filters are expanded or collapsed.
 *
 * The element becomes visible when the .show class is added, which overrides
 * these properties with transition effects.
 */
#filter-container .collapse:not(.show) {
  border-width: 0;
  display: block !important;
  height: 0;
  margin-bottom: 0;
  margin-top: 0;
  overflow: hidden;
  padding-bottom: 0;
  padding-top: 0;
  visibility: hidden;
}

#filter-container > div {
  min-width: min-content;
}

#me-btn-logout {
  align-items: center;
  border-radius: 0.375em;
  border: 1px solid #979797 !important;
  color: var(--me-charcoal) !important;
  display: flex;
  font-size: .8em;
  height: 3em;
  justify-content: center;
  text-align: center;
  transition: none !important;
  white-space: nowrap;
  width: 8em;
}

#me-icon-catalogue{
  height: 1.5em;
  object-fit: contain;
  width: 1.5em;
}

#subnav {
  background-image: linear-gradient(to bottom, var(--me-bright), #fff 58%);
  border-bottom: solid 1px #e4e8f0;
  height: 2em;
}

#logo-top {
  display: flex;
  justify-content: start;
  align-items: center;
}

#logo-top-img {
  width: 80%;
}

#logo-side {
  display: none;
}

.carousel-item-next,
.carousel-item-prev,
.carousel-item-active {
  transition: transform 0s ease !important;
}

.carousel-item {
  transition: transform 0s ease !important;
}

.carousel-item > img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.dropdown-item:active,
.dropdown-item:focus {
  background-color: transparent !important;
  color: inherit !important;
}

.dropdown-menu {
  background-color: white;
  border-radius: 1px;
  border: solid 1px rgba(46, 91, 255, 0.08);
  box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.16);
}

.pagination .page-link:hover {
  background-color: transparent;
  border-color: transparent;
}

.me-account {
  max-width: 90%
}

.me-account-box {
  background-color: #fff;
  border-radius: 1px;
  border: solid 1px rgba(46, 91, 255, 0.08);
  box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.16);
  max-width: 90%;
}

.me-account-section {
  max-width: 100%;
}

.me-account-link {
  letter-spacing: 0.5px;
}

.me-application {
  max-width: 90%
}

.me-alert {
  border-color: var(--me-red) !important;
  border-radius: 5px;
  color: var(--me-red);
  font-size: 1em;
  width: 100%;
}

.me-bg-egg {
  background-color: #faf9f8;
}

.me-bg-gold  {
  background-color: var(--me-gold);
}

.me-bg-gray {
  background-color: var(--me-gray);
}

.me-bg-green {
  background-color: var(--me-green);
}

.me-bg-eti {
  background-color: var(--me-eti);
}

.me-bg-lightgray {
  background-color: var(--me-lightgray);
}

.me-bg-primary {
  background-color: var(--me-primary);
}

.me-bg-silver {
  background-color: var(--me-silver);
}

.me-bg-teal {
  background-color: var(--me-teal);
}

.me-bg-water {
  background-color: var(--me-water);
}

.me-bg-white {
  background-color: #fff !important;
}

.me-bg-transparent {
  background: rgba(0, 0, 0, 0.5) !important;
}

.me-border-bluegray {
  border: 1px solid var(--me-bluegray);
}

.me-border-detail {
  border: 1px solid var(--me-light);
}

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

.me-border-right {
}

.me-border-selected {
  border-radius: 5px !important;
  border: solid 2px var(--me-primary) !important;
}

.me-border-unselected {
  border-radius: 5px;
  border: solid 1px #e0e7ff;
}

.me-box-detail {
  max-width: 64em;
  width: min(90%, 64em);
}

.me-box-select-account {
  padding: 2em 0em 1em 0em;
}

.me-box-select-donor {
  padding: 2em 0em 1em 0em;
}

.me-caption {
  flex: 0 0 auto; /* Don't grow or shrink, use natural height */
  overflow-wrap: break-word;
}

.me-carousel figure img {
  width: 100%;
  object-fit: contain;
  flex: 1 1 auto; /* Allow image to grow and shrink */
  min-height: 0; /* Allow image to shrink below flex container size */
}

.me-carousel figure {
  display: flex;
  flex-direction: column;
  height: 66vh;
}

.me-carousel-control {
  height: 1.5em;
  width: 0.875em;
}

.me-carousel-control-left:hover {
  content: url('/static/media/arrow-left-black.png');
}

.me-carousel-control-right:hover {
  content: url('/static/media/arrow-right-black.png');
}

.me-carousel-dots .carousel-indicators button {
  background-color: var(--me-black) !important;
  border-radius: 100%;
  height: 0.5em;
  width: 0.5em;
}

.me-carousel-indicators {
  position: static !important;
}

.me-background {
  background-color: #f6f6f6;
}

.me-badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.me-badge-premium {
  color: var(--me-badge-premium-text);
  background: var(--me-badge-premium-bg);
}

.me-badge-rolling {
  color: var(--me-badge-rolling-text);
  background: var(--me-badge-rolling-bg);
  border: 1px solid var(--me-badge-rolling-text);
}

.me-badge-quarterly {
  border: 1px solid var(--me-badge-quarterly-text);
  color: var(--me-badge-quarterly-text);
  background: var(--me-badge-quarterly-bg);
}

.me-badge-direct {
  color: var(--me-badge-direct-text);
  background: var(--me-badge-direct-bg);
  border: 1px solid var(--me-badge-direct-text);
}

.me-badge-awaiting {
  color: var(--me-badge-awaiting-text);
  background: var(--me-badge-awaiting-bg);
  border: 1px solid var(--me-badge-awaiting-border);
}

.me-badge-first-offer {
  color: var(--me-badge-first-offer-text);
  background: var(--me-badge-first-offer-bg);
  border: 1px solid var(--me-badge-first-offer-border);
}

.me-bluegray {
  color: var(--me-bluegray);
}

.me-banner-btn {
  align-items: center;
  border-radius: 4px;
  background-color: #404b5b;
  border: none;
  display: flex;
  height: 2em;
  justify-content: center;
  width: 20em;
  max-width: 100%;
}

.me-banner-btn-disabled {
  background-color: #fff;
  border: solid 2px var(--me-light);
}

.me-btn-cancel {
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid var(--me-charcoal);
  color: var(--me-charcoal);
  height: 3em;
  text-align: center;
  width: 100%;
}

.me-btn-confirm {
  background-color: var(--me-charcoal);
  border-radius: 4px;
  border: none;
  color: #fff;
  height: 3em;
  text-align: center;
  width: 100%;
}

.me-btn-confirm:disabled {
  cursor: not-allowed;
  opacity: 0.65;
}

.me-btn-danger {
  background-color: var(--me-red);
  border-radius: 4px;
  border: none;
  color: #fff;
  height: 3em;
  text-align: center;
  width: 100%;
}

.me-btn-outline {
  align-items: center;
  background-color: #fff;
  border: 1px solid var(--me-black);
  color: var(--me-black);
  display: flex;
  height: 2em;
  justify-content: center;
}

.me-btn-outline-black {
  align-items: center;
  background-color: #fff;
  border: 1px solid var(--me-black) !important;
  color: var(--me-black) !important;
  display: flex;
  justify-content: center;
}

.me-btn-outline-white {
  align-items: center;
  border: 1px solid white !important;
  color: white !important;
  display: flex;
  justify-content: center;
}

.me-btn-outline-charcoal {
  align-items: center;
  background-color: transparent;
  border-radius: 18px;
  border-style: none;
  border: 1px solid var(--me-charcoal);
  color: var(--me-charcoal);
  display: flex;
  font-size: 0.75em;
  height: 2em;
  justify-content: center;
  outline-style: none;
  text-align: center;
}

.me-btn-primary {
  background-color: var(--me-primary) !important;
  border-color: var(--me-primary) !important;
  border-radius: 4px !important;
  height: 3em !important;
}

.me-btn-primary:hover {
  color: #fff !important;
}

.me-btn-primary-proposal {
  background-color: var(--me-primary) !important;
  border-color: var(--me-primary) !important;
  border-style: none;
  color: #fff;
  outline-style: none;
}

.me-btn-primary-proposal.disabled,
.me-btn-primary-proposal:disabled {
  background-color: var(--me-primary);
  color: #fff;
  opacity: 0.65;
  pointer-events: none;
}

.me-btn-primary-proposal:hover {
  color: #fff !important;
}

.me-btn-primary-card {
  background-color: var(--me-primary) !important;
  border-color: var(--me-primary) !important;
  border-radius: 4px;
  border-style: none;
  box-shadow: 0 1px 3px 0 rgba(0,0,0,.18);
  color: #fff;
  outline-style: none;
}

.me-btn-primary-outline {
  border-color: var(--me-primary) !important;
  border-radius: 4px !important;
  color: var(--me-primary) !important;
}

.me-btn-registrar {
  background-color: rgba(247, 245, 242, 0.5);
  border: solid 1px #c8bf9f;
}

.me-btn-remove {
  background-color: var(--me-charcoal) !important;
  border-color: var(--me-charcoal) !important;
  border-radius: 4px !important;
  color: #fff;
  display: flex;
  justify-content: center;
}

.me-btn-secondary {
  background-color: var(--me-charcoal) !important;
  border-color: var(--me-charcoal) !important;
  border-radius: 4px !important;
  height: 3em !important;
}

.me-btn-secondary-outline {
  border-color: var(--me-charcoal) !important;
  border-radius: 4px !important;
  color: var(--me-charcoal) !important;
}

.me-btn-text {
  align-items: center;
  background-color: rgba(255, 255, 255, 0);
  border-style: none;
  display: flex;
  outline-style: none;
}

.me-btn-transparent {
  align-items: center;
  background-color: rgba(255, 255, 255, 0);
  border-style: none;
  border: 1px solid var(--me-black);
  color: var(--me-black) !important;
  display: flex;
  justify-content: center;
  outline-style: none;
}

.me-btn-upload {
  background-color: var(--me-primary) !important;
  border-color: var(--me-primary) !important;
  border-radius: 4px !important;
  border-style: none;
  color: #fff;
  outline-style: none;
}

.me-btn-upload-documents {
  background-color: var(--me-primary) !important;
  border-color: var(--me-primary) !important;
  border-radius: 4px !important;
  border-style: none;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.18);
  color: #fff;
  font-weight: 500 !important;
  outline-style: none;
}

.me-card-form {
  align-items: center;
  background-color: #fff;
  border-radius: 1px;
  border: solid 1px rgba(46, 91, 255, 0.08);
  box-shadow: 0 1px 6px 2px rgba(0, 0, 0, 0.16);
}

.me-card-listing {
  align-items: center;
  background-color: #fff;
  border-radius: 1px;
  border: solid 1px rgba(46, 91, 255, 0.08);
  box-shadow: 0 1px 6px 2px rgba(0, 0, 0, 0.16);
  justify-content: space-evenly;
}

.me-card-listing-btn {
  align-items: center;
  background-color: var(--me-charcoal);
  border-radius: 4px;
  border-style: none;
  color: #fff;
  display: flex;
  font-size: 0.75em;
  justify-content: center;
  outline-style: none;
  text-align: center;
  text-decoration: none;
  width: 100%;
}

.me-card-listing-divider {
  color: #eff0f4;
  display: none;
  opacity: 1 !important;
  width: 10em;
  width: 2px !important;
}

.me-card-listing-section {
  display: flex;
  flex-direction: column;
  width: 10em;
}

.me-card-listing-stack {
  box-shadow: 2px 2px 1px white,
	      3px 3px 1px #bfc5d2,
	      5px 5px 1px white,
	      6px 6px 1px #bfc5d2;
}

.me-card-listing-submitter {
  background-color: var(--me-bright);
  display: none;
}

.me-card-listing-submitter-icon {
  align-items: center;
  background-color: #bec7d3;
  color: #fff;
  display: flex;
  font-size: 0.625em;
  font-weight: 700;
  height: 2em;
  justify-content: center;
  width: 2em;
}

.me-catalog-artist {
  color: #505d68;
  font-family: Rubik;
  font-size: 1em;
}

.me-catalog-badge {
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
	      rgba(0, 0, 0, 0.1) 0px 1px 2px -1px;
  font-size: 0.875em;
  left: 0;
  line-height: 1.25em;
  position: absolute;
  top: 1%;
}

.me-catalog-badge-new {
  color: rgb(77 133 203) !important;
}

.me-catalog-badge-days {
  color: rgba(239,68,68) !important;
}

.me-catalog-status-badge {
  display: inline-block;
  margin-left: 1rem;
  margin-top: 0.375rem;
  padding: 2px 10px;
  border-radius: 999px;
  border: 1px solid;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.me-catalog-status-badge-awaiting {
  background-color: var(--me-badge-awaiting-bg);
  border-color: var(--me-badge-awaiting-border);
  color: var(--me-badge-awaiting-text);
}

.me-catalog-status-badge-first-offer {
  background-color: var(--me-badge-first-offer-bg);
  border-color: var(--me-badge-first-offer-border);
  color: var(--me-badge-first-offer-text);
}

.me-catalog-caption {
  max-width: var(--me-catalog-card-side);
}

.me-catalog-card:hover .me-catalog-icon-hidden {
  display: block;
}

.me-catalog-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(var(--me-catalog-card-side), 1fr));
  justify-items: center;
  margin: 0 auto;
  max-width: 100%;
}

.me-catalog-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--me-bright);
  border-radius: 1px;
  border: solid 1px rgba(46, 91, 255, 0.08);
  box-shadow: 0 10px 20px 0 rgba(191, 197, 210, 0.07);
}

.me-catalog-icon {
  bottom: 0;
  right: 0;
  height: 3em;
  position: absolute;
  width: 3em;
}

.me-catalog-icon-bg {
  background-color: var(--me-black);
}

.me-catalog-icon-hidden {
  background-color: rgba(46, 56, 77, 0.75);
  display: none;
}

.me-catalog-icon-sm {
  bottom: 0;
  right: 0;
  height: 3em;
  padding: 0.5em;
  position: absolute;
  width: 3em;
}

.me-catalog-icon-x:hover {
  padding: 1em;
  content: url('/static/media/white-close-icon.png');
}

.me-catalog-img {
  display: block;
  height: auto;
  max-height: var(--me-catalog-card-side);
  max-width: 100%;
  width: auto;
}

.me-catalog-page-btn {
  display: flex !important;
  justify-content: center;
  align-items: center;
  border-radius: 4px !important;
  border: none !important;
  color: var(--me-black) !important;
  font-size: 0.95em !important;
  height: 2em;
  width: 2em;
}

.me-catalog-page-btn-hover:hover {
  background-color: rgba(232, 234, 239, 0.4) !important;
}

.me-catalog-page-btn-active {
  background-color: #e8eaef !important;
}

.me-catalog-page-btn-icon {
  height: 0.75em;
  width: 0.75em;
}

.me-catalog-premium {
  background-color: var(--me-primary);
  color: white;
  font-size: 0.875em;
  left: 0;
  opacity: 0.9;
  position: absolute;
  top: 1%;
}

.me-catalog-stack {
  box-shadow: 7px 7px 1px white,
	      8px 8px 1px #bfc5d2,
	      15px 15px 1px white,
	      16px 16px 1px #bfc5d2;
}

.me-catalog-title {
  color: var(--me-stone);
  font-size: 0.95em;
  font-style: italic;
  font-weight: 300;
}

.me-catalog-year {
  color: #a1aeb7;
  font-size: 0.95em;
  font-weight: 300;
}

.me-checked-icon {
  height: 1em;
  margin-right: 0.4em;
  margin-top: -0.5em;
  width: 1em;
}

.me-centered {
  margin-left: auto;
  margin-right: auto;
}

.me-container {
  background-color: #fff;
  border-radius: 1px;
  border: solid 1px rgba(46, 91, 255, 0.08);
}

.me-container-mist {
  background-color: #e7ebec;
  border-radius: 1px;
  border: solid 1px rgba(46, 91, 255, 0.08);
  box-shadow: 0 10px 20px 0 rgba(191, 197, 210, 0.07);
}

.me-container-gray {
  background-color: #edeeef;
  border-radius: 1px;
  border: solid 1px rgba(46, 91, 255, 0.08);
  box-shadow: 0 10px 20px 0 rgba(191, 197, 210, 0.07);
}

.me-curatorial-approved {
  align-items: center;
  background-color: rgba(232,234,239,.92);
  display: flex;
  justify-content: center;
  left: 0;
  position: absolute;
  top: 35%;
}

.me-curatorial-submitter-icon {
  align-items: center;
  background-color: var(--me-primary);
  bottom: 1%;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  left: 0;
  position: absolute;
}

.me-cursor-zoom-in:hover {
  cursor: zoom-in;
}

.me-dimensions-box {
  align-items: flex-start;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.me-document-card {
  display: flex;
  align-items: stretch;
  background-color: #fff;
  border-radius: 1px;
  box-shadow: 0 1px 6px 2px rgba(0, 0, 0, 0.16);
}

.me-donation-container {
  background-color: #fff;
  box-shadow: 0px 1px 6px 2px rgba(0, 0, 0, 0.16);
  margin-left: auto;
  margin-right: auto;
}

.me-donation-details-card {
  border-radius: 2px;
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px,
	      rgba(0, 0, 0, 0) 0px 0px 0px 0px,
	      rgba(0, 0, 0, 0.1) 0px 10px 15px -3px,
	      rgba(0, 0, 0, 0.1) 0px 4px 6px -4px;
}

.me-donation-details-card-header {
  background-color: #e8eeff !important;
}

.me-donation-details-object-card {
  align-items: center;
  background-color: #fff;
  border-radius: 8px;
  border: 2px solid var(--me-light);
  cursor: pointer;
  display: flex;
  flex-shrink: 0;
  max-width: 28ch !important;
}

.me-donation-shipping {
  border: 1px solid #b4c3d2;
  background: linear-gradient(to right, #f1f4f6, #dde2e7);
}

.me-donation-summary-donor {
  background-image: linear-gradient(
    to right,
    rgb(238, 245, 245),
    rgb(218, 231, 231)
  );
  border: solid 1px rgb(180, 195, 210);
  border-radius: 4px;
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px,
	      rgba(0, 0, 0, 0) 0px 0px 0px 0px,
	      rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}

.me-donation-summary-institution {
  background-image: linear-gradient(
    to right,
    rgb(241, 241, 238),
    rgb(227, 224, 214)
  );
  border: solid 1px rgb(180, 195, 210);
  border-radius: 4px;
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px,
	      rgba(0, 0, 0, 0) 0px 0px 0px 0px,
	      rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}

.me-donation-summary-listing {
  background-image: linear-gradient(
    to right,
    rgb(241, 244, 246),
    rgb(221, 226, 231)
  );
  border: solid 1px rgb(180, 195, 210);
  border-radius: 4px;
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px,
	      rgba(0, 0, 0, 0) 0px 0px 0px 0px,
	      rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}

.me-donation-tooltip {
  --bs-tooltip-bg: var(--me-gray);
  --bs-tooltip-opacity: 1;
  font-family: Ubuntu !important;
  text-align: left;
}

.me-donation-tooltip .tooltip-inner {
  margin-right: 0 !important;
  padding-right: 0.5ch !important;
  text-align: left;
}

.me-donor-card {
  align-items: center;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.me-donor-container {
  display: flex;
  flex-direction: column;
}

.me-donor-card-bubble {
  background-color: var(--me-white);
  border-radius: 6px;
  border: 1px solid #eff0f4;
  display: grid !important;
  gap: 1rem;
  grid-template-columns: 1fr;
  margin: 0 auto;
  max-width: 96ch;
  width: 100%;
}

.me-donor-card-bubble-field {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.me-donor-card-bubble-institution {
  background-color: var(--me-white);
  border-radius: 6px;
  border: 1px solid #eff0f4;
  display: grid !important;
  gap: 1rem;
  grid-template-columns: 1fr;
  margin: 0 auto;
  max-width: 72ch;
  width: 100%;
}

.me-donor-divider {
  align-self: stretch;
  background-color: #bfc5d2;
  height: 0.0625rem;
}

.me-interests-divider,
.me-curatorial-divider {
  border: none;
  border-top: 2px solid #e4e8f0;
  margin: 1.5rem 0;
}

.me-interests-header,
.me-curatorial-header {
  margin-bottom: 2rem;
}

.me-interests-section-desc,
.me-curatorial-section-desc {
  padding-top: 0.5rem;
}

@media (max-width: 991.98px) {
  .me-interests-section-desc,
  .me-curatorial-section-desc {
    margin-bottom: 1.5rem;
  }
}

.me-donor-folder {
  align-items: center;
  background: #fff;
  border-radius: 2px;
  border: 1px solid var(--me-silver);
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px,
	      rgba(0, 0, 0, 0) 0px 0px 0px 0px,
	      rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
  cursor: pointer;
  display: flex;
  position: relative;
}

.me-donor-missing {
  align-items: center;
  display: flex;
  flex-direction: column;
}

.me-donor-onboarding {
  align-items: flex-start;
  background-color: var(--me-white);
  border-radius: 8px;
  border: 1px solid #dee2f0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.me-donor-onboarding-step {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.me-donor-tabs {
  border-bottom: solid 1px var(--me-bluegray);
}

.me-donor-tab-active {
  border-bottom: 4px solid var(--me-black);
}

.me-donor-tab-text-active {
  color: var(--me-black);
  line-height: 1.14;
}

.me-donor-tab-text-inactive {
  color: var(--me-gray);
  line-height: 1.14;
}

.me-donor-folder-selected {
  border-radius: 2px;
  border: 2px solid var(--me-primary) !important;
}

.me-donor-folder-user {
  align-items: center;
  background: #fff;
  border: 1px solid var(--me-silver);
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px,
	      rgba(0, 0, 0, 0) 0px 0px 0px 0px,
	      rgba(0, 0, 0, 0.1) 0px 4px 6px -1px,
	      rgba(0, 0, 0, 0.1) 0px 2px 4px -2px;
  display: flex;
}

.me-dropdown {
  height: 2.5em;
  background-color: var(--me-silver) !important;
  border-radius: 5px !important;
  border: solid 1px var(--me-light) !important;
}

.me-dropdown-account {
  height: 2.5em;
  background-color: #fff !important;
  border-radius: 5px !important;
  border: solid 1px var(--me-light) !important;
}

.me-dropdown-error {
  border-color: var(--me-red) !important;
}

.me-dropdown-selected {
  color: var(--me-black) !important;
}

.me-dropdown-unselected {
  color: var(--me-text) !important;
}

.me-exhibition-card {
  align-items: center;
  background-color: #fff;
  border-radius: 1px;
  border: 1px solid rgba(46,91,255,.08);
  box-shadow: 0 1px 6px 2px rgba(0,0,0,.16);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
}

.me-file-card {
  align-items: center;
  background-color: #fff;
  border-radius: 1px;
  border: 1px solid rgba(46,91,255,.08);
  box-shadow: 0 1px 6px 2px rgba(0,0,0,.16);
  display: flex;
  flex-direction: column;
}

.me-file-card-details {
  align-items: center;
  display: flex;
  justify-content: space-between;
  max-width: 100%;
  width: 16em;
}

.me-font-rubik {
  font-family: Rubik !important;
}

.me-footer {
  background-color: var(--me-water);
  border-top: 1px solid rgba(181, 181, 181, 1);
}

.me-header {
  color: var(--me-black);
  font-family: Ubuntu;
  font-size: 1.75em;
  font-weight: 300;
}

.me-hide {
  display: none;
}

.me-hide-sm {
  display: none;
}

.me-icon-bookmark {
  height: 1.25em;
  width: 1.125em;
}

.me-icon-curatorial {
  height: 1.25em;
  width: 1.25em;
}

.me-icon-more {
  transition: fill 0.2s;
}

.me-icon-more:hover {
  filter: brightness(0.8);
}

.me-icon-xl {
  height: 3em;
  width: 3em;
}

.me-icon-vl {
  height: 2.5em;
  width: 2.5em;
}

.me-icon-lg {
  height: 2em;
  width: 2em;
}

.me-icon-md {
  height: 1.5em;
  width: 1.5em;
}

.me-icon-md-r {
  width: 1.5em;
}

.me-icon-sm {
  height: 1.25em;
  width: 1.25em;
}

.me-icon-xs {
  height: 1em;
  width: 1em;
}

.me-icon-xxs {
  height: 0.75em;
  width: 0.75em;
}

.me-icon-initials {
  align-items: center;
  background-color: var(--me-white);
  display: flex;
  flex-shrink: 0;
  height: 1.15em;
  justify-content: center;
  width: 1.15em;
}

.me-icon-medium {
  height: 1.5em !important;
  width: 1.5em !important;
}

.me-img-4 {
  height: 4em;
  max-width: 100%;
  object-fit: contain;
}

.me-img-8 {
  height: 8em;
  max-width: 100%;
  object-fit: contain;
}

.me-img-12 {
  height: 12em;
  max-width: 100%;
  object-fit: contain;
}

.me-img-detail {
  height: 28em !important;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  width: 28em !important;
}

.me-img-flex {
  flex-grow: 0;
  flex-shrink: 0;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

.me-img-listing-card {
  height: 7.5em;
  width: 5.625em;
}

.me-image-zoom-container-img {
  cursor: move;
  display: block;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  position: relative;
  transform-origin: 50% 50%;
}

.me-input {
  background-color: var(--me-silver);
  border-radius: 5px;
  border: solid 1px var(--me-light);
  color: var(--me-black);
  font-size: 1em;
  height: 2.625em;
  padding-left: 1em;
  padding-right: 1em;
  width: 100%;
}

.me-input-disabled {
  background-color: #fff !important;
  cursor: not-allowed;
  opacity: 1;
}

.me-input-file {
  background-color: var(--me-silver);
  border-radius: 5px;
  border: solid 1px var(--me-light);
  color: var(--me-black);
  width: 100%;
}

.me-input-sm {
  background-color: var(--me-silver);
  border-radius: 5px;
  border: solid 1px var(--me-light);
  color: var(--me-black);
  font-size: 1em;
  padding-left: 1em;
  padding-right: 1em;
  width: 100%;
}

.me-input-account{
  background-color: #fff;
  border-radius: 5px;
  border: solid 1px var(--me-light);
  color: var(--me-black);
  font-size: 1em;
  height: 2.625em;
  padding-left: 1em;
  padding-right: 1em;
  width: 100%;
}

.me-input-error {
  border-color: var(--me-red) !important;
}

.me-institution-donor-card {
  align-items: center;
  background-color: #fff;
  box-shadow: 0 1px 6px 0 rgba(0,0,0,.16);
  column-gap: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
  row-gap: 1rem;
}

.me-institution-profile-sidebar {
  background: var(--me-lightgray);
  border-radius: 0.25rem;
  border: 1px solid rgba(0, 0, 0, 0.10);
  display: flex;
  flex-direction: column;
  width: 100% !important;
}

.me-interests-icon {
  align-items: center;
  background-color: var(--me-primary);
  bottom: 0em;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  position: absolute;
  right: 0em;
}

.me-label {
  color: #b0bac9;
  font-family: Ubuntu;
  font-size: 0.75em;
  font-weight: 500;
  letter-spacing: 1.13px;
}

.me-label-bold {
  color: var(--me-black);
  font-size: 1em;
  font-weight: 500;
}

.me-label-error {
  color: var(--me-red) !important;
}

.me-light {
  color: var(--me-light);
}

.me-link {
  color: var(--me-primary);
  text-decoration: none !important;
}

.me-listing-object-card {
  background-color: #fff;
  border: 1.5px solid transparent;
  box-sizing: border-box;
  position: relative;
}

.me-listing-object-card-number {
  bottom: 0em;
  color: var(--me-charcoal);
  font-size: 0.75em;
  position: absolute;
  right: 0.25em;
}

.me-listing-object-card-selected {
  box-sizing: border-box;
  background: #f9faff;
  border-color: var(--me-text);
  border-radius: 0.0625rem;
}

.me-listing-summary-card {
  background-color: white;
  border-radius: 1px;
  border: 1px solid rgba(46,91,255,.08);
  box-shadow: 0 1px 6px 0 rgba(0,0,0,.16);
  display: flex;
  flex-direction: column;
}

.me-ls-113 {
  letter-spacing: 1.13px;
}

.me-ls-121 {
  letter-spacing: 1.21px;
}

.me-menu-icon-row:hover .me-link-dark {
  color: var(--me-black) !important;
}

.me-menu-icon-row:hover .me-nav-menu-account-icon {
  background-color: var(--me-black);
}

.me-menu-icon-row:hover .me-menu-documents-icon {
  background-color: var(--me-black);
}

.me-menu-icon-row:hover .me-menu-documents-icon svg path:first-of-type,
.me-menu-icon-row:hover .me-menu-documents-icon svg path:nth-of-type(2) {
  stroke: var(--me-black);
}

.me-menu-icon-row:hover .me-menu-museum-icon {
  content: url('/static/media/nav-menu-museum-active.png');
}

.me-nav-menu-account-icon {
  background-color: var(--me-gray);
}

.me-menu-icon-row:hover .me-menu-staff-icon {
  fill: var(--me-black);
}

.me-menu-documents-icon {
  background-color: var(--me-gray);
}

.me-menu-staff-icon {
  fill: var(--me-gray);
}

.me-misc-content {
  background-color: #fff;
  border-radius: 1px;
  border: solid 1px rgba(46, 91, 255, 0.08);
}

.me-misc-content-inner {
  max-width: 18em;
}

.me-mw-16ch {
  max-width: 16ch !important;
}

.me-mw-24ch {
  max-width: 24ch !important;
}

.me-mw-32ch {
  max-width: 32ch !important;
}

.me-mw-36ch {
  max-width: 36ch !important;
}

.me-mw-72ch {
  max-width: 72ch !important;
}

.me-nav {
  background-color: #fff;
  border-bottom: solid 1px #e4e8f0;
}

.me-nav-icon {
  align-items: center;
  background-color: var(--me-silver);
  border: solid 1px #e4e8f0;
  display: flex;
  flex-shrink: 0;
  height: 2.5em;
  justify-content: center;
  width: 2.5em;
}

.me-nav-icon-active {
  background-color: rgba(238, 243, 245, 0.49);
  box-shadow: inset 0 0 7px 0 rgba(77, 133, 203, 0.27);
  mix-blend-mode: multiply;
}

.me-nav-help-icon {
  margin-right: 0.5em;
  position: relative;
  text-decoration: none;
  width: 24px;
  height: 24px;
}

.me-nav-help-icon-default,
.me-nav-help-icon-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
}

.me-nav-help-icon-hover {
  display: none;
}

.me-nav-help-icon:hover .me-nav-help-icon-default {
  display: none;
}

.me-nav-help-icon:hover .me-nav-help-icon-hover {
  display: block;
}

.me-nav-menu {
  background-color: #fff;
  border-radius: 1px;
  border: solid 1px rgba(46, 91, 255, 0.08);
  box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.16);
  position: absolute;
  width: 100%;
  z-index: 3;
}

.me-nav-menu-initials-icon {
  display: flex;
  align-items: center;
  background-color: var(--me-silver);
  border: solid 1px #e4e8f0;
  height: 5em;
  justify-content: center;
  width: 5em;
}

.me-nav-menu-institution {
  background-color: var(--me-water);
  opacity: 0.73;
}

.me-nav-tab {
  background-color: #fff;
  color: var(--me-bluegray);
  font-size: 0.85em;
  font-weight: 500;
  letter-spacing: 1.42px;
  line-height: 1.42;
  margin-top: 0.35rem;
}

.me-nav-tab-active {
  background-color: var(--me-bright);
  border-bottom: solid 1px var(--me-bright);
  border-left: solid 1px #e4e8f0;
  border-right: solid 1px #e4e8f0;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-top: solid 1px #e4e8f0;
  color: var(--me-primary);
  font-size: 0.85em;
  font-weight: 500;
  letter-spacing: 1.42px;
  line-height: 1.42;
  margin-bottom: -2px;
  margin-top: 0.35rem;
}

.me-nav-tab-icon {
  height: 1.5em;
  width: 1.5em;
}

.me-nav-tab-label {
  display: none;
}

.me-nav-menu-icon-sm {
  align-items: center;
  display: flex;
  height: 1em;
  justify-content: center;
  width: 1em;
}

.me-nav-menu-icon-text {
  font-size: 1.75em;
  color: var(--me-text);
}

.me-form-navigator {
  align-items: center;
  align-self: stretch;
  border-radius: 0.375rem;
  border: 1px solid var(--me-light);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

.me-form-navigator-nav {
  align-items: center;
  display: flex;
  gap: 0.625rem;
  justify-content: center;
}

.me-form-navigator-icon {
  align-items: center;
  border: 1.5px solid var(--me-gray);
  cursor: pointer;
  display: flex;
  height: 1.25rem;
  justify-content: center;
  line-height: 1;
  width: 1.25rem;
}

.me-overlay {
  align-items: center;
  background-color: rgba(244, 246, 252, 0.7);
  bottom: 0;
  box-shadow: 1px 2px 9px 2px rgba(194, 209, 217, 0.75);
  display: flex;
  height: 100%;
  justify-content: center;
  left: 0;
  position: absolute;
  width: 100%;
}

.me-overlay-menu {
  border-radius: 4px;
  box-shadow: 0 2px 4px 0 rgba(191, 197, 210, 0.5);
  border: solid 1px var(--me-light);
  background-color: #fff;
}

.me-pointer:hover {
  cursor: pointer;
}

.me-proposal-border {
  border: 1px solid rgba(194, 209, 217, 1);
}

.me-proposal-card {
  align-items: center;
  background-color: #fff;
  border-radius: 1px;
  border: 1px solid rgba(46,91,255,.08);
  box-shadow: 0 1px 6px 2px rgba(0,0,0,.16);
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.me-proposal-container {
  background-color: #fff;
  box-shadow: 0px 1px 6px 2px rgba(0, 0, 0, 0.16);
  margin-left: auto;
  margin-right: auto;
}

.me-proposal-contact {
  align-items: center;
  display: flex;
  border: 1px solid rgba(46, 91, 255, 0.08);
}

.me-proposal-label {
  text-align: left;
}

.me-proposal-restrictions {
  background: #fbfbfb;
  border-radius: 0.375rem;
  border: 1px solid var(--me-light);
}

.me-proposal-view {
  align-items: start;
  display: grid;
  gap: 1em;
  grid-template-columns: 1fr;
}

.me-proposal-contact-icon {
  align-items: center;
  background-color: var(--me-silver);
  border: solid 1px #e4e8f0;
  display: flex;
  flex-shrink: 0;
  height: 3em;
  justify-content: center;
  width: 3em;
}

.me-radio-card {
  align-items: center;
  border-radius: 8px;
  border: 1px solid var(--me-light);
  cursor: pointer;
  display: flex;
}

.me-radio-card.active {
  border-color: var(--me-primary);
}

.me-radio-card:has(input[type="radio"]:checked) {
  border-color: var(--me-primary) !important;
}

.me-radio-card:has(input[type="radio"]:checked) label {
  color: var(--me-primary) !important;
}

.me-radio-card.disabled {
  background-color: var(--me-lightgray);
  cursor: not-allowed;
  opacity: 0.7;
}

.me-radio-card.disabled label {
  cursor: not-allowed;
}

.me-radio-input {
  accent-color: var(--me-primary);
  transform: scale(1.3);
}

.me-right-img {
  height: 96vh;
}

.me-right-img-title {
  color: var(--me-gray);
  font-size: 10px;
}

.me-right-img-title-container {
  align-items: center;
  background-color: #f6f6f6;
  display: flex;
  height: 4vh;
  justify-content: flex-end;
  padding-right: 1em;
}

.me-scroll-none::-webkit-scrollbar {
  display: none;
}

.me-scroll-none {
  scrollbar-width: none;
}

.me-select-account-icon {
  height: 3em;
  width: 3em;
}

.me-select-account-title {
  color: var(--me-black);
  font-size: 1em;
  font-weight: 500;
  margin-bottom: 12px !important;
  text-align: center;
}

.quote-card .accordion-button:not(.collapsed) {
  background-color: transparent;
  box-shadow: none;
  color: var(--me-charcoal);
}
.quote-card .accordion-button:focus {
  box-shadow: none;
}
.me-service-item {
  transition: background-color 0.2s ease-in-out;
}
.me-service-item:not(:last-child) {
  border-bottom: 1px dotted var(--me-light);
}
.me-service-item:hover {
  background-color: var(--me-lightgray);
}
.quote-card .accordion-body {
  cursor: default;
}

.me-subnav-icon {
  height: 1em;
  object-fit: contain;
  width: 1em;
}

.me-subnav-btn-active {
  background-color: var(--me-bright);
  border-left: solid 1px #e4e8f0;
  border-right: solid 1px #e4e8f0;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-top: solid 1px #e4e8f0;
  color: var(--me-primary);
  font-size: 0.85em;
  font-weight: 500;
  letter-spacing: 1.42px;
  line-height: 1.42;
}

.me-staff-card {
  align-items: center;
  background-color: #fff;
  border-radius: 1px;
  border: solid 1px rgba(46, 91, 255, 0.08);
  box-shadow: 0 1px 6px 0 rgba(0,0,0,.16);
  display: flex;
  justify-content: start;
}

.me-staff-card-hover:hover {
  border: solid 1px var(--me-sky) !important;
}

.me-staff-modal-card {
  align-items: center;
  border: solid 1px rgba(46, 91, 255, 0.08);
  box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.16);
  display: flex;
  justify-content: start;
}

.me-staff-modal-icon-empty {
  align-items: center;
  border: solid 2px #bec7d3;
  color: #fff;
  display: flex;
  flex-shrink: 0;
  height: 2.5em;
  justify-content: center;
  width: 2.5em;
}

.me-staff-modal-icon-checked {
  align-items: center;
  background-color: var(--me-black);
  border: solid 2px var(--me-black);
  color: #fff;
  display: flex;
  flex-shrink: 0;
  height: 2.5em;
  justify-content: center;
  width: 2.5em;
}

.me-textarea {
  background-color: var(--me-silver);
  border-radius: 5px;
  border: solid 1px var(--me-light);
  color: var(--me-black);
  padding-left: 1em;
  padding-right: 1em;
  resize: none;
  width: 100%;
}

.me-text {
  color: var(--me-text);
  font-family: Ubuntu;
  font-size: 1em;
}

.me-text-charcoal {
  color: var(--me-charcoal) !important;
}

.me-text-dark {
  color: var(--me-black) !important;
}

.me-text-eti {
  color: var(--me-eti) !important;
}

.me-text-gold {
  color: var(--me-gold) !important;
}

.me-text-gray {
  color: var(--me-gray) !important;
}

.me-text-green {
  color: var(--me-green) !important;
}

.me-text-grayblue {
  color: var(--me-grayblue) !important;
}

.me-text-ice {
  color: var(--me-ice) !important;
}

.me-text-primary {
  color: var(--me-primary) !important;
}

.me-text-teal {
  color: var(--me-teal) !important;
}

.me-text-hover-primary:hover {
  color: var(--me-primary) !important;
}

.me-text-red {
  color: var(--me-red) !important;
}

.me-text-stone {
  color: var(--me-stone) !important;
}

.me-text-white {
  color: #fff !important;
}

.me-text-xl {
  font-size: 1.75em;
}

.me-text-vvl {
  font-size: 1.5em;
}

.me-text-vl {
  font-size: 1.375em;
}

.me-text-lg {
  font-size: 1.25em;
}

.me-text-ml {
  font-size: 1.125em;
}

.me-text-md {
  font-size: 0.95em;
}

.me-text-sm {
  font-size: 0.85em !important;
  line-height: 1.54;
}

.me-text-xs {
  font-size: 0.75em !important;
}

.me-text-xxs {
  font-size: 0.6875em !important;
}

.me-text-xxxs {
  font-size: 0.625em !important;
}

.me-text-tiny {
  font-size: 0.5em !important;
}

.me-text-300 {
  font-weight: 300 !important;
}

.me-text-400 {
  font-weight: 400 !important;
}

.me-text-500 {
  font-weight: 500 !important;
}

.me-tooltip-lg .tooltip-inner {
  max-width: 72ch !important;
  text-align: left;
  width: auto !important;
}

.me-toast-alert {
  background-color: var(--me-red) !important;
}

.me-toast-banner {
  align-items: center;
  background-color: var(--me-charcoal);
  border-radius: var(--bs-border-radius-sm);
  color: white;
  display: flex;
  justify-content: space-between;
}

.me-underline-hover:hover {
  text-decoration: underline;
}

.me-w-16 {
  width: 6em;
}

.me-w-16ch {
  width: 16ch !important;
}

.me-w-16-28ch {
  width: 16ch;
}

.me-wrap-pre {
  white-space: pre-wrap;
}

.modal-backdrop {
  background-color: rgba(0,0,0,.3) !important;
}

::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: var(--me-text);
  font-size: 1em;
  opacity: 1; /* Firefox */
}

::-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: var(--me-text);
  font-size: 1em;
}

::-ms-input-placeholder {
  /* Microsoft Edge */
  color: var(--me-text);
  font-size: 1em;
}

@media print {
  #logo-nav {
    content: url('/static/media/logo.png');
    width: 200px;
    max-width: 200px;
  }
  @page {
    margin: 1in;
  }
  footer, .no-print {
    display: none !important;
  }
  body {
    color: #000;
    background: #fff;
    font-size: 12pt;
  }
  a {
    color: inherit;
    text-decoration: underline;
  }
  button {
    display: none !important;
  }
  h1, h2, h3, h4, h5, h6 {
    page-break-after: avoid;
  }
  .print-only {
    display: block !important;
  }
  .no-print {
    display: none !important;
  }
  input, textarea, select {
    border: none;
    background: transparent;
    color: #000;
    -webkit-print-color-adjust: exact;
  }
  img {
    break-inside: avoid;
    height: auto;
    max-width: 100%;
    page-break-inside: avoid;
  }
}

/* sm */
@media (min-width: 576px) {
  #logo-top-img {
    width: 75%;
  }
  .me-catalog-empty {
    width: 80% !important;
  }
  .me-file-card {
    flex-direction: row;
  }
  .me-fullscreen {
    height: 100vh;
    width: 100vw;
  }
  .me-hide {
    display: block;
  }
  .me-misc-content {
    max-width: 36em;
  }
  .me-mw-sm-32ch {
    max-width: 32ch !important;
  }
  .me-nav-tab-label {
    display: block;
  }
  .me-proposal-label {
    text-align: right;
  }
  .me-proposal-view {
    grid-template-columns: 10em auto;
  }
  .me-w-16-28ch {
    width: 24ch;
  }
}

/* md */
@media (min-width: 768px) {
  #logo-nav {
    content: url('/static/media/logo.png');
    width: 200px;
    max-width: 200px;
  }
  #logo-top-img {
    width: 66%;
  }
  .me-account-box {
    max-width: 66%;
  }
  .me-card-listing-divider {
    display: block;
  }
  .me-hide-sm {
    display: block;
  }
  .me-mw-md-50 {
    max-width: 50% !important;
  }
  .me-nav-tab-icon {
    height: 1em;
    width: 1em;
  }
  .me-nav-menu {
    width: 22.5em;
  }
  .me-w-16 {
    width: 16em;
  }
  .me-donor-card-bubble-institution {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* lg */
@media (min-width: 992px) {
  .me-border-right {
    border-right: 3px solid var(--me-silver);
  }
  .me-carousel {
    height: 100vh;
  }
  .me-carousel figure {
    height: 100%;
  }
  .me-carousel figure img {
    height: 100%;
  }
  #logo-top {
    display: none;
  }
  #logo-side {
    display: inline-block;
  }
  .me-account-box {
    max-width: 50%;
  }
  .me-card-listing-submitter {
    display: flex;
  }
  .me-container {
    max-width: 90%;
  }
  .me-institution-profile-sidebar {
    width: 32ch !important;
  }
  .me-w-16-28ch {
    width: 28ch;
  }
}

/* xl */
@media (min-width: 1200px) {
  .me-account {
    max-width: 66%;
  }
  .me-centered {
    max-width: 80%;
  }
  .me-container {
    max-width: 85%;
  }
  .me-donor-card-bubble {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* xxl */
@media (min-width: 1400px) {
  .me-account {
    max-width: 50em;
  }
  .me-application {
    max-width: 66%;
  }
  .me-centered {
    max-width: clamp(55em, 66%, 64em);
  }
}
